Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(market): fixed the ProposalDTO type that was wronlgy typed as par… #1111

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/market/proposal/offer-proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,22 @@ export type PricingInfo = {

export type ProposalState = "Initial" | "Draft" | "Rejected" | "Accepted" | "Expired";

export type ProposalDTO = Partial<{
export type ProposalDTO = {
transferProtocol: string[];
cpuBrand: string;
cpuCapabilities: string[];
cpuCores: number;
cpuThreads: number;
memory: number;
storage: number;
publicNet: boolean;
runtimeCapabilities: string[];
runtimeName: string;
runtimeVersion: string;
state: ProposalState;
}>;

/** Non-standardised property, we can't assume it will be always there */
publicNet?: boolean;
};

/**
* Entity representing the offer presented by the Provider to the Requestor
Expand Down