-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a couple more types, prep for 1.0.0 release
- Loading branch information
Showing
10 changed files
with
7,579 additions
and
1,362 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default interface ILp { | ||
corporation_id: number, | ||
loyalty_points: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IServiceResponse from "../ServiceResponse"; | ||
import ILp from "./Lp"; | ||
|
||
export default interface ILpServiceResponse extends IServiceResponse { | ||
body: ILp[] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default interface IIdNamePair { | ||
id: number, | ||
name: string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import IIdNamePair from "./IdNamePair"; | ||
|
||
export default interface IName2IdResponseBody { | ||
agents?: IIdNamePair[], | ||
alliances?: IIdNamePair[], | ||
characters?: IIdNamePair[], | ||
constellations?: IIdNamePair[], | ||
corporations?: IIdNamePair[], | ||
factions?: IIdNamePair[], | ||
inventory_types?: IIdNamePair[], | ||
regions?: IIdNamePair[], | ||
stations?: IIdNamePair[], | ||
systems?: IIdNamePair[] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IServiceResponse from "../ServiceResponse"; | ||
import IName2IdResponseBody from "./Name2IdResponseBody"; | ||
|
||
export default interface IName2IdServiceResponse extends IServiceResponse { | ||
body: IName2IdResponseBody | ||
} |