@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.
- package/dist/app/index.d.ts +2915 -0
- package/dist/app/index.js +5 -4
- package/dist/{chunk-7PGEGSUM.js → chunk-7D2HSSIW.js} +2 -2
- package/dist/{chunk-YU6MBDVO.js → chunk-ABV5LDDC.js} +4 -68
- package/dist/chunk-AZXSFDG2.js +474 -0
- package/dist/{chunk-6IA2OMAE.js → chunk-HC2KV6BU.js} +9 -0
- package/dist/{chunk-PXGSJNBH.js → chunk-HVC2BTFO.js} +783 -374
- package/dist/{chunk-3HEUGBOT.js → chunk-LK4MPIMK.js} +2 -2
- package/dist/{chunk-XOTJNW4Q.js → chunk-QIW6OCEI.js} +18 -1
- package/dist/{chunk-GUJUK6EH.js → chunk-QJLRDTYS.js} +198 -2
- package/dist/{chunk-QZJM3RYI.js → chunk-SNHGSCKH.js} +1 -1
- package/dist/{chunk-FXWETLEB.js → chunk-V3UOW2HG.js} +1 -1
- package/dist/{chunk-N6WLOWOD.js → chunk-WSC5LU3U.js} +3 -12
- package/dist/{chunk-EPV7NU2E.js → chunk-WWVSPOJY.js} +385 -188
- package/dist/{chunk-SQ5JGELM.js → chunk-ZDKQNQ4X.js} +19 -1
- package/dist/{chunk-PTUOINQ2.js → chunk-ZGZZIR6K.js} +3 -3
- package/dist/{chunk-D3KQAABP.js → chunk-ZMXZ476Y.js} +1 -1
- package/dist/components/index.d.ts +488 -452
- package/dist/components/index.js +127 -22
- package/dist/components/navigation/index.js +2 -2
- package/dist/features/auth/index.d.ts +463 -377
- package/dist/features/crm/index.d.ts +459 -379
- package/dist/features/crm/index.js +8 -8
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +457 -371
- package/dist/features/delivery/index.js +8 -8
- package/dist/features/lead-gen/index.d.ts +225 -65
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.js +7 -7
- package/dist/features/operations/index.js +10 -10
- package/dist/features/settings/index.d.ts +463 -377
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/delivery/index.d.ts +457 -371
- package/dist/hooks/index.d.ts +957 -718
- package/dist/hooks/index.js +7 -7
- package/dist/hooks/published.d.ts +957 -718
- package/dist/hooks/published.js +7 -7
- package/dist/index.d.ts +1327 -1020
- package/dist/index.js +8 -8
- package/dist/initialization/index.d.ts +463 -377
- package/dist/organization/index.d.ts +11 -1
- package/dist/organization/index.js +2 -2
- package/dist/profile/index.d.ts +463 -377
- package/dist/provider/index.d.ts +3132 -169
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.d.ts +3098 -168
- package/dist/provider/published.js +3 -3
- package/dist/supabase/index.d.ts +559 -389
- package/dist/test-utils/index.d.ts +21 -1
- package/dist/test-utils/index.js +13 -4
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +463 -377
- package/package.json +2 -2
- package/src/test-utils/README.md +2 -0
- package/dist/chunk-LVUCBY7X.js +0 -127
- /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:
|
|
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:
|
|
134
|
-
columns: [
|
|
189
|
+
foreignKeyName: 'acq_companies_organization_id_fkey';
|
|
190
|
+
columns: ['organization_id'];
|
|
135
191
|
isOneToOne: false;
|
|
136
|
-
referencedRelation:
|
|
137
|
-
referencedColumns: [
|
|
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:
|
|
220
|
-
columns: [
|
|
284
|
+
foreignKeyName: 'acq_contacts_company_id_fkey';
|
|
285
|
+
columns: ['company_id'];
|
|
221
286
|
isOneToOne: false;
|
|
222
|
-
referencedRelation:
|
|
223
|
-
referencedColumns: [
|
|
287
|
+
referencedRelation: 'acq_companies';
|
|
288
|
+
referencedColumns: ['id'];
|
|
224
289
|
},
|
|
225
290
|
{
|
|
226
|
-
foreignKeyName:
|
|
227
|
-
columns: [
|
|
291
|
+
foreignKeyName: 'acq_contacts_organization_id_fkey';
|
|
292
|
+
columns: ['organization_id'];
|
|
228
293
|
isOneToOne: false;
|
|
229
|
-
referencedRelation:
|
|
230
|
-
referencedColumns: [
|
|
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:
|
|
268
|
-
columns: [
|
|
332
|
+
foreignKeyName: 'acq_content_organization_id_fkey';
|
|
333
|
+
columns: ['organization_id'];
|
|
269
334
|
isOneToOne: false;
|
|
270
|
-
referencedRelation:
|
|
271
|
-
referencedColumns: [
|
|
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:
|
|
336
|
-
columns: [
|
|
400
|
+
foreignKeyName: 'acq_content_distributions_content_id_fkey';
|
|
401
|
+
columns: ['content_id'];
|
|
337
402
|
isOneToOne: false;
|
|
338
|
-
referencedRelation:
|
|
339
|
-
referencedColumns: [
|
|
403
|
+
referencedRelation: 'acq_content';
|
|
404
|
+
referencedColumns: ['id'];
|
|
340
405
|
},
|
|
341
406
|
{
|
|
342
|
-
foreignKeyName:
|
|
343
|
-
columns: [
|
|
407
|
+
foreignKeyName: 'acq_content_distributions_organization_id_fkey';
|
|
408
|
+
columns: ['organization_id'];
|
|
344
409
|
isOneToOne: false;
|
|
345
|
-
referencedRelation:
|
|
346
|
-
referencedColumns: [
|
|
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:
|
|
381
|
-
columns: [
|
|
445
|
+
foreignKeyName: 'acq_deal_notes_deal_id_fkey';
|
|
446
|
+
columns: ['deal_id'];
|
|
382
447
|
isOneToOne: false;
|
|
383
|
-
referencedRelation:
|
|
384
|
-
referencedColumns: [
|
|
448
|
+
referencedRelation: 'acq_deals';
|
|
449
|
+
referencedColumns: ['id'];
|
|
385
450
|
},
|
|
386
451
|
{
|
|
387
|
-
foreignKeyName:
|
|
388
|
-
columns: [
|
|
452
|
+
foreignKeyName: 'acq_deal_notes_organization_id_fkey';
|
|
453
|
+
columns: ['organization_id'];
|
|
389
454
|
isOneToOne: false;
|
|
390
|
-
referencedRelation:
|
|
391
|
-
referencedColumns: [
|
|
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:
|
|
444
|
-
columns: [
|
|
508
|
+
foreignKeyName: 'acq_deal_tasks_deal_id_fkey';
|
|
509
|
+
columns: ['deal_id'];
|
|
445
510
|
isOneToOne: false;
|
|
446
|
-
referencedRelation:
|
|
447
|
-
referencedColumns: [
|
|
511
|
+
referencedRelation: 'acq_deals';
|
|
512
|
+
referencedColumns: ['id'];
|
|
448
513
|
},
|
|
449
514
|
{
|
|
450
|
-
foreignKeyName:
|
|
451
|
-
columns: [
|
|
515
|
+
foreignKeyName: 'acq_deal_tasks_organization_id_fkey';
|
|
516
|
+
columns: ['organization_id'];
|
|
452
517
|
isOneToOne: false;
|
|
453
|
-
referencedRelation:
|
|
454
|
-
referencedColumns: [
|
|
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:
|
|
567
|
-
columns: [
|
|
631
|
+
foreignKeyName: 'acq_deals_contact_id_fkey';
|
|
632
|
+
columns: ['contact_id'];
|
|
568
633
|
isOneToOne: false;
|
|
569
|
-
referencedRelation:
|
|
570
|
-
referencedColumns: [
|
|
634
|
+
referencedRelation: 'acq_contacts';
|
|
635
|
+
referencedColumns: ['id'];
|
|
571
636
|
},
|
|
572
637
|
{
|
|
573
|
-
foreignKeyName:
|
|
574
|
-
columns: [
|
|
638
|
+
foreignKeyName: 'acq_deals_organization_id_fkey';
|
|
639
|
+
columns: ['organization_id'];
|
|
575
640
|
isOneToOne: false;
|
|
576
|
-
referencedRelation:
|
|
577
|
-
referencedColumns: [
|
|
641
|
+
referencedRelation: 'organizations';
|
|
642
|
+
referencedColumns: ['id'];
|
|
578
643
|
},
|
|
579
644
|
{
|
|
580
|
-
foreignKeyName:
|
|
581
|
-
columns: [
|
|
645
|
+
foreignKeyName: 'acq_deals_source_list_id_fkey';
|
|
646
|
+
columns: ['source_list_id'];
|
|
582
647
|
isOneToOne: false;
|
|
583
|
-
referencedRelation:
|
|
584
|
-
referencedColumns: [
|
|
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
|
-
|
|
599
|
-
|
|
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
|
-
|
|
611
|
-
|
|
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
|
-
|
|
623
|
-
|
|
696
|
+
stage_key?: string;
|
|
697
|
+
state_key?: string;
|
|
624
698
|
};
|
|
625
699
|
Relationships: [
|
|
626
700
|
{
|
|
627
|
-
foreignKeyName:
|
|
628
|
-
columns: [
|
|
701
|
+
foreignKeyName: 'acq_list_companies_company_id_fkey';
|
|
702
|
+
columns: ['company_id'];
|
|
629
703
|
isOneToOne: false;
|
|
630
|
-
referencedRelation:
|
|
631
|
-
referencedColumns: [
|
|
704
|
+
referencedRelation: 'acq_companies';
|
|
705
|
+
referencedColumns: ['id'];
|
|
632
706
|
},
|
|
633
707
|
{
|
|
634
|
-
foreignKeyName:
|
|
635
|
-
columns: [
|
|
708
|
+
foreignKeyName: 'acq_list_companies_list_id_fkey';
|
|
709
|
+
columns: ['list_id'];
|
|
636
710
|
isOneToOne: false;
|
|
637
|
-
referencedRelation:
|
|
638
|
-
referencedColumns: [
|
|
711
|
+
referencedRelation: 'acq_lists';
|
|
712
|
+
referencedColumns: ['id'];
|
|
639
713
|
},
|
|
640
714
|
{
|
|
641
|
-
foreignKeyName:
|
|
642
|
-
columns: [
|
|
715
|
+
foreignKeyName: 'acq_list_companies_source_execution_id_fkey';
|
|
716
|
+
columns: ['source_execution_id'];
|
|
643
717
|
isOneToOne: false;
|
|
644
|
-
referencedRelation:
|
|
645
|
-
referencedColumns: [
|
|
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:
|
|
674
|
-
columns: [
|
|
747
|
+
foreignKeyName: 'acq_list_executions_execution_id_fkey';
|
|
748
|
+
columns: ['execution_id'];
|
|
675
749
|
isOneToOne: false;
|
|
676
|
-
referencedRelation:
|
|
677
|
-
referencedColumns: [
|
|
750
|
+
referencedRelation: 'execution_logs';
|
|
751
|
+
referencedColumns: ['execution_id'];
|
|
678
752
|
},
|
|
679
753
|
{
|
|
680
|
-
foreignKeyName:
|
|
681
|
-
columns: [
|
|
754
|
+
foreignKeyName: 'acq_list_executions_list_id_fkey';
|
|
755
|
+
columns: ['list_id'];
|
|
682
756
|
isOneToOne: false;
|
|
683
|
-
referencedRelation:
|
|
684
|
-
referencedColumns: [
|
|
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
|
-
|
|
699
|
-
|
|
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
|
-
|
|
711
|
-
|
|
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
|
-
|
|
723
|
-
|
|
805
|
+
stage_key?: string;
|
|
806
|
+
state_key?: string;
|
|
724
807
|
};
|
|
725
808
|
Relationships: [
|
|
726
809
|
{
|
|
727
|
-
foreignKeyName:
|
|
728
|
-
columns: [
|
|
810
|
+
foreignKeyName: 'acq_list_members_contact_id_fkey';
|
|
811
|
+
columns: ['contact_id'];
|
|
729
812
|
isOneToOne: false;
|
|
730
|
-
referencedRelation:
|
|
731
|
-
referencedColumns: [
|
|
813
|
+
referencedRelation: 'acq_contacts';
|
|
814
|
+
referencedColumns: ['id'];
|
|
732
815
|
},
|
|
733
816
|
{
|
|
734
|
-
foreignKeyName:
|
|
735
|
-
columns: [
|
|
817
|
+
foreignKeyName: 'acq_list_members_list_id_fkey';
|
|
818
|
+
columns: ['list_id'];
|
|
736
819
|
isOneToOne: false;
|
|
737
|
-
referencedRelation:
|
|
738
|
-
referencedColumns: [
|
|
820
|
+
referencedRelation: 'acq_lists';
|
|
821
|
+
referencedColumns: ['id'];
|
|
739
822
|
},
|
|
740
823
|
{
|
|
741
|
-
foreignKeyName:
|
|
742
|
-
columns: [
|
|
824
|
+
foreignKeyName: 'acq_list_members_source_execution_id_fkey';
|
|
825
|
+
columns: ['source_execution_id'];
|
|
743
826
|
isOneToOne: false;
|
|
744
|
-
referencedRelation:
|
|
745
|
-
referencedColumns: [
|
|
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:
|
|
798
|
-
columns: [
|
|
883
|
+
foreignKeyName: 'acq_lists_organization_id_fkey';
|
|
884
|
+
columns: ['organization_id'];
|
|
799
885
|
isOneToOne: false;
|
|
800
|
-
referencedRelation:
|
|
801
|
-
referencedColumns: [
|
|
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:
|
|
878
|
-
columns: [
|
|
963
|
+
foreignKeyName: 'acq_seo_metrics_organization_id_fkey';
|
|
964
|
+
columns: ['organization_id'];
|
|
879
965
|
isOneToOne: false;
|
|
880
|
-
referencedRelation:
|
|
881
|
-
referencedColumns: [
|
|
966
|
+
referencedRelation: 'organizations';
|
|
967
|
+
referencedColumns: ['id'];
|
|
882
968
|
},
|
|
883
969
|
{
|
|
884
|
-
foreignKeyName:
|
|
885
|
-
columns: [
|
|
970
|
+
foreignKeyName: 'acq_seo_metrics_seo_page_id_fkey';
|
|
971
|
+
columns: ['seo_page_id'];
|
|
886
972
|
isOneToOne: false;
|
|
887
|
-
referencedRelation:
|
|
888
|
-
referencedColumns: [
|
|
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:
|
|
965
|
-
columns: [
|
|
1050
|
+
foreignKeyName: 'acq_seo_pages_organization_id_fkey';
|
|
1051
|
+
columns: ['organization_id'];
|
|
966
1052
|
isOneToOne: false;
|
|
967
|
-
referencedRelation:
|
|
968
|
-
referencedColumns: [
|
|
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:
|
|
1066
|
-
columns: [
|
|
1151
|
+
foreignKeyName: 'acq_social_posts_organization_id_fkey';
|
|
1152
|
+
columns: ['organization_id'];
|
|
1067
1153
|
isOneToOne: false;
|
|
1068
|
-
referencedRelation:
|
|
1069
|
-
referencedColumns: [
|
|
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:
|
|
1125
|
-
columns: [
|
|
1210
|
+
foreignKeyName: 'activities_organization_id_fkey';
|
|
1211
|
+
columns: ['organization_id'];
|
|
1126
1212
|
isOneToOne: false;
|
|
1127
|
-
referencedRelation:
|
|
1128
|
-
referencedColumns: [
|
|
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:
|
|
1160
|
-
columns: [
|
|
1245
|
+
foreignKeyName: 'api_keys_organization_id_fkey';
|
|
1246
|
+
columns: ['organization_id'];
|
|
1161
1247
|
isOneToOne: false;
|
|
1162
|
-
referencedRelation:
|
|
1163
|
-
referencedColumns: [
|
|
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:
|
|
1243
|
-
columns: [
|
|
1328
|
+
foreignKeyName: 'command_queue_completed_by_fkey';
|
|
1329
|
+
columns: ['completed_by'];
|
|
1244
1330
|
isOneToOne: false;
|
|
1245
|
-
referencedRelation:
|
|
1246
|
-
referencedColumns: [
|
|
1331
|
+
referencedRelation: 'users';
|
|
1332
|
+
referencedColumns: ['id'];
|
|
1247
1333
|
},
|
|
1248
1334
|
{
|
|
1249
|
-
foreignKeyName:
|
|
1250
|
-
columns: [
|
|
1335
|
+
foreignKeyName: 'command_queue_organization_id_fkey';
|
|
1336
|
+
columns: ['organization_id'];
|
|
1251
1337
|
isOneToOne: false;
|
|
1252
|
-
referencedRelation:
|
|
1253
|
-
referencedColumns: [
|
|
1338
|
+
referencedRelation: 'organizations';
|
|
1339
|
+
referencedColumns: ['id'];
|
|
1254
1340
|
},
|
|
1255
1341
|
{
|
|
1256
|
-
foreignKeyName:
|
|
1257
|
-
columns: [
|
|
1342
|
+
foreignKeyName: 'command_queue_target_execution_id_fkey';
|
|
1343
|
+
columns: ['target_execution_id'];
|
|
1258
1344
|
isOneToOne: false;
|
|
1259
|
-
referencedRelation:
|
|
1260
|
-
referencedColumns: [
|
|
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:
|
|
1301
|
-
columns: [
|
|
1386
|
+
foreignKeyName: 'credentials_created_by_fkey';
|
|
1387
|
+
columns: ['created_by'];
|
|
1302
1388
|
isOneToOne: false;
|
|
1303
|
-
referencedRelation:
|
|
1304
|
-
referencedColumns: [
|
|
1389
|
+
referencedRelation: 'users';
|
|
1390
|
+
referencedColumns: ['id'];
|
|
1305
1391
|
},
|
|
1306
1392
|
{
|
|
1307
|
-
foreignKeyName:
|
|
1308
|
-
columns: [
|
|
1393
|
+
foreignKeyName: 'credentials_organization_id_fkey';
|
|
1394
|
+
columns: ['organization_id'];
|
|
1309
1395
|
isOneToOne: false;
|
|
1310
|
-
referencedRelation:
|
|
1311
|
-
referencedColumns: [
|
|
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:
|
|
1358
|
-
columns: [
|
|
1443
|
+
foreignKeyName: 'deployments_organization_id_fkey';
|
|
1444
|
+
columns: ['organization_id'];
|
|
1359
1445
|
isOneToOne: false;
|
|
1360
|
-
referencedRelation:
|
|
1361
|
-
referencedColumns: [
|
|
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:
|
|
1417
|
-
columns: [
|
|
1502
|
+
foreignKeyName: 'execution_errors_execution_id_fkey';
|
|
1503
|
+
columns: ['execution_id'];
|
|
1418
1504
|
isOneToOne: false;
|
|
1419
|
-
referencedRelation:
|
|
1420
|
-
referencedColumns: [
|
|
1505
|
+
referencedRelation: 'execution_logs';
|
|
1506
|
+
referencedColumns: ['execution_id'];
|
|
1421
1507
|
},
|
|
1422
1508
|
{
|
|
1423
|
-
foreignKeyName:
|
|
1424
|
-
columns: [
|
|
1509
|
+
foreignKeyName: 'execution_errors_organization_id_fkey';
|
|
1510
|
+
columns: ['organization_id'];
|
|
1425
1511
|
isOneToOne: false;
|
|
1426
|
-
referencedRelation:
|
|
1427
|
-
referencedColumns: [
|
|
1512
|
+
referencedRelation: 'organizations';
|
|
1513
|
+
referencedColumns: ['id'];
|
|
1428
1514
|
},
|
|
1429
1515
|
{
|
|
1430
|
-
foreignKeyName:
|
|
1431
|
-
columns: [
|
|
1516
|
+
foreignKeyName: 'execution_errors_resolved_by_fkey';
|
|
1517
|
+
columns: ['resolved_by'];
|
|
1432
1518
|
isOneToOne: false;
|
|
1433
|
-
referencedRelation:
|
|
1434
|
-
referencedColumns: [
|
|
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:
|
|
1517
|
-
columns: [
|
|
1602
|
+
foreignKeyName: 'execution_history_organization_id_fkey';
|
|
1603
|
+
columns: ['organization_id'];
|
|
1518
1604
|
isOneToOne: false;
|
|
1519
|
-
referencedRelation:
|
|
1520
|
-
referencedColumns: [
|
|
1605
|
+
referencedRelation: 'organizations';
|
|
1606
|
+
referencedColumns: ['id'];
|
|
1521
1607
|
},
|
|
1522
1608
|
{
|
|
1523
|
-
foreignKeyName:
|
|
1524
|
-
columns: [
|
|
1609
|
+
foreignKeyName: 'execution_logs_origin_execution_id_fkey';
|
|
1610
|
+
columns: ['origin_execution_id'];
|
|
1525
1611
|
isOneToOne: false;
|
|
1526
|
-
referencedRelation:
|
|
1527
|
-
referencedColumns: [
|
|
1612
|
+
referencedRelation: 'execution_logs';
|
|
1613
|
+
referencedColumns: ['execution_id'];
|
|
1528
1614
|
},
|
|
1529
1615
|
{
|
|
1530
|
-
foreignKeyName:
|
|
1531
|
-
columns: [
|
|
1616
|
+
foreignKeyName: 'execution_logs_session_id_fkey';
|
|
1617
|
+
columns: ['session_id'];
|
|
1532
1618
|
isOneToOne: false;
|
|
1533
|
-
referencedRelation:
|
|
1534
|
-
referencedColumns: [
|
|
1619
|
+
referencedRelation: 'sessions';
|
|
1620
|
+
referencedColumns: ['session_id'];
|
|
1535
1621
|
},
|
|
1536
1622
|
{
|
|
1537
|
-
foreignKeyName:
|
|
1538
|
-
columns: [
|
|
1623
|
+
foreignKeyName: 'execution_logs_user_id_fkey';
|
|
1624
|
+
columns: ['user_id'];
|
|
1539
1625
|
isOneToOne: false;
|
|
1540
|
-
referencedRelation:
|
|
1541
|
-
referencedColumns: [
|
|
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:
|
|
1588
|
-
columns: [
|
|
1673
|
+
foreignKeyName: 'execution_metrics_execution_id_fkey';
|
|
1674
|
+
columns: ['execution_id'];
|
|
1589
1675
|
isOneToOne: true;
|
|
1590
|
-
referencedRelation:
|
|
1591
|
-
referencedColumns: [
|
|
1676
|
+
referencedRelation: 'execution_logs';
|
|
1677
|
+
referencedColumns: ['execution_id'];
|
|
1592
1678
|
},
|
|
1593
1679
|
{
|
|
1594
|
-
foreignKeyName:
|
|
1595
|
-
columns: [
|
|
1680
|
+
foreignKeyName: 'execution_metrics_organization_id_fkey';
|
|
1681
|
+
columns: ['organization_id'];
|
|
1596
1682
|
isOneToOne: false;
|
|
1597
|
-
referencedRelation:
|
|
1598
|
-
referencedColumns: [
|
|
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:
|
|
1642
|
-
columns: [
|
|
1727
|
+
foreignKeyName: 'notifications_organization_id_fkey';
|
|
1728
|
+
columns: ['organization_id'];
|
|
1643
1729
|
isOneToOne: false;
|
|
1644
|
-
referencedRelation:
|
|
1645
|
-
referencedColumns: [
|
|
1730
|
+
referencedRelation: 'organizations';
|
|
1731
|
+
referencedColumns: ['id'];
|
|
1646
1732
|
},
|
|
1647
1733
|
{
|
|
1648
|
-
foreignKeyName:
|
|
1649
|
-
columns: [
|
|
1734
|
+
foreignKeyName: 'notifications_user_id_fkey';
|
|
1735
|
+
columns: ['user_id'];
|
|
1650
1736
|
isOneToOne: false;
|
|
1651
|
-
referencedRelation:
|
|
1652
|
-
referencedColumns: [
|
|
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:
|
|
1708
|
-
columns: [
|
|
1793
|
+
foreignKeyName: 'org_invitations_inviter_user_id_fkey';
|
|
1794
|
+
columns: ['inviter_user_id'];
|
|
1709
1795
|
isOneToOne: false;
|
|
1710
|
-
referencedRelation:
|
|
1711
|
-
referencedColumns: [
|
|
1796
|
+
referencedRelation: 'users';
|
|
1797
|
+
referencedColumns: ['id'];
|
|
1712
1798
|
},
|
|
1713
1799
|
{
|
|
1714
|
-
foreignKeyName:
|
|
1715
|
-
columns: [
|
|
1800
|
+
foreignKeyName: 'org_invitations_organization_id_fkey';
|
|
1801
|
+
columns: ['organization_id'];
|
|
1716
1802
|
isOneToOne: false;
|
|
1717
|
-
referencedRelation:
|
|
1718
|
-
referencedColumns: [
|
|
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:
|
|
1762
|
-
columns: [
|
|
1847
|
+
foreignKeyName: 'org_memberships_organization_id_fkey';
|
|
1848
|
+
columns: ['organization_id'];
|
|
1763
1849
|
isOneToOne: false;
|
|
1764
|
-
referencedRelation:
|
|
1765
|
-
referencedColumns: [
|
|
1850
|
+
referencedRelation: 'organizations';
|
|
1851
|
+
referencedColumns: ['id'];
|
|
1766
1852
|
},
|
|
1767
1853
|
{
|
|
1768
|
-
foreignKeyName:
|
|
1769
|
-
columns: [
|
|
1854
|
+
foreignKeyName: 'org_memberships_user_id_fkey';
|
|
1855
|
+
columns: ['user_id'];
|
|
1770
1856
|
isOneToOne: false;
|
|
1771
|
-
referencedRelation:
|
|
1772
|
-
referencedColumns: [
|
|
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:
|
|
1798
|
-
columns: [
|
|
1883
|
+
foreignKeyName: 'org_rol_assignments_granted_by_fkey';
|
|
1884
|
+
columns: ['granted_by'];
|
|
1799
1885
|
isOneToOne: false;
|
|
1800
|
-
referencedRelation:
|
|
1801
|
-
referencedColumns: [
|
|
1886
|
+
referencedRelation: 'users';
|
|
1887
|
+
referencedColumns: ['id'];
|
|
1802
1888
|
},
|
|
1803
1889
|
{
|
|
1804
|
-
foreignKeyName:
|
|
1805
|
-
columns: [
|
|
1890
|
+
foreignKeyName: 'org_rol_assignments_membership_id_fkey';
|
|
1891
|
+
columns: ['membership_id'];
|
|
1806
1892
|
isOneToOne: false;
|
|
1807
|
-
referencedRelation:
|
|
1808
|
-
referencedColumns: [
|
|
1893
|
+
referencedRelation: 'org_memberships';
|
|
1894
|
+
referencedColumns: ['id'];
|
|
1809
1895
|
},
|
|
1810
1896
|
{
|
|
1811
|
-
foreignKeyName:
|
|
1812
|
-
columns: [
|
|
1897
|
+
foreignKeyName: 'org_rol_assignments_role_id_fkey';
|
|
1898
|
+
columns: ['role_id'];
|
|
1813
1899
|
isOneToOne: false;
|
|
1814
|
-
referencedRelation:
|
|
1815
|
-
referencedColumns: [
|
|
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:
|
|
1853
|
-
columns: [
|
|
1938
|
+
foreignKeyName: 'org_rol_definitions_organization_id_fkey';
|
|
1939
|
+
columns: ['organization_id'];
|
|
1854
1940
|
isOneToOne: false;
|
|
1855
|
-
referencedRelation:
|
|
1856
|
-
referencedColumns: [
|
|
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:
|
|
1879
|
-
columns: [
|
|
1964
|
+
foreignKeyName: 'org_rol_grants_permission_key_fkey';
|
|
1965
|
+
columns: ['permission_key'];
|
|
1880
1966
|
isOneToOne: false;
|
|
1881
|
-
referencedRelation:
|
|
1882
|
-
referencedColumns: [
|
|
1967
|
+
referencedRelation: 'org_rol_permissions';
|
|
1968
|
+
referencedColumns: ['key'];
|
|
1883
1969
|
},
|
|
1884
1970
|
{
|
|
1885
|
-
foreignKeyName:
|
|
1886
|
-
columns: [
|
|
1971
|
+
foreignKeyName: 'org_rol_grants_role_id_fkey';
|
|
1972
|
+
columns: ['role_id'];
|
|
1887
1973
|
isOneToOne: false;
|
|
1888
|
-
referencedRelation:
|
|
1889
|
-
referencedColumns: [
|
|
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:
|
|
2002
|
-
columns: [
|
|
2087
|
+
foreignKeyName: 'fk_milestones_project';
|
|
2088
|
+
columns: ['project_id'];
|
|
2003
2089
|
isOneToOne: false;
|
|
2004
|
-
referencedRelation:
|
|
2005
|
-
referencedColumns: [
|
|
2090
|
+
referencedRelation: 'prj_projects';
|
|
2091
|
+
referencedColumns: ['id'];
|
|
2006
2092
|
},
|
|
2007
2093
|
{
|
|
2008
|
-
foreignKeyName:
|
|
2009
|
-
columns: [
|
|
2094
|
+
foreignKeyName: 'prj_milestones_organization_id_fkey';
|
|
2095
|
+
columns: ['organization_id'];
|
|
2010
2096
|
isOneToOne: false;
|
|
2011
|
-
referencedRelation:
|
|
2012
|
-
referencedColumns: [
|
|
2097
|
+
referencedRelation: 'organizations';
|
|
2098
|
+
referencedColumns: ['id'];
|
|
2013
2099
|
},
|
|
2014
2100
|
{
|
|
2015
|
-
foreignKeyName:
|
|
2016
|
-
columns: [
|
|
2101
|
+
foreignKeyName: 'prj_milestones_project_id_fkey';
|
|
2102
|
+
columns: ['project_id'];
|
|
2017
2103
|
isOneToOne: false;
|
|
2018
|
-
referencedRelation:
|
|
2019
|
-
referencedColumns: [
|
|
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:
|
|
2069
|
-
columns: [
|
|
2154
|
+
foreignKeyName: 'fk_notes_created_by';
|
|
2155
|
+
columns: ['created_by'];
|
|
2070
2156
|
isOneToOne: false;
|
|
2071
|
-
referencedRelation:
|
|
2072
|
-
referencedColumns: [
|
|
2157
|
+
referencedRelation: 'users';
|
|
2158
|
+
referencedColumns: ['id'];
|
|
2073
2159
|
},
|
|
2074
2160
|
{
|
|
2075
|
-
foreignKeyName:
|
|
2076
|
-
columns: [
|
|
2161
|
+
foreignKeyName: 'fk_notes_milestone';
|
|
2162
|
+
columns: ['milestone_id'];
|
|
2077
2163
|
isOneToOne: false;
|
|
2078
|
-
referencedRelation:
|
|
2079
|
-
referencedColumns: [
|
|
2164
|
+
referencedRelation: 'prj_milestones';
|
|
2165
|
+
referencedColumns: ['id'];
|
|
2080
2166
|
},
|
|
2081
2167
|
{
|
|
2082
|
-
foreignKeyName:
|
|
2083
|
-
columns: [
|
|
2168
|
+
foreignKeyName: 'fk_notes_project';
|
|
2169
|
+
columns: ['project_id'];
|
|
2084
2170
|
isOneToOne: false;
|
|
2085
|
-
referencedRelation:
|
|
2086
|
-
referencedColumns: [
|
|
2171
|
+
referencedRelation: 'prj_projects';
|
|
2172
|
+
referencedColumns: ['id'];
|
|
2087
2173
|
},
|
|
2088
2174
|
{
|
|
2089
|
-
foreignKeyName:
|
|
2090
|
-
columns: [
|
|
2175
|
+
foreignKeyName: 'fk_notes_task';
|
|
2176
|
+
columns: ['task_id'];
|
|
2091
2177
|
isOneToOne: false;
|
|
2092
|
-
referencedRelation:
|
|
2093
|
-
referencedColumns: [
|
|
2178
|
+
referencedRelation: 'prj_tasks';
|
|
2179
|
+
referencedColumns: ['id'];
|
|
2094
2180
|
},
|
|
2095
2181
|
{
|
|
2096
|
-
foreignKeyName:
|
|
2097
|
-
columns: [
|
|
2182
|
+
foreignKeyName: 'prj_notes_created_by_fkey';
|
|
2183
|
+
columns: ['created_by'];
|
|
2098
2184
|
isOneToOne: false;
|
|
2099
|
-
referencedRelation:
|
|
2100
|
-
referencedColumns: [
|
|
2185
|
+
referencedRelation: 'users';
|
|
2186
|
+
referencedColumns: ['id'];
|
|
2101
2187
|
},
|
|
2102
2188
|
{
|
|
2103
|
-
foreignKeyName:
|
|
2104
|
-
columns: [
|
|
2189
|
+
foreignKeyName: 'prj_notes_milestone_id_fkey';
|
|
2190
|
+
columns: ['milestone_id'];
|
|
2105
2191
|
isOneToOne: false;
|
|
2106
|
-
referencedRelation:
|
|
2107
|
-
referencedColumns: [
|
|
2192
|
+
referencedRelation: 'prj_milestones';
|
|
2193
|
+
referencedColumns: ['id'];
|
|
2108
2194
|
},
|
|
2109
2195
|
{
|
|
2110
|
-
foreignKeyName:
|
|
2111
|
-
columns: [
|
|
2196
|
+
foreignKeyName: 'prj_notes_organization_id_fkey';
|
|
2197
|
+
columns: ['organization_id'];
|
|
2112
2198
|
isOneToOne: false;
|
|
2113
|
-
referencedRelation:
|
|
2114
|
-
referencedColumns: [
|
|
2199
|
+
referencedRelation: 'organizations';
|
|
2200
|
+
referencedColumns: ['id'];
|
|
2115
2201
|
},
|
|
2116
2202
|
{
|
|
2117
|
-
foreignKeyName:
|
|
2118
|
-
columns: [
|
|
2203
|
+
foreignKeyName: 'prj_notes_project_id_fkey';
|
|
2204
|
+
columns: ['project_id'];
|
|
2119
2205
|
isOneToOne: false;
|
|
2120
|
-
referencedRelation:
|
|
2121
|
-
referencedColumns: [
|
|
2206
|
+
referencedRelation: 'prj_projects';
|
|
2207
|
+
referencedColumns: ['id'];
|
|
2122
2208
|
},
|
|
2123
2209
|
{
|
|
2124
|
-
foreignKeyName:
|
|
2125
|
-
columns: [
|
|
2210
|
+
foreignKeyName: 'prj_notes_task_id_fkey';
|
|
2211
|
+
columns: ['task_id'];
|
|
2126
2212
|
isOneToOne: false;
|
|
2127
|
-
referencedRelation:
|
|
2128
|
-
referencedColumns: [
|
|
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:
|
|
2187
|
-
columns: [
|
|
2272
|
+
foreignKeyName: 'fk_projects_company';
|
|
2273
|
+
columns: ['client_company_id'];
|
|
2188
2274
|
isOneToOne: false;
|
|
2189
|
-
referencedRelation:
|
|
2190
|
-
referencedColumns: [
|
|
2275
|
+
referencedRelation: 'acq_companies';
|
|
2276
|
+
referencedColumns: ['id'];
|
|
2191
2277
|
},
|
|
2192
2278
|
{
|
|
2193
|
-
foreignKeyName:
|
|
2194
|
-
columns: [
|
|
2279
|
+
foreignKeyName: 'fk_projects_deal';
|
|
2280
|
+
columns: ['deal_id'];
|
|
2195
2281
|
isOneToOne: false;
|
|
2196
|
-
referencedRelation:
|
|
2197
|
-
referencedColumns: [
|
|
2282
|
+
referencedRelation: 'acq_deals';
|
|
2283
|
+
referencedColumns: ['id'];
|
|
2198
2284
|
},
|
|
2199
2285
|
{
|
|
2200
|
-
foreignKeyName:
|
|
2201
|
-
columns: [
|
|
2286
|
+
foreignKeyName: 'prj_projects_client_company_id_fkey';
|
|
2287
|
+
columns: ['client_company_id'];
|
|
2202
2288
|
isOneToOne: false;
|
|
2203
|
-
referencedRelation:
|
|
2204
|
-
referencedColumns: [
|
|
2289
|
+
referencedRelation: 'acq_companies';
|
|
2290
|
+
referencedColumns: ['id'];
|
|
2205
2291
|
},
|
|
2206
2292
|
{
|
|
2207
|
-
foreignKeyName:
|
|
2208
|
-
columns: [
|
|
2293
|
+
foreignKeyName: 'prj_projects_deal_id_fkey';
|
|
2294
|
+
columns: ['deal_id'];
|
|
2209
2295
|
isOneToOne: false;
|
|
2210
|
-
referencedRelation:
|
|
2211
|
-
referencedColumns: [
|
|
2296
|
+
referencedRelation: 'acq_deals';
|
|
2297
|
+
referencedColumns: ['id'];
|
|
2212
2298
|
},
|
|
2213
2299
|
{
|
|
2214
|
-
foreignKeyName:
|
|
2215
|
-
columns: [
|
|
2300
|
+
foreignKeyName: 'prj_projects_organization_id_fkey';
|
|
2301
|
+
columns: ['organization_id'];
|
|
2216
2302
|
isOneToOne: false;
|
|
2217
|
-
referencedRelation:
|
|
2218
|
-
referencedColumns: [
|
|
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:
|
|
2283
|
-
columns: [
|
|
2368
|
+
foreignKeyName: 'fk_tasks_milestone';
|
|
2369
|
+
columns: ['milestone_id'];
|
|
2284
2370
|
isOneToOne: false;
|
|
2285
|
-
referencedRelation:
|
|
2286
|
-
referencedColumns: [
|
|
2371
|
+
referencedRelation: 'prj_milestones';
|
|
2372
|
+
referencedColumns: ['id'];
|
|
2287
2373
|
},
|
|
2288
2374
|
{
|
|
2289
|
-
foreignKeyName:
|
|
2290
|
-
columns: [
|
|
2375
|
+
foreignKeyName: 'fk_tasks_parent';
|
|
2376
|
+
columns: ['parent_task_id'];
|
|
2291
2377
|
isOneToOne: false;
|
|
2292
|
-
referencedRelation:
|
|
2293
|
-
referencedColumns: [
|
|
2378
|
+
referencedRelation: 'prj_tasks';
|
|
2379
|
+
referencedColumns: ['id'];
|
|
2294
2380
|
},
|
|
2295
2381
|
{
|
|
2296
|
-
foreignKeyName:
|
|
2297
|
-
columns: [
|
|
2382
|
+
foreignKeyName: 'fk_tasks_project';
|
|
2383
|
+
columns: ['project_id'];
|
|
2298
2384
|
isOneToOne: false;
|
|
2299
|
-
referencedRelation:
|
|
2300
|
-
referencedColumns: [
|
|
2385
|
+
referencedRelation: 'prj_projects';
|
|
2386
|
+
referencedColumns: ['id'];
|
|
2301
2387
|
},
|
|
2302
2388
|
{
|
|
2303
|
-
foreignKeyName:
|
|
2304
|
-
columns: [
|
|
2389
|
+
foreignKeyName: 'prj_tasks_milestone_id_fkey';
|
|
2390
|
+
columns: ['milestone_id'];
|
|
2305
2391
|
isOneToOne: false;
|
|
2306
|
-
referencedRelation:
|
|
2307
|
-
referencedColumns: [
|
|
2392
|
+
referencedRelation: 'prj_milestones';
|
|
2393
|
+
referencedColumns: ['id'];
|
|
2308
2394
|
},
|
|
2309
2395
|
{
|
|
2310
|
-
foreignKeyName:
|
|
2311
|
-
columns: [
|
|
2396
|
+
foreignKeyName: 'prj_tasks_organization_id_fkey';
|
|
2397
|
+
columns: ['organization_id'];
|
|
2312
2398
|
isOneToOne: false;
|
|
2313
|
-
referencedRelation:
|
|
2314
|
-
referencedColumns: [
|
|
2399
|
+
referencedRelation: 'organizations';
|
|
2400
|
+
referencedColumns: ['id'];
|
|
2315
2401
|
},
|
|
2316
2402
|
{
|
|
2317
|
-
foreignKeyName:
|
|
2318
|
-
columns: [
|
|
2403
|
+
foreignKeyName: 'prj_tasks_parent_task_id_fkey';
|
|
2404
|
+
columns: ['parent_task_id'];
|
|
2319
2405
|
isOneToOne: false;
|
|
2320
|
-
referencedRelation:
|
|
2321
|
-
referencedColumns: [
|
|
2406
|
+
referencedRelation: 'prj_tasks';
|
|
2407
|
+
referencedColumns: ['id'];
|
|
2322
2408
|
},
|
|
2323
2409
|
{
|
|
2324
|
-
foreignKeyName:
|
|
2325
|
-
columns: [
|
|
2410
|
+
foreignKeyName: 'prj_tasks_project_id_fkey';
|
|
2411
|
+
columns: ['project_id'];
|
|
2326
2412
|
isOneToOne: false;
|
|
2327
|
-
referencedRelation:
|
|
2328
|
-
referencedColumns: [
|
|
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:
|
|
2399
|
-
columns: [
|
|
2484
|
+
foreignKeyName: 'reported_requests_organization_id_fkey';
|
|
2485
|
+
columns: ['organization_id'];
|
|
2400
2486
|
isOneToOne: false;
|
|
2401
|
-
referencedRelation:
|
|
2402
|
-
referencedColumns: [
|
|
2487
|
+
referencedRelation: 'organizations';
|
|
2488
|
+
referencedColumns: ['id'];
|
|
2403
2489
|
},
|
|
2404
2490
|
{
|
|
2405
|
-
foreignKeyName:
|
|
2406
|
-
columns: [
|
|
2491
|
+
foreignKeyName: 'reported_requests_project_id_fkey';
|
|
2492
|
+
columns: ['project_id'];
|
|
2407
2493
|
isOneToOne: false;
|
|
2408
|
-
referencedRelation:
|
|
2409
|
-
referencedColumns: [
|
|
2494
|
+
referencedRelation: 'prj_projects';
|
|
2495
|
+
referencedColumns: ['id'];
|
|
2410
2496
|
},
|
|
2411
2497
|
{
|
|
2412
|
-
foreignKeyName:
|
|
2413
|
-
columns: [
|
|
2498
|
+
foreignKeyName: 'reported_requests_task_id_fkey';
|
|
2499
|
+
columns: ['task_id'];
|
|
2414
2500
|
isOneToOne: false;
|
|
2415
|
-
referencedRelation:
|
|
2416
|
-
referencedColumns: [
|
|
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:
|
|
2457
|
-
columns: [
|
|
2542
|
+
foreignKeyName: 'session_messages_session_id_fkey';
|
|
2543
|
+
columns: ['session_id'];
|
|
2458
2544
|
isOneToOne: false;
|
|
2459
|
-
referencedRelation:
|
|
2460
|
-
referencedColumns: [
|
|
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:
|
|
2516
|
-
columns: [
|
|
2601
|
+
foreignKeyName: 'fk_organization';
|
|
2602
|
+
columns: ['organization_id'];
|
|
2517
2603
|
isOneToOne: false;
|
|
2518
|
-
referencedRelation:
|
|
2519
|
-
referencedColumns: [
|
|
2604
|
+
referencedRelation: 'organizations';
|
|
2605
|
+
referencedColumns: ['id'];
|
|
2520
2606
|
},
|
|
2521
2607
|
{
|
|
2522
|
-
foreignKeyName:
|
|
2523
|
-
columns: [
|
|
2608
|
+
foreignKeyName: 'fk_user';
|
|
2609
|
+
columns: ['user_id'];
|
|
2524
2610
|
isOneToOne: false;
|
|
2525
|
-
referencedRelation:
|
|
2526
|
-
referencedColumns: [
|
|
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:
|
|
2603
|
-
columns: [
|
|
2688
|
+
foreignKeyName: 'task_schedules_organization_id_fkey';
|
|
2689
|
+
columns: ['organization_id'];
|
|
2604
2690
|
isOneToOne: false;
|
|
2605
|
-
referencedRelation:
|
|
2606
|
-
referencedColumns: [
|
|
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:
|
|
2662
|
-
columns: [
|
|
2747
|
+
foreignKeyName: 'user_profiles_last_visited_org_fkey';
|
|
2748
|
+
columns: ['last_visited_org'];
|
|
2663
2749
|
isOneToOne: false;
|
|
2664
|
-
referencedRelation:
|
|
2665
|
-
referencedColumns: [
|
|
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:
|
|
2715
|
-
columns: [
|
|
2800
|
+
foreignKeyName: 'webhook_endpoints_organization_id_fkey';
|
|
2801
|
+
columns: ['organization_id'];
|
|
2716
2802
|
isOneToOne: false;
|
|
2717
|
-
referencedRelation:
|
|
2718
|
-
referencedColumns: [
|
|
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,
|
|
3104
|
-
export type { ActivityFeedWidgetProps, CompanyDetailPageProps, RecentActivityEntry as CrmActivityEntry, CrmActivityKind, CrmOverviewProps, CrmQuickMetrics, CrmSidebarMiddleProps, MyTasksPanelProps, PipelineFunnelWidgetProps, PipelineStageSummary, QuickCreateActionsProps, SavedViewPreset, SavedViewsPanelProps
|
|
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 };
|