@toa.io/core 1.0.1-dev.0 → 1.1.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/types/reflection.d.ts +7 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/core",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0-dev.0",
|
|
4
4
|
"description": "Toa Core",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@rsql/parser": "1.2.4",
|
|
23
23
|
"@toa.io/console": "0.6.0",
|
|
24
|
-
"@toa.io/generic": "0.
|
|
25
|
-
"@toa.io/yaml": "0.7.
|
|
24
|
+
"@toa.io/generic": "0.11.0-dev.0",
|
|
25
|
+
"@toa.io/yaml": "0.7.6-dev.0",
|
|
26
26
|
"clone-deep": "4.0.1"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "44a59b3ec335a1be8655b543891767bae799dba1"
|
|
29
29
|
}
|
package/types/reflection.d.ts
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { Connector } from './connector'
|
|
1
|
+
import * as _core from './connector'
|
|
4
2
|
|
|
5
3
|
declare namespace toa.core {
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
namespace reflection {
|
|
6
|
+
type Source = () => Promise<any>
|
|
7
|
+
}
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
interface Reflection<T> extends _core.Connector {
|
|
10
|
+
value: T
|
|
11
|
+
}
|
|
14
12
|
}
|
|
15
13
|
|
|
16
14
|
export type Source = toa.core.reflection.Source
|