Skip to content

Commit d0f02e6

Browse files
committed
introduce payloadAsStream option type definitions #154
1 parent 171e87f commit d0f02e6

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@fastify/pre-commit": "^2.2.0",
4747
"@h4ad/serverless-adapter": "4.4.0",
4848
"@types/aws-lambda": "8.10.147",
49+
"@types/node": "^22.10.7",
4950
"aws-serverless-express": "^3.4.0",
5051
"aws-serverless-fastify": "^3.1.0",
5152
"benchmark": "^2.1.4",

types/index.d.ts

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Context } from "aws-lambda";
22
import { FastifyInstance, LightMyRequestResponse } from "fastify";
3+
import { Readable } from 'node:stream'
34

45
type AwsLambdaFastify = typeof awsLambdaFastify
56

@@ -26,14 +27,23 @@ declare namespace awsLambdaFastify {
2627
* @default true
2728
*/
2829
parseCommaSeparatedQueryParams?: boolean;
30+
payloadAsStream?: boolean;
2931
}
3032

31-
export interface LambdaResponse {
33+
export interface LambdaResponseBase {
3234
statusCode: number;
33-
body: string;
3435
headers: Record<string, string>;
3536
isBase64Encoded: boolean;
36-
cookies?: string[]
37+
cookies?: string[];
38+
}
39+
40+
export interface LambdaResponse extends LambdaResponseBase {
41+
body: string;
42+
}
43+
44+
export interface LambdaResponseStreamed {
45+
meta: LambdaResponseBase;
46+
stream: Readable;
3747
}
3848

3949
export type PromiseHandler<TEvent = any, TResult = LambdaResponse> = (
@@ -51,14 +61,26 @@ declare namespace awsLambdaFastify {
5161
export { awsLambdaFastify as default }
5262
}
5363

54-
declare function awsLambdaFastify<TEvent, TResult = awsLambdaFastify.LambdaResponse>(
64+
declare function awsLambdaFastify<
65+
TEvent,
66+
TOptions extends awsLambdaFastify.LambdaFastifyOptions = awsLambdaFastify.LambdaFastifyOptions,
67+
TResult = TOptions["payloadAsStream"] extends true
68+
? awsLambdaFastify.LambdaResponseStreamed
69+
: awsLambdaFastify.LambdaResponse
70+
>(
5571
app: FastifyInstance,
56-
options?: awsLambdaFastify.LambdaFastifyOptions
72+
options?: TOptions
5773
): awsLambdaFastify.PromiseHandler<TEvent, TResult>;
5874

59-
declare function awsLambdaFastify<TEvent, TResult = awsLambdaFastify.LambdaResponse>(
75+
declare function awsLambdaFastify<
76+
TEvent,
77+
TOptions extends awsLambdaFastify.LambdaFastifyOptions = awsLambdaFastify.LambdaFastifyOptions,
78+
TResult = TOptions["payloadAsStream"] extends true
79+
? awsLambdaFastify.LambdaResponseStreamed
80+
: awsLambdaFastify.LambdaResponse
81+
>(
6082
app: FastifyInstance,
61-
options?: awsLambdaFastify.LambdaFastifyOptions
83+
options?: TOptions
6284
): awsLambdaFastify.CallbackHandler<TEvent, TResult>;
6385

6486
export = awsLambdaFastify

types/index.test-d.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import awsLambdaFastify, {
44
CallbackHandler,
55
LambdaFastifyOptions,
66
LambdaResponse,
7+
LambdaResponseStreamed,
78
} from "..";
89

910
import { expectType, expectError, expectAssignable } from "tsd";
@@ -38,13 +39,17 @@ expectType<PromiseHandler<unknown>>(awsLambdaFastify(app));
3839
expectType<Promise<Record<string, string>>>(proxyPromise({}, lambdaCtx));
3940
expectType<PromiseHandler<unknown, LambdaResponse>>(awsLambdaFastify(app, {}));
4041
expectType<PromiseHandler<unknown, boolean>>(
41-
awsLambdaFastify<unknown, boolean>(app)
42+
awsLambdaFastify<unknown, {}, boolean>(app)
4243
);
4344

4445
// Default type
4546
const proxyDefault = awsLambdaFastify(app);
4647
expectType<Promise<LambdaResponse>>(proxyDefault({}, lambdaCtx));
4748

49+
// Streamed default type
50+
const proxyStreamed = awsLambdaFastify(app, { payloadAsStream: true });
51+
expectType<Promise<LambdaResponseStreamed>>(proxyStreamed({}, lambdaCtx));
52+
4853
expectAssignable<LambdaFastifyOptions>({ binaryMimeTypes: ["foo", "bar"] });
4954
expectAssignable<LambdaFastifyOptions>({
5055
callbackWaitsForEmptyEventLoop: true,

0 commit comments

Comments
 (0)