Skip to content

Commit

Permalink
Updated response definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrinc committed Jan 8, 2024
1 parent 8e803a1 commit 0428ee4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ export interface APIServicesResponse {
idgroup: string;
description: string;
packages: APIServicesResponsePackage[];
installcosts: Array<APIServicesResponseInstallCost>;
}

export interface APIServicesResponseInstallCost {
description: string;
new: number;
upgrade: number;
cost: number;
norouter: number;
}

export interface APIServicesResponsePackage {
Expand All @@ -91,6 +100,9 @@ export interface APIServicesResponsePackage {
download: number;
upload: number;
approve: boolean;
discountrouter: boolean;
discountinstall: boolean;
installcost: number;
}

export interface APICustomerAccount {
Expand Down

0 comments on commit 0428ee4

Please sign in to comment.