forked from Automattic/monk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
301 lines (290 loc) · 8.71 KB
/
index.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
declare module 'monk' {
export class IMonkManager {
readonly _state: 'closed' | 'opening' | 'open'
readonly on: (event: string, handler: (event: any) => any) => void
readonly addListener: (event: string, handler: (event: any) => any) => void
readonly once: (event: string, handler: (event: any) => any) => void
readonly removeListener: (
event: string,
handler: (event: any) => any
) => void
readonly close: () => Promise<void>
readonly listCollections: (query?: Object) => Array<ICollection>
get<T = any>(name: string, options?: Object): ICollection<T>
create<T = any>(
name: string,
creationOption?: Object,
options?: Object
): ICollection<T>
readonly setDefaultCollectionOptions: (collectionOptions?: Object) => void
readonly addMiddleware: (middleware: TMiddleware) => void
}
export type TMiddleware = (
{
collection,
monkInstance,
}: { collection: ICollection; monkInstance: IMonkManager }
) => (
next: (args: Object, method: string) => Promise<any>
) => (args: Object, method: string) => Promise<any>
type TQuery = string | Object
type TFields = string | Array<string>
export class ICollection<T = any> {
readonly manager: IMonkManager
readonly name: string
options: Object
readonly middlewares: Array<TMiddleware>
aggregate<U = any>(stages: Array<any>, options?: Object): Promise<U>
aggregate<U = any>(stages: Array<any>, options?: Object, callback?: (err: Error | null, data: U) => void): void
bulkWrite<U = any>(operations: Array<any>, options?: Object): Promise<U>
bulkWrite<U = any>(operations: Array<any>, options?: Object, callback?: (err: Error | null, data: U) => void): void
count(query?: TQuery, options?: Object): Promise<number>
count(query?: TQuery, options?: Object, callback?: (err: Error | null, data: number) => void): void
createIndex(
fields?: TFields | { [key: string]: 1 | -1 },
options?: Object
): Promise<string>
createIndex(
fields?: TFields | { [key: string]: 1 | -1 },
options?: Object,
callback?: (err: Error | null, data: string) => void
): void
distinct(field: string, query?: TQuery, options?: Object): Promise<number>
distinct(field: string, query?: TQuery, options?: Object, callback?: (err: Error | null, data: number) => void): void
drop(): Promise<'ns not found' | true>
drop(callback?: (err: Error | null, data: 'ns not found' | true) => void): void
dropIndex(
fields?: TFields,
options?: Object
): Promise<{
nIndexesWas: number
ok: 1 | 0
}>
dropIndex(
fields?: TFields,
options?: Object,
callback?: (err: Error | null, data: {
nIndexesWas: number
ok: 1 | 0
}) => void
): void
dropIndexes(): Promise<{
nIndexesWas: number
msg?: string
ok: 1 | 0
}>
dropIndexes(callback?: (err: Error | null, data: {
nIndexesWas: number
msg?: string
ok: 1 | 0
}) => void): void
find<U = T>(
query?: TQuery,
options?: Object
): Promise<U[]> & {
readonly each: (
record: U,
cursor: {
readonly close: () => void
readonly resume: () => void
readonly pause: () => void
}
) => any
}
find<U = T>(
query?: TQuery,
options?: Object,
callback?: (err: Error | null, data: U[] & {
readonly each: (
record: U,
cursor: {
readonly close: () => void
readonly resume: () => void
readonly pause: () => void
}
) => any
}) => void
): void
findOne<U = T>(query?: TQuery, options?: Object): Promise<U | undefined>
findOne<U = T>(query?: TQuery, options?: Object, callback?: (err: Error | null, data: U | undefined) => void): void
findOneAndDelete<U = T>(
query?: TQuery,
options?: Object
): Promise<U | undefined>
findOneAndDelete<U = T>(
query?: TQuery,
options?: Object,
callback?: (err: Error | null, data: U | undefined) => void
): void
findOneAndUpdate<U = T>(
query: TQuery,
update: Object,
options?: Object
): Promise<U | undefined>
findOneAndUpdate<U = T>(
query: TQuery,
update: Object,
options?: Object,
callback?: (err: Error | null, data: U) => void
): void;
geoHaystackSearch<U = T>(
x: number,
y: number,
options: Object
): Promise<U[]>
geoHaystackSearch<U = T>(
x: number,
y: number,
options: Object,
callback?: (err: Error | null, data: U[]) => void
): void
group<U = any>(
keys: any,
condition: any,
initial: any,
reduce: any,
finalize: any,
command: any,
options?: Object
): Promise<any>
group<U = any>(
keys: any,
condition: any,
initial: any,
reduce: any,
finalize: any,
command: any,
options?: Object,
callback?: (err: Error | null, data: any) => void
): void
indexes(): Promise<
{
[index: string]: [string, 1 | -1][]
}[]
>
indexes(callback?: (err: Error | null, data: {
[index: string]: [string, 1 | -1][]
}[]) => void): void
insert<U = T>(data: Object | Array<Object>, options?: Object): Promise<U>
insert<U = T>(data: Object | Array<Object>, options?: Object, callback?: (err: Error | null, data: U) => void): void
mapReduce(
map: () => any,
reduce: (key: string, values: Array<any>) => any,
options: Object
): Promise<any>
mapReduce(
map: () => any,
reduce: (key: string, values: Array<any>) => any,
options: Object,
callback?: (err: Error | null, data: any) => void
): void
remove(query?: TQuery, options?: Object): Promise<{
deletedCount: number,
result: {
n: number,
ok: 1 | 0
}
}>
remove(query?: TQuery, options?: Object, callback?: (err: Error | null, data: {
deletedCount: number,
result: {
n: number,
ok: 1 | 0
}
}) => void): void
stats(options?: Object): Promise<{
ns: string,
count: number,
size: number,
avgObjSize: number,
storageSize: number,
capped: boolean,
wiredTiger: any,
nindexes: number,
indexDetails: {
[index: string]: any
},
totalIndexSize: number,
indexSizes: {
[index: string]: number
},
ok: 1 | 0
}>
stats(options?: Object, callback?: (err: Error | null, data: {
ns: string,
count: number,
size: number,
avgObjSize: number,
storageSize: number,
capped: boolean,
wiredTiger: any,
nindexes: number,
indexDetails: {
[index: string]: any
},
totalIndexSize: number,
indexSizes: {
[index: string]: number
},
ok: 1 | 0
}) => void): void
update(query: TQuery, update: Object, options?: Object): Promise<{
ok: 1 | 0,
nModified: number,
n: number
}>
update(query: TQuery, update: Object, options?: Object, callback?: (err: Error | null, data: {
ok: 1 | 0,
nModified: number,
n: number
}) => void): void
}
export interface IObjectID {
readonly toHexString: () => string
readonly toString: () => string
}
export function id(hexstring: string): IObjectID // returns ObjectId
export function id(obj: IObjectID): IObjectID // returns ObjectId
export function id(): IObjectID // returns new generated ObjectId
export function cast(obj?: Object | Array<any> | any): any
export default function (
database: string | Array<string>,
options?: {
collectionOptions?: Object
poolSize?: number
ssl?: boolean
sslValidate?: boolean
sslCA?: Array<string | Buffer>
sslCert?: string | Buffer
sslKey?: string | Buffer
sslPass?: string | Buffer
autoReconnect?: boolean
noDelay?: boolean
keepAlive?: number
connectTimeoutMS?: number
socketTimeoutMS?: number
reconnectTries?: number
reconnectInterval?: number
ha?: boolean
haInterval?: number
replicaSet?: string
secondaryAcceptableLatencyMS?: number
acceptableLatencyMS?: number
connectWithNoPrimary?: boolean
authSource?: string
w?: string | number
wtimeout?: number
j?: boolean
forceServerObjectId?: boolean
serializeFunctions?: boolean
ignoreUndefined?: boolean
raw?: boolean
promoteLongs?: boolean
bufferMaxEntries?: number
readPreference?: Object | null
pkFactory?: Object | null
promiseLibrary?: Object | null
readConcern?: Object | null
}
): Promise<IMonkManager> & IMonkManager
}