1
1
import { Context } from "aws-lambda" ;
2
2
import { FastifyInstance , LightMyRequestResponse } from "fastify" ;
3
+ import { Readable } from 'node:stream'
3
4
4
5
type AwsLambdaFastify = typeof awsLambdaFastify
5
6
@@ -26,14 +27,23 @@ declare namespace awsLambdaFastify {
26
27
* @default true
27
28
*/
28
29
parseCommaSeparatedQueryParams ?: boolean ;
30
+ payloadAsStream ?: boolean ;
29
31
}
30
32
31
- export interface LambdaResponse {
33
+ export interface LambdaResponseBase {
32
34
statusCode : number ;
33
- body : string ;
34
35
headers : Record < string , string > ;
35
36
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 ;
37
47
}
38
48
39
49
export type PromiseHandler < TEvent = any , TResult = LambdaResponse > = (
@@ -51,14 +61,26 @@ declare namespace awsLambdaFastify {
51
61
export { awsLambdaFastify as default }
52
62
}
53
63
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
+ > (
55
71
app : FastifyInstance ,
56
- options ?: awsLambdaFastify . LambdaFastifyOptions
72
+ options ?: TOptions
57
73
) : awsLambdaFastify . PromiseHandler < TEvent , TResult > ;
58
74
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
+ > (
60
82
app : FastifyInstance ,
61
- options ?: awsLambdaFastify . LambdaFastifyOptions
83
+ options ?: TOptions
62
84
) : awsLambdaFastify . CallbackHandler < TEvent , TResult > ;
63
85
64
86
export = awsLambdaFastify
0 commit comments