Skip to content

Commit

Permalink
0.13.6: fix and test exports
Browse files Browse the repository at this point in the history
  • Loading branch information
a17 committed Sep 22, 2024
1 parent a34eb11 commit a4c1333
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
IntegrationStatus,
getIntegrationStatus
} from "./integrations";
import type {ApiMainReply, ApiAggSwapData} from "./api.types"
import {ApiMainReply, ApiAggSwapData, ApiPostBody, ApiPostReply, InteractionType} from "./api.types"
import tokenlist from "./stability.tokenlist.json"
import {almFactories} from "./addresses";
import {assets, Asset, getAsset} from "./assets";
Expand All @@ -49,6 +49,9 @@ export {
IntegrationStatus,
ApiMainReply,
ApiAggSwapData,
ApiPostBody,
ApiPostReply,
InteractionType,
tokenlist,
almFactories,
getMerklStrategies,
Expand Down
5 changes: 4 additions & 1 deletion tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
deployments,
integrations,
StrategyShortId,
tokenlist, almFactories, assets, strategyStateDescription, StrategyState, seeds, ChainStatus,
tokenlist, almFactories, assets, strategyStateDescription, StrategyState, seeds, ChainStatus, InteractionType,
} from "../src";

describe('index', () => {
Expand Down Expand Up @@ -38,4 +38,7 @@ describe('index', () => {
test('seeds', () => {
expect(seeds.length).toBeGreaterThan(0)
})
test('api', () => {
expect(InteractionType.SYNC).toEqual('SYNC')
})
})

0 comments on commit a4c1333

Please sign in to comment.