added more description in package.json and expose stuff in the indexes files since it was building actually nothing
This commit is contained in:
parent
18eaa2daaa
commit
82ac558e9b
26
package.json
26
package.json
@ -1,6 +1,18 @@
|
|||||||
{
|
{
|
||||||
"name": "@openharbor/vue-data",
|
"name": "@openharbor/vue-data",
|
||||||
"author": "Open Harbor",
|
"author": {
|
||||||
|
"name": "Open Harbor",
|
||||||
|
"email": "npm@openharbor.com",
|
||||||
|
"url": "https://git.openharbor.io"
|
||||||
|
},
|
||||||
|
"homepage": "https://git.openharbor.io/Open-Harbor/vue-data",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.openharbor.io/Open-Harbor/vue-data.git"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://git.openharbor.io/Open-Harbor/vue-data/issues"
|
||||||
|
},
|
||||||
"private": false,
|
"private": false,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
@ -43,5 +55,15 @@
|
|||||||
"vue": "^3.5.13",
|
"vue": "^3.5.13",
|
||||||
"vue-tsc": "^2.2.8"
|
"vue-tsc": "^2.2.8"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
|
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
|
||||||
|
"keywords": [
|
||||||
|
"vue",
|
||||||
|
"vue3",
|
||||||
|
"composition-api",
|
||||||
|
"data-source",
|
||||||
|
"cqrs",
|
||||||
|
"openharbor",
|
||||||
|
"typescript",
|
||||||
|
"frontend"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
export { useHttpDataSource, type UseHttpDataSourceOptions } from './use-http-data-source';
|
||||||
|
export { useSingleDataSource, type UseSingleDataSourceOptions } from './use-single-data-source';
|
||||||
|
export { useListDataSource, type UseListDataSourceOptions } from './use-list-data-source';
|
@ -1,5 +1,3 @@
|
|||||||
// src/composables/use-http-data-source.ts
|
|
||||||
|
|
||||||
import { ref, readonly, watch, type Ref } from 'vue';
|
import { ref, readonly, watch, type Ref } from 'vue';
|
||||||
import {
|
import {
|
||||||
type IQueryCriteria,
|
type IQueryCriteria,
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// src/composables/use-single-data-source.ts
|
|
||||||
|
|
||||||
import { ref, readonly, watch, type Ref } from 'vue';
|
import { ref, readonly, watch, type Ref } from 'vue';
|
||||||
import {
|
import {
|
||||||
type IQueryCriteria,
|
type IQueryCriteria,
|
||||||
|
17
src/index.ts
17
src/index.ts
@ -0,0 +1,17 @@
|
|||||||
|
export * from './composables';
|
||||||
|
|
||||||
|
export {
|
||||||
|
type IQueryCriteria,
|
||||||
|
type ICommand,
|
||||||
|
type IQueryExecutionResult,
|
||||||
|
type IQueryExecutionGroupResult,
|
||||||
|
type IDataSourceErrorMessage,
|
||||||
|
type IDataSourceValidationError,
|
||||||
|
type IDataSourceError,
|
||||||
|
type IResolveCommandModelEvent,
|
||||||
|
type IDataSourceCommandAdapterOptions,
|
||||||
|
type IDataSourceQueryAdapterOptions,
|
||||||
|
type IDataSourceTransportOptions,
|
||||||
|
type IDataSourceOptions,
|
||||||
|
type IDataSource
|
||||||
|
} from './core/types';
|
Loading…
Reference in New Issue
Block a user