asfur 1.0.68 → 1.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +789 -33
- package/dist/index.js +2 -2
- package/dist/types.d.ts +234 -81
- package/dist/types.js +22 -22
- package/index.ts +2 -2
- package/package.json +1 -1
- package/types.ts +24 -22
package/dist/index.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ export declare const MongoDataSchema: Schema<any, import("mongoose").Model<any,
|
|
|
34
34
|
virtuals: true;
|
|
35
35
|
};
|
|
36
36
|
}, {
|
|
37
|
+
timestamp: number;
|
|
37
38
|
created_at: number;
|
|
38
39
|
updated_at: number;
|
|
39
|
-
timestamp: number;
|
|
40
40
|
text_geo: string[];
|
|
41
41
|
platform?: string | null | undefined;
|
|
42
42
|
source_id?: string | null | undefined;
|
|
@@ -56,9 +56,9 @@ export declare const MongoDataSchema: Schema<any, import("mongoose").Model<any,
|
|
|
56
56
|
author_username?: string | null | undefined;
|
|
57
57
|
author_id?: string | null | undefined;
|
|
58
58
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
59
|
+
timestamp: number;
|
|
59
60
|
created_at: number;
|
|
60
61
|
updated_at: number;
|
|
61
|
-
timestamp: number;
|
|
62
62
|
text_geo: string[];
|
|
63
63
|
platform?: string | null | undefined;
|
|
64
64
|
source_id?: string | null | undefined;
|
|
@@ -78,9 +78,9 @@ export declare const MongoDataSchema: Schema<any, import("mongoose").Model<any,
|
|
|
78
78
|
author_username?: string | null | undefined;
|
|
79
79
|
author_id?: string | null | undefined;
|
|
80
80
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
81
|
+
timestamp: number;
|
|
81
82
|
created_at: number;
|
|
82
83
|
updated_at: number;
|
|
83
|
-
timestamp: number;
|
|
84
84
|
text_geo: string[];
|
|
85
85
|
platform?: string | null | undefined;
|
|
86
86
|
source_id?: string | null | undefined;
|
|
@@ -141,57 +141,57 @@ export declare const MongoSourceSchema: Schema<any, import("mongoose").Model<any
|
|
|
141
141
|
virtuals: true;
|
|
142
142
|
};
|
|
143
143
|
}, {
|
|
144
|
+
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
145
|
+
subscribers: string[];
|
|
144
146
|
title: string;
|
|
147
|
+
created_at: number;
|
|
148
|
+
updated_at: number;
|
|
145
149
|
platform: string;
|
|
146
|
-
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
147
150
|
source_id: any;
|
|
148
151
|
source_public_id: any;
|
|
149
152
|
source_name: string;
|
|
150
153
|
tags: string[];
|
|
151
154
|
is_public: boolean;
|
|
152
155
|
metadata: any;
|
|
153
|
-
|
|
154
|
-
updated_at: number;
|
|
155
|
-
subscribers: string[];
|
|
156
|
+
description?: string | null | undefined;
|
|
156
157
|
last_text_id?: number | null | undefined;
|
|
157
158
|
url?: string | null | undefined;
|
|
158
|
-
description?: string | null | undefined;
|
|
159
159
|
source_geo?: string | null | undefined;
|
|
160
160
|
source_region?: string | null | undefined;
|
|
161
161
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
162
|
+
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
163
|
+
subscribers: string[];
|
|
162
164
|
title: string;
|
|
165
|
+
created_at: number;
|
|
166
|
+
updated_at: number;
|
|
163
167
|
platform: string;
|
|
164
|
-
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
165
168
|
source_id: any;
|
|
166
169
|
source_public_id: any;
|
|
167
170
|
source_name: string;
|
|
168
171
|
tags: string[];
|
|
169
172
|
is_public: boolean;
|
|
170
173
|
metadata: any;
|
|
171
|
-
|
|
172
|
-
updated_at: number;
|
|
173
|
-
subscribers: string[];
|
|
174
|
+
description?: string | null | undefined;
|
|
174
175
|
last_text_id?: number | null | undefined;
|
|
175
176
|
url?: string | null | undefined;
|
|
176
|
-
description?: string | null | undefined;
|
|
177
177
|
source_geo?: string | null | undefined;
|
|
178
178
|
source_region?: string | null | undefined;
|
|
179
179
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
180
|
+
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
181
|
+
subscribers: string[];
|
|
180
182
|
title: string;
|
|
183
|
+
created_at: number;
|
|
184
|
+
updated_at: number;
|
|
181
185
|
platform: string;
|
|
182
|
-
status: "approved" | "back_to_business" | "pending" | "inactive" | "in_review";
|
|
183
186
|
source_id: any;
|
|
184
187
|
source_public_id: any;
|
|
185
188
|
source_name: string;
|
|
186
189
|
tags: string[];
|
|
187
190
|
is_public: boolean;
|
|
188
191
|
metadata: any;
|
|
189
|
-
|
|
190
|
-
updated_at: number;
|
|
191
|
-
subscribers: string[];
|
|
192
|
+
description?: string | null | undefined;
|
|
192
193
|
last_text_id?: number | null | undefined;
|
|
193
194
|
url?: string | null | undefined;
|
|
194
|
-
description?: string | null | undefined;
|
|
195
195
|
source_geo?: string | null | undefined;
|
|
196
196
|
source_region?: string | null | undefined;
|
|
197
197
|
}> & {
|
|
@@ -208,25 +208,403 @@ export declare const MongoQuerySchema: Schema<any, import("mongoose").Model<any,
|
|
|
208
208
|
virtuals: true;
|
|
209
209
|
};
|
|
210
210
|
}, {
|
|
211
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
212
|
+
entries?: {} | null | undefined;
|
|
213
|
+
keys?: {} | null | undefined;
|
|
214
|
+
values?: {} | null | undefined;
|
|
215
|
+
create?: {} | null | undefined;
|
|
216
|
+
prototype?: {
|
|
217
|
+
toString: {} | null;
|
|
218
|
+
toLocaleString: {} | null;
|
|
219
|
+
valueOf: {} | null;
|
|
220
|
+
constructor: {
|
|
221
|
+
length?: unknown;
|
|
222
|
+
toString: {} | null;
|
|
223
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
224
|
+
prototype?: unknown;
|
|
225
|
+
name?: unknown;
|
|
226
|
+
apply?: {} | null | undefined;
|
|
227
|
+
call?: {} | null | undefined;
|
|
228
|
+
bind?: {} | null | undefined;
|
|
229
|
+
arguments?: unknown;
|
|
230
|
+
caller?: any | null | undefined;
|
|
231
|
+
} | null;
|
|
232
|
+
hasOwnProperty: {} | null;
|
|
233
|
+
isPrototypeOf: {} | null;
|
|
234
|
+
propertyIsEnumerable: {} | null;
|
|
235
|
+
} | null | undefined;
|
|
236
|
+
getPrototypeOf?: {} | null | undefined;
|
|
237
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
238
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
239
|
+
defineProperty?: {} | null | undefined;
|
|
240
|
+
defineProperties?: {} | null | undefined;
|
|
241
|
+
seal?: {} | null | undefined;
|
|
242
|
+
freeze?: {} | null | undefined;
|
|
243
|
+
preventExtensions?: {} | null | undefined;
|
|
244
|
+
isSealed?: {} | null | undefined;
|
|
245
|
+
isFrozen?: {} | null | undefined;
|
|
246
|
+
isExtensible?: {} | null | undefined;
|
|
247
|
+
assign?: {} | null | undefined;
|
|
248
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
249
|
+
is?: {} | null | undefined;
|
|
250
|
+
setPrototypeOf?: {} | null | undefined;
|
|
251
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
252
|
+
fromEntries?: {} | null | undefined;
|
|
253
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
254
|
+
entries?: {} | null | undefined;
|
|
255
|
+
keys?: {} | null | undefined;
|
|
256
|
+
values?: {} | null | undefined;
|
|
257
|
+
create?: {} | null | undefined;
|
|
258
|
+
prototype?: {
|
|
259
|
+
toString: {} | null;
|
|
260
|
+
toLocaleString: {} | null;
|
|
261
|
+
valueOf: {} | null;
|
|
262
|
+
constructor: {
|
|
263
|
+
length?: unknown;
|
|
264
|
+
toString: {} | null;
|
|
265
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
266
|
+
prototype?: unknown;
|
|
267
|
+
name?: unknown;
|
|
268
|
+
apply?: {} | null | undefined;
|
|
269
|
+
call?: {} | null | undefined;
|
|
270
|
+
bind?: {} | null | undefined;
|
|
271
|
+
arguments?: unknown;
|
|
272
|
+
caller?: any | null | undefined;
|
|
273
|
+
} | null;
|
|
274
|
+
hasOwnProperty: {} | null;
|
|
275
|
+
isPrototypeOf: {} | null;
|
|
276
|
+
propertyIsEnumerable: {} | null;
|
|
277
|
+
} | null | undefined;
|
|
278
|
+
getPrototypeOf?: {} | null | undefined;
|
|
279
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
280
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
281
|
+
defineProperty?: {} | null | undefined;
|
|
282
|
+
defineProperties?: {} | null | undefined;
|
|
283
|
+
seal?: {} | null | undefined;
|
|
284
|
+
freeze?: {} | null | undefined;
|
|
285
|
+
preventExtensions?: {} | null | undefined;
|
|
286
|
+
isSealed?: {} | null | undefined;
|
|
287
|
+
isFrozen?: {} | null | undefined;
|
|
288
|
+
isExtensible?: {} | null | undefined;
|
|
289
|
+
assign?: {} | null | undefined;
|
|
290
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
291
|
+
is?: {} | null | undefined;
|
|
292
|
+
setPrototypeOf?: {} | null | undefined;
|
|
293
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
294
|
+
fromEntries?: {} | null | undefined;
|
|
295
|
+
}> & {
|
|
296
|
+
entries?: {} | null | undefined;
|
|
297
|
+
keys?: {} | null | undefined;
|
|
298
|
+
values?: {} | null | undefined;
|
|
299
|
+
create?: {} | null | undefined;
|
|
300
|
+
prototype?: {
|
|
301
|
+
toString: {} | null;
|
|
302
|
+
toLocaleString: {} | null;
|
|
303
|
+
valueOf: {} | null;
|
|
304
|
+
constructor: {
|
|
305
|
+
length?: unknown;
|
|
306
|
+
toString: {} | null;
|
|
307
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
308
|
+
prototype?: unknown;
|
|
309
|
+
name?: unknown;
|
|
310
|
+
apply?: {} | null | undefined;
|
|
311
|
+
call?: {} | null | undefined;
|
|
312
|
+
bind?: {} | null | undefined;
|
|
313
|
+
arguments?: unknown;
|
|
314
|
+
caller?: any | null | undefined;
|
|
315
|
+
} | null;
|
|
316
|
+
hasOwnProperty: {} | null;
|
|
317
|
+
isPrototypeOf: {} | null;
|
|
318
|
+
propertyIsEnumerable: {} | null;
|
|
319
|
+
} | null | undefined;
|
|
320
|
+
getPrototypeOf?: {} | null | undefined;
|
|
321
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
322
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
323
|
+
defineProperty?: {} | null | undefined;
|
|
324
|
+
defineProperties?: {} | null | undefined;
|
|
325
|
+
seal?: {} | null | undefined;
|
|
326
|
+
freeze?: {} | null | undefined;
|
|
327
|
+
preventExtensions?: {} | null | undefined;
|
|
328
|
+
isSealed?: {} | null | undefined;
|
|
329
|
+
isFrozen?: {} | null | undefined;
|
|
330
|
+
isExtensible?: {} | null | undefined;
|
|
331
|
+
assign?: {} | null | undefined;
|
|
332
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
333
|
+
is?: {} | null | undefined;
|
|
334
|
+
setPrototypeOf?: {} | null | undefined;
|
|
335
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
336
|
+
fromEntries?: {} | null | undefined;
|
|
337
|
+
}>;
|
|
211
338
|
user_id: string;
|
|
212
339
|
sources: string[];
|
|
213
|
-
geos: string[];
|
|
214
340
|
time_range: any;
|
|
215
341
|
title?: string | null | undefined;
|
|
216
342
|
query?: string | null | undefined;
|
|
217
343
|
user_instructions?: string | null | undefined;
|
|
218
344
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
345
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
346
|
+
entries?: {} | null | undefined;
|
|
347
|
+
keys?: {} | null | undefined;
|
|
348
|
+
values?: {} | null | undefined;
|
|
349
|
+
create?: {} | null | undefined;
|
|
350
|
+
prototype?: {
|
|
351
|
+
toString: {} | null;
|
|
352
|
+
toLocaleString: {} | null;
|
|
353
|
+
valueOf: {} | null;
|
|
354
|
+
constructor: {
|
|
355
|
+
length?: unknown;
|
|
356
|
+
toString: {} | null;
|
|
357
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
358
|
+
prototype?: unknown;
|
|
359
|
+
name?: unknown;
|
|
360
|
+
apply?: {} | null | undefined;
|
|
361
|
+
call?: {} | null | undefined;
|
|
362
|
+
bind?: {} | null | undefined;
|
|
363
|
+
arguments?: unknown;
|
|
364
|
+
caller?: any | null | undefined;
|
|
365
|
+
} | null;
|
|
366
|
+
hasOwnProperty: {} | null;
|
|
367
|
+
isPrototypeOf: {} | null;
|
|
368
|
+
propertyIsEnumerable: {} | null;
|
|
369
|
+
} | null | undefined;
|
|
370
|
+
getPrototypeOf?: {} | null | undefined;
|
|
371
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
372
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
373
|
+
defineProperty?: {} | null | undefined;
|
|
374
|
+
defineProperties?: {} | null | undefined;
|
|
375
|
+
seal?: {} | null | undefined;
|
|
376
|
+
freeze?: {} | null | undefined;
|
|
377
|
+
preventExtensions?: {} | null | undefined;
|
|
378
|
+
isSealed?: {} | null | undefined;
|
|
379
|
+
isFrozen?: {} | null | undefined;
|
|
380
|
+
isExtensible?: {} | null | undefined;
|
|
381
|
+
assign?: {} | null | undefined;
|
|
382
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
383
|
+
is?: {} | null | undefined;
|
|
384
|
+
setPrototypeOf?: {} | null | undefined;
|
|
385
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
386
|
+
fromEntries?: {} | null | undefined;
|
|
387
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
388
|
+
entries?: {} | null | undefined;
|
|
389
|
+
keys?: {} | null | undefined;
|
|
390
|
+
values?: {} | null | undefined;
|
|
391
|
+
create?: {} | null | undefined;
|
|
392
|
+
prototype?: {
|
|
393
|
+
toString: {} | null;
|
|
394
|
+
toLocaleString: {} | null;
|
|
395
|
+
valueOf: {} | null;
|
|
396
|
+
constructor: {
|
|
397
|
+
length?: unknown;
|
|
398
|
+
toString: {} | null;
|
|
399
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
400
|
+
prototype?: unknown;
|
|
401
|
+
name?: unknown;
|
|
402
|
+
apply?: {} | null | undefined;
|
|
403
|
+
call?: {} | null | undefined;
|
|
404
|
+
bind?: {} | null | undefined;
|
|
405
|
+
arguments?: unknown;
|
|
406
|
+
caller?: any | null | undefined;
|
|
407
|
+
} | null;
|
|
408
|
+
hasOwnProperty: {} | null;
|
|
409
|
+
isPrototypeOf: {} | null;
|
|
410
|
+
propertyIsEnumerable: {} | null;
|
|
411
|
+
} | null | undefined;
|
|
412
|
+
getPrototypeOf?: {} | null | undefined;
|
|
413
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
414
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
415
|
+
defineProperty?: {} | null | undefined;
|
|
416
|
+
defineProperties?: {} | null | undefined;
|
|
417
|
+
seal?: {} | null | undefined;
|
|
418
|
+
freeze?: {} | null | undefined;
|
|
419
|
+
preventExtensions?: {} | null | undefined;
|
|
420
|
+
isSealed?: {} | null | undefined;
|
|
421
|
+
isFrozen?: {} | null | undefined;
|
|
422
|
+
isExtensible?: {} | null | undefined;
|
|
423
|
+
assign?: {} | null | undefined;
|
|
424
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
425
|
+
is?: {} | null | undefined;
|
|
426
|
+
setPrototypeOf?: {} | null | undefined;
|
|
427
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
428
|
+
fromEntries?: {} | null | undefined;
|
|
429
|
+
}> & {
|
|
430
|
+
entries?: {} | null | undefined;
|
|
431
|
+
keys?: {} | null | undefined;
|
|
432
|
+
values?: {} | null | undefined;
|
|
433
|
+
create?: {} | null | undefined;
|
|
434
|
+
prototype?: {
|
|
435
|
+
toString: {} | null;
|
|
436
|
+
toLocaleString: {} | null;
|
|
437
|
+
valueOf: {} | null;
|
|
438
|
+
constructor: {
|
|
439
|
+
length?: unknown;
|
|
440
|
+
toString: {} | null;
|
|
441
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
442
|
+
prototype?: unknown;
|
|
443
|
+
name?: unknown;
|
|
444
|
+
apply?: {} | null | undefined;
|
|
445
|
+
call?: {} | null | undefined;
|
|
446
|
+
bind?: {} | null | undefined;
|
|
447
|
+
arguments?: unknown;
|
|
448
|
+
caller?: any | null | undefined;
|
|
449
|
+
} | null;
|
|
450
|
+
hasOwnProperty: {} | null;
|
|
451
|
+
isPrototypeOf: {} | null;
|
|
452
|
+
propertyIsEnumerable: {} | null;
|
|
453
|
+
} | null | undefined;
|
|
454
|
+
getPrototypeOf?: {} | null | undefined;
|
|
455
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
456
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
457
|
+
defineProperty?: {} | null | undefined;
|
|
458
|
+
defineProperties?: {} | null | undefined;
|
|
459
|
+
seal?: {} | null | undefined;
|
|
460
|
+
freeze?: {} | null | undefined;
|
|
461
|
+
preventExtensions?: {} | null | undefined;
|
|
462
|
+
isSealed?: {} | null | undefined;
|
|
463
|
+
isFrozen?: {} | null | undefined;
|
|
464
|
+
isExtensible?: {} | null | undefined;
|
|
465
|
+
assign?: {} | null | undefined;
|
|
466
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
467
|
+
is?: {} | null | undefined;
|
|
468
|
+
setPrototypeOf?: {} | null | undefined;
|
|
469
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
470
|
+
fromEntries?: {} | null | undefined;
|
|
471
|
+
}>;
|
|
219
472
|
user_id: string;
|
|
220
473
|
sources: string[];
|
|
221
|
-
geos: string[];
|
|
222
474
|
time_range: any;
|
|
223
475
|
title?: string | null | undefined;
|
|
224
476
|
query?: string | null | undefined;
|
|
225
477
|
user_instructions?: string | null | undefined;
|
|
226
478
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
479
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
480
|
+
entries?: {} | null | undefined;
|
|
481
|
+
keys?: {} | null | undefined;
|
|
482
|
+
values?: {} | null | undefined;
|
|
483
|
+
create?: {} | null | undefined;
|
|
484
|
+
prototype?: {
|
|
485
|
+
toString: {} | null;
|
|
486
|
+
toLocaleString: {} | null;
|
|
487
|
+
valueOf: {} | null;
|
|
488
|
+
constructor: {
|
|
489
|
+
length?: unknown;
|
|
490
|
+
toString: {} | null;
|
|
491
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
492
|
+
prototype?: unknown;
|
|
493
|
+
name?: unknown;
|
|
494
|
+
apply?: {} | null | undefined;
|
|
495
|
+
call?: {} | null | undefined;
|
|
496
|
+
bind?: {} | null | undefined;
|
|
497
|
+
arguments?: unknown;
|
|
498
|
+
caller?: any | null | undefined;
|
|
499
|
+
} | null;
|
|
500
|
+
hasOwnProperty: {} | null;
|
|
501
|
+
isPrototypeOf: {} | null;
|
|
502
|
+
propertyIsEnumerable: {} | null;
|
|
503
|
+
} | null | undefined;
|
|
504
|
+
getPrototypeOf?: {} | null | undefined;
|
|
505
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
506
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
507
|
+
defineProperty?: {} | null | undefined;
|
|
508
|
+
defineProperties?: {} | null | undefined;
|
|
509
|
+
seal?: {} | null | undefined;
|
|
510
|
+
freeze?: {} | null | undefined;
|
|
511
|
+
preventExtensions?: {} | null | undefined;
|
|
512
|
+
isSealed?: {} | null | undefined;
|
|
513
|
+
isFrozen?: {} | null | undefined;
|
|
514
|
+
isExtensible?: {} | null | undefined;
|
|
515
|
+
assign?: {} | null | undefined;
|
|
516
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
517
|
+
is?: {} | null | undefined;
|
|
518
|
+
setPrototypeOf?: {} | null | undefined;
|
|
519
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
520
|
+
fromEntries?: {} | null | undefined;
|
|
521
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
522
|
+
entries?: {} | null | undefined;
|
|
523
|
+
keys?: {} | null | undefined;
|
|
524
|
+
values?: {} | null | undefined;
|
|
525
|
+
create?: {} | null | undefined;
|
|
526
|
+
prototype?: {
|
|
527
|
+
toString: {} | null;
|
|
528
|
+
toLocaleString: {} | null;
|
|
529
|
+
valueOf: {} | null;
|
|
530
|
+
constructor: {
|
|
531
|
+
length?: unknown;
|
|
532
|
+
toString: {} | null;
|
|
533
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
534
|
+
prototype?: unknown;
|
|
535
|
+
name?: unknown;
|
|
536
|
+
apply?: {} | null | undefined;
|
|
537
|
+
call?: {} | null | undefined;
|
|
538
|
+
bind?: {} | null | undefined;
|
|
539
|
+
arguments?: unknown;
|
|
540
|
+
caller?: any | null | undefined;
|
|
541
|
+
} | null;
|
|
542
|
+
hasOwnProperty: {} | null;
|
|
543
|
+
isPrototypeOf: {} | null;
|
|
544
|
+
propertyIsEnumerable: {} | null;
|
|
545
|
+
} | null | undefined;
|
|
546
|
+
getPrototypeOf?: {} | null | undefined;
|
|
547
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
548
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
549
|
+
defineProperty?: {} | null | undefined;
|
|
550
|
+
defineProperties?: {} | null | undefined;
|
|
551
|
+
seal?: {} | null | undefined;
|
|
552
|
+
freeze?: {} | null | undefined;
|
|
553
|
+
preventExtensions?: {} | null | undefined;
|
|
554
|
+
isSealed?: {} | null | undefined;
|
|
555
|
+
isFrozen?: {} | null | undefined;
|
|
556
|
+
isExtensible?: {} | null | undefined;
|
|
557
|
+
assign?: {} | null | undefined;
|
|
558
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
559
|
+
is?: {} | null | undefined;
|
|
560
|
+
setPrototypeOf?: {} | null | undefined;
|
|
561
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
562
|
+
fromEntries?: {} | null | undefined;
|
|
563
|
+
}> & {
|
|
564
|
+
entries?: {} | null | undefined;
|
|
565
|
+
keys?: {} | null | undefined;
|
|
566
|
+
values?: {} | null | undefined;
|
|
567
|
+
create?: {} | null | undefined;
|
|
568
|
+
prototype?: {
|
|
569
|
+
toString: {} | null;
|
|
570
|
+
toLocaleString: {} | null;
|
|
571
|
+
valueOf: {} | null;
|
|
572
|
+
constructor: {
|
|
573
|
+
length?: unknown;
|
|
574
|
+
toString: {} | null;
|
|
575
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
576
|
+
prototype?: unknown;
|
|
577
|
+
name?: unknown;
|
|
578
|
+
apply?: {} | null | undefined;
|
|
579
|
+
call?: {} | null | undefined;
|
|
580
|
+
bind?: {} | null | undefined;
|
|
581
|
+
arguments?: unknown;
|
|
582
|
+
caller?: any | null | undefined;
|
|
583
|
+
} | null;
|
|
584
|
+
hasOwnProperty: {} | null;
|
|
585
|
+
isPrototypeOf: {} | null;
|
|
586
|
+
propertyIsEnumerable: {} | null;
|
|
587
|
+
} | null | undefined;
|
|
588
|
+
getPrototypeOf?: {} | null | undefined;
|
|
589
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
590
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
591
|
+
defineProperty?: {} | null | undefined;
|
|
592
|
+
defineProperties?: {} | null | undefined;
|
|
593
|
+
seal?: {} | null | undefined;
|
|
594
|
+
freeze?: {} | null | undefined;
|
|
595
|
+
preventExtensions?: {} | null | undefined;
|
|
596
|
+
isSealed?: {} | null | undefined;
|
|
597
|
+
isFrozen?: {} | null | undefined;
|
|
598
|
+
isExtensible?: {} | null | undefined;
|
|
599
|
+
assign?: {} | null | undefined;
|
|
600
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
601
|
+
is?: {} | null | undefined;
|
|
602
|
+
setPrototypeOf?: {} | null | undefined;
|
|
603
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
604
|
+
fromEntries?: {} | null | undefined;
|
|
605
|
+
}>;
|
|
227
606
|
user_id: string;
|
|
228
607
|
sources: string[];
|
|
229
|
-
geos: string[];
|
|
230
608
|
time_range: any;
|
|
231
609
|
title?: string | null | undefined;
|
|
232
610
|
query?: string | null | undefined;
|
|
@@ -246,11 +624,137 @@ export declare const MongoUserSettingsSchema: Schema<any, import("mongoose").Mod
|
|
|
246
624
|
};
|
|
247
625
|
}, {
|
|
248
626
|
status: "inactive" | "active";
|
|
627
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
628
|
+
entries?: {} | null | undefined;
|
|
629
|
+
keys?: {} | null | undefined;
|
|
630
|
+
values?: {} | null | undefined;
|
|
631
|
+
create?: {} | null | undefined;
|
|
632
|
+
prototype?: {
|
|
633
|
+
toString: {} | null;
|
|
634
|
+
toLocaleString: {} | null;
|
|
635
|
+
valueOf: {} | null;
|
|
636
|
+
constructor: {
|
|
637
|
+
length?: unknown;
|
|
638
|
+
toString: {} | null;
|
|
639
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
640
|
+
prototype?: unknown;
|
|
641
|
+
name?: unknown;
|
|
642
|
+
apply?: {} | null | undefined;
|
|
643
|
+
call?: {} | null | undefined;
|
|
644
|
+
bind?: {} | null | undefined;
|
|
645
|
+
arguments?: unknown;
|
|
646
|
+
caller?: any | null | undefined;
|
|
647
|
+
} | null;
|
|
648
|
+
hasOwnProperty: {} | null;
|
|
649
|
+
isPrototypeOf: {} | null;
|
|
650
|
+
propertyIsEnumerable: {} | null;
|
|
651
|
+
} | null | undefined;
|
|
652
|
+
getPrototypeOf?: {} | null | undefined;
|
|
653
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
654
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
655
|
+
defineProperty?: {} | null | undefined;
|
|
656
|
+
defineProperties?: {} | null | undefined;
|
|
657
|
+
seal?: {} | null | undefined;
|
|
658
|
+
freeze?: {} | null | undefined;
|
|
659
|
+
preventExtensions?: {} | null | undefined;
|
|
660
|
+
isSealed?: {} | null | undefined;
|
|
661
|
+
isFrozen?: {} | null | undefined;
|
|
662
|
+
isExtensible?: {} | null | undefined;
|
|
663
|
+
assign?: {} | null | undefined;
|
|
664
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
665
|
+
is?: {} | null | undefined;
|
|
666
|
+
setPrototypeOf?: {} | null | undefined;
|
|
667
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
668
|
+
fromEntries?: {} | null | undefined;
|
|
669
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
670
|
+
entries?: {} | null | undefined;
|
|
671
|
+
keys?: {} | null | undefined;
|
|
672
|
+
values?: {} | null | undefined;
|
|
673
|
+
create?: {} | null | undefined;
|
|
674
|
+
prototype?: {
|
|
675
|
+
toString: {} | null;
|
|
676
|
+
toLocaleString: {} | null;
|
|
677
|
+
valueOf: {} | null;
|
|
678
|
+
constructor: {
|
|
679
|
+
length?: unknown;
|
|
680
|
+
toString: {} | null;
|
|
681
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
682
|
+
prototype?: unknown;
|
|
683
|
+
name?: unknown;
|
|
684
|
+
apply?: {} | null | undefined;
|
|
685
|
+
call?: {} | null | undefined;
|
|
686
|
+
bind?: {} | null | undefined;
|
|
687
|
+
arguments?: unknown;
|
|
688
|
+
caller?: any | null | undefined;
|
|
689
|
+
} | null;
|
|
690
|
+
hasOwnProperty: {} | null;
|
|
691
|
+
isPrototypeOf: {} | null;
|
|
692
|
+
propertyIsEnumerable: {} | null;
|
|
693
|
+
} | null | undefined;
|
|
694
|
+
getPrototypeOf?: {} | null | undefined;
|
|
695
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
696
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
697
|
+
defineProperty?: {} | null | undefined;
|
|
698
|
+
defineProperties?: {} | null | undefined;
|
|
699
|
+
seal?: {} | null | undefined;
|
|
700
|
+
freeze?: {} | null | undefined;
|
|
701
|
+
preventExtensions?: {} | null | undefined;
|
|
702
|
+
isSealed?: {} | null | undefined;
|
|
703
|
+
isFrozen?: {} | null | undefined;
|
|
704
|
+
isExtensible?: {} | null | undefined;
|
|
705
|
+
assign?: {} | null | undefined;
|
|
706
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
707
|
+
is?: {} | null | undefined;
|
|
708
|
+
setPrototypeOf?: {} | null | undefined;
|
|
709
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
710
|
+
fromEntries?: {} | null | undefined;
|
|
711
|
+
}> & {
|
|
712
|
+
entries?: {} | null | undefined;
|
|
713
|
+
keys?: {} | null | undefined;
|
|
714
|
+
values?: {} | null | undefined;
|
|
715
|
+
create?: {} | null | undefined;
|
|
716
|
+
prototype?: {
|
|
717
|
+
toString: {} | null;
|
|
718
|
+
toLocaleString: {} | null;
|
|
719
|
+
valueOf: {} | null;
|
|
720
|
+
constructor: {
|
|
721
|
+
length?: unknown;
|
|
722
|
+
toString: {} | null;
|
|
723
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
724
|
+
prototype?: unknown;
|
|
725
|
+
name?: unknown;
|
|
726
|
+
apply?: {} | null | undefined;
|
|
727
|
+
call?: {} | null | undefined;
|
|
728
|
+
bind?: {} | null | undefined;
|
|
729
|
+
arguments?: unknown;
|
|
730
|
+
caller?: any | null | undefined;
|
|
731
|
+
} | null;
|
|
732
|
+
hasOwnProperty: {} | null;
|
|
733
|
+
isPrototypeOf: {} | null;
|
|
734
|
+
propertyIsEnumerable: {} | null;
|
|
735
|
+
} | null | undefined;
|
|
736
|
+
getPrototypeOf?: {} | null | undefined;
|
|
737
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
738
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
739
|
+
defineProperty?: {} | null | undefined;
|
|
740
|
+
defineProperties?: {} | null | undefined;
|
|
741
|
+
seal?: {} | null | undefined;
|
|
742
|
+
freeze?: {} | null | undefined;
|
|
743
|
+
preventExtensions?: {} | null | undefined;
|
|
744
|
+
isSealed?: {} | null | undefined;
|
|
745
|
+
isFrozen?: {} | null | undefined;
|
|
746
|
+
isExtensible?: {} | null | undefined;
|
|
747
|
+
assign?: {} | null | undefined;
|
|
748
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
749
|
+
is?: {} | null | undefined;
|
|
750
|
+
setPrototypeOf?: {} | null | undefined;
|
|
751
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
752
|
+
fromEntries?: {} | null | undefined;
|
|
753
|
+
}>;
|
|
249
754
|
created_at: NativeDate;
|
|
250
755
|
updated_at: NativeDate;
|
|
251
756
|
user_id: string;
|
|
252
757
|
sources: string[];
|
|
253
|
-
geos: string[];
|
|
254
758
|
has_jobs_access: boolean;
|
|
255
759
|
active_jobs_limit: number;
|
|
256
760
|
time_range?: any;
|
|
@@ -258,11 +762,137 @@ export declare const MongoUserSettingsSchema: Schema<any, import("mongoose").Mod
|
|
|
258
762
|
instructions?: string | null | undefined;
|
|
259
763
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
260
764
|
status: "inactive" | "active";
|
|
765
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
766
|
+
entries?: {} | null | undefined;
|
|
767
|
+
keys?: {} | null | undefined;
|
|
768
|
+
values?: {} | null | undefined;
|
|
769
|
+
create?: {} | null | undefined;
|
|
770
|
+
prototype?: {
|
|
771
|
+
toString: {} | null;
|
|
772
|
+
toLocaleString: {} | null;
|
|
773
|
+
valueOf: {} | null;
|
|
774
|
+
constructor: {
|
|
775
|
+
length?: unknown;
|
|
776
|
+
toString: {} | null;
|
|
777
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
778
|
+
prototype?: unknown;
|
|
779
|
+
name?: unknown;
|
|
780
|
+
apply?: {} | null | undefined;
|
|
781
|
+
call?: {} | null | undefined;
|
|
782
|
+
bind?: {} | null | undefined;
|
|
783
|
+
arguments?: unknown;
|
|
784
|
+
caller?: any | null | undefined;
|
|
785
|
+
} | null;
|
|
786
|
+
hasOwnProperty: {} | null;
|
|
787
|
+
isPrototypeOf: {} | null;
|
|
788
|
+
propertyIsEnumerable: {} | null;
|
|
789
|
+
} | null | undefined;
|
|
790
|
+
getPrototypeOf?: {} | null | undefined;
|
|
791
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
792
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
793
|
+
defineProperty?: {} | null | undefined;
|
|
794
|
+
defineProperties?: {} | null | undefined;
|
|
795
|
+
seal?: {} | null | undefined;
|
|
796
|
+
freeze?: {} | null | undefined;
|
|
797
|
+
preventExtensions?: {} | null | undefined;
|
|
798
|
+
isSealed?: {} | null | undefined;
|
|
799
|
+
isFrozen?: {} | null | undefined;
|
|
800
|
+
isExtensible?: {} | null | undefined;
|
|
801
|
+
assign?: {} | null | undefined;
|
|
802
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
803
|
+
is?: {} | null | undefined;
|
|
804
|
+
setPrototypeOf?: {} | null | undefined;
|
|
805
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
806
|
+
fromEntries?: {} | null | undefined;
|
|
807
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
808
|
+
entries?: {} | null | undefined;
|
|
809
|
+
keys?: {} | null | undefined;
|
|
810
|
+
values?: {} | null | undefined;
|
|
811
|
+
create?: {} | null | undefined;
|
|
812
|
+
prototype?: {
|
|
813
|
+
toString: {} | null;
|
|
814
|
+
toLocaleString: {} | null;
|
|
815
|
+
valueOf: {} | null;
|
|
816
|
+
constructor: {
|
|
817
|
+
length?: unknown;
|
|
818
|
+
toString: {} | null;
|
|
819
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
820
|
+
prototype?: unknown;
|
|
821
|
+
name?: unknown;
|
|
822
|
+
apply?: {} | null | undefined;
|
|
823
|
+
call?: {} | null | undefined;
|
|
824
|
+
bind?: {} | null | undefined;
|
|
825
|
+
arguments?: unknown;
|
|
826
|
+
caller?: any | null | undefined;
|
|
827
|
+
} | null;
|
|
828
|
+
hasOwnProperty: {} | null;
|
|
829
|
+
isPrototypeOf: {} | null;
|
|
830
|
+
propertyIsEnumerable: {} | null;
|
|
831
|
+
} | null | undefined;
|
|
832
|
+
getPrototypeOf?: {} | null | undefined;
|
|
833
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
834
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
835
|
+
defineProperty?: {} | null | undefined;
|
|
836
|
+
defineProperties?: {} | null | undefined;
|
|
837
|
+
seal?: {} | null | undefined;
|
|
838
|
+
freeze?: {} | null | undefined;
|
|
839
|
+
preventExtensions?: {} | null | undefined;
|
|
840
|
+
isSealed?: {} | null | undefined;
|
|
841
|
+
isFrozen?: {} | null | undefined;
|
|
842
|
+
isExtensible?: {} | null | undefined;
|
|
843
|
+
assign?: {} | null | undefined;
|
|
844
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
845
|
+
is?: {} | null | undefined;
|
|
846
|
+
setPrototypeOf?: {} | null | undefined;
|
|
847
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
848
|
+
fromEntries?: {} | null | undefined;
|
|
849
|
+
}> & {
|
|
850
|
+
entries?: {} | null | undefined;
|
|
851
|
+
keys?: {} | null | undefined;
|
|
852
|
+
values?: {} | null | undefined;
|
|
853
|
+
create?: {} | null | undefined;
|
|
854
|
+
prototype?: {
|
|
855
|
+
toString: {} | null;
|
|
856
|
+
toLocaleString: {} | null;
|
|
857
|
+
valueOf: {} | null;
|
|
858
|
+
constructor: {
|
|
859
|
+
length?: unknown;
|
|
860
|
+
toString: {} | null;
|
|
861
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
862
|
+
prototype?: unknown;
|
|
863
|
+
name?: unknown;
|
|
864
|
+
apply?: {} | null | undefined;
|
|
865
|
+
call?: {} | null | undefined;
|
|
866
|
+
bind?: {} | null | undefined;
|
|
867
|
+
arguments?: unknown;
|
|
868
|
+
caller?: any | null | undefined;
|
|
869
|
+
} | null;
|
|
870
|
+
hasOwnProperty: {} | null;
|
|
871
|
+
isPrototypeOf: {} | null;
|
|
872
|
+
propertyIsEnumerable: {} | null;
|
|
873
|
+
} | null | undefined;
|
|
874
|
+
getPrototypeOf?: {} | null | undefined;
|
|
875
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
876
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
877
|
+
defineProperty?: {} | null | undefined;
|
|
878
|
+
defineProperties?: {} | null | undefined;
|
|
879
|
+
seal?: {} | null | undefined;
|
|
880
|
+
freeze?: {} | null | undefined;
|
|
881
|
+
preventExtensions?: {} | null | undefined;
|
|
882
|
+
isSealed?: {} | null | undefined;
|
|
883
|
+
isFrozen?: {} | null | undefined;
|
|
884
|
+
isExtensible?: {} | null | undefined;
|
|
885
|
+
assign?: {} | null | undefined;
|
|
886
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
887
|
+
is?: {} | null | undefined;
|
|
888
|
+
setPrototypeOf?: {} | null | undefined;
|
|
889
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
890
|
+
fromEntries?: {} | null | undefined;
|
|
891
|
+
}>;
|
|
261
892
|
created_at: NativeDate;
|
|
262
893
|
updated_at: NativeDate;
|
|
263
894
|
user_id: string;
|
|
264
895
|
sources: string[];
|
|
265
|
-
geos: string[];
|
|
266
896
|
has_jobs_access: boolean;
|
|
267
897
|
active_jobs_limit: number;
|
|
268
898
|
time_range?: any;
|
|
@@ -270,11 +900,137 @@ export declare const MongoUserSettingsSchema: Schema<any, import("mongoose").Mod
|
|
|
270
900
|
instructions?: string | null | undefined;
|
|
271
901
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
272
902
|
status: "inactive" | "active";
|
|
903
|
+
geos: import("mongoose").Types.DocumentArray<{
|
|
904
|
+
entries?: {} | null | undefined;
|
|
905
|
+
keys?: {} | null | undefined;
|
|
906
|
+
values?: {} | null | undefined;
|
|
907
|
+
create?: {} | null | undefined;
|
|
908
|
+
prototype?: {
|
|
909
|
+
toString: {} | null;
|
|
910
|
+
toLocaleString: {} | null;
|
|
911
|
+
valueOf: {} | null;
|
|
912
|
+
constructor: {
|
|
913
|
+
length?: unknown;
|
|
914
|
+
toString: {} | null;
|
|
915
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
916
|
+
prototype?: unknown;
|
|
917
|
+
name?: unknown;
|
|
918
|
+
apply?: {} | null | undefined;
|
|
919
|
+
call?: {} | null | undefined;
|
|
920
|
+
bind?: {} | null | undefined;
|
|
921
|
+
arguments?: unknown;
|
|
922
|
+
caller?: any | null | undefined;
|
|
923
|
+
} | null;
|
|
924
|
+
hasOwnProperty: {} | null;
|
|
925
|
+
isPrototypeOf: {} | null;
|
|
926
|
+
propertyIsEnumerable: {} | null;
|
|
927
|
+
} | null | undefined;
|
|
928
|
+
getPrototypeOf?: {} | null | undefined;
|
|
929
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
930
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
931
|
+
defineProperty?: {} | null | undefined;
|
|
932
|
+
defineProperties?: {} | null | undefined;
|
|
933
|
+
seal?: {} | null | undefined;
|
|
934
|
+
freeze?: {} | null | undefined;
|
|
935
|
+
preventExtensions?: {} | null | undefined;
|
|
936
|
+
isSealed?: {} | null | undefined;
|
|
937
|
+
isFrozen?: {} | null | undefined;
|
|
938
|
+
isExtensible?: {} | null | undefined;
|
|
939
|
+
assign?: {} | null | undefined;
|
|
940
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
941
|
+
is?: {} | null | undefined;
|
|
942
|
+
setPrototypeOf?: {} | null | undefined;
|
|
943
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
944
|
+
fromEntries?: {} | null | undefined;
|
|
945
|
+
}, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
|
|
946
|
+
entries?: {} | null | undefined;
|
|
947
|
+
keys?: {} | null | undefined;
|
|
948
|
+
values?: {} | null | undefined;
|
|
949
|
+
create?: {} | null | undefined;
|
|
950
|
+
prototype?: {
|
|
951
|
+
toString: {} | null;
|
|
952
|
+
toLocaleString: {} | null;
|
|
953
|
+
valueOf: {} | null;
|
|
954
|
+
constructor: {
|
|
955
|
+
length?: unknown;
|
|
956
|
+
toString: {} | null;
|
|
957
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
958
|
+
prototype?: unknown;
|
|
959
|
+
name?: unknown;
|
|
960
|
+
apply?: {} | null | undefined;
|
|
961
|
+
call?: {} | null | undefined;
|
|
962
|
+
bind?: {} | null | undefined;
|
|
963
|
+
arguments?: unknown;
|
|
964
|
+
caller?: any | null | undefined;
|
|
965
|
+
} | null;
|
|
966
|
+
hasOwnProperty: {} | null;
|
|
967
|
+
isPrototypeOf: {} | null;
|
|
968
|
+
propertyIsEnumerable: {} | null;
|
|
969
|
+
} | null | undefined;
|
|
970
|
+
getPrototypeOf?: {} | null | undefined;
|
|
971
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
972
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
973
|
+
defineProperty?: {} | null | undefined;
|
|
974
|
+
defineProperties?: {} | null | undefined;
|
|
975
|
+
seal?: {} | null | undefined;
|
|
976
|
+
freeze?: {} | null | undefined;
|
|
977
|
+
preventExtensions?: {} | null | undefined;
|
|
978
|
+
isSealed?: {} | null | undefined;
|
|
979
|
+
isFrozen?: {} | null | undefined;
|
|
980
|
+
isExtensible?: {} | null | undefined;
|
|
981
|
+
assign?: {} | null | undefined;
|
|
982
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
983
|
+
is?: {} | null | undefined;
|
|
984
|
+
setPrototypeOf?: {} | null | undefined;
|
|
985
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
986
|
+
fromEntries?: {} | null | undefined;
|
|
987
|
+
}> & {
|
|
988
|
+
entries?: {} | null | undefined;
|
|
989
|
+
keys?: {} | null | undefined;
|
|
990
|
+
values?: {} | null | undefined;
|
|
991
|
+
create?: {} | null | undefined;
|
|
992
|
+
prototype?: {
|
|
993
|
+
toString: {} | null;
|
|
994
|
+
toLocaleString: {} | null;
|
|
995
|
+
valueOf: {} | null;
|
|
996
|
+
constructor: {
|
|
997
|
+
length?: unknown;
|
|
998
|
+
toString: {} | null;
|
|
999
|
+
[Symbol.hasInstance]?: {} | null | undefined;
|
|
1000
|
+
prototype?: unknown;
|
|
1001
|
+
name?: unknown;
|
|
1002
|
+
apply?: {} | null | undefined;
|
|
1003
|
+
call?: {} | null | undefined;
|
|
1004
|
+
bind?: {} | null | undefined;
|
|
1005
|
+
arguments?: unknown;
|
|
1006
|
+
caller?: any | null | undefined;
|
|
1007
|
+
} | null;
|
|
1008
|
+
hasOwnProperty: {} | null;
|
|
1009
|
+
isPrototypeOf: {} | null;
|
|
1010
|
+
propertyIsEnumerable: {} | null;
|
|
1011
|
+
} | null | undefined;
|
|
1012
|
+
getPrototypeOf?: {} | null | undefined;
|
|
1013
|
+
getOwnPropertyDescriptor?: {} | null | undefined;
|
|
1014
|
+
getOwnPropertyNames?: {} | null | undefined;
|
|
1015
|
+
defineProperty?: {} | null | undefined;
|
|
1016
|
+
defineProperties?: {} | null | undefined;
|
|
1017
|
+
seal?: {} | null | undefined;
|
|
1018
|
+
freeze?: {} | null | undefined;
|
|
1019
|
+
preventExtensions?: {} | null | undefined;
|
|
1020
|
+
isSealed?: {} | null | undefined;
|
|
1021
|
+
isFrozen?: {} | null | undefined;
|
|
1022
|
+
isExtensible?: {} | null | undefined;
|
|
1023
|
+
assign?: {} | null | undefined;
|
|
1024
|
+
getOwnPropertySymbols?: {} | null | undefined;
|
|
1025
|
+
is?: {} | null | undefined;
|
|
1026
|
+
setPrototypeOf?: {} | null | undefined;
|
|
1027
|
+
getOwnPropertyDescriptors?: {} | null | undefined;
|
|
1028
|
+
fromEntries?: {} | null | undefined;
|
|
1029
|
+
}>;
|
|
273
1030
|
created_at: NativeDate;
|
|
274
1031
|
updated_at: NativeDate;
|
|
275
1032
|
user_id: string;
|
|
276
1033
|
sources: string[];
|
|
277
|
-
geos: string[];
|
|
278
1034
|
has_jobs_access: boolean;
|
|
279
1035
|
active_jobs_limit: number;
|
|
280
1036
|
time_range?: any;
|
|
@@ -388,22 +1144,22 @@ export declare const MongoGeoSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
388
1144
|
}, {
|
|
389
1145
|
subscribers: string[];
|
|
390
1146
|
is_used: boolean;
|
|
391
|
-
timestamp?: number | null | undefined;
|
|
392
1147
|
geo_text?: string | null | undefined;
|
|
1148
|
+
timestamp?: number | null | undefined;
|
|
393
1149
|
count?: number | null | undefined;
|
|
394
1150
|
region?: string | null | undefined;
|
|
395
1151
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
396
1152
|
subscribers: string[];
|
|
397
1153
|
is_used: boolean;
|
|
398
|
-
timestamp?: number | null | undefined;
|
|
399
1154
|
geo_text?: string | null | undefined;
|
|
1155
|
+
timestamp?: number | null | undefined;
|
|
400
1156
|
count?: number | null | undefined;
|
|
401
1157
|
region?: string | null | undefined;
|
|
402
1158
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
403
1159
|
subscribers: string[];
|
|
404
1160
|
is_used: boolean;
|
|
405
|
-
timestamp?: number | null | undefined;
|
|
406
1161
|
geo_text?: string | null | undefined;
|
|
1162
|
+
timestamp?: number | null | undefined;
|
|
407
1163
|
count?: number | null | undefined;
|
|
408
1164
|
region?: string | null | undefined;
|
|
409
1165
|
}> & {
|
|
@@ -421,28 +1177,28 @@ export declare const MongoGeoSelectionSchema: Schema<any, import("mongoose").Mod
|
|
|
421
1177
|
};
|
|
422
1178
|
}, {
|
|
423
1179
|
geos: string[];
|
|
424
|
-
|
|
1180
|
+
region?: string | null | undefined;
|
|
425
1181
|
type?: string | null | undefined;
|
|
1182
|
+
title?: string | null | undefined;
|
|
426
1183
|
description?: string | null | undefined;
|
|
427
1184
|
created_at?: number | null | undefined;
|
|
428
1185
|
updated_at?: number | null | undefined;
|
|
429
|
-
region?: string | null | undefined;
|
|
430
1186
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
431
1187
|
geos: string[];
|
|
432
|
-
|
|
1188
|
+
region?: string | null | undefined;
|
|
433
1189
|
type?: string | null | undefined;
|
|
1190
|
+
title?: string | null | undefined;
|
|
434
1191
|
description?: string | null | undefined;
|
|
435
1192
|
created_at?: number | null | undefined;
|
|
436
1193
|
updated_at?: number | null | undefined;
|
|
437
|
-
region?: string | null | undefined;
|
|
438
1194
|
}>, {}> & import("mongoose").FlatRecord<{
|
|
439
1195
|
geos: string[];
|
|
440
|
-
|
|
1196
|
+
region?: string | null | undefined;
|
|
441
1197
|
type?: string | null | undefined;
|
|
1198
|
+
title?: string | null | undefined;
|
|
442
1199
|
description?: string | null | undefined;
|
|
443
1200
|
created_at?: number | null | undefined;
|
|
444
1201
|
updated_at?: number | null | undefined;
|
|
445
|
-
region?: string | null | undefined;
|
|
446
1202
|
}> & {
|
|
447
1203
|
_id: import("mongoose").Types.ObjectId;
|
|
448
1204
|
} & {
|