dreamkit 0.0.10 → 0.0.11

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.
@@ -1,3 +1,4 @@
1
- export { s, type InferType, type InferObjectProps } from "@dreamkit/schema";
2
- export { App, $route, defineRoutePath, type Route } from "@dreamkit/app";
1
+ export { s, type InferType, type InferObjectProps, ArrayType, ArrayTypeItems, MinimalArrayType, BoolType, MinimalBoolType, NumberType, MinimalNumberType, ObjectType, ObjectTypeProps, MinimalObjectType, StringType, MinimalStringType, FileType, FileTypeOptions, MinimalFileType, MinimalType, Type, } from "@dreamkit/schema";
2
+ export { context, IocContext, iocParam, IocClass, IocFunc, createIocClass, } from "@dreamkit/ioc";
3
+ export { App, $route, defineRoutePath, type Route, isRoute, Middleware, MiddlewareClass, isMiddleware, Service, ServiceClass, ServiceStop, isService, } from "@dreamkit/app";
3
4
  //# sourceMappingURL=common.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/presets/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,KAAK,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,eAAe,EAAE,KAAK,KAAK,EAAE,MAAM,eAAe,CAAC"}
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,cAAc,EACd,gBAAgB,EAEhB,QAAQ,EACR,eAAe,EAEf,UAAU,EACV,iBAAiB,EAEjB,UAAU,EACV,eAAe,EACf,iBAAiB,EAEjB,UAAU,EACV,iBAAiB,EAEjB,QAAQ,EACR,eAAe,EACf,eAAe,EAEf,WAAW,EACX,IAAI,GACL,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,MAAM,EACN,eAAe,EACf,KAAK,KAAK,EACV,OAAO,EAEP,UAAU,EACV,eAAe,EACf,YAAY,EAEZ,OAAO,EACP,YAAY,EACZ,WAAW,EACX,SAAS,GACV,MAAM,eAAe,CAAC"}
@@ -1,2 +1,23 @@
1
- export { s } from "@dreamkit/schema";
2
- export { App, $route, defineRoutePath } from "@dreamkit/app";
1
+ export { s,
2
+ // ArrayType
3
+ ArrayType,
4
+ // BoolType
5
+ BoolType,
6
+ // NumberType
7
+ NumberType,
8
+ // ObjectType
9
+ ObjectType,
10
+ // StringType
11
+ StringType,
12
+ // FileType
13
+ FileType,
14
+ // Type
15
+ MinimalType, Type, } from "@dreamkit/schema";
16
+ export { context, IocContext, iocParam, IocClass, IocFunc, createIocClass, } from "@dreamkit/ioc";
17
+ export { App,
18
+ // route
19
+ $route, defineRoutePath, isRoute,
20
+ // middleware
21
+ Middleware, MiddlewareClass, isMiddleware,
22
+ // service
23
+ Service, ServiceClass, isService, } from "@dreamkit/app";
@@ -1,3 +1,6 @@
1
+ import { RequestUrl as BaseRequestUrl } from "@dreamkit/app";
1
2
  import type { Routing } from "dreamkit/presets/global.override.js";
2
3
  export declare const routePath: import("@dreamkit/app/routePath.js").RoutePathFunc<Routing>;
4
+ export declare class RequestUrl extends BaseRequestUrl<Routing> {
5
+ }
3
6
  //# sourceMappingURL=global-common.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"global-common.d.ts","sourceRoot":"","sources":["../../src/presets/global-common.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAEnE,eAAO,MAAM,SAAS,6DAA6B,CAAC"}
1
+ {"version":3,"file":"global-common.d.ts","sourceRoot":"","sources":["../../src/presets/global-common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,UAAU,IAAI,cAAc,EAAE,MAAM,eAAe,CAAC;AAC9E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAEnE,eAAO,MAAM,SAAS,6DAA6B,CAAC;AACpD,qBAAa,UAAW,SAAQ,cAAc,CAAC,OAAO,CAAC;CAAG"}
@@ -1,2 +1,4 @@
1
- import { defineRoutePath } from "@dreamkit/app";
1
+ import { defineRoutePath, RequestUrl as BaseRequestUrl } from "@dreamkit/app";
2
2
  export const routePath = defineRoutePath();
3
+ export class RequestUrl extends BaseRequestUrl {
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dreamkit",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Toolkit for building Solid/SolidStart apps.",
5
5
  "keywords": [
6
6
  "solid",
@@ -41,10 +41,11 @@
41
41
  "lib"
42
42
  ],
43
43
  "dependencies": {
44
- "@dreamkit/app": "0.0.3",
45
- "@dreamkit/schema": "0.0.2",
46
- "@dreamkit/dev": "0.0.9",
47
- "@dreamkit/solid": "0.0.5"
44
+ "@dreamkit/app": "0.0.4",
45
+ "@dreamkit/dev": "0.0.10",
46
+ "@dreamkit/ioc": "0.0.1",
47
+ "@dreamkit/schema": "0.0.3",
48
+ "@dreamkit/solid": "0.0.6"
48
49
  },
49
50
  "devDependencies": {
50
51
  "@dreamkit/tsconfig": "0.0.1"