Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Required schemas not exported (#8227)
Browse files Browse the repository at this point in the history
Export schemas
  • Loading branch information
Incede authored Mar 7, 2023
1 parent ea312df commit de0b926
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion framework/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@ export type { EventsDefinition, EventCallback } from './controller/event';
export * as testing from './testing';
export * from './types';
export { ValidatorsMethod, ValidatorsModule } from './modules/validators';
export { AuthMethod, AuthModule, multisigRegMsgSchema } from './modules/auth';
export {
AuthMethod,
AuthModule,
multisigRegMsgSchema,
genesisAuthStoreSchema as authGenesisStoreSchema,
} from './modules/auth';
export {
TokenMethod,
TokenModule,
Expand Down Expand Up @@ -145,3 +150,4 @@ export {
certificateSchema,
unsignedCertificateSchema,
} from './engine/consensus';
export { applicationConfigSchema } from './schema';
2 changes: 1 addition & 1 deletion framework/src/modules/auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

export { AuthModule } from './module';
export { AuthMethod } from './method';
export { multisigRegMsgSchema } from './schemas';
export { multisigRegMsgSchema, genesisAuthStoreSchema } from './schemas';

0 comments on commit de0b926

Please sign in to comment.