-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathapi.d.ts
191 lines (173 loc) · 4.48 KB
/
api.d.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/// <reference types="node" />
import * as express from 'express';
/**
* Register a function that handles CloudEvents.
* @param functionName - the name of the function
* @param handler - the function to trigger when handling CloudEvents
* @public
*/
export declare const cloudEvent: (functionName: string, handler: CloudEventFunction) => void;
/**
* A CloudEvent function handler.
* @public
*/
export declare interface CloudEventFunction {
(cloudEvent: CloudEventsContext): any;
}
/**
* A CloudEvent function handler with callback.
* @public
*/
export declare interface CloudEventFunctionWithCallback {
(cloudEvent: CloudEventsContext, callback: Function): any;
}
/**
* The CloudEvents v1.0 context attributes.
* {@link https://github.com/cloudevents/spec/blob/v1.0.1/spec.md#context-attributes}
* @public
*/
export declare interface CloudEventsContext {
/**
* ID of the event.
*/
id: string;
/**
* The event producer.
*/
source: string;
/**
* The version of the CloudEvents specification which the event uses.
*/
specversion: string;
/**
* Type of occurrence which has happened.
*/
type: string;
/**
* Timestamp of when the event happened.
*/
time?: string;
/**
* Describes the subject of the event in the context of the event producer.
*/
subject?: string;
/**
* A link to the schema that the event data adheres to.
*/
dataschema?: string;
/**
* Content type of the event data.
*/
datacontenttype?: string;
/**
* The traceparent string, containing a trace version, trace ID, span ID, and trace options.
* @see https://github.com/cloudevents/spec/blob/master/extensions/distributed-tracing.md
*/
traceparent?: string;
/**
* The event payload.
*/
data?: any;
}
/**
* The Cloud Functions context object for the event.
* {@link https://cloud.google.com/functions/docs/writing/background#function_parameters}
* @public
*/
export declare 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 declare type Context = CloudFunctionsContext | CloudEventsContext;
/**
* A data object used for legacy event functions.
* @public
*/
export declare interface Data {
data: object;
}
/**
* A legacy event function handler.
* @public
*/
export declare interface EventFunction {
(data: {}, context: Context): any;
}
/**
* A legacy event function handler with callback.
* @public
*/
export declare interface EventFunctionWithCallback {
(data: {}, context: Context, callback: Function): any;
}
/**
* A function handler.
* @public
*/
export declare type HandlerFunction = HttpFunction | EventFunction | EventFunctionWithCallback | CloudEventFunction | CloudEventFunctionWithCallback;
/**
* Register a function that responds to HTTP requests.
* @param functionName - the name of the function
* @param handler - the function to invoke when handling HTTP requests
* @public
*/
export declare const http: (functionName: string, handler: HttpFunction) => void;
/**
* A HTTP function handler.
* @public
*/
export declare interface HttpFunction {
(req: Request_2, res: Response_2): any;
}
/**
* A legacy event function context.
* @public
*/
export declare type LegacyCloudFunctionsContext = CloudFunctionsContext | Data;
/**
* A legacy event.
* @public
*/
export declare interface LegacyEvent {
data: {
[key: string]: any;
};
context: CloudFunctionsContext;
}
/**
* @public
*/
declare interface Request_2 extends express.Request {
/**
* A buffer which provides access to the request's raw HTTP body.
*/
rawBody?: Buffer;
}
export { Request_2 as Request }
/**
* @public
*/
declare type Response_2 = express.Response;
export { Response_2 as Response }
export { }