forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
restful.js.d.ts
242 lines (227 loc) · 7.68 KB
/
restful.js.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
// Type definitions for restful.js 0.6.2
// Project: https://github.com/marmelab/restful.js
// Definitions by: Qubo <https://github.com/tkqubo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "restful.js" {
export interface Headers {
[key: string]: any
}
export interface Api extends Endpoint<Api> {
all(name: string): CollectionEndpoint;
allUrl(name: string, url: string): CollectionEndpoint;
one(name: string, id: any): MemberEndpoint;
oneUrl(name: string, url: string): MemberEndpoint;
protocol(protocol: string): Api;
protocol(): string;
baseUrl(protocol: string): Api;
baseUrl(): string;
port(port: number): Api;
port(): number;
prefixUrl(prefix: string): Api;
prefixUrl(): string;
customUrl(url: string): Api;
customUrl(): string;
}
export interface MemberEndpoint extends Endpoint<MemberEndpoint> {
/**
* Target a child collection name.
* @param name
*/
all(name: string): CollectionEndpoint;
allUrl(name: string, url: string): CollectionEndpoint;
/**
* Target a child member in a collection name.
* @param name
* @param id
*/
one(name: string, id: any): MemberEndpoint;
oneUrl(name: string, url: string): MemberEndpoint;
/**
* Get a member. Returns a promise with an entity.
* @param params
* @param headers
*/
get<T>(params?: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Update a member. Returns a promise with the response.
* @param data
* @param headers
*/
put<T>(data: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Delete a member. Returns a promise with the response.
* @param data
* @param headers
*/
delete<T>(data?: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Patch a member. Returns a promise with the response.
* @param data
* @param headers
*/
patch<T>(data: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Perform a HEAD request on a member. Returns a promise with the response.
* @param headers
*/
head<T>(headers?: any): Promise<MemberResponse<T>>;
customUrl(url: string): MemberEndpoint;
customUrl(): string;
}
export interface CollectionEndpoint extends Endpoint<CollectionEndpoint> {
/**
* Get a member in a collection. Returns a promise with an entity.
* @param id
*/
get<T>(id: any, params?: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Get a full collection. Returns a promise with an array of entities.
*/
getAll<T>(params?: any, headers?: Headers): Promise<CollectionResponse<T>>;
/**
* Create a member in a collection. Returns a promise with the response.
*/
post<T>(data: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Update a member in a collection. Returns a promise with the response.
* @param id
* @param data
* @param headers
*/
put<T>(id: any, data: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Delete a member in a collection. Returns a promise with the response.
* @param id
* @param data
* @param headers
*/
delete<T>(id: any, data?: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Patch a member in a collection. Returns a promise with the response.
* @param id
* @param data
* @param headers
*/
patch<T>(id: any, data: any, headers?: Headers): Promise<MemberResponse<T>>;
/**
* Perform a HEAD request on a member in a collection. Returns a promise with the response.
* @param id
* @param headers
*/
head<T>(id: any, headers?: Headers): Promise<MemberResponse<T>>;
}
export interface Endpoint<Self> {
/**
* Get the url.
*/
url(): string;
/**
* Add a response interceptor. You can only alter data and headers.
*/
addResponseInterceptor(interceptor: ResponseInterceptor): Self;
responseInterceptors(): ResponseInterceptor[];
/**
* Add a request interceptor.
*/
addRequestInterceptor(interceptor: RequestInterceptor): Self;
requestInterceptors(): RequestInterceptor[];
/**
* Add a full response interceptor. You can alter data and headers.
*/
addFullResponseInterceptor(interceptor: ResponseInterceptor): Self;
fullResponseInterceptors(): ResponseInterceptor[];
/**
* Add a full request interceptor. You can alter params, headers, data, method and url.
*/
addFullRequestInterceptor(interceptor: FullRequestInterceptor): Self;
fullRequestInterceptors(): FullRequestInterceptor[];
/**
* Add a header.
* @param name
* @param value
*/
header(name: string, value: any): Self;
headers(): Headers;
}
export interface MemberResponse<T> extends ResponseBase {
(): {
data: T;
headers: Headers;
status: number;
statusText: string;
}
body(): ResponseBody<T>;
}
export interface CollectionResponse<T> extends ResponseBase {
(): {
data: T[];
headers: Headers;
status: number;
statusText: string;
}
body(): ResponseBody<T>[];
}
export interface ResponseBase {
status(): number;
headers(): Headers;
config(): any;
}
export interface ResponseBody<T> {
/**
* Get the JS object unserialized from the response body (which must be in JSON)
*/
data(): T;
(): T;
/**
* Query a collection child of the entity.
* @param entity
*/
all(entity: string): CollectionEndpoint;
/**
* Query a member child of the entity.
* @param entity
* @param id
*/
one(entity: string, id: any): MemberEndpoint;
/**
* Update the member link to the entity. Returns a promise with the response.
* @param headers
*/
save(headers?: Headers): void;
/**
* Delete the member link to the entity. Returns a promise with the response.
*/
remove(headers?: Headers): void;
/**
* Get the entity url.
*/
url(): string;
/**
* Get the id of the entity.
*/
id(): any;
}
export interface RequestInterceptor {
(data: any, headers: Headers, method: string, url: string): any;
}
export interface FullRequestInterceptor {
(params: any, headers: Headers, data: any, method: string, url: string): FullRequestInterceptorReturnValue;
}
export interface FullRequestInterceptorReturnValue {
params?: any;
headers?: Headers;
data?: any;
method?: string;
url?: string;
}
export interface ResponseInterceptor {
(data: any, headers: Headers, method: string, url: string): ResponseInterceptorReturnValue;
}
export interface ResponseInterceptorReturnValue {
headers?: Headers;
data?: any;
method?: string;
url?: string;
}
export default function restful(endpoint: string): Api;
}