@the-inkwell/shared 0.2.306 → 0.2.308
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.
|
@@ -157,94 +157,630 @@ declare const AdminSearchResultSchema: z.ZodObject<{
|
|
|
157
157
|
out: {};
|
|
158
158
|
in: {};
|
|
159
159
|
}>;
|
|
160
|
-
declare const
|
|
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
|
-
|
|
160
|
+
export declare const AdminSavedSearchSelectSchema: import("drizzle-zod").BuildSchema<"select", {
|
|
161
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
162
|
+
name: "id";
|
|
163
|
+
tableName: "saved_searches";
|
|
164
|
+
dataType: "string";
|
|
165
|
+
columnType: "PgUUID";
|
|
166
|
+
data: string;
|
|
167
|
+
driverParam: string;
|
|
168
|
+
notNull: true;
|
|
169
|
+
hasDefault: true;
|
|
170
|
+
isPrimaryKey: true;
|
|
171
|
+
isAutoincrement: false;
|
|
172
|
+
hasRuntimeDefault: false;
|
|
173
|
+
enumValues: undefined;
|
|
174
|
+
baseColumn: never;
|
|
175
|
+
identity: undefined;
|
|
176
|
+
generated: undefined;
|
|
177
|
+
}, {}, {}>;
|
|
178
|
+
name: import("drizzle-orm/pg-core").PgColumn<{
|
|
179
|
+
name: "name";
|
|
180
|
+
tableName: "saved_searches";
|
|
181
|
+
dataType: "string";
|
|
182
|
+
columnType: "PgText";
|
|
183
|
+
data: string;
|
|
184
|
+
driverParam: string;
|
|
185
|
+
notNull: true;
|
|
186
|
+
hasDefault: false;
|
|
187
|
+
isPrimaryKey: false;
|
|
188
|
+
isAutoincrement: false;
|
|
189
|
+
hasRuntimeDefault: false;
|
|
190
|
+
enumValues: [string, ...string[]];
|
|
191
|
+
baseColumn: never;
|
|
192
|
+
identity: undefined;
|
|
193
|
+
generated: undefined;
|
|
194
|
+
}, {}, {}>;
|
|
195
|
+
campaignChannel: import("drizzle-orm/pg-core").PgColumn<{
|
|
196
|
+
name: "campaignChannel";
|
|
197
|
+
tableName: "saved_searches";
|
|
198
|
+
dataType: "string";
|
|
199
|
+
columnType: "PgEnumColumn";
|
|
200
|
+
data: "email" | "sms";
|
|
201
|
+
driverParam: string;
|
|
202
|
+
notNull: false;
|
|
203
|
+
hasDefault: false;
|
|
204
|
+
isPrimaryKey: false;
|
|
205
|
+
isAutoincrement: false;
|
|
206
|
+
hasRuntimeDefault: false;
|
|
207
|
+
enumValues: ["email", "sms"];
|
|
208
|
+
baseColumn: never;
|
|
209
|
+
identity: undefined;
|
|
210
|
+
generated: undefined;
|
|
211
|
+
}, {}, {}>;
|
|
212
|
+
purpose: import("drizzle-orm/pg-core").PgColumn<{
|
|
213
|
+
name: "purpose";
|
|
214
|
+
tableName: "saved_searches";
|
|
215
|
+
dataType: "string";
|
|
216
|
+
columnType: "PgEnumColumn";
|
|
217
|
+
data: "candidates" | "referrers";
|
|
218
|
+
driverParam: string;
|
|
219
|
+
notNull: false;
|
|
220
|
+
hasDefault: false;
|
|
221
|
+
isPrimaryKey: false;
|
|
222
|
+
isAutoincrement: false;
|
|
223
|
+
hasRuntimeDefault: false;
|
|
224
|
+
enumValues: ["candidates", "referrers"];
|
|
225
|
+
baseColumn: never;
|
|
226
|
+
identity: undefined;
|
|
227
|
+
generated: undefined;
|
|
228
|
+
}, {}, {}>;
|
|
229
|
+
maxResults: import("drizzle-orm/pg-core").PgColumn<{
|
|
230
|
+
name: "maxResults";
|
|
231
|
+
tableName: "saved_searches";
|
|
232
|
+
dataType: "number";
|
|
233
|
+
columnType: "PgInteger";
|
|
234
|
+
data: number;
|
|
235
|
+
driverParam: string | number;
|
|
236
|
+
notNull: false;
|
|
237
|
+
hasDefault: false;
|
|
238
|
+
isPrimaryKey: false;
|
|
239
|
+
isAutoincrement: false;
|
|
240
|
+
hasRuntimeDefault: false;
|
|
241
|
+
enumValues: undefined;
|
|
242
|
+
baseColumn: never;
|
|
243
|
+
identity: undefined;
|
|
244
|
+
generated: undefined;
|
|
245
|
+
}, {}, {}>;
|
|
246
|
+
search: import("drizzle-orm/pg-core").PgColumn<{
|
|
247
|
+
name: "search";
|
|
248
|
+
tableName: "saved_searches";
|
|
249
|
+
dataType: "json";
|
|
250
|
+
columnType: "PgJsonb";
|
|
251
|
+
data: {
|
|
252
|
+
criteria?: Record<string, any> | null;
|
|
253
|
+
location?: Record<string, any> | null;
|
|
254
|
+
}[];
|
|
255
|
+
driverParam: unknown;
|
|
256
|
+
notNull: false;
|
|
257
|
+
hasDefault: false;
|
|
258
|
+
isPrimaryKey: false;
|
|
259
|
+
isAutoincrement: false;
|
|
260
|
+
hasRuntimeDefault: false;
|
|
261
|
+
enumValues: undefined;
|
|
262
|
+
baseColumn: never;
|
|
263
|
+
identity: undefined;
|
|
264
|
+
generated: undefined;
|
|
265
|
+
}, {}, {
|
|
266
|
+
$type: {
|
|
267
|
+
criteria?: Record<string, any> | null;
|
|
268
|
+
location?: Record<string, any> | null;
|
|
269
|
+
}[];
|
|
270
|
+
}>;
|
|
271
|
+
results: import("drizzle-orm/pg-core").PgColumn<{
|
|
272
|
+
name: "results";
|
|
273
|
+
tableName: "saved_searches";
|
|
274
|
+
dataType: "array";
|
|
275
|
+
columnType: "PgArray";
|
|
276
|
+
data: string[];
|
|
277
|
+
driverParam: string | string[];
|
|
278
|
+
notNull: false;
|
|
279
|
+
hasDefault: true;
|
|
280
|
+
isPrimaryKey: false;
|
|
281
|
+
isAutoincrement: false;
|
|
282
|
+
hasRuntimeDefault: false;
|
|
283
|
+
enumValues: undefined;
|
|
284
|
+
baseColumn: import("drizzle-orm").Column<{
|
|
285
|
+
name: "";
|
|
286
|
+
tableName: "saved_searches";
|
|
287
|
+
dataType: "string";
|
|
288
|
+
columnType: "PgUUID";
|
|
289
|
+
data: string;
|
|
290
|
+
driverParam: string;
|
|
291
|
+
notNull: false;
|
|
292
|
+
hasDefault: false;
|
|
293
|
+
isPrimaryKey: false;
|
|
294
|
+
isAutoincrement: false;
|
|
295
|
+
hasRuntimeDefault: false;
|
|
296
|
+
enumValues: undefined;
|
|
297
|
+
baseColumn: never;
|
|
298
|
+
identity: undefined;
|
|
299
|
+
generated: undefined;
|
|
300
|
+
}, {}, {}>;
|
|
301
|
+
identity: undefined;
|
|
302
|
+
generated: undefined;
|
|
303
|
+
}, {}, {
|
|
304
|
+
baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
|
|
305
|
+
name: "";
|
|
306
|
+
dataType: "string";
|
|
307
|
+
columnType: "PgUUID";
|
|
308
|
+
data: string;
|
|
309
|
+
driverParam: string;
|
|
310
|
+
enumValues: undefined;
|
|
311
|
+
}, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
|
|
312
|
+
size: undefined;
|
|
313
|
+
}>;
|
|
314
|
+
deletedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
315
|
+
name: "deletedAt";
|
|
316
|
+
tableName: "saved_searches";
|
|
317
|
+
dataType: "date";
|
|
318
|
+
columnType: "PgTimestamp";
|
|
319
|
+
data: Date;
|
|
320
|
+
driverParam: string;
|
|
321
|
+
notNull: false;
|
|
322
|
+
hasDefault: false;
|
|
323
|
+
isPrimaryKey: false;
|
|
324
|
+
isAutoincrement: false;
|
|
325
|
+
hasRuntimeDefault: false;
|
|
326
|
+
enumValues: undefined;
|
|
327
|
+
baseColumn: never;
|
|
328
|
+
identity: undefined;
|
|
329
|
+
generated: undefined;
|
|
330
|
+
}, {}, {}>;
|
|
331
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
332
|
+
name: "createdAt";
|
|
333
|
+
tableName: "saved_searches";
|
|
334
|
+
dataType: "date";
|
|
335
|
+
columnType: "PgTimestamp";
|
|
336
|
+
data: Date;
|
|
337
|
+
driverParam: string;
|
|
338
|
+
notNull: true;
|
|
339
|
+
hasDefault: true;
|
|
340
|
+
isPrimaryKey: false;
|
|
341
|
+
isAutoincrement: false;
|
|
342
|
+
hasRuntimeDefault: false;
|
|
343
|
+
enumValues: undefined;
|
|
344
|
+
baseColumn: never;
|
|
345
|
+
identity: undefined;
|
|
346
|
+
generated: undefined;
|
|
347
|
+
}, {}, {}>;
|
|
348
|
+
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
349
|
+
name: "updatedAt";
|
|
350
|
+
tableName: "saved_searches";
|
|
351
|
+
dataType: "date";
|
|
352
|
+
columnType: "PgTimestamp";
|
|
353
|
+
data: Date;
|
|
354
|
+
driverParam: string;
|
|
355
|
+
notNull: true;
|
|
356
|
+
hasDefault: true;
|
|
357
|
+
isPrimaryKey: false;
|
|
358
|
+
isAutoincrement: false;
|
|
359
|
+
hasRuntimeDefault: false;
|
|
360
|
+
enumValues: undefined;
|
|
361
|
+
baseColumn: never;
|
|
362
|
+
identity: undefined;
|
|
363
|
+
generated: undefined;
|
|
364
|
+
}, {}, {}>;
|
|
365
|
+
}, undefined, undefined>;
|
|
366
|
+
export declare const AdminSavedSearchCreateSchema: import("drizzle-zod").BuildSchema<"insert", {
|
|
367
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
368
|
+
name: "id";
|
|
369
|
+
tableName: "saved_searches";
|
|
370
|
+
dataType: "string";
|
|
371
|
+
columnType: "PgUUID";
|
|
372
|
+
data: string;
|
|
373
|
+
driverParam: string;
|
|
374
|
+
notNull: true;
|
|
375
|
+
hasDefault: true;
|
|
376
|
+
isPrimaryKey: true;
|
|
377
|
+
isAutoincrement: false;
|
|
378
|
+
hasRuntimeDefault: false;
|
|
379
|
+
enumValues: undefined;
|
|
380
|
+
baseColumn: never;
|
|
381
|
+
identity: undefined;
|
|
382
|
+
generated: undefined;
|
|
383
|
+
}, {}, {}>;
|
|
384
|
+
name: import("drizzle-orm/pg-core").PgColumn<{
|
|
385
|
+
name: "name";
|
|
386
|
+
tableName: "saved_searches";
|
|
387
|
+
dataType: "string";
|
|
388
|
+
columnType: "PgText";
|
|
389
|
+
data: string;
|
|
390
|
+
driverParam: string;
|
|
391
|
+
notNull: true;
|
|
392
|
+
hasDefault: false;
|
|
393
|
+
isPrimaryKey: false;
|
|
394
|
+
isAutoincrement: false;
|
|
395
|
+
hasRuntimeDefault: false;
|
|
396
|
+
enumValues: [string, ...string[]];
|
|
397
|
+
baseColumn: never;
|
|
398
|
+
identity: undefined;
|
|
399
|
+
generated: undefined;
|
|
400
|
+
}, {}, {}>;
|
|
401
|
+
campaignChannel: import("drizzle-orm/pg-core").PgColumn<{
|
|
402
|
+
name: "campaignChannel";
|
|
403
|
+
tableName: "saved_searches";
|
|
404
|
+
dataType: "string";
|
|
405
|
+
columnType: "PgEnumColumn";
|
|
406
|
+
data: "email" | "sms";
|
|
407
|
+
driverParam: string;
|
|
408
|
+
notNull: false;
|
|
409
|
+
hasDefault: false;
|
|
410
|
+
isPrimaryKey: false;
|
|
411
|
+
isAutoincrement: false;
|
|
412
|
+
hasRuntimeDefault: false;
|
|
413
|
+
enumValues: ["email", "sms"];
|
|
414
|
+
baseColumn: never;
|
|
415
|
+
identity: undefined;
|
|
416
|
+
generated: undefined;
|
|
417
|
+
}, {}, {}>;
|
|
418
|
+
purpose: import("drizzle-orm/pg-core").PgColumn<{
|
|
419
|
+
name: "purpose";
|
|
420
|
+
tableName: "saved_searches";
|
|
421
|
+
dataType: "string";
|
|
422
|
+
columnType: "PgEnumColumn";
|
|
423
|
+
data: "candidates" | "referrers";
|
|
424
|
+
driverParam: string;
|
|
425
|
+
notNull: false;
|
|
426
|
+
hasDefault: false;
|
|
427
|
+
isPrimaryKey: false;
|
|
428
|
+
isAutoincrement: false;
|
|
429
|
+
hasRuntimeDefault: false;
|
|
430
|
+
enumValues: ["candidates", "referrers"];
|
|
431
|
+
baseColumn: never;
|
|
432
|
+
identity: undefined;
|
|
433
|
+
generated: undefined;
|
|
434
|
+
}, {}, {}>;
|
|
435
|
+
maxResults: import("drizzle-orm/pg-core").PgColumn<{
|
|
436
|
+
name: "maxResults";
|
|
437
|
+
tableName: "saved_searches";
|
|
438
|
+
dataType: "number";
|
|
439
|
+
columnType: "PgInteger";
|
|
440
|
+
data: number;
|
|
441
|
+
driverParam: string | number;
|
|
442
|
+
notNull: false;
|
|
443
|
+
hasDefault: false;
|
|
444
|
+
isPrimaryKey: false;
|
|
445
|
+
isAutoincrement: false;
|
|
446
|
+
hasRuntimeDefault: false;
|
|
447
|
+
enumValues: undefined;
|
|
448
|
+
baseColumn: never;
|
|
449
|
+
identity: undefined;
|
|
450
|
+
generated: undefined;
|
|
451
|
+
}, {}, {}>;
|
|
452
|
+
search: import("drizzle-orm/pg-core").PgColumn<{
|
|
453
|
+
name: "search";
|
|
454
|
+
tableName: "saved_searches";
|
|
455
|
+
dataType: "json";
|
|
456
|
+
columnType: "PgJsonb";
|
|
457
|
+
data: {
|
|
458
|
+
criteria?: Record<string, any> | null;
|
|
459
|
+
location?: Record<string, any> | null;
|
|
460
|
+
}[];
|
|
461
|
+
driverParam: unknown;
|
|
462
|
+
notNull: false;
|
|
463
|
+
hasDefault: false;
|
|
464
|
+
isPrimaryKey: false;
|
|
465
|
+
isAutoincrement: false;
|
|
466
|
+
hasRuntimeDefault: false;
|
|
467
|
+
enumValues: undefined;
|
|
468
|
+
baseColumn: never;
|
|
469
|
+
identity: undefined;
|
|
470
|
+
generated: undefined;
|
|
471
|
+
}, {}, {
|
|
472
|
+
$type: {
|
|
473
|
+
criteria?: Record<string, any> | null;
|
|
474
|
+
location?: Record<string, any> | null;
|
|
475
|
+
}[];
|
|
476
|
+
}>;
|
|
477
|
+
results: import("drizzle-orm/pg-core").PgColumn<{
|
|
478
|
+
name: "results";
|
|
479
|
+
tableName: "saved_searches";
|
|
480
|
+
dataType: "array";
|
|
481
|
+
columnType: "PgArray";
|
|
482
|
+
data: string[];
|
|
483
|
+
driverParam: string | string[];
|
|
484
|
+
notNull: false;
|
|
485
|
+
hasDefault: true;
|
|
486
|
+
isPrimaryKey: false;
|
|
487
|
+
isAutoincrement: false;
|
|
488
|
+
hasRuntimeDefault: false;
|
|
489
|
+
enumValues: undefined;
|
|
490
|
+
baseColumn: import("drizzle-orm").Column<{
|
|
491
|
+
name: "";
|
|
492
|
+
tableName: "saved_searches";
|
|
493
|
+
dataType: "string";
|
|
494
|
+
columnType: "PgUUID";
|
|
495
|
+
data: string;
|
|
496
|
+
driverParam: string;
|
|
497
|
+
notNull: false;
|
|
498
|
+
hasDefault: false;
|
|
499
|
+
isPrimaryKey: false;
|
|
500
|
+
isAutoincrement: false;
|
|
501
|
+
hasRuntimeDefault: false;
|
|
502
|
+
enumValues: undefined;
|
|
503
|
+
baseColumn: never;
|
|
504
|
+
identity: undefined;
|
|
505
|
+
generated: undefined;
|
|
506
|
+
}, {}, {}>;
|
|
507
|
+
identity: undefined;
|
|
508
|
+
generated: undefined;
|
|
509
|
+
}, {}, {
|
|
510
|
+
baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
|
|
511
|
+
name: "";
|
|
512
|
+
dataType: "string";
|
|
513
|
+
columnType: "PgUUID";
|
|
514
|
+
data: string;
|
|
515
|
+
driverParam: string;
|
|
516
|
+
enumValues: undefined;
|
|
517
|
+
}, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
|
|
518
|
+
size: undefined;
|
|
519
|
+
}>;
|
|
520
|
+
deletedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
521
|
+
name: "deletedAt";
|
|
522
|
+
tableName: "saved_searches";
|
|
523
|
+
dataType: "date";
|
|
524
|
+
columnType: "PgTimestamp";
|
|
525
|
+
data: Date;
|
|
526
|
+
driverParam: string;
|
|
527
|
+
notNull: false;
|
|
528
|
+
hasDefault: false;
|
|
529
|
+
isPrimaryKey: false;
|
|
530
|
+
isAutoincrement: false;
|
|
531
|
+
hasRuntimeDefault: false;
|
|
532
|
+
enumValues: undefined;
|
|
533
|
+
baseColumn: never;
|
|
534
|
+
identity: undefined;
|
|
535
|
+
generated: undefined;
|
|
536
|
+
}, {}, {}>;
|
|
537
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
538
|
+
name: "createdAt";
|
|
539
|
+
tableName: "saved_searches";
|
|
540
|
+
dataType: "date";
|
|
541
|
+
columnType: "PgTimestamp";
|
|
542
|
+
data: Date;
|
|
543
|
+
driverParam: string;
|
|
544
|
+
notNull: true;
|
|
545
|
+
hasDefault: true;
|
|
546
|
+
isPrimaryKey: false;
|
|
547
|
+
isAutoincrement: false;
|
|
548
|
+
hasRuntimeDefault: false;
|
|
549
|
+
enumValues: undefined;
|
|
550
|
+
baseColumn: never;
|
|
551
|
+
identity: undefined;
|
|
552
|
+
generated: undefined;
|
|
553
|
+
}, {}, {}>;
|
|
554
|
+
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
555
|
+
name: "updatedAt";
|
|
556
|
+
tableName: "saved_searches";
|
|
557
|
+
dataType: "date";
|
|
558
|
+
columnType: "PgTimestamp";
|
|
559
|
+
data: Date;
|
|
560
|
+
driverParam: string;
|
|
561
|
+
notNull: true;
|
|
562
|
+
hasDefault: true;
|
|
563
|
+
isPrimaryKey: false;
|
|
564
|
+
isAutoincrement: false;
|
|
565
|
+
hasRuntimeDefault: false;
|
|
566
|
+
enumValues: undefined;
|
|
567
|
+
baseColumn: never;
|
|
568
|
+
identity: undefined;
|
|
569
|
+
generated: undefined;
|
|
570
|
+
}, {}, {}>;
|
|
571
|
+
}, undefined, undefined>;
|
|
572
|
+
export declare const AdminSavedSearchUpdateSchema: import("drizzle-zod").BuildSchema<"update", {
|
|
573
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
574
|
+
name: "id";
|
|
575
|
+
tableName: "saved_searches";
|
|
576
|
+
dataType: "string";
|
|
577
|
+
columnType: "PgUUID";
|
|
578
|
+
data: string;
|
|
579
|
+
driverParam: string;
|
|
580
|
+
notNull: true;
|
|
581
|
+
hasDefault: true;
|
|
582
|
+
isPrimaryKey: true;
|
|
583
|
+
isAutoincrement: false;
|
|
584
|
+
hasRuntimeDefault: false;
|
|
585
|
+
enumValues: undefined;
|
|
586
|
+
baseColumn: never;
|
|
587
|
+
identity: undefined;
|
|
588
|
+
generated: undefined;
|
|
589
|
+
}, {}, {}>;
|
|
590
|
+
name: import("drizzle-orm/pg-core").PgColumn<{
|
|
591
|
+
name: "name";
|
|
592
|
+
tableName: "saved_searches";
|
|
593
|
+
dataType: "string";
|
|
594
|
+
columnType: "PgText";
|
|
595
|
+
data: string;
|
|
596
|
+
driverParam: string;
|
|
597
|
+
notNull: true;
|
|
598
|
+
hasDefault: false;
|
|
599
|
+
isPrimaryKey: false;
|
|
600
|
+
isAutoincrement: false;
|
|
601
|
+
hasRuntimeDefault: false;
|
|
602
|
+
enumValues: [string, ...string[]];
|
|
603
|
+
baseColumn: never;
|
|
604
|
+
identity: undefined;
|
|
605
|
+
generated: undefined;
|
|
606
|
+
}, {}, {}>;
|
|
607
|
+
campaignChannel: import("drizzle-orm/pg-core").PgColumn<{
|
|
608
|
+
name: "campaignChannel";
|
|
609
|
+
tableName: "saved_searches";
|
|
610
|
+
dataType: "string";
|
|
611
|
+
columnType: "PgEnumColumn";
|
|
612
|
+
data: "email" | "sms";
|
|
613
|
+
driverParam: string;
|
|
614
|
+
notNull: false;
|
|
615
|
+
hasDefault: false;
|
|
616
|
+
isPrimaryKey: false;
|
|
617
|
+
isAutoincrement: false;
|
|
618
|
+
hasRuntimeDefault: false;
|
|
619
|
+
enumValues: ["email", "sms"];
|
|
620
|
+
baseColumn: never;
|
|
621
|
+
identity: undefined;
|
|
622
|
+
generated: undefined;
|
|
623
|
+
}, {}, {}>;
|
|
624
|
+
purpose: import("drizzle-orm/pg-core").PgColumn<{
|
|
625
|
+
name: "purpose";
|
|
626
|
+
tableName: "saved_searches";
|
|
627
|
+
dataType: "string";
|
|
628
|
+
columnType: "PgEnumColumn";
|
|
629
|
+
data: "candidates" | "referrers";
|
|
630
|
+
driverParam: string;
|
|
631
|
+
notNull: false;
|
|
632
|
+
hasDefault: false;
|
|
633
|
+
isPrimaryKey: false;
|
|
634
|
+
isAutoincrement: false;
|
|
635
|
+
hasRuntimeDefault: false;
|
|
636
|
+
enumValues: ["candidates", "referrers"];
|
|
637
|
+
baseColumn: never;
|
|
638
|
+
identity: undefined;
|
|
639
|
+
generated: undefined;
|
|
640
|
+
}, {}, {}>;
|
|
641
|
+
maxResults: import("drizzle-orm/pg-core").PgColumn<{
|
|
642
|
+
name: "maxResults";
|
|
643
|
+
tableName: "saved_searches";
|
|
644
|
+
dataType: "number";
|
|
645
|
+
columnType: "PgInteger";
|
|
646
|
+
data: number;
|
|
647
|
+
driverParam: string | number;
|
|
648
|
+
notNull: false;
|
|
649
|
+
hasDefault: false;
|
|
650
|
+
isPrimaryKey: false;
|
|
651
|
+
isAutoincrement: false;
|
|
652
|
+
hasRuntimeDefault: false;
|
|
653
|
+
enumValues: undefined;
|
|
654
|
+
baseColumn: never;
|
|
655
|
+
identity: undefined;
|
|
656
|
+
generated: undefined;
|
|
657
|
+
}, {}, {}>;
|
|
658
|
+
search: import("drizzle-orm/pg-core").PgColumn<{
|
|
659
|
+
name: "search";
|
|
660
|
+
tableName: "saved_searches";
|
|
661
|
+
dataType: "json";
|
|
662
|
+
columnType: "PgJsonb";
|
|
663
|
+
data: {
|
|
664
|
+
criteria?: Record<string, any> | null;
|
|
665
|
+
location?: Record<string, any> | null;
|
|
666
|
+
}[];
|
|
667
|
+
driverParam: unknown;
|
|
668
|
+
notNull: false;
|
|
669
|
+
hasDefault: false;
|
|
670
|
+
isPrimaryKey: false;
|
|
671
|
+
isAutoincrement: false;
|
|
672
|
+
hasRuntimeDefault: false;
|
|
673
|
+
enumValues: undefined;
|
|
674
|
+
baseColumn: never;
|
|
675
|
+
identity: undefined;
|
|
676
|
+
generated: undefined;
|
|
677
|
+
}, {}, {
|
|
678
|
+
$type: {
|
|
679
|
+
criteria?: Record<string, any> | null;
|
|
680
|
+
location?: Record<string, any> | null;
|
|
681
|
+
}[];
|
|
682
|
+
}>;
|
|
683
|
+
results: import("drizzle-orm/pg-core").PgColumn<{
|
|
684
|
+
name: "results";
|
|
685
|
+
tableName: "saved_searches";
|
|
686
|
+
dataType: "array";
|
|
687
|
+
columnType: "PgArray";
|
|
688
|
+
data: string[];
|
|
689
|
+
driverParam: string | string[];
|
|
690
|
+
notNull: false;
|
|
691
|
+
hasDefault: true;
|
|
692
|
+
isPrimaryKey: false;
|
|
693
|
+
isAutoincrement: false;
|
|
694
|
+
hasRuntimeDefault: false;
|
|
695
|
+
enumValues: undefined;
|
|
696
|
+
baseColumn: import("drizzle-orm").Column<{
|
|
697
|
+
name: "";
|
|
698
|
+
tableName: "saved_searches";
|
|
699
|
+
dataType: "string";
|
|
700
|
+
columnType: "PgUUID";
|
|
701
|
+
data: string;
|
|
702
|
+
driverParam: string;
|
|
703
|
+
notNull: false;
|
|
704
|
+
hasDefault: false;
|
|
705
|
+
isPrimaryKey: false;
|
|
706
|
+
isAutoincrement: false;
|
|
707
|
+
hasRuntimeDefault: false;
|
|
708
|
+
enumValues: undefined;
|
|
709
|
+
baseColumn: never;
|
|
710
|
+
identity: undefined;
|
|
711
|
+
generated: undefined;
|
|
712
|
+
}, {}, {}>;
|
|
713
|
+
identity: undefined;
|
|
714
|
+
generated: undefined;
|
|
715
|
+
}, {}, {
|
|
716
|
+
baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
|
|
717
|
+
name: "";
|
|
718
|
+
dataType: "string";
|
|
719
|
+
columnType: "PgUUID";
|
|
720
|
+
data: string;
|
|
721
|
+
driverParam: string;
|
|
722
|
+
enumValues: undefined;
|
|
723
|
+
}, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
|
|
724
|
+
size: undefined;
|
|
725
|
+
}>;
|
|
726
|
+
deletedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
727
|
+
name: "deletedAt";
|
|
728
|
+
tableName: "saved_searches";
|
|
729
|
+
dataType: "date";
|
|
730
|
+
columnType: "PgTimestamp";
|
|
731
|
+
data: Date;
|
|
732
|
+
driverParam: string;
|
|
733
|
+
notNull: false;
|
|
734
|
+
hasDefault: false;
|
|
735
|
+
isPrimaryKey: false;
|
|
736
|
+
isAutoincrement: false;
|
|
737
|
+
hasRuntimeDefault: false;
|
|
738
|
+
enumValues: undefined;
|
|
739
|
+
baseColumn: never;
|
|
740
|
+
identity: undefined;
|
|
741
|
+
generated: undefined;
|
|
742
|
+
}, {}, {}>;
|
|
743
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
744
|
+
name: "createdAt";
|
|
745
|
+
tableName: "saved_searches";
|
|
746
|
+
dataType: "date";
|
|
747
|
+
columnType: "PgTimestamp";
|
|
748
|
+
data: Date;
|
|
749
|
+
driverParam: string;
|
|
750
|
+
notNull: true;
|
|
751
|
+
hasDefault: true;
|
|
752
|
+
isPrimaryKey: false;
|
|
753
|
+
isAutoincrement: false;
|
|
754
|
+
hasRuntimeDefault: false;
|
|
755
|
+
enumValues: undefined;
|
|
756
|
+
baseColumn: never;
|
|
757
|
+
identity: undefined;
|
|
758
|
+
generated: undefined;
|
|
759
|
+
}, {}, {}>;
|
|
760
|
+
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
761
|
+
name: "updatedAt";
|
|
762
|
+
tableName: "saved_searches";
|
|
763
|
+
dataType: "date";
|
|
764
|
+
columnType: "PgTimestamp";
|
|
765
|
+
data: Date;
|
|
766
|
+
driverParam: string;
|
|
767
|
+
notNull: true;
|
|
768
|
+
hasDefault: true;
|
|
769
|
+
isPrimaryKey: false;
|
|
770
|
+
isAutoincrement: false;
|
|
771
|
+
hasRuntimeDefault: false;
|
|
772
|
+
enumValues: undefined;
|
|
773
|
+
baseColumn: never;
|
|
774
|
+
identity: undefined;
|
|
775
|
+
generated: undefined;
|
|
776
|
+
}, {}, {}>;
|
|
777
|
+
}, undefined, undefined>;
|
|
244
778
|
export type AdminSearchAutoCompleteResult = z.infer<typeof AdminSearchAutoCompleteResultSchema>;
|
|
245
779
|
export type AdminSearchAutoCompleteQuery = z.infer<typeof AdminSearchAutoCompleteQuerySchema>;
|
|
246
780
|
export type AdminSearchQuery = z.infer<typeof AdminSearchQuerySchema>;
|
|
247
781
|
export type AdminSearchListResult = ListResponse<z.infer<typeof AdminSearchResultSchema>>;
|
|
248
|
-
export type
|
|
249
|
-
export type
|
|
782
|
+
export type AdminSavedSearchCreateInput = z.infer<typeof AdminSavedSearchCreateSchema>;
|
|
783
|
+
export type AdminSavedSearchResult = z.infer<typeof AdminSavedSearchSelectSchema>;
|
|
784
|
+
export type AdminSavedSearchListResult = ListResponse<z.infer<typeof AdminSavedSearchSelectSchema>>;
|
|
785
|
+
export type AdminSavedSearchUpdateInput = z.infer<typeof AdminSavedSearchUpdateSchema>;
|
|
250
786
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AdminSavedSearchCreateSchema = exports.AdminSearchSchema = exports.AdminSearchAutoCompleteResultSchema = void 0;
|
|
3
|
+
exports.AdminSavedSearchUpdateSchema = exports.AdminSavedSearchCreateSchema = exports.AdminSavedSearchSelectSchema = exports.AdminSearchSchema = exports.AdminSearchAutoCompleteResultSchema = void 0;
|
|
4
4
|
const v4_1 = require("zod/v4");
|
|
5
5
|
const drizzle_zod_1 = require("drizzle-zod");
|
|
6
6
|
const core_1 = require("../../core");
|
|
@@ -73,22 +73,28 @@ const AdminSearchResultSchema = (0, drizzle_zod_1.createSelectSchema)(core_1.per
|
|
|
73
73
|
.extend({
|
|
74
74
|
rank: v4_1.z.number()
|
|
75
75
|
});
|
|
76
|
-
const AdminSavedSearchSchema = AdminSearchQuerySchema.omit({
|
|
77
|
-
|
|
78
|
-
}).extend({
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
76
|
+
// const AdminSavedSearchSchema = AdminSearchQuerySchema.omit({
|
|
77
|
+
// search: true
|
|
78
|
+
// }).extend({
|
|
79
|
+
// name: z.string(),
|
|
80
|
+
// results: z.array(z.string()),
|
|
81
|
+
// search: z.array(
|
|
82
|
+
// z.object({
|
|
83
|
+
// criteria: z
|
|
84
|
+
// .array(
|
|
85
|
+
// z.object({
|
|
86
|
+
// criteriaType: z.enum(AdminSearchCriteriaTypes),
|
|
87
|
+
// value: z.string(),
|
|
88
|
+
// name: z.string().optional()
|
|
89
|
+
// })
|
|
90
|
+
// )
|
|
91
|
+
// .nullable()
|
|
92
|
+
// .optional(),
|
|
93
|
+
// location: AdminSearchLocationSchema.nullable().optional()
|
|
94
|
+
// })
|
|
95
|
+
// )
|
|
96
|
+
// })
|
|
97
|
+
exports.AdminSavedSearchSelectSchema = (0, drizzle_zod_1.createSelectSchema)(core_1.savedSearches);
|
|
98
|
+
exports.AdminSavedSearchCreateSchema = (0, drizzle_zod_1.createInsertSchema)(core_1.savedSearches);
|
|
99
|
+
exports.AdminSavedSearchUpdateSchema = (0, drizzle_zod_1.createUpdateSchema)(core_1.savedSearches);
|
|
94
100
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/search/index.ts"],"names":[],"mappings":";;;AAAA,+BAA0B;AAE1B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/search/index.ts"],"names":[],"mappings":"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","sourcesContent":["import { z } from 'zod/v4'\nimport { type ListResponse } from '../../../utils'\nimport {\n createSelectSchema,\n createInsertSchema,\n createUpdateSchema\n} from 'drizzle-zod'\nimport { person, savedSearches } from '../../core'\nimport { id } from 'zod/v4/locales'\n\nconst AdminSearchAutoCompleteQuerySchema = z.object({\n name: z.string()\n})\n\nconst AdminSearchAutoCompleteSchema = z.object({\n industries: z.array(\n z.object({ id: z.string(), name: z.string().optional() })\n ),\n jobFunctions: z.array(\n z.object({ id: z.string(), name: z.string().optional() })\n ),\n skills: z.array(z.object({ id: z.string(), name: z.string().optional() })),\n tags: z.array(z.object({ id: z.string(), name: z.string().optional() })),\n networks: z.array(z.object({ id: z.string(), name: z.string().optional() }))\n})\n\nexport const AdminSearchAutoCompleteResultSchema = AdminSearchAutoCompleteSchema\n\nexport const AdminSearchSchema = z.object({\n name: z.string()\n})\n\nconst AdminSearchCriteriaTypes = [\n 'industries',\n 'jobFunctions',\n 'skills',\n 'tags',\n 'jobTitles',\n 'companies',\n 'schools',\n 'resumeText',\n 'networks'\n] as const\n\nconst AdminSearchCriteriaSchema = z.array(\n z.object({\n id: z.string(),\n criteriaType: z.enum(AdminSearchCriteriaTypes),\n value: z.string(),\n name: z.string().optional()\n })\n)\n\nconst AdminSearchLocationSchema = z\n .object({\n locationType: z.literal('state'),\n value: z.array(z.string())\n })\n .or(\n z.object({\n locationType: z.literal('radius'),\n value: z.object({\n name: z.string().nullable(),\n lat: z.number(),\n lon: z.number(),\n radiusInMiles: z.number()\n })\n })\n )\n\nconst AdminSearchQuerySchema = z.object({\n campaignChannel: z.enum(['email', 'sms']).nullable().optional(),\n purpose: z.enum(['candidates', 'referrers']).nullable(),\n maxResults: z.number().min(1).max(5000),\n search: z.array(\n z.object({\n id: z.string(),\n criteria: AdminSearchCriteriaSchema.nullable().optional(),\n location: AdminSearchLocationSchema.nullable().optional()\n })\n )\n})\nconst AdminSearchResultSchema = createSelectSchema(person)\n .pick({\n id: true,\n photoUri: true,\n fullName: true,\n email: true,\n phone: true,\n emailIsOptedOut: true,\n smsIsOptedOut: true,\n state: true\n })\n .extend({\n rank: z.number()\n })\n// const AdminSavedSearchSchema = AdminSearchQuerySchema.omit({\n// search: true\n// }).extend({\n// name: z.string(),\n// results: z.array(z.string()),\n// search: z.array(\n// z.object({\n// criteria: z\n// .array(\n// z.object({\n// criteriaType: z.enum(AdminSearchCriteriaTypes),\n// value: z.string(),\n// name: z.string().optional()\n// })\n// )\n// .nullable()\n// .optional(),\n// location: AdminSearchLocationSchema.nullable().optional()\n// })\n// )\n// })\nexport const AdminSavedSearchSelectSchema = createSelectSchema(savedSearches)\n\nexport const AdminSavedSearchCreateSchema = createInsertSchema(savedSearches)\nexport const AdminSavedSearchUpdateSchema = createUpdateSchema(savedSearches)\n\nexport type AdminSearchAutoCompleteResult = z.infer<\n typeof AdminSearchAutoCompleteResultSchema\n>\nexport type AdminSearchAutoCompleteQuery = z.infer<\n typeof AdminSearchAutoCompleteQuerySchema\n>\nexport type AdminSearchQuery = z.infer<typeof AdminSearchQuerySchema>\nexport type AdminSearchListResult = ListResponse<\n z.infer<typeof AdminSearchResultSchema>\n>\nexport type AdminSavedSearchCreateInput = z.infer<\n typeof AdminSavedSearchCreateSchema\n>\nexport type AdminSavedSearchResult = z.infer<\n typeof AdminSavedSearchSelectSchema\n>\nexport type AdminSavedSearchListResult = ListResponse<\n z.infer<typeof AdminSavedSearchSelectSchema>\n>\nexport type AdminSavedSearchUpdateInput = z.infer<\n typeof AdminSavedSearchUpdateSchema\n>\n"]}
|