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

ci(github): fix type exports in packages/cactus-verifier-client #3654

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { Verifier, IVerifierEventListener, LedgerEvent } from "./verifier";
export { Verifier } from "./verifier";
export { getValidatorApiClient } from "./get-validator-api-client";
export {
VerifierFactory,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ import {
IVerifierEventListener,
} from "@hyperledger/cactus-core-api";

export {
IVerifierEventListener,
LedgerEvent,
} from "@hyperledger/cactus-core-api";

/**
* Utility type for retrieving monitoring event / new block type from generic ISocketApiClient interface.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ const log: Logger = LoggerProvider.getOrCreate({
level: testLogLevel,
});

import { ISocketApiClient } from "@hyperledger/cactus-core-api";
import {
Verifier,
ISocketApiClient,
IVerifierEventListener,
LedgerEvent,
} from "../../../main/typescript/verifier";
} from "@hyperledger/cactus-core-api";
import { Verifier } from "../../../main/typescript/verifier";

//////////////////////////////////
// Test Timeout
Expand Down
2 changes: 0 additions & 2 deletions tools/custom-checks/get-all-tgz-path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ export async function getAllTgzPath(): Promise<IGetAllTgzPathResponse> {
"examples/cactus-example-cbdc-bridging-frontend/hyperledger-cacti-example-cbdc-bridging-frontend-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3632
"examples/cactus-common-example-server/hyperledger-cactus-common-example-server-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3633
"packages/cactus-verifier-client/hyperledger-cactus-verifier-client-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3634
"packages/cactus-plugin-ledger-connector-polkadot/hyperledger-cactus-plugin-ledger-connector-polkadot-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3635
Expand Down
Loading