telescope-prisma-client 0.0.36 → 0.0.37
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/generatedClient/index-browser.js +176 -1
- package/dist/generatedClient/index.d.ts +489 -199
- package/dist/generatedClient/index.js +181 -4
- package/dist/generatedClient/schema.prisma +49 -45
- package/dist/schema.prisma +49 -45
- package/package.json +1 -1
- package/schema.prisma +49 -45
|
@@ -136,7 +136,6 @@ exports.Prisma.MergeConnectionScalarFieldEnum = {
|
|
|
136
136
|
accounts_last_sync_at: 'accounts_last_sync_at',
|
|
137
137
|
contacts_last_sync_at: 'contacts_last_sync_at',
|
|
138
138
|
leads_last_sync_at: 'leads_last_sync_at',
|
|
139
|
-
last_merge_syncAt: 'last_merge_syncAt',
|
|
140
139
|
deleted_at: 'deleted_at'
|
|
141
140
|
};
|
|
142
141
|
|
|
@@ -402,11 +401,187 @@ exports.Prisma.NullsOrder = {
|
|
|
402
401
|
last: 'last'
|
|
403
402
|
};
|
|
404
403
|
|
|
404
|
+
exports.Prisma.UserOrderByRelevanceFieldEnum = {
|
|
405
|
+
id: 'id',
|
|
406
|
+
first_name: 'first_name',
|
|
407
|
+
last_name: 'last_name',
|
|
408
|
+
email: 'email'
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
exports.Prisma.MergeConnectionOrderByRelevanceFieldEnum = {
|
|
412
|
+
id: 'id',
|
|
413
|
+
user_id: 'user_id',
|
|
414
|
+
account_token: 'account_token',
|
|
415
|
+
webhook_listener_url: 'webhook_listener_url',
|
|
416
|
+
crm_name: 'crm_name',
|
|
417
|
+
image: 'image',
|
|
418
|
+
image_square: 'image_square',
|
|
419
|
+
status: 'status',
|
|
420
|
+
crm_slug_name: 'crm_slug_name',
|
|
421
|
+
linked_account_id: 'linked_account_id'
|
|
422
|
+
};
|
|
423
|
+
|
|
424
|
+
exports.Prisma.MergeCrmAccountOrderByRelevanceFieldEnum = {
|
|
425
|
+
id: 'id',
|
|
426
|
+
name: 'name',
|
|
427
|
+
description: 'description',
|
|
428
|
+
industry: 'industry',
|
|
429
|
+
website: 'website',
|
|
430
|
+
domain: 'domain',
|
|
431
|
+
merge_crm_id: 'merge_crm_id',
|
|
432
|
+
remote_id: 'remote_id',
|
|
433
|
+
telescope_user_id: 'telescope_user_id',
|
|
434
|
+
linked_account_id: 'linked_account_id',
|
|
435
|
+
company_id: 'company_id',
|
|
436
|
+
remote_owner: 'remote_owner'
|
|
437
|
+
};
|
|
438
|
+
|
|
439
|
+
exports.Prisma.MergeCrmContactOrderByRelevanceFieldEnum = {
|
|
440
|
+
id: 'id',
|
|
441
|
+
merge_crm_account_id: 'merge_crm_account_id',
|
|
442
|
+
merge_crm_id: 'merge_crm_id',
|
|
443
|
+
remote_id: 'remote_id',
|
|
444
|
+
telescope_user_id: 'telescope_user_id',
|
|
445
|
+
linked_account_id: 'linked_account_id',
|
|
446
|
+
person_id: 'person_id'
|
|
447
|
+
};
|
|
448
|
+
|
|
449
|
+
exports.Prisma.MergeCrmLeadOrderByRelevanceFieldEnum = {
|
|
450
|
+
id: 'id',
|
|
451
|
+
remote_owner: 'remote_owner',
|
|
452
|
+
lead_source: 'lead_source',
|
|
453
|
+
merge_crm_converted_account_id: 'merge_crm_converted_account_id',
|
|
454
|
+
merge_crm_id: 'merge_crm_id',
|
|
455
|
+
remote_id: 'remote_id',
|
|
456
|
+
telescope_user_id: 'telescope_user_id',
|
|
457
|
+
linked_account_id: 'linked_account_id',
|
|
458
|
+
person_id: 'person_id',
|
|
459
|
+
merge_crm_converted_contact_id: 'merge_crm_converted_contact_id'
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
exports.Prisma.CampaignOrderByRelevanceFieldEnum = {
|
|
463
|
+
id: 'id',
|
|
464
|
+
name: 'name',
|
|
465
|
+
active_icp_id: 'active_icp_id',
|
|
466
|
+
sequence_id: 'sequence_id',
|
|
467
|
+
owner_id: 'owner_id'
|
|
468
|
+
};
|
|
469
|
+
|
|
470
|
+
exports.Prisma.ProspectOrderByRelevanceFieldEnum = {
|
|
471
|
+
id: 'id',
|
|
472
|
+
campaign_id: 'campaign_id',
|
|
473
|
+
company_name: 'company_name',
|
|
474
|
+
email: 'email',
|
|
475
|
+
linkedin_url: 'linkedin_url',
|
|
476
|
+
first_name: 'first_name',
|
|
477
|
+
last_name: 'last_name',
|
|
478
|
+
job_title: 'job_title',
|
|
479
|
+
phone_numbers: 'phone_numbers',
|
|
480
|
+
person_id: 'person_id',
|
|
481
|
+
company_id: 'company_id',
|
|
482
|
+
recommendation_id: 'recommendation_id',
|
|
483
|
+
merge_crm_account_id: 'merge_crm_account_id',
|
|
484
|
+
merge_crm_contact_id: 'merge_crm_contact_id',
|
|
485
|
+
merge_crm_lead_id: 'merge_crm_lead_id',
|
|
486
|
+
owner_id: 'owner_id'
|
|
487
|
+
};
|
|
488
|
+
|
|
489
|
+
exports.Prisma.CampaignLogEventOrderByRelevanceFieldEnum = {
|
|
490
|
+
id: 'id',
|
|
491
|
+
campaign_id: 'campaign_id',
|
|
492
|
+
description: 'description',
|
|
493
|
+
prospect_id: 'prospect_id',
|
|
494
|
+
thread_id: 'thread_id',
|
|
495
|
+
sequence_step_id: 'sequence_step_id',
|
|
496
|
+
recommendation_id: 'recommendation_id',
|
|
497
|
+
email_subject: 'email_subject',
|
|
498
|
+
email_body: 'email_body',
|
|
499
|
+
owner_id: 'owner_id'
|
|
500
|
+
};
|
|
501
|
+
|
|
405
502
|
exports.Prisma.JsonNullValueFilter = {
|
|
406
503
|
DbNull: Prisma.DbNull,
|
|
407
504
|
JsonNull: Prisma.JsonNull,
|
|
408
505
|
AnyNull: Prisma.AnyNull
|
|
409
506
|
};
|
|
507
|
+
|
|
508
|
+
exports.Prisma.RecommendationOrderByRelevanceFieldEnum = {
|
|
509
|
+
id: 'id',
|
|
510
|
+
campaign_id: 'campaign_id',
|
|
511
|
+
candidate_origin: 'candidate_origin',
|
|
512
|
+
candidate_version: 'candidate_version',
|
|
513
|
+
ranker_score: 'ranker_score',
|
|
514
|
+
person_id: 'person_id',
|
|
515
|
+
person_record_id: 'person_record_id',
|
|
516
|
+
company_id: 'company_id',
|
|
517
|
+
company_record_id: 'company_record_id',
|
|
518
|
+
icp_id: 'icp_id',
|
|
519
|
+
merge_crm_lead_id: 'merge_crm_lead_id',
|
|
520
|
+
merge_crm_contact_id: 'merge_crm_contact_id',
|
|
521
|
+
merge_crm_account_id: 'merge_crm_account_id',
|
|
522
|
+
owner_id: 'owner_id'
|
|
523
|
+
};
|
|
524
|
+
|
|
525
|
+
exports.Prisma.IdealCustomerProfileOrderByRelevanceFieldEnum = {
|
|
526
|
+
id: 'id',
|
|
527
|
+
campaign_id: 'campaign_id',
|
|
528
|
+
icp_description: 'icp_description',
|
|
529
|
+
keywords: 'keywords',
|
|
530
|
+
negative_keywords: 'negative_keywords',
|
|
531
|
+
job_titles: 'job_titles',
|
|
532
|
+
industries: 'industries',
|
|
533
|
+
company_types: 'company_types',
|
|
534
|
+
owner_id: 'owner_id'
|
|
535
|
+
};
|
|
536
|
+
|
|
537
|
+
exports.Prisma.ConnectedMailboxOrderByRelevanceFieldEnum = {
|
|
538
|
+
id: 'id',
|
|
539
|
+
owner_id: 'owner_id',
|
|
540
|
+
email: 'email',
|
|
541
|
+
email_provider_user_id: 'email_provider_user_id',
|
|
542
|
+
mailbox_user_id: 'mailbox_user_id'
|
|
543
|
+
};
|
|
544
|
+
|
|
545
|
+
exports.Prisma.SequenceOrderByRelevanceFieldEnum = {
|
|
546
|
+
id: 'id',
|
|
547
|
+
steps_ids: 'steps_ids',
|
|
548
|
+
owner_id: 'owner_id',
|
|
549
|
+
iana_timezone_name: 'iana_timezone_name'
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
exports.Prisma.SequenceStepOrderByRelevanceFieldEnum = {
|
|
553
|
+
id: 'id',
|
|
554
|
+
sequence_id: 'sequence_id',
|
|
555
|
+
email_subject: 'email_subject',
|
|
556
|
+
email_body: 'email_body',
|
|
557
|
+
linkedin_message: 'linkedin_message',
|
|
558
|
+
owner_id: 'owner_id'
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
exports.Prisma.ProspectSequenceStepOrderByRelevanceFieldEnum = {
|
|
562
|
+
id: 'id',
|
|
563
|
+
prospect_id: 'prospect_id',
|
|
564
|
+
sequence_step_id: 'sequence_step_id',
|
|
565
|
+
thread_id: 'thread_id',
|
|
566
|
+
message_id: 'message_id',
|
|
567
|
+
email_body: 'email_body',
|
|
568
|
+
email_subject: 'email_subject',
|
|
569
|
+
mailbox_id: 'mailbox_id',
|
|
570
|
+
linkedin_message: 'linkedin_message',
|
|
571
|
+
owner_id: 'owner_id'
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
exports.Prisma.ProspectInteractionEventOrderByRelevanceFieldEnum = {
|
|
575
|
+
id: 'id',
|
|
576
|
+
campaign_id: 'campaign_id',
|
|
577
|
+
prospect_id: 'prospect_id',
|
|
578
|
+
in_resp_to_prospect_sequence_step_id: 'in_resp_to_prospect_sequence_step_id',
|
|
579
|
+
thread_id: 'thread_id',
|
|
580
|
+
message_id: 'message_id',
|
|
581
|
+
text_reply: 'text_reply',
|
|
582
|
+
prospect_interest_reason: 'prospect_interest_reason',
|
|
583
|
+
owner_id: 'owner_id'
|
|
584
|
+
};
|
|
410
585
|
exports.OutreachStatus = {
|
|
411
586
|
RUNNING: 'RUNNING',
|
|
412
587
|
PAUSED: 'PAUSED',
|