Skip to content

Commit

Permalink
Merge pull request #44 from qorelanguage/chore/import-fixes
Browse files Browse the repository at this point in the history
chore: fix exports
  • Loading branch information
Foxhoundn authored Aug 22, 2024
2 parents e4f2121 + 27ea47f commit 9ff801e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 16 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qoretechnologies/ts-toolkit",
"version": "0.4.3",
"version": "0.4.4",
"description": "Utility library to interact with Qorus Integration Engine & Qore Language",
"keywords": [
"qoretechnologies",
Expand Down Expand Up @@ -105,11 +105,11 @@
"typedoc": "^0.23.10",
"typedoc-json-parser": "^7.0.2",
"typescript": "^4.7.4",
"webpack-node-externals": "^3.0.0"
"webpack-node-externals": "^3.0.0",
"colors": "^1.4.0"
},
"dependencies": {
"async": "^3.2.4",
"colors": "^1.4.0",
"cron-validator": "^1.3.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion pullRequestRelease.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "0.4.11722524490"}
{"version": "0.4.31724333977"}
15 changes: 3 additions & 12 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,9 @@ export { TContext } from './QorusDataProvider';
export { IDefaultHeaders } from './QorusRequest';
export { IApiPaths, IAuthenticatorApiPaths, IDataProviderApiPaths, IJobsApiPaths, TVersion } from './utils/apiPaths';

export {
TQorusAnyCompatibleUIType,
TQorusBooleanCompatibleUIType,
TQorusHashCompatibleUIType,
TQorusInterfaces,
TQorusListCompatibleUIType,
TQorusNullCompatibleUIType,
TQorusNumberCompatibleUIType,
TQorusSpecialUIType,
TQorusStringCompatibleUIType,
TQorusType,
} from './types/qorus';
export * from './types/expressions';
export * from './types/forms';
export * from './types/qorus';

/**
* A record of objects with string key and string value
Expand Down

0 comments on commit 9ff801e

Please sign in to comment.