@elevasis/ui 2.28.0 → 2.29.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/api/index.js +2 -2
- package/dist/app/index.d.ts +6 -12
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-OHXU5WWK.js → chunk-3DUOPXOJ.js} +146 -9
- package/dist/{chunk-LWKZ3BCC.js → chunk-5CW2HXQA.js} +4 -4
- package/dist/{chunk-JKBGDFX2.js → chunk-65RQE3XF.js} +378 -254
- package/dist/{chunk-XZSEPJZQ.js → chunk-6NHCE7JM.js} +49 -28
- package/dist/{chunk-RIFTUOPE.js → chunk-6WXDE5LZ.js} +1 -1
- package/dist/{chunk-SGS4CQ2B.js → chunk-7E3FUTND.js} +1 -1
- package/dist/{chunk-UPMX5GJI.js → chunk-A7R2URMV.js} +88 -26
- package/dist/{chunk-UY5I2KOZ.js → chunk-AK5E6ILJ.js} +9 -8
- package/dist/{chunk-G26INIF3.js → chunk-CEHUFNAL.js} +1 -1
- package/dist/{chunk-ONFKASZI.js → chunk-CLUP5H3C.js} +7 -10
- package/dist/{chunk-MYEOTM7D.js → chunk-CN2HC4D4.js} +5 -1
- package/dist/chunk-FFDAE2QI.js +330 -0
- package/dist/{chunk-WUVR4QY6.js → chunk-FGDUK74A.js} +4 -4
- package/dist/{chunk-YHBPR67D.js → chunk-HNFQCOD2.js} +4 -4
- package/dist/{chunk-QD4X4H5A.js → chunk-HXZQWMKE.js} +2 -3
- package/dist/{chunk-KEFWANZY.js → chunk-JCGD4GM6.js} +5 -1
- package/dist/{chunk-YO2YORW4.js → chunk-OHGNCWJP.js} +3 -3
- package/dist/{chunk-JPGX3533.js → chunk-OIMPGKDB.js} +2 -2
- package/dist/{chunk-W2ZTLH7Y.js → chunk-OWESKPTJ.js} +85 -26
- package/dist/{chunk-G66QFZXD.js → chunk-QNL7UI5G.js} +15 -9
- package/dist/{chunk-OGXKOMUT.js → chunk-SZWXQHKO.js} +2 -2
- package/dist/{chunk-ZFLM2YVW.js → chunk-Y3YJKKEB.js} +1 -1
- package/dist/components/index.d.ts +16 -14
- package/dist/components/index.js +26 -26
- package/dist/features/auth/index.d.ts +6 -12
- package/dist/features/auth/index.js +1 -0
- package/dist/features/crm/index.d.ts +16 -14
- package/dist/features/crm/index.js +9 -9
- package/dist/features/dashboard/index.d.ts +16 -3
- package/dist/features/dashboard/index.js +10 -10
- package/dist/features/delivery/index.d.ts +6 -12
- package/dist/features/delivery/index.js +9 -9
- package/dist/features/knowledge/index.js +42 -20
- package/dist/features/lead-gen/index.d.ts +187 -24
- package/dist/features/lead-gen/index.js +10 -10
- package/dist/features/monitoring/index.js +11 -11
- package/dist/features/monitoring/requests/index.js +8 -8
- package/dist/features/operations/index.d.ts +16 -3
- package/dist/features/operations/index.js +15 -15
- package/dist/features/settings/index.d.ts +6 -12
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/delivery/index.d.ts +6 -12
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +110 -28
- package/dist/hooks/index.js +8 -8
- package/dist/hooks/published.d.ts +110 -28
- package/dist/hooks/published.js +8 -8
- package/dist/index.d.ts +149 -31
- package/dist/index.js +8 -8
- package/dist/initialization/index.d.ts +6 -12
- package/dist/knowledge/index.d.ts +44 -1
- package/dist/knowledge/index.js +149 -12
- package/dist/profile/index.d.ts +6 -12
- package/dist/provider/index.d.ts +44 -12
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.d.ts +44 -12
- package/dist/provider/published.js +5 -5
- package/dist/supabase/index.d.ts +12 -24
- package/dist/test-utils/index.js +2 -2
- package/dist/typeform/index.d.ts +5 -1
- package/dist/typeform/index.js +52 -7
- package/dist/types/index.d.ts +7 -13
- package/dist/utils/index.d.ts +1 -3
- package/dist/utils/index.js +1 -1
- package/dist/vite/index.js +2 -2
- package/dist/vite-plugin-knowledge/index.js +1 -1
- package/package.json +5 -5
- package/dist/chunk-4KTLOK7K.js +0 -230
|
@@ -75,7 +75,7 @@ type Database = {
|
|
|
75
75
|
name: string;
|
|
76
76
|
num_employees: number | null;
|
|
77
77
|
organization_id: string;
|
|
78
|
-
|
|
78
|
+
processing_state: Json;
|
|
79
79
|
qualification_rubric_key: string | null;
|
|
80
80
|
qualification_score: number | null;
|
|
81
81
|
qualification_signals: Json | null;
|
|
@@ -101,7 +101,7 @@ type Database = {
|
|
|
101
101
|
name: string;
|
|
102
102
|
num_employees?: number | null;
|
|
103
103
|
organization_id: string;
|
|
104
|
-
|
|
104
|
+
processing_state?: Json;
|
|
105
105
|
qualification_rubric_key?: string | null;
|
|
106
106
|
qualification_score?: number | null;
|
|
107
107
|
qualification_signals?: Json | null;
|
|
@@ -127,7 +127,7 @@ type Database = {
|
|
|
127
127
|
name?: string;
|
|
128
128
|
num_employees?: number | null;
|
|
129
129
|
organization_id?: string;
|
|
130
|
-
|
|
130
|
+
processing_state?: Json;
|
|
131
131
|
qualification_rubric_key?: string | null;
|
|
132
132
|
qualification_score?: number | null;
|
|
133
133
|
qualification_signals?: Json | null;
|
|
@@ -166,7 +166,7 @@ type Database = {
|
|
|
166
166
|
nurture: boolean;
|
|
167
167
|
opening_line: string | null;
|
|
168
168
|
organization_id: string;
|
|
169
|
-
|
|
169
|
+
processing_state: Json;
|
|
170
170
|
qualification_rubric_key: string | null;
|
|
171
171
|
qualification_score: number | null;
|
|
172
172
|
qualification_signals: Json | null;
|
|
@@ -194,7 +194,7 @@ type Database = {
|
|
|
194
194
|
nurture?: boolean;
|
|
195
195
|
opening_line?: string | null;
|
|
196
196
|
organization_id: string;
|
|
197
|
-
|
|
197
|
+
processing_state?: Json;
|
|
198
198
|
qualification_rubric_key?: string | null;
|
|
199
199
|
qualification_score?: number | null;
|
|
200
200
|
qualification_signals?: Json | null;
|
|
@@ -222,7 +222,7 @@ type Database = {
|
|
|
222
222
|
nurture?: boolean;
|
|
223
223
|
opening_line?: string | null;
|
|
224
224
|
organization_id?: string;
|
|
225
|
-
|
|
225
|
+
processing_state?: Json;
|
|
226
226
|
qualification_rubric_key?: string | null;
|
|
227
227
|
qualification_score?: number | null;
|
|
228
228
|
qualification_signals?: Json | null;
|
|
@@ -618,7 +618,6 @@ type Database = {
|
|
|
618
618
|
id: string;
|
|
619
619
|
list_id: string;
|
|
620
620
|
pipeline_key: string;
|
|
621
|
-
processing_state: Json;
|
|
622
621
|
source_execution_id: string | null;
|
|
623
622
|
source_input_hash: string | null;
|
|
624
623
|
source_resource_id: string | null;
|
|
@@ -633,7 +632,6 @@ type Database = {
|
|
|
633
632
|
id?: string;
|
|
634
633
|
list_id: string;
|
|
635
634
|
pipeline_key?: string;
|
|
636
|
-
processing_state?: Json;
|
|
637
635
|
source_execution_id?: string | null;
|
|
638
636
|
source_input_hash?: string | null;
|
|
639
637
|
source_resource_id?: string | null;
|
|
@@ -648,7 +646,6 @@ type Database = {
|
|
|
648
646
|
id?: string;
|
|
649
647
|
list_id?: string;
|
|
650
648
|
pipeline_key?: string;
|
|
651
|
-
processing_state?: Json;
|
|
652
649
|
source_execution_id?: string | null;
|
|
653
650
|
source_input_hash?: string | null;
|
|
654
651
|
source_resource_id?: string | null;
|
|
@@ -727,7 +724,6 @@ type Database = {
|
|
|
727
724
|
id: string;
|
|
728
725
|
list_id: string;
|
|
729
726
|
pipeline_key: string;
|
|
730
|
-
processing_state: Json;
|
|
731
727
|
source_execution_id: string | null;
|
|
732
728
|
source_input_hash: string | null;
|
|
733
729
|
source_resource_id: string | null;
|
|
@@ -742,7 +738,6 @@ type Database = {
|
|
|
742
738
|
id?: string;
|
|
743
739
|
list_id: string;
|
|
744
740
|
pipeline_key?: string;
|
|
745
|
-
processing_state?: Json;
|
|
746
741
|
source_execution_id?: string | null;
|
|
747
742
|
source_input_hash?: string | null;
|
|
748
743
|
source_resource_id?: string | null;
|
|
@@ -757,7 +752,6 @@ type Database = {
|
|
|
757
752
|
id?: string;
|
|
758
753
|
list_id?: string;
|
|
759
754
|
pipeline_key?: string;
|
|
760
|
-
processing_state?: Json;
|
|
761
755
|
source_execution_id?: string | null;
|
|
762
756
|
source_input_hash?: string | null;
|
|
763
757
|
source_resource_id?: string | null;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-A7R2URMV.js';
|
|
2
2
|
import '../../chunk-RYTEQBAO.js';
|
|
3
3
|
import '../../chunk-PDHTXPSF.js';
|
|
4
4
|
import '../../chunk-KVJ3LFH2.js';
|
|
5
5
|
import '../../chunk-XBMCDGHA.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-HNFQCOD2.js';
|
|
8
8
|
import '../../chunk-VKMNWHTL.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-CEHUFNAL.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
11
|
import '../../chunk-3ZMAGTWF.js';
|
|
12
12
|
import '../../chunk-VMJVQAFZ.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-OIMPGKDB.js';
|
|
14
14
|
import '../../chunk-LH4GPYDX.js';
|
|
15
15
|
import '../../chunk-HLFFKKT3.js';
|
|
16
16
|
import '../../chunk-WLOQ4IBG.js';
|
|
17
|
-
import '../../chunk-
|
|
18
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-Y3YJKKEB.js';
|
|
18
|
+
import '../../chunk-6WXDE5LZ.js';
|
|
19
19
|
import '../../chunk-3KMDHCAR.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-OWESKPTJ.js';
|
|
21
21
|
import '../../chunk-SZHARWKU.js';
|
|
22
22
|
import '../../chunk-V3HUIZJX.js';
|
|
23
23
|
import '../../chunk-TKAYX2SP.js';
|
|
24
24
|
import '../../chunk-NYBEU5TE.js';
|
|
25
|
-
import '../../chunk-
|
|
25
|
+
import '../../chunk-7E3FUTND.js';
|
|
26
26
|
import '../../chunk-2IFYDILW.js';
|
|
27
27
|
import '../../chunk-Q7DJKLEN.js';
|
|
28
28
|
import '../../chunk-GESXCQWY.js';
|
|
@@ -31,7 +31,7 @@ import '../../chunk-E565XMTQ.js';
|
|
|
31
31
|
import '../../chunk-KU7ZDWQ7.js';
|
|
32
32
|
import '../../chunk-DT3QYZVU.js';
|
|
33
33
|
import '../../chunk-RNP5R5I3.js';
|
|
34
|
-
import '../../chunk-
|
|
34
|
+
import '../../chunk-HXZQWMKE.js';
|
|
35
35
|
import '../../chunk-KRWALB24.js';
|
|
36
36
|
import '../../chunk-WFTNY755.js';
|
|
37
37
|
import '../../chunk-WKJ47GIW.js';
|
|
@@ -73,7 +73,7 @@ type Database = {
|
|
|
73
73
|
name: string;
|
|
74
74
|
num_employees: number | null;
|
|
75
75
|
organization_id: string;
|
|
76
|
-
|
|
76
|
+
processing_state: Json;
|
|
77
77
|
qualification_rubric_key: string | null;
|
|
78
78
|
qualification_score: number | null;
|
|
79
79
|
qualification_signals: Json | null;
|
|
@@ -99,7 +99,7 @@ type Database = {
|
|
|
99
99
|
name: string;
|
|
100
100
|
num_employees?: number | null;
|
|
101
101
|
organization_id: string;
|
|
102
|
-
|
|
102
|
+
processing_state?: Json;
|
|
103
103
|
qualification_rubric_key?: string | null;
|
|
104
104
|
qualification_score?: number | null;
|
|
105
105
|
qualification_signals?: Json | null;
|
|
@@ -125,7 +125,7 @@ type Database = {
|
|
|
125
125
|
name?: string;
|
|
126
126
|
num_employees?: number | null;
|
|
127
127
|
organization_id?: string;
|
|
128
|
-
|
|
128
|
+
processing_state?: Json;
|
|
129
129
|
qualification_rubric_key?: string | null;
|
|
130
130
|
qualification_score?: number | null;
|
|
131
131
|
qualification_signals?: Json | null;
|
|
@@ -164,7 +164,7 @@ type Database = {
|
|
|
164
164
|
nurture: boolean;
|
|
165
165
|
opening_line: string | null;
|
|
166
166
|
organization_id: string;
|
|
167
|
-
|
|
167
|
+
processing_state: Json;
|
|
168
168
|
qualification_rubric_key: string | null;
|
|
169
169
|
qualification_score: number | null;
|
|
170
170
|
qualification_signals: Json | null;
|
|
@@ -192,7 +192,7 @@ type Database = {
|
|
|
192
192
|
nurture?: boolean;
|
|
193
193
|
opening_line?: string | null;
|
|
194
194
|
organization_id: string;
|
|
195
|
-
|
|
195
|
+
processing_state?: Json;
|
|
196
196
|
qualification_rubric_key?: string | null;
|
|
197
197
|
qualification_score?: number | null;
|
|
198
198
|
qualification_signals?: Json | null;
|
|
@@ -220,7 +220,7 @@ type Database = {
|
|
|
220
220
|
nurture?: boolean;
|
|
221
221
|
opening_line?: string | null;
|
|
222
222
|
organization_id?: string;
|
|
223
|
-
|
|
223
|
+
processing_state?: Json;
|
|
224
224
|
qualification_rubric_key?: string | null;
|
|
225
225
|
qualification_score?: number | null;
|
|
226
226
|
qualification_signals?: Json | null;
|
|
@@ -616,7 +616,6 @@ type Database = {
|
|
|
616
616
|
id: string;
|
|
617
617
|
list_id: string;
|
|
618
618
|
pipeline_key: string;
|
|
619
|
-
processing_state: Json;
|
|
620
619
|
source_execution_id: string | null;
|
|
621
620
|
source_input_hash: string | null;
|
|
622
621
|
source_resource_id: string | null;
|
|
@@ -631,7 +630,6 @@ type Database = {
|
|
|
631
630
|
id?: string;
|
|
632
631
|
list_id: string;
|
|
633
632
|
pipeline_key?: string;
|
|
634
|
-
processing_state?: Json;
|
|
635
633
|
source_execution_id?: string | null;
|
|
636
634
|
source_input_hash?: string | null;
|
|
637
635
|
source_resource_id?: string | null;
|
|
@@ -646,7 +644,6 @@ type Database = {
|
|
|
646
644
|
id?: string;
|
|
647
645
|
list_id?: string;
|
|
648
646
|
pipeline_key?: string;
|
|
649
|
-
processing_state?: Json;
|
|
650
647
|
source_execution_id?: string | null;
|
|
651
648
|
source_input_hash?: string | null;
|
|
652
649
|
source_resource_id?: string | null;
|
|
@@ -725,7 +722,6 @@ type Database = {
|
|
|
725
722
|
id: string;
|
|
726
723
|
list_id: string;
|
|
727
724
|
pipeline_key: string;
|
|
728
|
-
processing_state: Json;
|
|
729
725
|
source_execution_id: string | null;
|
|
730
726
|
source_input_hash: string | null;
|
|
731
727
|
source_resource_id: string | null;
|
|
@@ -740,7 +736,6 @@ type Database = {
|
|
|
740
736
|
id?: string;
|
|
741
737
|
list_id: string;
|
|
742
738
|
pipeline_key?: string;
|
|
743
|
-
processing_state?: Json;
|
|
744
739
|
source_execution_id?: string | null;
|
|
745
740
|
source_input_hash?: string | null;
|
|
746
741
|
source_resource_id?: string | null;
|
|
@@ -755,7 +750,6 @@ type Database = {
|
|
|
755
750
|
id?: string;
|
|
756
751
|
list_id?: string;
|
|
757
752
|
pipeline_key?: string;
|
|
758
|
-
processing_state?: Json;
|
|
759
753
|
source_execution_id?: string | null;
|
|
760
754
|
source_input_hash?: string | null;
|
|
761
755
|
source_resource_id?: string | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-CEHUFNAL.js';
|
|
2
|
+
import '../../chunk-HXZQWMKE.js';
|
|
3
3
|
import '../../chunk-KRWALB24.js';
|
|
4
4
|
import '../../chunk-5WWZXCS5.js';
|
|
5
5
|
import '../../chunk-I2KLQ2HA.js';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -475,7 +475,7 @@ type Database = {
|
|
|
475
475
|
name: string;
|
|
476
476
|
num_employees: number | null;
|
|
477
477
|
organization_id: string;
|
|
478
|
-
|
|
478
|
+
processing_state: Json;
|
|
479
479
|
qualification_rubric_key: string | null;
|
|
480
480
|
qualification_score: number | null;
|
|
481
481
|
qualification_signals: Json | null;
|
|
@@ -501,7 +501,7 @@ type Database = {
|
|
|
501
501
|
name: string;
|
|
502
502
|
num_employees?: number | null;
|
|
503
503
|
organization_id: string;
|
|
504
|
-
|
|
504
|
+
processing_state?: Json;
|
|
505
505
|
qualification_rubric_key?: string | null;
|
|
506
506
|
qualification_score?: number | null;
|
|
507
507
|
qualification_signals?: Json | null;
|
|
@@ -527,7 +527,7 @@ type Database = {
|
|
|
527
527
|
name?: string;
|
|
528
528
|
num_employees?: number | null;
|
|
529
529
|
organization_id?: string;
|
|
530
|
-
|
|
530
|
+
processing_state?: Json;
|
|
531
531
|
qualification_rubric_key?: string | null;
|
|
532
532
|
qualification_score?: number | null;
|
|
533
533
|
qualification_signals?: Json | null;
|
|
@@ -566,7 +566,7 @@ type Database = {
|
|
|
566
566
|
nurture: boolean;
|
|
567
567
|
opening_line: string | null;
|
|
568
568
|
organization_id: string;
|
|
569
|
-
|
|
569
|
+
processing_state: Json;
|
|
570
570
|
qualification_rubric_key: string | null;
|
|
571
571
|
qualification_score: number | null;
|
|
572
572
|
qualification_signals: Json | null;
|
|
@@ -594,7 +594,7 @@ type Database = {
|
|
|
594
594
|
nurture?: boolean;
|
|
595
595
|
opening_line?: string | null;
|
|
596
596
|
organization_id: string;
|
|
597
|
-
|
|
597
|
+
processing_state?: Json;
|
|
598
598
|
qualification_rubric_key?: string | null;
|
|
599
599
|
qualification_score?: number | null;
|
|
600
600
|
qualification_signals?: Json | null;
|
|
@@ -622,7 +622,7 @@ type Database = {
|
|
|
622
622
|
nurture?: boolean;
|
|
623
623
|
opening_line?: string | null;
|
|
624
624
|
organization_id?: string;
|
|
625
|
-
|
|
625
|
+
processing_state?: Json;
|
|
626
626
|
qualification_rubric_key?: string | null;
|
|
627
627
|
qualification_score?: number | null;
|
|
628
628
|
qualification_signals?: Json | null;
|
|
@@ -1018,7 +1018,6 @@ type Database = {
|
|
|
1018
1018
|
id: string;
|
|
1019
1019
|
list_id: string;
|
|
1020
1020
|
pipeline_key: string;
|
|
1021
|
-
processing_state: Json;
|
|
1022
1021
|
source_execution_id: string | null;
|
|
1023
1022
|
source_input_hash: string | null;
|
|
1024
1023
|
source_resource_id: string | null;
|
|
@@ -1033,7 +1032,6 @@ type Database = {
|
|
|
1033
1032
|
id?: string;
|
|
1034
1033
|
list_id: string;
|
|
1035
1034
|
pipeline_key?: string;
|
|
1036
|
-
processing_state?: Json;
|
|
1037
1035
|
source_execution_id?: string | null;
|
|
1038
1036
|
source_input_hash?: string | null;
|
|
1039
1037
|
source_resource_id?: string | null;
|
|
@@ -1048,7 +1046,6 @@ type Database = {
|
|
|
1048
1046
|
id?: string;
|
|
1049
1047
|
list_id?: string;
|
|
1050
1048
|
pipeline_key?: string;
|
|
1051
|
-
processing_state?: Json;
|
|
1052
1049
|
source_execution_id?: string | null;
|
|
1053
1050
|
source_input_hash?: string | null;
|
|
1054
1051
|
source_resource_id?: string | null;
|
|
@@ -1127,7 +1124,6 @@ type Database = {
|
|
|
1127
1124
|
id: string;
|
|
1128
1125
|
list_id: string;
|
|
1129
1126
|
pipeline_key: string;
|
|
1130
|
-
processing_state: Json;
|
|
1131
1127
|
source_execution_id: string | null;
|
|
1132
1128
|
source_input_hash: string | null;
|
|
1133
1129
|
source_resource_id: string | null;
|
|
@@ -1142,7 +1138,6 @@ type Database = {
|
|
|
1142
1138
|
id?: string;
|
|
1143
1139
|
list_id: string;
|
|
1144
1140
|
pipeline_key?: string;
|
|
1145
|
-
processing_state?: Json;
|
|
1146
1141
|
source_execution_id?: string | null;
|
|
1147
1142
|
source_input_hash?: string | null;
|
|
1148
1143
|
source_resource_id?: string | null;
|
|
@@ -1157,7 +1152,6 @@ type Database = {
|
|
|
1157
1152
|
id?: string;
|
|
1158
1153
|
list_id?: string;
|
|
1159
1154
|
pipeline_key?: string;
|
|
1160
|
-
processing_state?: Json;
|
|
1161
1155
|
source_execution_id?: string | null;
|
|
1162
1156
|
source_input_hash?: string | null;
|
|
1163
1157
|
source_resource_id?: string | null;
|
|
@@ -3390,7 +3384,15 @@ declare const DealDetailResponseSchema: z.ZodObject<{
|
|
|
3390
3384
|
title: z.ZodNullable<z.ZodString>;
|
|
3391
3385
|
headline: z.ZodNullable<z.ZodString>;
|
|
3392
3386
|
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3393
|
-
|
|
3387
|
+
processing_state: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3388
|
+
status: z.ZodEnum<{
|
|
3389
|
+
error: "error";
|
|
3390
|
+
success: "success";
|
|
3391
|
+
no_result: "no_result";
|
|
3392
|
+
skipped: "skipped";
|
|
3393
|
+
}>;
|
|
3394
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
3395
|
+
}, z.core.$loose>>>;
|
|
3394
3396
|
enrichment_data: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3395
3397
|
company: z.ZodNullable<z.ZodObject<{
|
|
3396
3398
|
id: z.ZodString;
|
|
@@ -3438,6 +3440,7 @@ declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
|
3438
3440
|
website: z.ZodOptional<z.ZodString>;
|
|
3439
3441
|
segment: z.ZodOptional<z.ZodString>;
|
|
3440
3442
|
category: z.ZodOptional<z.ZodString>;
|
|
3443
|
+
pipelineStatus: z.ZodOptional<z.ZodUnknown>;
|
|
3441
3444
|
batchId: z.ZodOptional<z.ZodString>;
|
|
3442
3445
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3443
3446
|
active: "active";
|
|
@@ -3473,7 +3476,16 @@ declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
|
3473
3476
|
category: z.ZodNullable<z.ZodString>;
|
|
3474
3477
|
categoryPain: z.ZodNullable<z.ZodString>;
|
|
3475
3478
|
segment: z.ZodNullable<z.ZodString>;
|
|
3476
|
-
|
|
3479
|
+
processingState: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3480
|
+
status: z.ZodEnum<{
|
|
3481
|
+
error: "error";
|
|
3482
|
+
success: "success";
|
|
3483
|
+
no_result: "no_result";
|
|
3484
|
+
skipped: "skipped";
|
|
3485
|
+
}>;
|
|
3486
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
3487
|
+
}, z.core.$loose>>>;
|
|
3488
|
+
pipelineStatus: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
|
3477
3489
|
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3478
3490
|
source: z.ZodNullable<z.ZodString>;
|
|
3479
3491
|
batchId: z.ZodNullable<z.ZodString>;
|
|
@@ -3506,7 +3518,16 @@ declare const AcqContactResponseSchema: z.ZodObject<{
|
|
|
3506
3518
|
openingLine: z.ZodNullable<z.ZodString>;
|
|
3507
3519
|
source: z.ZodNullable<z.ZodString>;
|
|
3508
3520
|
sourceId: z.ZodNullable<z.ZodString>;
|
|
3509
|
-
|
|
3521
|
+
processingState: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3522
|
+
status: z.ZodEnum<{
|
|
3523
|
+
error: "error";
|
|
3524
|
+
success: "success";
|
|
3525
|
+
no_result: "no_result";
|
|
3526
|
+
skipped: "skipped";
|
|
3527
|
+
}>;
|
|
3528
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
3529
|
+
}, z.core.$loose>>>;
|
|
3530
|
+
pipelineStatus: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
|
|
3510
3531
|
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3511
3532
|
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
3512
3533
|
batchId: z.ZodNullable<z.ZodString>;
|
|
@@ -3565,7 +3586,7 @@ interface DealContact {
|
|
|
3565
3586
|
title: string | null;
|
|
3566
3587
|
headline: string | null;
|
|
3567
3588
|
linkedin_url: string | null;
|
|
3568
|
-
|
|
3589
|
+
processing_state: Record<string, unknown> | null;
|
|
3569
3590
|
enrichment_data: Record<string, unknown> | null;
|
|
3570
3591
|
company: {
|
|
3571
3592
|
id: string;
|
|
@@ -6926,7 +6947,11 @@ declare function useDeals(filters?: DealFilters): {
|
|
|
6926
6947
|
title: string | null;
|
|
6927
6948
|
headline: string | null;
|
|
6928
6949
|
linkedin_url: string | null;
|
|
6929
|
-
|
|
6950
|
+
processing_state: Record<string, {
|
|
6951
|
+
[x: string]: unknown;
|
|
6952
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
6953
|
+
data?: unknown;
|
|
6954
|
+
}> | null;
|
|
6930
6955
|
enrichment_data: Record<string, unknown> | null;
|
|
6931
6956
|
company: {
|
|
6932
6957
|
id: string;
|
|
@@ -6990,7 +7015,11 @@ declare function useDeals(filters?: DealFilters): {
|
|
|
6990
7015
|
title: string | null;
|
|
6991
7016
|
headline: string | null;
|
|
6992
7017
|
linkedin_url: string | null;
|
|
6993
|
-
|
|
7018
|
+
processing_state: Record<string, {
|
|
7019
|
+
[x: string]: unknown;
|
|
7020
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7021
|
+
data?: unknown;
|
|
7022
|
+
}> | null;
|
|
6994
7023
|
enrichment_data: Record<string, unknown> | null;
|
|
6995
7024
|
company: {
|
|
6996
7025
|
id: string;
|
|
@@ -7567,6 +7596,7 @@ declare const companyKeys: {
|
|
|
7567
7596
|
website?: string | undefined;
|
|
7568
7597
|
segment?: string | undefined;
|
|
7569
7598
|
category?: string | undefined;
|
|
7599
|
+
pipelineStatus?: unknown;
|
|
7570
7600
|
batchId?: string | undefined;
|
|
7571
7601
|
status?: "active" | "invalid" | undefined;
|
|
7572
7602
|
includeAll?: boolean | undefined;
|
|
@@ -7589,7 +7619,11 @@ declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_
|
|
|
7589
7619
|
category: string | null;
|
|
7590
7620
|
categoryPain: string | null;
|
|
7591
7621
|
segment: string | null;
|
|
7592
|
-
|
|
7622
|
+
processingState: Record<string, {
|
|
7623
|
+
[x: string]: unknown;
|
|
7624
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7625
|
+
data?: unknown;
|
|
7626
|
+
}> | null;
|
|
7593
7627
|
enrichmentData: Record<string, unknown> | null;
|
|
7594
7628
|
source: string | null;
|
|
7595
7629
|
batchId: string | null;
|
|
@@ -7598,6 +7632,7 @@ declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_
|
|
|
7598
7632
|
verticalResearch: string | null;
|
|
7599
7633
|
createdAt: string;
|
|
7600
7634
|
updatedAt: string;
|
|
7635
|
+
pipelineStatus?: unknown;
|
|
7601
7636
|
}[];
|
|
7602
7637
|
total: number;
|
|
7603
7638
|
limit: number;
|
|
@@ -7618,7 +7653,11 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
7618
7653
|
category: string | null;
|
|
7619
7654
|
categoryPain: string | null;
|
|
7620
7655
|
segment: string | null;
|
|
7621
|
-
|
|
7656
|
+
processingState: Record<string, {
|
|
7657
|
+
[x: string]: unknown;
|
|
7658
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7659
|
+
data?: unknown;
|
|
7660
|
+
}> | null;
|
|
7622
7661
|
enrichmentData: Record<string, unknown> | null;
|
|
7623
7662
|
source: string | null;
|
|
7624
7663
|
batchId: string | null;
|
|
@@ -7627,6 +7666,7 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
7627
7666
|
verticalResearch: string | null;
|
|
7628
7667
|
createdAt: string;
|
|
7629
7668
|
updatedAt: string;
|
|
7669
|
+
pipelineStatus?: unknown;
|
|
7630
7670
|
} | null, Error>;
|
|
7631
7671
|
declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
7632
7672
|
id: string;
|
|
@@ -7642,7 +7682,11 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
7642
7682
|
category: string | null;
|
|
7643
7683
|
categoryPain: string | null;
|
|
7644
7684
|
segment: string | null;
|
|
7645
|
-
|
|
7685
|
+
processingState: Record<string, {
|
|
7686
|
+
[x: string]: unknown;
|
|
7687
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7688
|
+
data?: unknown;
|
|
7689
|
+
}> | null;
|
|
7646
7690
|
enrichmentData: Record<string, unknown> | null;
|
|
7647
7691
|
source: string | null;
|
|
7648
7692
|
batchId: string | null;
|
|
@@ -7651,6 +7695,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
7651
7695
|
verticalResearch: string | null;
|
|
7652
7696
|
createdAt: string;
|
|
7653
7697
|
updatedAt: string;
|
|
7698
|
+
pipelineStatus?: unknown;
|
|
7654
7699
|
}, Error, {
|
|
7655
7700
|
name: string;
|
|
7656
7701
|
domain?: string | undefined;
|
|
@@ -7663,6 +7708,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
7663
7708
|
category?: string | undefined;
|
|
7664
7709
|
source?: string | undefined;
|
|
7665
7710
|
batchId?: string | undefined;
|
|
7711
|
+
pipelineStatus?: unknown;
|
|
7666
7712
|
verticalResearch?: string | undefined;
|
|
7667
7713
|
}, unknown>;
|
|
7668
7714
|
declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseMutationResult<{
|
|
@@ -7679,7 +7725,11 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
7679
7725
|
category: string | null;
|
|
7680
7726
|
categoryPain: string | null;
|
|
7681
7727
|
segment: string | null;
|
|
7682
|
-
|
|
7728
|
+
processingState: Record<string, {
|
|
7729
|
+
[x: string]: unknown;
|
|
7730
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7731
|
+
data?: unknown;
|
|
7732
|
+
}> | null;
|
|
7683
7733
|
enrichmentData: Record<string, unknown> | null;
|
|
7684
7734
|
source: string | null;
|
|
7685
7735
|
batchId: string | null;
|
|
@@ -7688,6 +7738,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
7688
7738
|
verticalResearch: string | null;
|
|
7689
7739
|
createdAt: string;
|
|
7690
7740
|
updatedAt: string;
|
|
7741
|
+
pipelineStatus?: unknown;
|
|
7691
7742
|
}, Error, {
|
|
7692
7743
|
name?: string | undefined;
|
|
7693
7744
|
domain?: string | undefined;
|
|
@@ -7699,7 +7750,12 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
7699
7750
|
locationState?: string | undefined;
|
|
7700
7751
|
category?: string | undefined;
|
|
7701
7752
|
segment?: string | undefined;
|
|
7702
|
-
|
|
7753
|
+
processingState?: Record<string, {
|
|
7754
|
+
[x: string]: unknown;
|
|
7755
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7756
|
+
data?: unknown;
|
|
7757
|
+
}> | undefined;
|
|
7758
|
+
pipelineStatus?: unknown;
|
|
7703
7759
|
enrichmentData?: Record<string, unknown> | undefined;
|
|
7704
7760
|
source?: string | undefined;
|
|
7705
7761
|
batchId?: string | undefined;
|
|
@@ -7738,13 +7794,18 @@ declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_re
|
|
|
7738
7794
|
openingLine: string | null;
|
|
7739
7795
|
source: string | null;
|
|
7740
7796
|
sourceId: string | null;
|
|
7741
|
-
|
|
7797
|
+
processingState: Record<string, {
|
|
7798
|
+
[x: string]: unknown;
|
|
7799
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7800
|
+
data?: unknown;
|
|
7801
|
+
}> | null;
|
|
7742
7802
|
enrichmentData: Record<string, unknown> | null;
|
|
7743
7803
|
attioPersonId: string | null;
|
|
7744
7804
|
batchId: string | null;
|
|
7745
7805
|
status: "active" | "invalid";
|
|
7746
7806
|
createdAt: string;
|
|
7747
7807
|
updatedAt: string;
|
|
7808
|
+
pipelineStatus?: unknown;
|
|
7748
7809
|
company?: {
|
|
7749
7810
|
id: string;
|
|
7750
7811
|
name: string;
|
|
@@ -7775,13 +7836,18 @@ declare function useContact(contactId: string): _tanstack_react_query.UseQueryRe
|
|
|
7775
7836
|
openingLine: string | null;
|
|
7776
7837
|
source: string | null;
|
|
7777
7838
|
sourceId: string | null;
|
|
7778
|
-
|
|
7839
|
+
processingState: Record<string, {
|
|
7840
|
+
[x: string]: unknown;
|
|
7841
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7842
|
+
data?: unknown;
|
|
7843
|
+
}> | null;
|
|
7779
7844
|
enrichmentData: Record<string, unknown> | null;
|
|
7780
7845
|
attioPersonId: string | null;
|
|
7781
7846
|
batchId: string | null;
|
|
7782
7847
|
status: "active" | "invalid";
|
|
7783
7848
|
createdAt: string;
|
|
7784
7849
|
updatedAt: string;
|
|
7850
|
+
pipelineStatus?: unknown;
|
|
7785
7851
|
company?: {
|
|
7786
7852
|
id: string;
|
|
7787
7853
|
name: string;
|
|
@@ -7808,13 +7874,18 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
7808
7874
|
openingLine: string | null;
|
|
7809
7875
|
source: string | null;
|
|
7810
7876
|
sourceId: string | null;
|
|
7811
|
-
|
|
7877
|
+
processingState: Record<string, {
|
|
7878
|
+
[x: string]: unknown;
|
|
7879
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7880
|
+
data?: unknown;
|
|
7881
|
+
}> | null;
|
|
7812
7882
|
enrichmentData: Record<string, unknown> | null;
|
|
7813
7883
|
attioPersonId: string | null;
|
|
7814
7884
|
batchId: string | null;
|
|
7815
7885
|
status: "active" | "invalid";
|
|
7816
7886
|
createdAt: string;
|
|
7817
7887
|
updatedAt: string;
|
|
7888
|
+
pipelineStatus?: unknown;
|
|
7818
7889
|
company?: {
|
|
7819
7890
|
id: string;
|
|
7820
7891
|
name: string;
|
|
@@ -7835,6 +7906,7 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
7835
7906
|
source?: string | undefined;
|
|
7836
7907
|
sourceId?: string | undefined;
|
|
7837
7908
|
batchId?: string | undefined;
|
|
7909
|
+
pipelineStatus?: unknown;
|
|
7838
7910
|
}, unknown>;
|
|
7839
7911
|
declare function useUpdateContact(contactId: string): _tanstack_react_query.UseMutationResult<{
|
|
7840
7912
|
id: string;
|
|
@@ -7851,13 +7923,18 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
7851
7923
|
openingLine: string | null;
|
|
7852
7924
|
source: string | null;
|
|
7853
7925
|
sourceId: string | null;
|
|
7854
|
-
|
|
7926
|
+
processingState: Record<string, {
|
|
7927
|
+
[x: string]: unknown;
|
|
7928
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7929
|
+
data?: unknown;
|
|
7930
|
+
}> | null;
|
|
7855
7931
|
enrichmentData: Record<string, unknown> | null;
|
|
7856
7932
|
attioPersonId: string | null;
|
|
7857
7933
|
batchId: string | null;
|
|
7858
7934
|
status: "active" | "invalid";
|
|
7859
7935
|
createdAt: string;
|
|
7860
7936
|
updatedAt: string;
|
|
7937
|
+
pipelineStatus?: unknown;
|
|
7861
7938
|
company?: {
|
|
7862
7939
|
id: string;
|
|
7863
7940
|
name: string;
|
|
@@ -7878,7 +7955,12 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
7878
7955
|
headline?: string | undefined;
|
|
7879
7956
|
filterReason?: string | undefined;
|
|
7880
7957
|
openingLine?: string | undefined;
|
|
7881
|
-
|
|
7958
|
+
processingState?: Record<string, {
|
|
7959
|
+
[x: string]: unknown;
|
|
7960
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
7961
|
+
data?: unknown;
|
|
7962
|
+
}> | undefined;
|
|
7963
|
+
pipelineStatus?: unknown;
|
|
7882
7964
|
enrichmentData?: Record<string, unknown> | undefined;
|
|
7883
7965
|
status?: "active" | "invalid" | undefined;
|
|
7884
7966
|
}, unknown>;
|