diff --git a/.changeset/unlucky-pumpkins-taste.md b/.changeset/unlucky-pumpkins-taste.md new file mode 100644 index 0000000..3688ebb --- /dev/null +++ b/.changeset/unlucky-pumpkins-taste.md @@ -0,0 +1,5 @@ +--- +"@rabbitholegg/questdk": patch +--- + +Export Order Types diff --git a/src/actions/index.ts b/src/actions/index.ts index b054cc6..e8692b4 100644 --- a/src/actions/index.ts +++ b/src/actions/index.ts @@ -11,4 +11,4 @@ export type { IActionPlugin, } from './types.js' -export { ActionType } from './types.js' +export { ActionType, OrderType } from './types.js' diff --git a/src/index.ts b/src/index.ts index 80a5995..81cb4b7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,7 @@ export type { IActionPlugin, } from './actions/types.js' -export { ActionType } from './actions/types.js' +export { ActionType, OrderType } from './actions/types.js' export { apply } from './filter/filters.js'