From ac4691a83233bc3dbd159303ef4ccbc172b4f6a7 Mon Sep 17 00:00:00 2001 From: Celeo Date: Sat, 20 Jan 2024 11:39:57 -0800 Subject: [PATCH] Add optional param to get_character_industry_jobs --- Cargo.toml | 2 +- src/groups/industry.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c54f7e0..4b75c46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfesi" -version = "0.38.0" +version = "0.39.0" authors = ["Celeo "] edition = "2021" description = "Rust API for EVE Online's ESI" diff --git a/src/groups/industry.rs b/src/groups/industry.rs index fd39701..af378d2 100644 --- a/src/groups/industry.rs +++ b/src/groups/industry.rs @@ -64,6 +64,7 @@ impl<'a> IndustryGroup<'a> { "get_characters_character_id_industry_jobs", RequestType::Authenticated, Vec, - (character_id: i32) => "{character_id}" + (character_id: i32) => "{character_id}"; + Optional(include_completed: bool) => "include_completed" ); }