@elevasis/ui 2.23.0 → 2.25.0

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.
Files changed (57) hide show
  1. package/dist/app/index.d.ts +2915 -0
  2. package/dist/app/index.js +5 -4
  3. package/dist/{chunk-7PGEGSUM.js → chunk-7D2HSSIW.js} +2 -2
  4. package/dist/{chunk-YU6MBDVO.js → chunk-ABV5LDDC.js} +4 -68
  5. package/dist/chunk-AZXSFDG2.js +474 -0
  6. package/dist/{chunk-6IA2OMAE.js → chunk-HC2KV6BU.js} +9 -0
  7. package/dist/{chunk-PXGSJNBH.js → chunk-HVC2BTFO.js} +783 -374
  8. package/dist/{chunk-3HEUGBOT.js → chunk-LK4MPIMK.js} +2 -2
  9. package/dist/{chunk-XOTJNW4Q.js → chunk-QIW6OCEI.js} +18 -1
  10. package/dist/{chunk-GUJUK6EH.js → chunk-QJLRDTYS.js} +198 -2
  11. package/dist/{chunk-QZJM3RYI.js → chunk-SNHGSCKH.js} +1 -1
  12. package/dist/{chunk-FXWETLEB.js → chunk-V3UOW2HG.js} +1 -1
  13. package/dist/{chunk-N6WLOWOD.js → chunk-WSC5LU3U.js} +3 -12
  14. package/dist/{chunk-EPV7NU2E.js → chunk-WWVSPOJY.js} +385 -188
  15. package/dist/{chunk-SQ5JGELM.js → chunk-ZDKQNQ4X.js} +19 -1
  16. package/dist/{chunk-PTUOINQ2.js → chunk-ZGZZIR6K.js} +3 -3
  17. package/dist/{chunk-D3KQAABP.js → chunk-ZMXZ476Y.js} +1 -1
  18. package/dist/components/index.d.ts +488 -452
  19. package/dist/components/index.js +127 -22
  20. package/dist/components/navigation/index.js +2 -2
  21. package/dist/features/auth/index.d.ts +463 -377
  22. package/dist/features/crm/index.d.ts +459 -379
  23. package/dist/features/crm/index.js +8 -8
  24. package/dist/features/dashboard/index.js +8 -8
  25. package/dist/features/delivery/index.d.ts +457 -371
  26. package/dist/features/delivery/index.js +8 -8
  27. package/dist/features/lead-gen/index.d.ts +225 -65
  28. package/dist/features/lead-gen/index.js +8 -8
  29. package/dist/features/monitoring/index.js +9 -9
  30. package/dist/features/monitoring/requests/index.js +7 -7
  31. package/dist/features/operations/index.js +10 -10
  32. package/dist/features/settings/index.d.ts +463 -377
  33. package/dist/features/settings/index.js +9 -9
  34. package/dist/hooks/delivery/index.d.ts +457 -371
  35. package/dist/hooks/index.d.ts +957 -718
  36. package/dist/hooks/index.js +7 -7
  37. package/dist/hooks/published.d.ts +957 -718
  38. package/dist/hooks/published.js +7 -7
  39. package/dist/index.d.ts +1327 -1020
  40. package/dist/index.js +8 -8
  41. package/dist/initialization/index.d.ts +463 -377
  42. package/dist/organization/index.d.ts +11 -1
  43. package/dist/organization/index.js +2 -2
  44. package/dist/profile/index.d.ts +463 -377
  45. package/dist/provider/index.d.ts +3132 -169
  46. package/dist/provider/index.js +6 -6
  47. package/dist/provider/published.d.ts +3098 -168
  48. package/dist/provider/published.js +3 -3
  49. package/dist/supabase/index.d.ts +559 -389
  50. package/dist/test-utils/index.d.ts +21 -1
  51. package/dist/test-utils/index.js +13 -4
  52. package/dist/theme/index.js +2 -2
  53. package/dist/types/index.d.ts +463 -377
  54. package/package.json +2 -2
  55. package/src/test-utils/README.md +2 -0
  56. package/dist/chunk-LVUCBY7X.js +0 -127
  57. /package/dist/{chunk-ZBCTB5CA.js → chunk-EIOJNUPL.js} +0 -0
@@ -54,10 +54,57 @@ type Json = string | number | boolean | null | {
54
54
  } | Json[];
55
55
  type Database = {
56
56
  __InternalSupabase: {
57
- PostgrestVersion: "12.2.3 (519615d)";
57
+ PostgrestVersion: '12.2.3 (519615d)';
58
58
  };
59
59
  public: {
60
60
  Tables: {
61
+ acq_artifacts: {
62
+ Row: {
63
+ content: Json;
64
+ created_at: string;
65
+ created_by: string | null;
66
+ id: string;
67
+ kind: string;
68
+ organization_id: string;
69
+ owner_id: string;
70
+ owner_kind: string;
71
+ source_execution_id: string | null;
72
+ version: number;
73
+ };
74
+ Insert: {
75
+ content: Json;
76
+ created_at?: string;
77
+ created_by?: string | null;
78
+ id?: string;
79
+ kind: string;
80
+ organization_id: string;
81
+ owner_id: string;
82
+ owner_kind: string;
83
+ source_execution_id?: string | null;
84
+ version?: number;
85
+ };
86
+ Update: {
87
+ content?: Json;
88
+ created_at?: string;
89
+ created_by?: string | null;
90
+ id?: string;
91
+ kind?: string;
92
+ organization_id?: string;
93
+ owner_id?: string;
94
+ owner_kind?: string;
95
+ source_execution_id?: string | null;
96
+ version?: number;
97
+ };
98
+ Relationships: [
99
+ {
100
+ foreignKeyName: 'acq_artifacts_organization_id_fkey';
101
+ columns: ['organization_id'];
102
+ isOneToOne: false;
103
+ referencedRelation: 'organizations';
104
+ referencedColumns: ['id'];
105
+ }
106
+ ];
107
+ };
61
108
  acq_companies: {
62
109
  Row: {
63
110
  batch_id: string | null;
@@ -76,6 +123,9 @@ type Database = {
76
123
  num_employees: number | null;
77
124
  organization_id: string;
78
125
  pipeline_status: Json;
126
+ qualification_rubric_key: string | null;
127
+ qualification_score: number | null;
128
+ qualification_signals: Json | null;
79
129
  segment: string | null;
80
130
  source: string | null;
81
131
  status: string;
@@ -99,6 +149,9 @@ type Database = {
99
149
  num_employees?: number | null;
100
150
  organization_id: string;
101
151
  pipeline_status?: Json;
152
+ qualification_rubric_key?: string | null;
153
+ qualification_score?: number | null;
154
+ qualification_signals?: Json | null;
102
155
  segment?: string | null;
103
156
  source?: string | null;
104
157
  status?: string;
@@ -122,6 +175,9 @@ type Database = {
122
175
  num_employees?: number | null;
123
176
  organization_id?: string;
124
177
  pipeline_status?: Json;
178
+ qualification_rubric_key?: string | null;
179
+ qualification_score?: number | null;
180
+ qualification_signals?: Json | null;
125
181
  segment?: string | null;
126
182
  source?: string | null;
127
183
  status?: string;
@@ -130,11 +186,11 @@ type Database = {
130
186
  };
131
187
  Relationships: [
132
188
  {
133
- foreignKeyName: "acq_companies_organization_id_fkey";
134
- columns: ["organization_id"];
189
+ foreignKeyName: 'acq_companies_organization_id_fkey';
190
+ columns: ['organization_id'];
135
191
  isOneToOne: false;
136
- referencedRelation: "organizations";
137
- referencedColumns: ["id"];
192
+ referencedRelation: 'organizations';
193
+ referencedColumns: ['id'];
138
194
  }
139
195
  ];
140
196
  };
@@ -158,6 +214,9 @@ type Database = {
158
214
  opening_line: string | null;
159
215
  organization_id: string;
160
216
  pipeline_status: Json;
217
+ qualification_rubric_key: string | null;
218
+ qualification_score: number | null;
219
+ qualification_signals: Json | null;
161
220
  source: string | null;
162
221
  source_id: string | null;
163
222
  status: string;
@@ -183,6 +242,9 @@ type Database = {
183
242
  opening_line?: string | null;
184
243
  organization_id: string;
185
244
  pipeline_status?: Json;
245
+ qualification_rubric_key?: string | null;
246
+ qualification_score?: number | null;
247
+ qualification_signals?: Json | null;
186
248
  source?: string | null;
187
249
  source_id?: string | null;
188
250
  status?: string;
@@ -208,6 +270,9 @@ type Database = {
208
270
  opening_line?: string | null;
209
271
  organization_id?: string;
210
272
  pipeline_status?: Json;
273
+ qualification_rubric_key?: string | null;
274
+ qualification_score?: number | null;
275
+ qualification_signals?: Json | null;
211
276
  source?: string | null;
212
277
  source_id?: string | null;
213
278
  status?: string;
@@ -216,18 +281,18 @@ type Database = {
216
281
  };
217
282
  Relationships: [
218
283
  {
219
- foreignKeyName: "acq_contacts_company_id_fkey";
220
- columns: ["company_id"];
284
+ foreignKeyName: 'acq_contacts_company_id_fkey';
285
+ columns: ['company_id'];
221
286
  isOneToOne: false;
222
- referencedRelation: "acq_companies";
223
- referencedColumns: ["id"];
287
+ referencedRelation: 'acq_companies';
288
+ referencedColumns: ['id'];
224
289
  },
225
290
  {
226
- foreignKeyName: "acq_contacts_organization_id_fkey";
227
- columns: ["organization_id"];
291
+ foreignKeyName: 'acq_contacts_organization_id_fkey';
292
+ columns: ['organization_id'];
228
293
  isOneToOne: false;
229
- referencedRelation: "organizations";
230
- referencedColumns: ["id"];
294
+ referencedRelation: 'organizations';
295
+ referencedColumns: ['id'];
231
296
  }
232
297
  ];
233
298
  };
@@ -264,11 +329,11 @@ type Database = {
264
329
  };
265
330
  Relationships: [
266
331
  {
267
- foreignKeyName: "acq_content_organization_id_fkey";
268
- columns: ["organization_id"];
332
+ foreignKeyName: 'acq_content_organization_id_fkey';
333
+ columns: ['organization_id'];
269
334
  isOneToOne: false;
270
- referencedRelation: "organizations";
271
- referencedColumns: ["id"];
335
+ referencedRelation: 'organizations';
336
+ referencedColumns: ['id'];
272
337
  }
273
338
  ];
274
339
  };
@@ -332,18 +397,18 @@ type Database = {
332
397
  };
333
398
  Relationships: [
334
399
  {
335
- foreignKeyName: "acq_content_distributions_content_id_fkey";
336
- columns: ["content_id"];
400
+ foreignKeyName: 'acq_content_distributions_content_id_fkey';
401
+ columns: ['content_id'];
337
402
  isOneToOne: false;
338
- referencedRelation: "acq_content";
339
- referencedColumns: ["id"];
403
+ referencedRelation: 'acq_content';
404
+ referencedColumns: ['id'];
340
405
  },
341
406
  {
342
- foreignKeyName: "acq_content_distributions_organization_id_fkey";
343
- columns: ["organization_id"];
407
+ foreignKeyName: 'acq_content_distributions_organization_id_fkey';
408
+ columns: ['organization_id'];
344
409
  isOneToOne: false;
345
- referencedRelation: "organizations";
346
- referencedColumns: ["id"];
410
+ referencedRelation: 'organizations';
411
+ referencedColumns: ['id'];
347
412
  }
348
413
  ];
349
414
  };
@@ -377,18 +442,18 @@ type Database = {
377
442
  };
378
443
  Relationships: [
379
444
  {
380
- foreignKeyName: "acq_deal_notes_deal_id_fkey";
381
- columns: ["deal_id"];
445
+ foreignKeyName: 'acq_deal_notes_deal_id_fkey';
446
+ columns: ['deal_id'];
382
447
  isOneToOne: false;
383
- referencedRelation: "acq_deals";
384
- referencedColumns: ["id"];
448
+ referencedRelation: 'acq_deals';
449
+ referencedColumns: ['id'];
385
450
  },
386
451
  {
387
- foreignKeyName: "acq_deal_notes_organization_id_fkey";
388
- columns: ["organization_id"];
452
+ foreignKeyName: 'acq_deal_notes_organization_id_fkey';
453
+ columns: ['organization_id'];
389
454
  isOneToOne: false;
390
- referencedRelation: "organizations";
391
- referencedColumns: ["id"];
455
+ referencedRelation: 'organizations';
456
+ referencedColumns: ['id'];
392
457
  }
393
458
  ];
394
459
  };
@@ -440,18 +505,18 @@ type Database = {
440
505
  };
441
506
  Relationships: [
442
507
  {
443
- foreignKeyName: "acq_deal_tasks_deal_id_fkey";
444
- columns: ["deal_id"];
508
+ foreignKeyName: 'acq_deal_tasks_deal_id_fkey';
509
+ columns: ['deal_id'];
445
510
  isOneToOne: false;
446
- referencedRelation: "acq_deals";
447
- referencedColumns: ["id"];
511
+ referencedRelation: 'acq_deals';
512
+ referencedColumns: ['id'];
448
513
  },
449
514
  {
450
- foreignKeyName: "acq_deal_tasks_organization_id_fkey";
451
- columns: ["organization_id"];
515
+ foreignKeyName: 'acq_deal_tasks_organization_id_fkey';
516
+ columns: ['organization_id'];
452
517
  isOneToOne: false;
453
- referencedRelation: "organizations";
454
- referencedColumns: ["id"];
518
+ referencedRelation: 'organizations';
519
+ referencedColumns: ['id'];
455
520
  }
456
521
  ];
457
522
  };
@@ -563,86 +628,95 @@ type Database = {
563
628
  };
564
629
  Relationships: [
565
630
  {
566
- foreignKeyName: "acq_deals_contact_id_fkey";
567
- columns: ["contact_id"];
631
+ foreignKeyName: 'acq_deals_contact_id_fkey';
632
+ columns: ['contact_id'];
568
633
  isOneToOne: false;
569
- referencedRelation: "acq_contacts";
570
- referencedColumns: ["id"];
634
+ referencedRelation: 'acq_contacts';
635
+ referencedColumns: ['id'];
571
636
  },
572
637
  {
573
- foreignKeyName: "acq_deals_organization_id_fkey";
574
- columns: ["organization_id"];
638
+ foreignKeyName: 'acq_deals_organization_id_fkey';
639
+ columns: ['organization_id'];
575
640
  isOneToOne: false;
576
- referencedRelation: "organizations";
577
- referencedColumns: ["id"];
641
+ referencedRelation: 'organizations';
642
+ referencedColumns: ['id'];
578
643
  },
579
644
  {
580
- foreignKeyName: "acq_deals_source_list_id_fkey";
581
- columns: ["source_list_id"];
645
+ foreignKeyName: 'acq_deals_source_list_id_fkey';
646
+ columns: ['source_list_id'];
582
647
  isOneToOne: false;
583
- referencedRelation: "acq_lists";
584
- referencedColumns: ["id"];
648
+ referencedRelation: 'acq_lists';
649
+ referencedColumns: ['id'];
585
650
  }
586
651
  ];
587
652
  };
588
653
  acq_list_companies: {
589
654
  Row: {
655
+ activity_log: Json;
590
656
  added_at: string;
591
657
  added_by: string | null;
592
658
  company_id: string;
593
659
  id: string;
594
660
  list_id: string;
661
+ pipeline_key: string;
662
+ processing_state: Json;
595
663
  source_execution_id: string | null;
596
664
  source_input_hash: string | null;
597
665
  source_resource_id: string | null;
598
- stage: string | null;
599
- stage_updated_at: string | null;
666
+ stage_key: string;
667
+ state_key: string;
600
668
  };
601
669
  Insert: {
670
+ activity_log?: Json;
602
671
  added_at?: string;
603
672
  added_by?: string | null;
604
673
  company_id: string;
605
674
  id?: string;
606
675
  list_id: string;
676
+ pipeline_key?: string;
677
+ processing_state?: Json;
607
678
  source_execution_id?: string | null;
608
679
  source_input_hash?: string | null;
609
680
  source_resource_id?: string | null;
610
- stage?: string | null;
611
- stage_updated_at?: string | null;
681
+ stage_key: string;
682
+ state_key: string;
612
683
  };
613
684
  Update: {
685
+ activity_log?: Json;
614
686
  added_at?: string;
615
687
  added_by?: string | null;
616
688
  company_id?: string;
617
689
  id?: string;
618
690
  list_id?: string;
691
+ pipeline_key?: string;
692
+ processing_state?: Json;
619
693
  source_execution_id?: string | null;
620
694
  source_input_hash?: string | null;
621
695
  source_resource_id?: string | null;
622
- stage?: string | null;
623
- stage_updated_at?: string | null;
696
+ stage_key?: string;
697
+ state_key?: string;
624
698
  };
625
699
  Relationships: [
626
700
  {
627
- foreignKeyName: "acq_list_companies_company_id_fkey";
628
- columns: ["company_id"];
701
+ foreignKeyName: 'acq_list_companies_company_id_fkey';
702
+ columns: ['company_id'];
629
703
  isOneToOne: false;
630
- referencedRelation: "acq_companies";
631
- referencedColumns: ["id"];
704
+ referencedRelation: 'acq_companies';
705
+ referencedColumns: ['id'];
632
706
  },
633
707
  {
634
- foreignKeyName: "acq_list_companies_list_id_fkey";
635
- columns: ["list_id"];
708
+ foreignKeyName: 'acq_list_companies_list_id_fkey';
709
+ columns: ['list_id'];
636
710
  isOneToOne: false;
637
- referencedRelation: "acq_lists";
638
- referencedColumns: ["id"];
711
+ referencedRelation: 'acq_lists';
712
+ referencedColumns: ['id'];
639
713
  },
640
714
  {
641
- foreignKeyName: "acq_list_companies_source_execution_id_fkey";
642
- columns: ["source_execution_id"];
715
+ foreignKeyName: 'acq_list_companies_source_execution_id_fkey';
716
+ columns: ['source_execution_id'];
643
717
  isOneToOne: false;
644
- referencedRelation: "execution_logs";
645
- referencedColumns: ["execution_id"];
718
+ referencedRelation: 'execution_logs';
719
+ referencedColumns: ['execution_id'];
646
720
  }
647
721
  ];
648
722
  };
@@ -670,79 +744,88 @@ type Database = {
670
744
  };
671
745
  Relationships: [
672
746
  {
673
- foreignKeyName: "acq_list_executions_execution_id_fkey";
674
- columns: ["execution_id"];
747
+ foreignKeyName: 'acq_list_executions_execution_id_fkey';
748
+ columns: ['execution_id'];
675
749
  isOneToOne: false;
676
- referencedRelation: "execution_logs";
677
- referencedColumns: ["execution_id"];
750
+ referencedRelation: 'execution_logs';
751
+ referencedColumns: ['execution_id'];
678
752
  },
679
753
  {
680
- foreignKeyName: "acq_list_executions_list_id_fkey";
681
- columns: ["list_id"];
754
+ foreignKeyName: 'acq_list_executions_list_id_fkey';
755
+ columns: ['list_id'];
682
756
  isOneToOne: false;
683
- referencedRelation: "acq_lists";
684
- referencedColumns: ["id"];
757
+ referencedRelation: 'acq_lists';
758
+ referencedColumns: ['id'];
685
759
  }
686
760
  ];
687
761
  };
688
762
  acq_list_members: {
689
763
  Row: {
764
+ activity_log: Json;
690
765
  added_at: string;
691
766
  added_by: string | null;
692
767
  contact_id: string;
693
768
  id: string;
694
769
  list_id: string;
770
+ pipeline_key: string;
771
+ processing_state: Json;
695
772
  source_execution_id: string | null;
696
773
  source_input_hash: string | null;
697
774
  source_resource_id: string | null;
698
- stage: string | null;
699
- stage_updated_at: string | null;
775
+ stage_key: string;
776
+ state_key: string;
700
777
  };
701
778
  Insert: {
779
+ activity_log?: Json;
702
780
  added_at?: string;
703
781
  added_by?: string | null;
704
782
  contact_id: string;
705
783
  id?: string;
706
784
  list_id: string;
785
+ pipeline_key?: string;
786
+ processing_state?: Json;
707
787
  source_execution_id?: string | null;
708
788
  source_input_hash?: string | null;
709
789
  source_resource_id?: string | null;
710
- stage?: string | null;
711
- stage_updated_at?: string | null;
790
+ stage_key: string;
791
+ state_key: string;
712
792
  };
713
793
  Update: {
794
+ activity_log?: Json;
714
795
  added_at?: string;
715
796
  added_by?: string | null;
716
797
  contact_id?: string;
717
798
  id?: string;
718
799
  list_id?: string;
800
+ pipeline_key?: string;
801
+ processing_state?: Json;
719
802
  source_execution_id?: string | null;
720
803
  source_input_hash?: string | null;
721
804
  source_resource_id?: string | null;
722
- stage?: string | null;
723
- stage_updated_at?: string | null;
805
+ stage_key?: string;
806
+ state_key?: string;
724
807
  };
725
808
  Relationships: [
726
809
  {
727
- foreignKeyName: "acq_list_members_contact_id_fkey";
728
- columns: ["contact_id"];
810
+ foreignKeyName: 'acq_list_members_contact_id_fkey';
811
+ columns: ['contact_id'];
729
812
  isOneToOne: false;
730
- referencedRelation: "acq_contacts";
731
- referencedColumns: ["id"];
813
+ referencedRelation: 'acq_contacts';
814
+ referencedColumns: ['id'];
732
815
  },
733
816
  {
734
- foreignKeyName: "acq_list_members_list_id_fkey";
735
- columns: ["list_id"];
817
+ foreignKeyName: 'acq_list_members_list_id_fkey';
818
+ columns: ['list_id'];
736
819
  isOneToOne: false;
737
- referencedRelation: "acq_lists";
738
- referencedColumns: ["id"];
820
+ referencedRelation: 'acq_lists';
821
+ referencedColumns: ['id'];
739
822
  },
740
823
  {
741
- foreignKeyName: "acq_list_members_source_execution_id_fkey";
742
- columns: ["source_execution_id"];
824
+ foreignKeyName: 'acq_list_members_source_execution_id_fkey';
825
+ columns: ['source_execution_id'];
743
826
  isOneToOne: false;
744
- referencedRelation: "execution_logs";
745
- referencedColumns: ["execution_id"];
827
+ referencedRelation: 'execution_logs';
828
+ referencedColumns: ['execution_id'];
746
829
  }
747
830
  ];
748
831
  };
@@ -750,55 +833,58 @@ type Database = {
750
833
  Row: {
751
834
  batch_ids: string[];
752
835
  completed_at: string | null;
753
- config: Json;
754
836
  created_at: string;
755
837
  description: string | null;
838
+ icp: Json;
756
839
  id: string;
757
840
  instantly_campaign_id: string | null;
758
841
  launched_at: string | null;
759
842
  metadata: Json;
760
843
  name: string;
761
844
  organization_id: string;
845
+ pipeline_config: Json;
846
+ scraping_config: Json;
762
847
  status: string;
763
- type: string;
764
848
  };
765
849
  Insert: {
766
850
  batch_ids?: string[];
767
851
  completed_at?: string | null;
768
- config?: Json;
769
852
  created_at?: string;
770
853
  description?: string | null;
854
+ icp?: Json;
771
855
  id?: string;
772
856
  instantly_campaign_id?: string | null;
773
857
  launched_at?: string | null;
774
858
  metadata?: Json;
775
859
  name: string;
776
860
  organization_id: string;
861
+ pipeline_config?: Json;
862
+ scraping_config?: Json;
777
863
  status?: string;
778
- type?: string;
779
864
  };
780
865
  Update: {
781
866
  batch_ids?: string[];
782
867
  completed_at?: string | null;
783
- config?: Json;
784
868
  created_at?: string;
785
869
  description?: string | null;
870
+ icp?: Json;
786
871
  id?: string;
787
872
  instantly_campaign_id?: string | null;
788
873
  launched_at?: string | null;
789
874
  metadata?: Json;
790
875
  name?: string;
791
876
  organization_id?: string;
877
+ pipeline_config?: Json;
878
+ scraping_config?: Json;
792
879
  status?: string;
793
- type?: string;
794
880
  };
795
881
  Relationships: [
796
882
  {
797
- foreignKeyName: "acq_lists_organization_id_fkey";
798
- columns: ["organization_id"];
883
+ foreignKeyName: 'acq_lists_organization_id_fkey';
884
+ columns: ['organization_id'];
799
885
  isOneToOne: false;
800
- referencedRelation: "organizations";
801
- referencedColumns: ["id"];
886
+ referencedRelation: 'organizations';
887
+ referencedColumns: ['id'];
802
888
  }
803
889
  ];
804
890
  };
@@ -874,18 +960,18 @@ type Database = {
874
960
  };
875
961
  Relationships: [
876
962
  {
877
- foreignKeyName: "acq_seo_metrics_organization_id_fkey";
878
- columns: ["organization_id"];
963
+ foreignKeyName: 'acq_seo_metrics_organization_id_fkey';
964
+ columns: ['organization_id'];
879
965
  isOneToOne: false;
880
- referencedRelation: "organizations";
881
- referencedColumns: ["id"];
966
+ referencedRelation: 'organizations';
967
+ referencedColumns: ['id'];
882
968
  },
883
969
  {
884
- foreignKeyName: "acq_seo_metrics_seo_page_id_fkey";
885
- columns: ["seo_page_id"];
970
+ foreignKeyName: 'acq_seo_metrics_seo_page_id_fkey';
971
+ columns: ['seo_page_id'];
886
972
  isOneToOne: false;
887
- referencedRelation: "acq_seo_pages";
888
- referencedColumns: ["id"];
973
+ referencedRelation: 'acq_seo_pages';
974
+ referencedColumns: ['id'];
889
975
  }
890
976
  ];
891
977
  };
@@ -961,11 +1047,11 @@ type Database = {
961
1047
  };
962
1048
  Relationships: [
963
1049
  {
964
- foreignKeyName: "acq_seo_pages_organization_id_fkey";
965
- columns: ["organization_id"];
1050
+ foreignKeyName: 'acq_seo_pages_organization_id_fkey';
1051
+ columns: ['organization_id'];
966
1052
  isOneToOne: false;
967
- referencedRelation: "organizations";
968
- referencedColumns: ["id"];
1053
+ referencedRelation: 'organizations';
1054
+ referencedColumns: ['id'];
969
1055
  }
970
1056
  ];
971
1057
  };
@@ -1062,11 +1148,11 @@ type Database = {
1062
1148
  };
1063
1149
  Relationships: [
1064
1150
  {
1065
- foreignKeyName: "acq_social_posts_organization_id_fkey";
1066
- columns: ["organization_id"];
1151
+ foreignKeyName: 'acq_social_posts_organization_id_fkey';
1152
+ columns: ['organization_id'];
1067
1153
  isOneToOne: false;
1068
- referencedRelation: "organizations";
1069
- referencedColumns: ["id"];
1154
+ referencedRelation: 'organizations';
1155
+ referencedColumns: ['id'];
1070
1156
  }
1071
1157
  ];
1072
1158
  };
@@ -1121,11 +1207,11 @@ type Database = {
1121
1207
  };
1122
1208
  Relationships: [
1123
1209
  {
1124
- foreignKeyName: "activities_organization_id_fkey";
1125
- columns: ["organization_id"];
1210
+ foreignKeyName: 'activities_organization_id_fkey';
1211
+ columns: ['organization_id'];
1126
1212
  isOneToOne: false;
1127
- referencedRelation: "organizations";
1128
- referencedColumns: ["id"];
1213
+ referencedRelation: 'organizations';
1214
+ referencedColumns: ['id'];
1129
1215
  }
1130
1216
  ];
1131
1217
  };
@@ -1156,11 +1242,11 @@ type Database = {
1156
1242
  };
1157
1243
  Relationships: [
1158
1244
  {
1159
- foreignKeyName: "api_keys_organization_id_fkey";
1160
- columns: ["organization_id"];
1245
+ foreignKeyName: 'api_keys_organization_id_fkey';
1246
+ columns: ['organization_id'];
1161
1247
  isOneToOne: false;
1162
- referencedRelation: "organizations";
1163
- referencedColumns: ["id"];
1248
+ referencedRelation: 'organizations';
1249
+ referencedColumns: ['id'];
1164
1250
  }
1165
1251
  ];
1166
1252
  };
@@ -1239,25 +1325,25 @@ type Database = {
1239
1325
  };
1240
1326
  Relationships: [
1241
1327
  {
1242
- foreignKeyName: "command_queue_completed_by_fkey";
1243
- columns: ["completed_by"];
1328
+ foreignKeyName: 'command_queue_completed_by_fkey';
1329
+ columns: ['completed_by'];
1244
1330
  isOneToOne: false;
1245
- referencedRelation: "users";
1246
- referencedColumns: ["id"];
1331
+ referencedRelation: 'users';
1332
+ referencedColumns: ['id'];
1247
1333
  },
1248
1334
  {
1249
- foreignKeyName: "command_queue_organization_id_fkey";
1250
- columns: ["organization_id"];
1335
+ foreignKeyName: 'command_queue_organization_id_fkey';
1336
+ columns: ['organization_id'];
1251
1337
  isOneToOne: false;
1252
- referencedRelation: "organizations";
1253
- referencedColumns: ["id"];
1338
+ referencedRelation: 'organizations';
1339
+ referencedColumns: ['id'];
1254
1340
  },
1255
1341
  {
1256
- foreignKeyName: "command_queue_target_execution_id_fkey";
1257
- columns: ["target_execution_id"];
1342
+ foreignKeyName: 'command_queue_target_execution_id_fkey';
1343
+ columns: ['target_execution_id'];
1258
1344
  isOneToOne: false;
1259
- referencedRelation: "execution_logs";
1260
- referencedColumns: ["execution_id"];
1345
+ referencedRelation: 'execution_logs';
1346
+ referencedColumns: ['execution_id'];
1261
1347
  }
1262
1348
  ];
1263
1349
  };
@@ -1297,18 +1383,18 @@ type Database = {
1297
1383
  };
1298
1384
  Relationships: [
1299
1385
  {
1300
- foreignKeyName: "credentials_created_by_fkey";
1301
- columns: ["created_by"];
1386
+ foreignKeyName: 'credentials_created_by_fkey';
1387
+ columns: ['created_by'];
1302
1388
  isOneToOne: false;
1303
- referencedRelation: "users";
1304
- referencedColumns: ["id"];
1389
+ referencedRelation: 'users';
1390
+ referencedColumns: ['id'];
1305
1391
  },
1306
1392
  {
1307
- foreignKeyName: "credentials_organization_id_fkey";
1308
- columns: ["organization_id"];
1393
+ foreignKeyName: 'credentials_organization_id_fkey';
1394
+ columns: ['organization_id'];
1309
1395
  isOneToOne: false;
1310
- referencedRelation: "organizations";
1311
- referencedColumns: ["id"];
1396
+ referencedRelation: 'organizations';
1397
+ referencedColumns: ['id'];
1312
1398
  }
1313
1399
  ];
1314
1400
  };
@@ -1354,11 +1440,11 @@ type Database = {
1354
1440
  };
1355
1441
  Relationships: [
1356
1442
  {
1357
- foreignKeyName: "deployments_organization_id_fkey";
1358
- columns: ["organization_id"];
1443
+ foreignKeyName: 'deployments_organization_id_fkey';
1444
+ columns: ['organization_id'];
1359
1445
  isOneToOne: false;
1360
- referencedRelation: "organizations";
1361
- referencedColumns: ["id"];
1446
+ referencedRelation: 'organizations';
1447
+ referencedColumns: ['id'];
1362
1448
  }
1363
1449
  ];
1364
1450
  };
@@ -1413,25 +1499,25 @@ type Database = {
1413
1499
  };
1414
1500
  Relationships: [
1415
1501
  {
1416
- foreignKeyName: "execution_errors_execution_id_fkey";
1417
- columns: ["execution_id"];
1502
+ foreignKeyName: 'execution_errors_execution_id_fkey';
1503
+ columns: ['execution_id'];
1418
1504
  isOneToOne: false;
1419
- referencedRelation: "execution_logs";
1420
- referencedColumns: ["execution_id"];
1505
+ referencedRelation: 'execution_logs';
1506
+ referencedColumns: ['execution_id'];
1421
1507
  },
1422
1508
  {
1423
- foreignKeyName: "execution_errors_organization_id_fkey";
1424
- columns: ["organization_id"];
1509
+ foreignKeyName: 'execution_errors_organization_id_fkey';
1510
+ columns: ['organization_id'];
1425
1511
  isOneToOne: false;
1426
- referencedRelation: "organizations";
1427
- referencedColumns: ["id"];
1512
+ referencedRelation: 'organizations';
1513
+ referencedColumns: ['id'];
1428
1514
  },
1429
1515
  {
1430
- foreignKeyName: "execution_errors_resolved_by_fkey";
1431
- columns: ["resolved_by"];
1516
+ foreignKeyName: 'execution_errors_resolved_by_fkey';
1517
+ columns: ['resolved_by'];
1432
1518
  isOneToOne: false;
1433
- referencedRelation: "users";
1434
- referencedColumns: ["id"];
1519
+ referencedRelation: 'users';
1520
+ referencedColumns: ['id'];
1435
1521
  }
1436
1522
  ];
1437
1523
  };
@@ -1513,32 +1599,32 @@ type Database = {
1513
1599
  };
1514
1600
  Relationships: [
1515
1601
  {
1516
- foreignKeyName: "execution_history_organization_id_fkey";
1517
- columns: ["organization_id"];
1602
+ foreignKeyName: 'execution_history_organization_id_fkey';
1603
+ columns: ['organization_id'];
1518
1604
  isOneToOne: false;
1519
- referencedRelation: "organizations";
1520
- referencedColumns: ["id"];
1605
+ referencedRelation: 'organizations';
1606
+ referencedColumns: ['id'];
1521
1607
  },
1522
1608
  {
1523
- foreignKeyName: "execution_logs_origin_execution_id_fkey";
1524
- columns: ["origin_execution_id"];
1609
+ foreignKeyName: 'execution_logs_origin_execution_id_fkey';
1610
+ columns: ['origin_execution_id'];
1525
1611
  isOneToOne: false;
1526
- referencedRelation: "execution_logs";
1527
- referencedColumns: ["execution_id"];
1612
+ referencedRelation: 'execution_logs';
1613
+ referencedColumns: ['execution_id'];
1528
1614
  },
1529
1615
  {
1530
- foreignKeyName: "execution_logs_session_id_fkey";
1531
- columns: ["session_id"];
1616
+ foreignKeyName: 'execution_logs_session_id_fkey';
1617
+ columns: ['session_id'];
1532
1618
  isOneToOne: false;
1533
- referencedRelation: "sessions";
1534
- referencedColumns: ["session_id"];
1619
+ referencedRelation: 'sessions';
1620
+ referencedColumns: ['session_id'];
1535
1621
  },
1536
1622
  {
1537
- foreignKeyName: "execution_logs_user_id_fkey";
1538
- columns: ["user_id"];
1623
+ foreignKeyName: 'execution_logs_user_id_fkey';
1624
+ columns: ['user_id'];
1539
1625
  isOneToOne: false;
1540
- referencedRelation: "users";
1541
- referencedColumns: ["id"];
1626
+ referencedRelation: 'users';
1627
+ referencedColumns: ['id'];
1542
1628
  }
1543
1629
  ];
1544
1630
  };
@@ -1584,18 +1670,18 @@ type Database = {
1584
1670
  };
1585
1671
  Relationships: [
1586
1672
  {
1587
- foreignKeyName: "execution_metrics_execution_id_fkey";
1588
- columns: ["execution_id"];
1673
+ foreignKeyName: 'execution_metrics_execution_id_fkey';
1674
+ columns: ['execution_id'];
1589
1675
  isOneToOne: true;
1590
- referencedRelation: "execution_logs";
1591
- referencedColumns: ["execution_id"];
1676
+ referencedRelation: 'execution_logs';
1677
+ referencedColumns: ['execution_id'];
1592
1678
  },
1593
1679
  {
1594
- foreignKeyName: "execution_metrics_organization_id_fkey";
1595
- columns: ["organization_id"];
1680
+ foreignKeyName: 'execution_metrics_organization_id_fkey';
1681
+ columns: ['organization_id'];
1596
1682
  isOneToOne: false;
1597
- referencedRelation: "organizations";
1598
- referencedColumns: ["id"];
1683
+ referencedRelation: 'organizations';
1684
+ referencedColumns: ['id'];
1599
1685
  }
1600
1686
  ];
1601
1687
  };
@@ -1638,18 +1724,18 @@ type Database = {
1638
1724
  };
1639
1725
  Relationships: [
1640
1726
  {
1641
- foreignKeyName: "notifications_organization_id_fkey";
1642
- columns: ["organization_id"];
1727
+ foreignKeyName: 'notifications_organization_id_fkey';
1728
+ columns: ['organization_id'];
1643
1729
  isOneToOne: false;
1644
- referencedRelation: "organizations";
1645
- referencedColumns: ["id"];
1730
+ referencedRelation: 'organizations';
1731
+ referencedColumns: ['id'];
1646
1732
  },
1647
1733
  {
1648
- foreignKeyName: "notifications_user_id_fkey";
1649
- columns: ["user_id"];
1734
+ foreignKeyName: 'notifications_user_id_fkey';
1735
+ columns: ['user_id'];
1650
1736
  isOneToOne: false;
1651
- referencedRelation: "users";
1652
- referencedColumns: ["id"];
1737
+ referencedRelation: 'users';
1738
+ referencedColumns: ['id'];
1653
1739
  }
1654
1740
  ];
1655
1741
  };
@@ -1704,18 +1790,18 @@ type Database = {
1704
1790
  };
1705
1791
  Relationships: [
1706
1792
  {
1707
- foreignKeyName: "org_invitations_inviter_user_id_fkey";
1708
- columns: ["inviter_user_id"];
1793
+ foreignKeyName: 'org_invitations_inviter_user_id_fkey';
1794
+ columns: ['inviter_user_id'];
1709
1795
  isOneToOne: false;
1710
- referencedRelation: "users";
1711
- referencedColumns: ["id"];
1796
+ referencedRelation: 'users';
1797
+ referencedColumns: ['id'];
1712
1798
  },
1713
1799
  {
1714
- foreignKeyName: "org_invitations_organization_id_fkey";
1715
- columns: ["organization_id"];
1800
+ foreignKeyName: 'org_invitations_organization_id_fkey';
1801
+ columns: ['organization_id'];
1716
1802
  isOneToOne: false;
1717
- referencedRelation: "organizations";
1718
- referencedColumns: ["id"];
1803
+ referencedRelation: 'organizations';
1804
+ referencedColumns: ['id'];
1719
1805
  }
1720
1806
  ];
1721
1807
  };
@@ -1758,18 +1844,18 @@ type Database = {
1758
1844
  };
1759
1845
  Relationships: [
1760
1846
  {
1761
- foreignKeyName: "org_memberships_organization_id_fkey";
1762
- columns: ["organization_id"];
1847
+ foreignKeyName: 'org_memberships_organization_id_fkey';
1848
+ columns: ['organization_id'];
1763
1849
  isOneToOne: false;
1764
- referencedRelation: "organizations";
1765
- referencedColumns: ["id"];
1850
+ referencedRelation: 'organizations';
1851
+ referencedColumns: ['id'];
1766
1852
  },
1767
1853
  {
1768
- foreignKeyName: "org_memberships_user_id_fkey";
1769
- columns: ["user_id"];
1854
+ foreignKeyName: 'org_memberships_user_id_fkey';
1855
+ columns: ['user_id'];
1770
1856
  isOneToOne: false;
1771
- referencedRelation: "users";
1772
- referencedColumns: ["id"];
1857
+ referencedRelation: 'users';
1858
+ referencedColumns: ['id'];
1773
1859
  }
1774
1860
  ];
1775
1861
  };
@@ -1794,25 +1880,25 @@ type Database = {
1794
1880
  };
1795
1881
  Relationships: [
1796
1882
  {
1797
- foreignKeyName: "org_rol_assignments_granted_by_fkey";
1798
- columns: ["granted_by"];
1883
+ foreignKeyName: 'org_rol_assignments_granted_by_fkey';
1884
+ columns: ['granted_by'];
1799
1885
  isOneToOne: false;
1800
- referencedRelation: "users";
1801
- referencedColumns: ["id"];
1886
+ referencedRelation: 'users';
1887
+ referencedColumns: ['id'];
1802
1888
  },
1803
1889
  {
1804
- foreignKeyName: "org_rol_assignments_membership_id_fkey";
1805
- columns: ["membership_id"];
1890
+ foreignKeyName: 'org_rol_assignments_membership_id_fkey';
1891
+ columns: ['membership_id'];
1806
1892
  isOneToOne: false;
1807
- referencedRelation: "org_memberships";
1808
- referencedColumns: ["id"];
1893
+ referencedRelation: 'org_memberships';
1894
+ referencedColumns: ['id'];
1809
1895
  },
1810
1896
  {
1811
- foreignKeyName: "org_rol_assignments_role_id_fkey";
1812
- columns: ["role_id"];
1897
+ foreignKeyName: 'org_rol_assignments_role_id_fkey';
1898
+ columns: ['role_id'];
1813
1899
  isOneToOne: false;
1814
- referencedRelation: "org_rol_definitions";
1815
- referencedColumns: ["id"];
1900
+ referencedRelation: 'org_rol_definitions';
1901
+ referencedColumns: ['id'];
1816
1902
  }
1817
1903
  ];
1818
1904
  };
@@ -1849,11 +1935,11 @@ type Database = {
1849
1935
  };
1850
1936
  Relationships: [
1851
1937
  {
1852
- foreignKeyName: "org_rol_definitions_organization_id_fkey";
1853
- columns: ["organization_id"];
1938
+ foreignKeyName: 'org_rol_definitions_organization_id_fkey';
1939
+ columns: ['organization_id'];
1854
1940
  isOneToOne: false;
1855
- referencedRelation: "organizations";
1856
- referencedColumns: ["id"];
1941
+ referencedRelation: 'organizations';
1942
+ referencedColumns: ['id'];
1857
1943
  }
1858
1944
  ];
1859
1945
  };
@@ -1875,18 +1961,18 @@ type Database = {
1875
1961
  };
1876
1962
  Relationships: [
1877
1963
  {
1878
- foreignKeyName: "org_rol_grants_permission_key_fkey";
1879
- columns: ["permission_key"];
1964
+ foreignKeyName: 'org_rol_grants_permission_key_fkey';
1965
+ columns: ['permission_key'];
1880
1966
  isOneToOne: false;
1881
- referencedRelation: "org_rol_permissions";
1882
- referencedColumns: ["key"];
1967
+ referencedRelation: 'org_rol_permissions';
1968
+ referencedColumns: ['key'];
1883
1969
  },
1884
1970
  {
1885
- foreignKeyName: "org_rol_grants_role_id_fkey";
1886
- columns: ["role_id"];
1971
+ foreignKeyName: 'org_rol_grants_role_id_fkey';
1972
+ columns: ['role_id'];
1887
1973
  isOneToOne: false;
1888
- referencedRelation: "org_rol_definitions";
1889
- referencedColumns: ["id"];
1974
+ referencedRelation: 'org_rol_definitions';
1975
+ referencedColumns: ['id'];
1890
1976
  }
1891
1977
  ];
1892
1978
  };
@@ -1998,25 +2084,25 @@ type Database = {
1998
2084
  };
1999
2085
  Relationships: [
2000
2086
  {
2001
- foreignKeyName: "fk_milestones_project";
2002
- columns: ["project_id"];
2087
+ foreignKeyName: 'fk_milestones_project';
2088
+ columns: ['project_id'];
2003
2089
  isOneToOne: false;
2004
- referencedRelation: "prj_projects";
2005
- referencedColumns: ["id"];
2090
+ referencedRelation: 'prj_projects';
2091
+ referencedColumns: ['id'];
2006
2092
  },
2007
2093
  {
2008
- foreignKeyName: "prj_milestones_organization_id_fkey";
2009
- columns: ["organization_id"];
2094
+ foreignKeyName: 'prj_milestones_organization_id_fkey';
2095
+ columns: ['organization_id'];
2010
2096
  isOneToOne: false;
2011
- referencedRelation: "organizations";
2012
- referencedColumns: ["id"];
2097
+ referencedRelation: 'organizations';
2098
+ referencedColumns: ['id'];
2013
2099
  },
2014
2100
  {
2015
- foreignKeyName: "prj_milestones_project_id_fkey";
2016
- columns: ["project_id"];
2101
+ foreignKeyName: 'prj_milestones_project_id_fkey';
2102
+ columns: ['project_id'];
2017
2103
  isOneToOne: false;
2018
- referencedRelation: "prj_projects";
2019
- referencedColumns: ["id"];
2104
+ referencedRelation: 'prj_projects';
2105
+ referencedColumns: ['id'];
2020
2106
  }
2021
2107
  ];
2022
2108
  };
@@ -2065,67 +2151,67 @@ type Database = {
2065
2151
  };
2066
2152
  Relationships: [
2067
2153
  {
2068
- foreignKeyName: "fk_notes_created_by";
2069
- columns: ["created_by"];
2154
+ foreignKeyName: 'fk_notes_created_by';
2155
+ columns: ['created_by'];
2070
2156
  isOneToOne: false;
2071
- referencedRelation: "users";
2072
- referencedColumns: ["id"];
2157
+ referencedRelation: 'users';
2158
+ referencedColumns: ['id'];
2073
2159
  },
2074
2160
  {
2075
- foreignKeyName: "fk_notes_milestone";
2076
- columns: ["milestone_id"];
2161
+ foreignKeyName: 'fk_notes_milestone';
2162
+ columns: ['milestone_id'];
2077
2163
  isOneToOne: false;
2078
- referencedRelation: "prj_milestones";
2079
- referencedColumns: ["id"];
2164
+ referencedRelation: 'prj_milestones';
2165
+ referencedColumns: ['id'];
2080
2166
  },
2081
2167
  {
2082
- foreignKeyName: "fk_notes_project";
2083
- columns: ["project_id"];
2168
+ foreignKeyName: 'fk_notes_project';
2169
+ columns: ['project_id'];
2084
2170
  isOneToOne: false;
2085
- referencedRelation: "prj_projects";
2086
- referencedColumns: ["id"];
2171
+ referencedRelation: 'prj_projects';
2172
+ referencedColumns: ['id'];
2087
2173
  },
2088
2174
  {
2089
- foreignKeyName: "fk_notes_task";
2090
- columns: ["task_id"];
2175
+ foreignKeyName: 'fk_notes_task';
2176
+ columns: ['task_id'];
2091
2177
  isOneToOne: false;
2092
- referencedRelation: "prj_tasks";
2093
- referencedColumns: ["id"];
2178
+ referencedRelation: 'prj_tasks';
2179
+ referencedColumns: ['id'];
2094
2180
  },
2095
2181
  {
2096
- foreignKeyName: "prj_notes_created_by_fkey";
2097
- columns: ["created_by"];
2182
+ foreignKeyName: 'prj_notes_created_by_fkey';
2183
+ columns: ['created_by'];
2098
2184
  isOneToOne: false;
2099
- referencedRelation: "users";
2100
- referencedColumns: ["id"];
2185
+ referencedRelation: 'users';
2186
+ referencedColumns: ['id'];
2101
2187
  },
2102
2188
  {
2103
- foreignKeyName: "prj_notes_milestone_id_fkey";
2104
- columns: ["milestone_id"];
2189
+ foreignKeyName: 'prj_notes_milestone_id_fkey';
2190
+ columns: ['milestone_id'];
2105
2191
  isOneToOne: false;
2106
- referencedRelation: "prj_milestones";
2107
- referencedColumns: ["id"];
2192
+ referencedRelation: 'prj_milestones';
2193
+ referencedColumns: ['id'];
2108
2194
  },
2109
2195
  {
2110
- foreignKeyName: "prj_notes_organization_id_fkey";
2111
- columns: ["organization_id"];
2196
+ foreignKeyName: 'prj_notes_organization_id_fkey';
2197
+ columns: ['organization_id'];
2112
2198
  isOneToOne: false;
2113
- referencedRelation: "organizations";
2114
- referencedColumns: ["id"];
2199
+ referencedRelation: 'organizations';
2200
+ referencedColumns: ['id'];
2115
2201
  },
2116
2202
  {
2117
- foreignKeyName: "prj_notes_project_id_fkey";
2118
- columns: ["project_id"];
2203
+ foreignKeyName: 'prj_notes_project_id_fkey';
2204
+ columns: ['project_id'];
2119
2205
  isOneToOne: false;
2120
- referencedRelation: "prj_projects";
2121
- referencedColumns: ["id"];
2206
+ referencedRelation: 'prj_projects';
2207
+ referencedColumns: ['id'];
2122
2208
  },
2123
2209
  {
2124
- foreignKeyName: "prj_notes_task_id_fkey";
2125
- columns: ["task_id"];
2210
+ foreignKeyName: 'prj_notes_task_id_fkey';
2211
+ columns: ['task_id'];
2126
2212
  isOneToOne: false;
2127
- referencedRelation: "prj_tasks";
2128
- referencedColumns: ["id"];
2213
+ referencedRelation: 'prj_tasks';
2214
+ referencedColumns: ['id'];
2129
2215
  }
2130
2216
  ];
2131
2217
  };
@@ -2183,39 +2269,39 @@ type Database = {
2183
2269
  };
2184
2270
  Relationships: [
2185
2271
  {
2186
- foreignKeyName: "fk_projects_company";
2187
- columns: ["client_company_id"];
2272
+ foreignKeyName: 'fk_projects_company';
2273
+ columns: ['client_company_id'];
2188
2274
  isOneToOne: false;
2189
- referencedRelation: "acq_companies";
2190
- referencedColumns: ["id"];
2275
+ referencedRelation: 'acq_companies';
2276
+ referencedColumns: ['id'];
2191
2277
  },
2192
2278
  {
2193
- foreignKeyName: "fk_projects_deal";
2194
- columns: ["deal_id"];
2279
+ foreignKeyName: 'fk_projects_deal';
2280
+ columns: ['deal_id'];
2195
2281
  isOneToOne: false;
2196
- referencedRelation: "acq_deals";
2197
- referencedColumns: ["id"];
2282
+ referencedRelation: 'acq_deals';
2283
+ referencedColumns: ['id'];
2198
2284
  },
2199
2285
  {
2200
- foreignKeyName: "prj_projects_client_company_id_fkey";
2201
- columns: ["client_company_id"];
2286
+ foreignKeyName: 'prj_projects_client_company_id_fkey';
2287
+ columns: ['client_company_id'];
2202
2288
  isOneToOne: false;
2203
- referencedRelation: "acq_companies";
2204
- referencedColumns: ["id"];
2289
+ referencedRelation: 'acq_companies';
2290
+ referencedColumns: ['id'];
2205
2291
  },
2206
2292
  {
2207
- foreignKeyName: "prj_projects_deal_id_fkey";
2208
- columns: ["deal_id"];
2293
+ foreignKeyName: 'prj_projects_deal_id_fkey';
2294
+ columns: ['deal_id'];
2209
2295
  isOneToOne: false;
2210
- referencedRelation: "acq_deals";
2211
- referencedColumns: ["id"];
2296
+ referencedRelation: 'acq_deals';
2297
+ referencedColumns: ['id'];
2212
2298
  },
2213
2299
  {
2214
- foreignKeyName: "prj_projects_organization_id_fkey";
2215
- columns: ["organization_id"];
2300
+ foreignKeyName: 'prj_projects_organization_id_fkey';
2301
+ columns: ['organization_id'];
2216
2302
  isOneToOne: false;
2217
- referencedRelation: "organizations";
2218
- referencedColumns: ["id"];
2303
+ referencedRelation: 'organizations';
2304
+ referencedColumns: ['id'];
2219
2305
  }
2220
2306
  ];
2221
2307
  };
@@ -2279,53 +2365,53 @@ type Database = {
2279
2365
  };
2280
2366
  Relationships: [
2281
2367
  {
2282
- foreignKeyName: "fk_tasks_milestone";
2283
- columns: ["milestone_id"];
2368
+ foreignKeyName: 'fk_tasks_milestone';
2369
+ columns: ['milestone_id'];
2284
2370
  isOneToOne: false;
2285
- referencedRelation: "prj_milestones";
2286
- referencedColumns: ["id"];
2371
+ referencedRelation: 'prj_milestones';
2372
+ referencedColumns: ['id'];
2287
2373
  },
2288
2374
  {
2289
- foreignKeyName: "fk_tasks_parent";
2290
- columns: ["parent_task_id"];
2375
+ foreignKeyName: 'fk_tasks_parent';
2376
+ columns: ['parent_task_id'];
2291
2377
  isOneToOne: false;
2292
- referencedRelation: "prj_tasks";
2293
- referencedColumns: ["id"];
2378
+ referencedRelation: 'prj_tasks';
2379
+ referencedColumns: ['id'];
2294
2380
  },
2295
2381
  {
2296
- foreignKeyName: "fk_tasks_project";
2297
- columns: ["project_id"];
2382
+ foreignKeyName: 'fk_tasks_project';
2383
+ columns: ['project_id'];
2298
2384
  isOneToOne: false;
2299
- referencedRelation: "prj_projects";
2300
- referencedColumns: ["id"];
2385
+ referencedRelation: 'prj_projects';
2386
+ referencedColumns: ['id'];
2301
2387
  },
2302
2388
  {
2303
- foreignKeyName: "prj_tasks_milestone_id_fkey";
2304
- columns: ["milestone_id"];
2389
+ foreignKeyName: 'prj_tasks_milestone_id_fkey';
2390
+ columns: ['milestone_id'];
2305
2391
  isOneToOne: false;
2306
- referencedRelation: "prj_milestones";
2307
- referencedColumns: ["id"];
2392
+ referencedRelation: 'prj_milestones';
2393
+ referencedColumns: ['id'];
2308
2394
  },
2309
2395
  {
2310
- foreignKeyName: "prj_tasks_organization_id_fkey";
2311
- columns: ["organization_id"];
2396
+ foreignKeyName: 'prj_tasks_organization_id_fkey';
2397
+ columns: ['organization_id'];
2312
2398
  isOneToOne: false;
2313
- referencedRelation: "organizations";
2314
- referencedColumns: ["id"];
2399
+ referencedRelation: 'organizations';
2400
+ referencedColumns: ['id'];
2315
2401
  },
2316
2402
  {
2317
- foreignKeyName: "prj_tasks_parent_task_id_fkey";
2318
- columns: ["parent_task_id"];
2403
+ foreignKeyName: 'prj_tasks_parent_task_id_fkey';
2404
+ columns: ['parent_task_id'];
2319
2405
  isOneToOne: false;
2320
- referencedRelation: "prj_tasks";
2321
- referencedColumns: ["id"];
2406
+ referencedRelation: 'prj_tasks';
2407
+ referencedColumns: ['id'];
2322
2408
  },
2323
2409
  {
2324
- foreignKeyName: "prj_tasks_project_id_fkey";
2325
- columns: ["project_id"];
2410
+ foreignKeyName: 'prj_tasks_project_id_fkey';
2411
+ columns: ['project_id'];
2326
2412
  isOneToOne: false;
2327
- referencedRelation: "prj_projects";
2328
- referencedColumns: ["id"];
2413
+ referencedRelation: 'prj_projects';
2414
+ referencedColumns: ['id'];
2329
2415
  }
2330
2416
  ];
2331
2417
  };
@@ -2395,25 +2481,25 @@ type Database = {
2395
2481
  };
2396
2482
  Relationships: [
2397
2483
  {
2398
- foreignKeyName: "reported_requests_organization_id_fkey";
2399
- columns: ["organization_id"];
2484
+ foreignKeyName: 'reported_requests_organization_id_fkey';
2485
+ columns: ['organization_id'];
2400
2486
  isOneToOne: false;
2401
- referencedRelation: "organizations";
2402
- referencedColumns: ["id"];
2487
+ referencedRelation: 'organizations';
2488
+ referencedColumns: ['id'];
2403
2489
  },
2404
2490
  {
2405
- foreignKeyName: "reported_requests_project_id_fkey";
2406
- columns: ["project_id"];
2491
+ foreignKeyName: 'reported_requests_project_id_fkey';
2492
+ columns: ['project_id'];
2407
2493
  isOneToOne: false;
2408
- referencedRelation: "prj_projects";
2409
- referencedColumns: ["id"];
2494
+ referencedRelation: 'prj_projects';
2495
+ referencedColumns: ['id'];
2410
2496
  },
2411
2497
  {
2412
- foreignKeyName: "reported_requests_task_id_fkey";
2413
- columns: ["task_id"];
2498
+ foreignKeyName: 'reported_requests_task_id_fkey';
2499
+ columns: ['task_id'];
2414
2500
  isOneToOne: false;
2415
- referencedRelation: "prj_tasks";
2416
- referencedColumns: ["id"];
2501
+ referencedRelation: 'prj_tasks';
2502
+ referencedColumns: ['id'];
2417
2503
  }
2418
2504
  ];
2419
2505
  };
@@ -2453,11 +2539,11 @@ type Database = {
2453
2539
  };
2454
2540
  Relationships: [
2455
2541
  {
2456
- foreignKeyName: "session_messages_session_id_fkey";
2457
- columns: ["session_id"];
2542
+ foreignKeyName: 'session_messages_session_id_fkey';
2543
+ columns: ['session_id'];
2458
2544
  isOneToOne: false;
2459
- referencedRelation: "sessions";
2460
- referencedColumns: ["session_id"];
2545
+ referencedRelation: 'sessions';
2546
+ referencedColumns: ['session_id'];
2461
2547
  }
2462
2548
  ];
2463
2549
  };
@@ -2512,18 +2598,18 @@ type Database = {
2512
2598
  };
2513
2599
  Relationships: [
2514
2600
  {
2515
- foreignKeyName: "fk_organization";
2516
- columns: ["organization_id"];
2601
+ foreignKeyName: 'fk_organization';
2602
+ columns: ['organization_id'];
2517
2603
  isOneToOne: false;
2518
- referencedRelation: "organizations";
2519
- referencedColumns: ["id"];
2604
+ referencedRelation: 'organizations';
2605
+ referencedColumns: ['id'];
2520
2606
  },
2521
2607
  {
2522
- foreignKeyName: "fk_user";
2523
- columns: ["user_id"];
2608
+ foreignKeyName: 'fk_user';
2609
+ columns: ['user_id'];
2524
2610
  isOneToOne: false;
2525
- referencedRelation: "users";
2526
- referencedColumns: ["id"];
2611
+ referencedRelation: 'users';
2612
+ referencedColumns: ['id'];
2527
2613
  }
2528
2614
  ];
2529
2615
  };
@@ -2599,11 +2685,11 @@ type Database = {
2599
2685
  };
2600
2686
  Relationships: [
2601
2687
  {
2602
- foreignKeyName: "task_schedules_organization_id_fkey";
2603
- columns: ["organization_id"];
2688
+ foreignKeyName: 'task_schedules_organization_id_fkey';
2689
+ columns: ['organization_id'];
2604
2690
  isOneToOne: false;
2605
- referencedRelation: "organizations";
2606
- referencedColumns: ["id"];
2691
+ referencedRelation: 'organizations';
2692
+ referencedColumns: ['id'];
2607
2693
  }
2608
2694
  ];
2609
2695
  };
@@ -2658,11 +2744,11 @@ type Database = {
2658
2744
  };
2659
2745
  Relationships: [
2660
2746
  {
2661
- foreignKeyName: "user_profiles_last_visited_org_fkey";
2662
- columns: ["last_visited_org"];
2747
+ foreignKeyName: 'user_profiles_last_visited_org_fkey';
2748
+ columns: ['last_visited_org'];
2663
2749
  isOneToOne: false;
2664
- referencedRelation: "organizations";
2665
- referencedColumns: ["id"];
2750
+ referencedRelation: 'organizations';
2751
+ referencedColumns: ['id'];
2666
2752
  }
2667
2753
  ];
2668
2754
  };
@@ -2711,11 +2797,11 @@ type Database = {
2711
2797
  };
2712
2798
  Relationships: [
2713
2799
  {
2714
- foreignKeyName: "webhook_endpoints_organization_id_fkey";
2715
- columns: ["organization_id"];
2800
+ foreignKeyName: 'webhook_endpoints_organization_id_fkey';
2801
+ columns: ['organization_id'];
2716
2802
  isOneToOne: false;
2717
- referencedRelation: "organizations";
2718
- referencedColumns: ["id"];
2803
+ referencedRelation: 'organizations';
2804
+ referencedColumns: ['id'];
2719
2805
  }
2720
2806
  ];
2721
2807
  };
@@ -2996,12 +3082,6 @@ interface PipelineFunnelWidgetProps {
2996
3082
  }
2997
3083
  declare function PipelineFunnelWidget({ onStageClick, getDealValue }: PipelineFunnelWidgetProps): react_jsx_runtime.JSX.Element;
2998
3084
 
2999
- interface TasksDueWidgetProps {
3000
- onTaskClick: (dealId: string) => void;
3001
- onSeeAll?: () => void;
3002
- }
3003
- declare function TasksDueWidget({ onTaskClick, onSeeAll }: TasksDueWidgetProps): react_jsx_runtime.JSX.Element;
3004
-
3005
3085
  interface ActivityFeedWidgetProps {
3006
3086
  onDealClick: (dealId: string) => void;
3007
3087
  limit?: number;
@@ -3100,5 +3180,5 @@ interface CompanyDetailPageProps {
3100
3180
  }
3101
3181
  declare function CompanyDetailPage({ companyId }: CompanyDetailPageProps): react_jsx_runtime.JSX.Element;
3102
3182
 
3103
- export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity };
3104
- export type { ActivityFeedWidgetProps, CompanyDetailPageProps, RecentActivityEntry as CrmActivityEntry, CrmActivityKind, CrmOverviewProps, CrmQuickMetrics, CrmSidebarMiddleProps, MyTasksPanelProps, PipelineFunnelWidgetProps, PipelineStageSummary, QuickCreateActionsProps, SavedViewPreset, SavedViewsPanelProps, TasksDueWidgetProps };
3183
+ export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity };
3184
+ export type { ActivityFeedWidgetProps, CompanyDetailPageProps, RecentActivityEntry as CrmActivityEntry, CrmActivityKind, CrmOverviewProps, CrmQuickMetrics, CrmSidebarMiddleProps, MyTasksPanelProps, PipelineFunnelWidgetProps, PipelineStageSummary, QuickCreateActionsProps, SavedViewPreset, SavedViewsPanelProps };