dreamkit 0.0.15-next.3 → 0.0.15-next.4
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/lib/presets/common.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { s, type InferType, type InferObjectProps, ArrayType, type ArrayTypeItems, type MinimalArrayType, BoolType, type MinimalBoolType, NumberType, type MinimalNumberType, ObjectType, type ObjectTypeProps, type MinimalObjectType, StringType, type MinimalStringType, FileType, type FileTypeOptions, type MinimalFileType, AnyType, type AnyTypeOptions, type MinimalAnyType, MinimalType, Type, } from "@dreamkit/schema";
|
|
1
|
+
export { s, type InferType, type InferObjectProps, ArrayType, type ArrayTypeItems, type MinimalArrayType, BoolType, type MinimalBoolType, NumberType, type MinimalNumberType, ObjectType, type ObjectTypeProps, type MinimalObjectType, StringType, type MinimalStringType, FileType, type FileTypeOptions, type MinimalFileType, AnyType, type AnyTypeOptions, type MinimalAnyType, MinimalType, Type, TypeAssertError, type TypeAssertErrorData, isTypeAssertError, } from "@dreamkit/schema";
|
|
2
2
|
export { context, IocContext, iocParam, IocClass, IocFunc, createIocClass, } from "@dreamkit/ioc";
|
|
3
|
-
export { App, AppContext, RequestContext, $route, defineRoutePath, type Route, isRoute, $api, isApi,
|
|
3
|
+
export { App, AppContext, RequestContext, $route, defineRoutePath, type Route, isRoute, $api, isApi, $middleware, Middleware, isMiddleware, type MiddlewareConstructor, type MiddlewareData, type MiddlewareOptions, $service, Service, isService, type ServiceConstructor, Settings, type SettingsConstructor, type SettingsData, SettingsBuilder, SettingsHandler, SettingsHandlerClass, $settings, isSettings, } from "@dreamkit/app";
|
|
4
4
|
export { kind, kindOf, is, createKind } from "@dreamkit/kind";
|
|
5
5
|
//# sourceMappingURL=common.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/presets/common.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,CAAC,EACD,KAAK,SAAS,EACd,KAAK,gBAAgB,EAErB,SAAS,EACT,KAAK,cAAc,EACnB,KAAK,gBAAgB,EAErB,QAAQ,EACR,KAAK,eAAe,EAEpB,UAAU,EACV,KAAK,iBAAiB,EAEtB,UAAU,EACV,KAAK,eAAe,EACpB,KAAK,iBAAiB,EAEtB,UAAU,EACV,KAAK,iBAAiB,EAEtB,QAAQ,EACR,KAAK,eAAe,EACpB,KAAK,eAAe,EAEpB,OAAO,EACP,KAAK,cAAc,EACnB,KAAK,cAAc,EAEnB,WAAW,EACX,IAAI,
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/presets/common.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,CAAC,EACD,KAAK,SAAS,EACd,KAAK,gBAAgB,EAErB,SAAS,EACT,KAAK,cAAc,EACnB,KAAK,gBAAgB,EAErB,QAAQ,EACR,KAAK,eAAe,EAEpB,UAAU,EACV,KAAK,iBAAiB,EAEtB,UAAU,EACV,KAAK,eAAe,EACpB,KAAK,iBAAiB,EAEtB,UAAU,EACV,KAAK,iBAAiB,EAEtB,QAAQ,EACR,KAAK,eAAe,EACpB,KAAK,eAAe,EAEpB,OAAO,EACP,KAAK,cAAc,EACnB,KAAK,cAAc,EAEnB,WAAW,EACX,IAAI,EAEJ,eAAe,EACf,KAAK,mBAAmB,EACxB,iBAAiB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,OAAO,EACP,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,cAAc,GACf,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,GAAG,EAEH,UAAU,EACV,cAAc,EAEd,MAAM,EACN,eAAe,EACf,KAAK,KAAK,EACV,OAAO,EAEP,IAAI,EACJ,KAAK,EAEL,WAAW,EACX,UAAU,EACV,YAAY,EACZ,KAAK,qBAAqB,EAC1B,KAAK,cAAc,EACnB,KAAK,iBAAiB,EAEtB,QAAQ,EACR,OAAO,EACP,SAAS,EACT,KAAK,kBAAkB,EAEvB,QAAQ,EACR,KAAK,mBAAmB,EACxB,KAAK,YAAY,EACjB,eAAe,EACf,eAAe,EACf,oBAAoB,EACpB,SAAS,EACT,UAAU,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC"}
|
package/lib/presets/common.js
CHANGED
|
@@ -14,7 +14,7 @@ FileType,
|
|
|
14
14
|
// AnyType
|
|
15
15
|
AnyType,
|
|
16
16
|
// Type
|
|
17
|
-
MinimalType, Type, } from "@dreamkit/schema";
|
|
17
|
+
MinimalType, Type, isTypeAssertError, } from "@dreamkit/schema";
|
|
18
18
|
export { context, IocContext, iocParam, IocClass, IocFunc, createIocClass, } from "@dreamkit/ioc";
|
|
19
19
|
export { App,
|
|
20
20
|
// contexts
|
|
@@ -24,9 +24,9 @@ $route, defineRoutePath, isRoute,
|
|
|
24
24
|
// api
|
|
25
25
|
$api, isApi,
|
|
26
26
|
// middleware
|
|
27
|
-
|
|
27
|
+
$middleware, Middleware, isMiddleware,
|
|
28
28
|
// service
|
|
29
|
-
|
|
29
|
+
$service, Service, isService,
|
|
30
30
|
// settings
|
|
31
31
|
Settings, SettingsBuilder, SettingsHandler, SettingsHandlerClass, $settings, isSettings, } from "@dreamkit/app";
|
|
32
32
|
export { kind, kindOf, is, createKind } from "@dreamkit/kind";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dreamkit",
|
|
3
|
-
"version": "0.0.15-next.
|
|
3
|
+
"version": "0.0.15-next.4",
|
|
4
4
|
"description": "Toolkit for building Solid/SolidStart apps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"solid",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"lib"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@dreamkit/app": "0.0.7-next.
|
|
45
|
-
"@dreamkit/dev": "0.0.14-next.
|
|
46
|
-
"@dreamkit/ioc": "0.0.2-next.
|
|
44
|
+
"@dreamkit/app": "0.0.7-next.3",
|
|
45
|
+
"@dreamkit/dev": "0.0.14-next.4",
|
|
46
|
+
"@dreamkit/ioc": "0.0.2-next.2",
|
|
47
47
|
"@dreamkit/kind": "0.0.2",
|
|
48
|
-
"@dreamkit/node-app": "0.0.2-next.
|
|
49
|
-
"@dreamkit/schema": "0.0.5-next.
|
|
50
|
-
"@dreamkit/solid": "0.0.9-next.
|
|
48
|
+
"@dreamkit/node-app": "0.0.2-next.2",
|
|
49
|
+
"@dreamkit/schema": "0.0.5-next.1",
|
|
50
|
+
"@dreamkit/solid": "0.0.9-next.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@dreamkit/tsconfig": "0.0.1"
|