@forklaunch/express 0.5.20 → 0.5.22
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/index.d.mts +5 -1
- package/lib/index.d.ts +5 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
import * as _forklaunch_core_http from '@forklaunch/core/http';
|
2
2
|
import { DocsConfiguration, ForklaunchExpressLikeApplication, OpenTelemetryCollector, MetricsDefinition, ForklaunchExpressLikeRouter, TypedMiddlewareDefinition, ParamsObject, ResponsesObject, Body, QueryObject, HeadersObject, ContractDetails, ExpressLikeSchemaHandler } from '@forklaunch/core/http';
|
3
|
+
export { DocsConfiguration } from '@forklaunch/core/http';
|
3
4
|
import { AnySchemaValidator, LiteralSchema, IdiomaticSchema, SchemaResolve } from '@forklaunch/validator';
|
4
5
|
import { OptionsText, OptionsJson, OptionsUrlencoded } from 'body-parser';
|
6
|
+
export { OptionsJson, OptionsText, OptionsUrlencoded } from 'body-parser';
|
5
7
|
import { BusboyConfig } from 'busboy';
|
8
|
+
export { BusboyConfig } from 'busboy';
|
6
9
|
import { CorsOptions } from 'cors';
|
10
|
+
export { CorsOptions } from 'cors';
|
7
11
|
import { Express, RequestHandler, Request, Response, NextFunction, Router as Router$1 } from 'express';
|
8
12
|
export { NextFunction, Request, Response } from 'express';
|
9
13
|
import { Server } from 'http';
|
@@ -2034,4 +2038,4 @@ declare const handlers: {
|
|
2034
2038
|
unsubscribe: typeof unsubscribe;
|
2035
2039
|
};
|
2036
2040
|
|
2037
|
-
export { Application, Router, forklaunchExpress, forklaunchRouter, handlers };
|
2041
|
+
export { Application, type ExpressOptions, Router, forklaunchExpress, forklaunchRouter, handlers };
|
package/lib/index.d.ts
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
import * as _forklaunch_core_http from '@forklaunch/core/http';
|
2
2
|
import { DocsConfiguration, ForklaunchExpressLikeApplication, OpenTelemetryCollector, MetricsDefinition, ForklaunchExpressLikeRouter, TypedMiddlewareDefinition, ParamsObject, ResponsesObject, Body, QueryObject, HeadersObject, ContractDetails, ExpressLikeSchemaHandler } from '@forklaunch/core/http';
|
3
|
+
export { DocsConfiguration } from '@forklaunch/core/http';
|
3
4
|
import { AnySchemaValidator, LiteralSchema, IdiomaticSchema, SchemaResolve } from '@forklaunch/validator';
|
4
5
|
import { OptionsText, OptionsJson, OptionsUrlencoded } from 'body-parser';
|
6
|
+
export { OptionsJson, OptionsText, OptionsUrlencoded } from 'body-parser';
|
5
7
|
import { BusboyConfig } from 'busboy';
|
8
|
+
export { BusboyConfig } from 'busboy';
|
6
9
|
import { CorsOptions } from 'cors';
|
10
|
+
export { CorsOptions } from 'cors';
|
7
11
|
import { Express, RequestHandler, Request, Response, NextFunction, Router as Router$1 } from 'express';
|
8
12
|
export { NextFunction, Request, Response } from 'express';
|
9
13
|
import { Server } from 'http';
|
@@ -2034,4 +2038,4 @@ declare const handlers: {
|
|
2034
2038
|
unsubscribe: typeof unsubscribe;
|
2035
2039
|
};
|
2036
2040
|
|
2037
|
-
export { Application, Router, forklaunchExpress, forklaunchRouter, handlers };
|
2041
|
+
export { Application, type ExpressOptions, Router, forklaunchExpress, forklaunchRouter, handlers };
|