forked from GoogleCloudPlatform/functions-framework-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfunctions.ts
176 lines (161 loc) · 3.79 KB
/
functions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Type Interfaces for the Node Functions Framework.
// **If changing files, please change package.json!**
/* eslint-disable @typescript-eslint/no-explicit-any */
import {Request as ExpressRequest, Response} from 'express';
import {CloudEventV1 as CloudEvent} from 'cloudevents';
import {OpenFunctionRuntime} from './openfunction/runtime';
/**
* @public
*/
export {CloudEvent};
/**
* @public
*/
export interface Request extends ExpressRequest {
/**
* A buffer which provides access to the request's raw HTTP body.
*/
rawBody?: Buffer;
}
/**
* @public
*/
export {Response};
/**
* A HTTP function handler.
* @public
*/
export interface HttpFunction {
(req: Request, res: Response): any;
}
/**
* A legacy event function handler.
* @public
*/
export interface EventFunction {
(data: {}, context: Context): any;
}
/**
* A legacy event function handler with callback.
* @public
*/
export interface EventFunctionWithCallback {
(data: {}, context: Context, callback: Function): any;
}
/**
* A CloudEvent function handler.
* @public
*/
export interface CloudEventFunction<T = unknown> {
(cloudEvent: CloudEvent<T>): any;
}
/**
* A CloudEvent function handler with callback.
* @public
*/
export interface CloudEventFunctionWithCallback<T = unknown> {
(cloudEvent: CloudEvent<T>, callback: Function): any;
}
/**
* An OpenFunction async function handler.
* @public
*/
export interface OpenFunction {
(ctx: OpenFunctionRuntime, data: object): any;
}
/**
* OpenFunction runtime as the context handler.
* @public
*/
export {OpenFunctionRuntime};
/**
* HTTP response ouput from OpenFunction async function
* @public
*/
export interface HttpFunctionResponse {
/**
* Status code of the response.
*/
code?: number;
/**
* Headers of the response.
*/
headers?: Record<string, string>;
/**
* Body of the response.
*/
body?: any;
}
/**
* A function handler.
* @public
*/
export type HandlerFunction<T = unknown> =
| OpenFunction
| HttpFunction
| EventFunction
| EventFunctionWithCallback
| CloudEventFunction<T>
| CloudEventFunctionWithCallback<T>;
/**
* A legacy event.
* @public
*/
export interface LegacyEvent {
data: {[key: string]: any};
context: CloudFunctionsContext;
}
/**
* A data object used for legacy event functions.
* @public
*/
export interface Data {
data: object;
}
/**
* A legacy event function context.
* @public
*/
export type LegacyCloudFunctionsContext = CloudFunctionsContext | Data;
/**
* The Cloud Functions context object for the event.
* {@link https://cloud.google.com/functions/docs/writing/background#function_parameters}
* @public
*/
export interface CloudFunctionsContext {
/**
* A unique ID for the event. For example: "70172329041928".
*/
eventId?: string;
/**
* The date/time this event was created. For example: "2018-04-09T07:56:12.975Z"
* This will be formatted as ISO 8601.
*/
timestamp?: string;
/**
* The type of the event. For example: "google.pubsub.topic.publish".
*/
eventType?: string;
/**
* The resource that emitted the event.
*/
resource?: string | {[key: string]: string};
}
/**
* The function's context.
* @public
*/
export type Context = CloudFunctionsContext | CloudEvent<unknown>;