Skip to content

Commit

Permalink
pull dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagaprasadvr committed Sep 12, 2023
1 parent 9441540 commit a2e0444
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
29 changes: 22 additions & 7 deletions packages/js/src/plugins/rfqModule/RfqClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,17 @@ import {
GetSettlementResultInput,
getSettlementResultOperation,
getSettlementResultHandler,
GetResponseStateAndActionInput,
getResponseStateAndActionOperation,
getResponseStateAndActionHandler,
RetrieveBidAndAskInput,
retrieveBidAndAskHandler,
retrieveBidAndAskOperation,
} from './operations';
import { Response } from './models/Response';
import {
GetResponseStateAndActionInput,
getResponseStateAndActionHandler,
getResponseStateAndActionOperation,
GetRfqStateAndActionInput,
getRfqStateAndActionHandler,
getRfqStateAndActionOperation,
} from './operations/getRfqStateAndAction';
} from './operations';
import { Response } from './models/Response';

/**
* This is a client for the Rfq module.
Expand Down Expand Up @@ -500,6 +498,23 @@ export class RfqClient {
);
}

/** {@inheritDoc retrieveBidAndAskOperation} */
retrieveBidAndAsk(input: RetrieveBidAndAskInput) {
return retrieveBidAndAskHandler.handle(
retrieveBidAndAskOperation(input),
this.convergence
);
}

/** {@inheritDoc getResponseStateAndAction} */
getResponseStateAndAction(input: GetResponseStateAndActionInput) {
return getResponseStateAndActionHandler.handle(
getResponseStateAndActionOperation(input),
this.convergence
);
}

/** {@inheritDoc getRFqStateAndAction} */
getRfqStateAndAction(input: GetRfqStateAndActionInput) {
return getRfqStateAndActionHandler.handle(
getRfqStateAndActionOperation(input),
Expand Down
1 change: 1 addition & 0 deletions packages/js/src/plugins/rfqModule/operations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ export * from './unlockRfqsCollateral';
export * from './getSettlementResult';
export * from './retrieveBidAndAsk';
export * from './getResponseStateAndAction';
export * from './getRfqStateAndAction';

0 comments on commit a2e0444

Please sign in to comment.