@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
package/dist/index.d.ts
CHANGED
|
@@ -676,7 +676,7 @@ type Database = {
|
|
|
676
676
|
name: string;
|
|
677
677
|
num_employees: number | null;
|
|
678
678
|
organization_id: string;
|
|
679
|
-
|
|
679
|
+
processing_state: Json;
|
|
680
680
|
qualification_rubric_key: string | null;
|
|
681
681
|
qualification_score: number | null;
|
|
682
682
|
qualification_signals: Json | null;
|
|
@@ -702,7 +702,7 @@ type Database = {
|
|
|
702
702
|
name: string;
|
|
703
703
|
num_employees?: number | null;
|
|
704
704
|
organization_id: string;
|
|
705
|
-
|
|
705
|
+
processing_state?: Json;
|
|
706
706
|
qualification_rubric_key?: string | null;
|
|
707
707
|
qualification_score?: number | null;
|
|
708
708
|
qualification_signals?: Json | null;
|
|
@@ -728,7 +728,7 @@ type Database = {
|
|
|
728
728
|
name?: string;
|
|
729
729
|
num_employees?: number | null;
|
|
730
730
|
organization_id?: string;
|
|
731
|
-
|
|
731
|
+
processing_state?: Json;
|
|
732
732
|
qualification_rubric_key?: string | null;
|
|
733
733
|
qualification_score?: number | null;
|
|
734
734
|
qualification_signals?: Json | null;
|
|
@@ -767,7 +767,7 @@ type Database = {
|
|
|
767
767
|
nurture: boolean;
|
|
768
768
|
opening_line: string | null;
|
|
769
769
|
organization_id: string;
|
|
770
|
-
|
|
770
|
+
processing_state: Json;
|
|
771
771
|
qualification_rubric_key: string | null;
|
|
772
772
|
qualification_score: number | null;
|
|
773
773
|
qualification_signals: Json | null;
|
|
@@ -795,7 +795,7 @@ type Database = {
|
|
|
795
795
|
nurture?: boolean;
|
|
796
796
|
opening_line?: string | null;
|
|
797
797
|
organization_id: string;
|
|
798
|
-
|
|
798
|
+
processing_state?: Json;
|
|
799
799
|
qualification_rubric_key?: string | null;
|
|
800
800
|
qualification_score?: number | null;
|
|
801
801
|
qualification_signals?: Json | null;
|
|
@@ -823,7 +823,7 @@ type Database = {
|
|
|
823
823
|
nurture?: boolean;
|
|
824
824
|
opening_line?: string | null;
|
|
825
825
|
organization_id?: string;
|
|
826
|
-
|
|
826
|
+
processing_state?: Json;
|
|
827
827
|
qualification_rubric_key?: string | null;
|
|
828
828
|
qualification_score?: number | null;
|
|
829
829
|
qualification_signals?: Json | null;
|
|
@@ -1219,7 +1219,6 @@ type Database = {
|
|
|
1219
1219
|
id: string;
|
|
1220
1220
|
list_id: string;
|
|
1221
1221
|
pipeline_key: string;
|
|
1222
|
-
processing_state: Json;
|
|
1223
1222
|
source_execution_id: string | null;
|
|
1224
1223
|
source_input_hash: string | null;
|
|
1225
1224
|
source_resource_id: string | null;
|
|
@@ -1234,7 +1233,6 @@ type Database = {
|
|
|
1234
1233
|
id?: string;
|
|
1235
1234
|
list_id: string;
|
|
1236
1235
|
pipeline_key?: string;
|
|
1237
|
-
processing_state?: Json;
|
|
1238
1236
|
source_execution_id?: string | null;
|
|
1239
1237
|
source_input_hash?: string | null;
|
|
1240
1238
|
source_resource_id?: string | null;
|
|
@@ -1249,7 +1247,6 @@ type Database = {
|
|
|
1249
1247
|
id?: string;
|
|
1250
1248
|
list_id?: string;
|
|
1251
1249
|
pipeline_key?: string;
|
|
1252
|
-
processing_state?: Json;
|
|
1253
1250
|
source_execution_id?: string | null;
|
|
1254
1251
|
source_input_hash?: string | null;
|
|
1255
1252
|
source_resource_id?: string | null;
|
|
@@ -1328,7 +1325,6 @@ type Database = {
|
|
|
1328
1325
|
id: string;
|
|
1329
1326
|
list_id: string;
|
|
1330
1327
|
pipeline_key: string;
|
|
1331
|
-
processing_state: Json;
|
|
1332
1328
|
source_execution_id: string | null;
|
|
1333
1329
|
source_input_hash: string | null;
|
|
1334
1330
|
source_resource_id: string | null;
|
|
@@ -1343,7 +1339,6 @@ type Database = {
|
|
|
1343
1339
|
id?: string;
|
|
1344
1340
|
list_id: string;
|
|
1345
1341
|
pipeline_key?: string;
|
|
1346
|
-
processing_state?: Json;
|
|
1347
1342
|
source_execution_id?: string | null;
|
|
1348
1343
|
source_input_hash?: string | null;
|
|
1349
1344
|
source_resource_id?: string | null;
|
|
@@ -1358,7 +1353,6 @@ type Database = {
|
|
|
1358
1353
|
id?: string;
|
|
1359
1354
|
list_id?: string;
|
|
1360
1355
|
pipeline_key?: string;
|
|
1361
|
-
processing_state?: Json;
|
|
1362
1356
|
source_execution_id?: string | null;
|
|
1363
1357
|
source_input_hash?: string | null;
|
|
1364
1358
|
source_resource_id?: string | null;
|
|
@@ -3647,7 +3641,15 @@ declare const DealDetailResponseSchema: z$1.ZodObject<{
|
|
|
3647
3641
|
title: z$1.ZodNullable<z$1.ZodString>;
|
|
3648
3642
|
headline: z$1.ZodNullable<z$1.ZodString>;
|
|
3649
3643
|
linkedin_url: z$1.ZodNullable<z$1.ZodString>;
|
|
3650
|
-
|
|
3644
|
+
processing_state: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3645
|
+
status: z$1.ZodEnum<{
|
|
3646
|
+
error: "error";
|
|
3647
|
+
success: "success";
|
|
3648
|
+
no_result: "no_result";
|
|
3649
|
+
skipped: "skipped";
|
|
3650
|
+
}>;
|
|
3651
|
+
data: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
3652
|
+
}, z$1.core.$loose>>>;
|
|
3651
3653
|
enrichment_data: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3652
3654
|
company: z$1.ZodNullable<z$1.ZodObject<{
|
|
3653
3655
|
id: z$1.ZodString;
|
|
@@ -3765,6 +3767,7 @@ declare const ListCompaniesQuerySchema: z$1.ZodObject<{
|
|
|
3765
3767
|
website: z$1.ZodOptional<z$1.ZodString>;
|
|
3766
3768
|
segment: z$1.ZodOptional<z$1.ZodString>;
|
|
3767
3769
|
category: z$1.ZodOptional<z$1.ZodString>;
|
|
3770
|
+
pipelineStatus: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
3768
3771
|
batchId: z$1.ZodOptional<z$1.ZodString>;
|
|
3769
3772
|
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3770
3773
|
active: "active";
|
|
@@ -3800,7 +3803,16 @@ declare const AcqCompanyResponseSchema: z$1.ZodObject<{
|
|
|
3800
3803
|
category: z$1.ZodNullable<z$1.ZodString>;
|
|
3801
3804
|
categoryPain: z$1.ZodNullable<z$1.ZodString>;
|
|
3802
3805
|
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
3803
|
-
|
|
3806
|
+
processingState: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3807
|
+
status: z$1.ZodEnum<{
|
|
3808
|
+
error: "error";
|
|
3809
|
+
success: "success";
|
|
3810
|
+
no_result: "no_result";
|
|
3811
|
+
skipped: "skipped";
|
|
3812
|
+
}>;
|
|
3813
|
+
data: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
3814
|
+
}, z$1.core.$loose>>>;
|
|
3815
|
+
pipelineStatus: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodUnknown>>;
|
|
3804
3816
|
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3805
3817
|
source: z$1.ZodNullable<z$1.ZodString>;
|
|
3806
3818
|
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -3833,7 +3845,16 @@ declare const AcqContactResponseSchema: z$1.ZodObject<{
|
|
|
3833
3845
|
openingLine: z$1.ZodNullable<z$1.ZodString>;
|
|
3834
3846
|
source: z$1.ZodNullable<z$1.ZodString>;
|
|
3835
3847
|
sourceId: z$1.ZodNullable<z$1.ZodString>;
|
|
3836
|
-
|
|
3848
|
+
processingState: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3849
|
+
status: z$1.ZodEnum<{
|
|
3850
|
+
error: "error";
|
|
3851
|
+
success: "success";
|
|
3852
|
+
no_result: "no_result";
|
|
3853
|
+
skipped: "skipped";
|
|
3854
|
+
}>;
|
|
3855
|
+
data: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
3856
|
+
}, z$1.core.$loose>>>;
|
|
3857
|
+
pipelineStatus: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodUnknown>>;
|
|
3837
3858
|
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3838
3859
|
attioPersonId: z$1.ZodNullable<z$1.ZodString>;
|
|
3839
3860
|
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -3893,7 +3914,7 @@ interface DealContact {
|
|
|
3893
3914
|
title: string | null;
|
|
3894
3915
|
headline: string | null;
|
|
3895
3916
|
linkedin_url: string | null;
|
|
3896
|
-
|
|
3917
|
+
processing_state: Record<string, unknown> | null;
|
|
3897
3918
|
enrichment_data: Record<string, unknown> | null;
|
|
3898
3919
|
company: {
|
|
3899
3920
|
id: string;
|
|
@@ -5144,6 +5165,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
5144
5165
|
path: z$1.ZodOptional<z$1.ZodString>;
|
|
5145
5166
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5146
5167
|
"nav.dashboard": "nav.dashboard";
|
|
5168
|
+
"nav.calendar": "nav.calendar";
|
|
5147
5169
|
"nav.sales": "nav.sales";
|
|
5148
5170
|
"nav.crm": "nav.crm";
|
|
5149
5171
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5158,6 +5180,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
5158
5180
|
"knowledge.strategy": "knowledge.strategy";
|
|
5159
5181
|
"knowledge.reference": "knowledge.reference";
|
|
5160
5182
|
"feature.dashboard": "feature.dashboard";
|
|
5183
|
+
"feature.calendar": "feature.calendar";
|
|
5161
5184
|
"feature.sales": "feature.sales";
|
|
5162
5185
|
"feature.crm": "feature.crm";
|
|
5163
5186
|
"feature.finance": "feature.finance";
|
|
@@ -5181,6 +5204,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
5181
5204
|
"integration.google-sheets": "integration.google-sheets";
|
|
5182
5205
|
"integration.attio": "integration.attio";
|
|
5183
5206
|
"surface.dashboard": "surface.dashboard";
|
|
5207
|
+
"surface.calendar": "surface.calendar";
|
|
5184
5208
|
"surface.overview": "surface.overview";
|
|
5185
5209
|
"surface.command-view": "surface.command-view";
|
|
5186
5210
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5224,6 +5248,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5224
5248
|
path: z$1.ZodOptional<z$1.ZodString>;
|
|
5225
5249
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5226
5250
|
"nav.dashboard": "nav.dashboard";
|
|
5251
|
+
"nav.calendar": "nav.calendar";
|
|
5227
5252
|
"nav.sales": "nav.sales";
|
|
5228
5253
|
"nav.crm": "nav.crm";
|
|
5229
5254
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5238,6 +5263,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5238
5263
|
"knowledge.strategy": "knowledge.strategy";
|
|
5239
5264
|
"knowledge.reference": "knowledge.reference";
|
|
5240
5265
|
"feature.dashboard": "feature.dashboard";
|
|
5266
|
+
"feature.calendar": "feature.calendar";
|
|
5241
5267
|
"feature.sales": "feature.sales";
|
|
5242
5268
|
"feature.crm": "feature.crm";
|
|
5243
5269
|
"feature.finance": "feature.finance";
|
|
@@ -5261,6 +5287,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5261
5287
|
"integration.google-sheets": "integration.google-sheets";
|
|
5262
5288
|
"integration.attio": "integration.attio";
|
|
5263
5289
|
"surface.dashboard": "surface.dashboard";
|
|
5290
|
+
"surface.calendar": "surface.calendar";
|
|
5264
5291
|
"surface.overview": "surface.overview";
|
|
5265
5292
|
"surface.command-view": "surface.command-view";
|
|
5266
5293
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5322,6 +5349,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5322
5349
|
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5323
5350
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5324
5351
|
"nav.dashboard": "nav.dashboard";
|
|
5352
|
+
"nav.calendar": "nav.calendar";
|
|
5325
5353
|
"nav.sales": "nav.sales";
|
|
5326
5354
|
"nav.crm": "nav.crm";
|
|
5327
5355
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5336,6 +5364,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5336
5364
|
"knowledge.strategy": "knowledge.strategy";
|
|
5337
5365
|
"knowledge.reference": "knowledge.reference";
|
|
5338
5366
|
"feature.dashboard": "feature.dashboard";
|
|
5367
|
+
"feature.calendar": "feature.calendar";
|
|
5339
5368
|
"feature.sales": "feature.sales";
|
|
5340
5369
|
"feature.crm": "feature.crm";
|
|
5341
5370
|
"feature.finance": "feature.finance";
|
|
@@ -5359,6 +5388,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5359
5388
|
"integration.google-sheets": "integration.google-sheets";
|
|
5360
5389
|
"integration.attio": "integration.attio";
|
|
5361
5390
|
"surface.dashboard": "surface.dashboard";
|
|
5391
|
+
"surface.calendar": "surface.calendar";
|
|
5362
5392
|
"surface.overview": "surface.overview";
|
|
5363
5393
|
"surface.command-view": "surface.command-view";
|
|
5364
5394
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5411,6 +5441,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5411
5441
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5412
5442
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5413
5443
|
"nav.dashboard": "nav.dashboard";
|
|
5444
|
+
"nav.calendar": "nav.calendar";
|
|
5414
5445
|
"nav.sales": "nav.sales";
|
|
5415
5446
|
"nav.crm": "nav.crm";
|
|
5416
5447
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5425,6 +5456,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5425
5456
|
"knowledge.strategy": "knowledge.strategy";
|
|
5426
5457
|
"knowledge.reference": "knowledge.reference";
|
|
5427
5458
|
"feature.dashboard": "feature.dashboard";
|
|
5459
|
+
"feature.calendar": "feature.calendar";
|
|
5428
5460
|
"feature.sales": "feature.sales";
|
|
5429
5461
|
"feature.crm": "feature.crm";
|
|
5430
5462
|
"feature.finance": "feature.finance";
|
|
@@ -5448,6 +5480,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5448
5480
|
"integration.google-sheets": "integration.google-sheets";
|
|
5449
5481
|
"integration.attio": "integration.attio";
|
|
5450
5482
|
"surface.dashboard": "surface.dashboard";
|
|
5483
|
+
"surface.calendar": "surface.calendar";
|
|
5451
5484
|
"surface.overview": "surface.overview";
|
|
5452
5485
|
"surface.command-view": "surface.command-view";
|
|
5453
5486
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5497,6 +5530,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5497
5530
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5498
5531
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5499
5532
|
"nav.dashboard": "nav.dashboard";
|
|
5533
|
+
"nav.calendar": "nav.calendar";
|
|
5500
5534
|
"nav.sales": "nav.sales";
|
|
5501
5535
|
"nav.crm": "nav.crm";
|
|
5502
5536
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5511,6 +5545,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5511
5545
|
"knowledge.strategy": "knowledge.strategy";
|
|
5512
5546
|
"knowledge.reference": "knowledge.reference";
|
|
5513
5547
|
"feature.dashboard": "feature.dashboard";
|
|
5548
|
+
"feature.calendar": "feature.calendar";
|
|
5514
5549
|
"feature.sales": "feature.sales";
|
|
5515
5550
|
"feature.crm": "feature.crm";
|
|
5516
5551
|
"feature.finance": "feature.finance";
|
|
@@ -5534,6 +5569,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5534
5569
|
"integration.google-sheets": "integration.google-sheets";
|
|
5535
5570
|
"integration.attio": "integration.attio";
|
|
5536
5571
|
"surface.dashboard": "surface.dashboard";
|
|
5572
|
+
"surface.calendar": "surface.calendar";
|
|
5537
5573
|
"surface.overview": "surface.overview";
|
|
5538
5574
|
"surface.command-view": "surface.command-view";
|
|
5539
5575
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5567,6 +5603,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5567
5603
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5568
5604
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5569
5605
|
"nav.dashboard": "nav.dashboard";
|
|
5606
|
+
"nav.calendar": "nav.calendar";
|
|
5570
5607
|
"nav.sales": "nav.sales";
|
|
5571
5608
|
"nav.crm": "nav.crm";
|
|
5572
5609
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5581,6 +5618,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5581
5618
|
"knowledge.strategy": "knowledge.strategy";
|
|
5582
5619
|
"knowledge.reference": "knowledge.reference";
|
|
5583
5620
|
"feature.dashboard": "feature.dashboard";
|
|
5621
|
+
"feature.calendar": "feature.calendar";
|
|
5584
5622
|
"feature.sales": "feature.sales";
|
|
5585
5623
|
"feature.crm": "feature.crm";
|
|
5586
5624
|
"feature.finance": "feature.finance";
|
|
@@ -5604,6 +5642,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5604
5642
|
"integration.google-sheets": "integration.google-sheets";
|
|
5605
5643
|
"integration.attio": "integration.attio";
|
|
5606
5644
|
"surface.dashboard": "surface.dashboard";
|
|
5645
|
+
"surface.calendar": "surface.calendar";
|
|
5607
5646
|
"surface.overview": "surface.overview";
|
|
5608
5647
|
"surface.command-view": "surface.command-view";
|
|
5609
5648
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5638,6 +5677,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5638
5677
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5639
5678
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5640
5679
|
"nav.dashboard": "nav.dashboard";
|
|
5680
|
+
"nav.calendar": "nav.calendar";
|
|
5641
5681
|
"nav.sales": "nav.sales";
|
|
5642
5682
|
"nav.crm": "nav.crm";
|
|
5643
5683
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5652,6 +5692,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5652
5692
|
"knowledge.strategy": "knowledge.strategy";
|
|
5653
5693
|
"knowledge.reference": "knowledge.reference";
|
|
5654
5694
|
"feature.dashboard": "feature.dashboard";
|
|
5695
|
+
"feature.calendar": "feature.calendar";
|
|
5655
5696
|
"feature.sales": "feature.sales";
|
|
5656
5697
|
"feature.crm": "feature.crm";
|
|
5657
5698
|
"feature.finance": "feature.finance";
|
|
@@ -5675,6 +5716,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5675
5716
|
"integration.google-sheets": "integration.google-sheets";
|
|
5676
5717
|
"integration.attio": "integration.attio";
|
|
5677
5718
|
"surface.dashboard": "surface.dashboard";
|
|
5719
|
+
"surface.calendar": "surface.calendar";
|
|
5678
5720
|
"surface.overview": "surface.overview";
|
|
5679
5721
|
"surface.command-view": "surface.command-view";
|
|
5680
5722
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5706,6 +5748,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5706
5748
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5707
5749
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5708
5750
|
"nav.dashboard": "nav.dashboard";
|
|
5751
|
+
"nav.calendar": "nav.calendar";
|
|
5709
5752
|
"nav.sales": "nav.sales";
|
|
5710
5753
|
"nav.crm": "nav.crm";
|
|
5711
5754
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5720,6 +5763,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5720
5763
|
"knowledge.strategy": "knowledge.strategy";
|
|
5721
5764
|
"knowledge.reference": "knowledge.reference";
|
|
5722
5765
|
"feature.dashboard": "feature.dashboard";
|
|
5766
|
+
"feature.calendar": "feature.calendar";
|
|
5723
5767
|
"feature.sales": "feature.sales";
|
|
5724
5768
|
"feature.crm": "feature.crm";
|
|
5725
5769
|
"feature.finance": "feature.finance";
|
|
@@ -5743,6 +5787,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5743
5787
|
"integration.google-sheets": "integration.google-sheets";
|
|
5744
5788
|
"integration.attio": "integration.attio";
|
|
5745
5789
|
"surface.dashboard": "surface.dashboard";
|
|
5790
|
+
"surface.calendar": "surface.calendar";
|
|
5746
5791
|
"surface.overview": "surface.overview";
|
|
5747
5792
|
"surface.command-view": "surface.command-view";
|
|
5748
5793
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5796,6 +5841,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5796
5841
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5797
5842
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5798
5843
|
"nav.dashboard": "nav.dashboard";
|
|
5844
|
+
"nav.calendar": "nav.calendar";
|
|
5799
5845
|
"nav.sales": "nav.sales";
|
|
5800
5846
|
"nav.crm": "nav.crm";
|
|
5801
5847
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5810,6 +5856,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5810
5856
|
"knowledge.strategy": "knowledge.strategy";
|
|
5811
5857
|
"knowledge.reference": "knowledge.reference";
|
|
5812
5858
|
"feature.dashboard": "feature.dashboard";
|
|
5859
|
+
"feature.calendar": "feature.calendar";
|
|
5813
5860
|
"feature.sales": "feature.sales";
|
|
5814
5861
|
"feature.crm": "feature.crm";
|
|
5815
5862
|
"feature.finance": "feature.finance";
|
|
@@ -5833,6 +5880,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5833
5880
|
"integration.google-sheets": "integration.google-sheets";
|
|
5834
5881
|
"integration.attio": "integration.attio";
|
|
5835
5882
|
"surface.dashboard": "surface.dashboard";
|
|
5883
|
+
"surface.calendar": "surface.calendar";
|
|
5836
5884
|
"surface.overview": "surface.overview";
|
|
5837
5885
|
"surface.command-view": "surface.command-view";
|
|
5838
5886
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5866,6 +5914,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5866
5914
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5867
5915
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5868
5916
|
"nav.dashboard": "nav.dashboard";
|
|
5917
|
+
"nav.calendar": "nav.calendar";
|
|
5869
5918
|
"nav.sales": "nav.sales";
|
|
5870
5919
|
"nav.crm": "nav.crm";
|
|
5871
5920
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5880,6 +5929,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5880
5929
|
"knowledge.strategy": "knowledge.strategy";
|
|
5881
5930
|
"knowledge.reference": "knowledge.reference";
|
|
5882
5931
|
"feature.dashboard": "feature.dashboard";
|
|
5932
|
+
"feature.calendar": "feature.calendar";
|
|
5883
5933
|
"feature.sales": "feature.sales";
|
|
5884
5934
|
"feature.crm": "feature.crm";
|
|
5885
5935
|
"feature.finance": "feature.finance";
|
|
@@ -5903,6 +5953,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5903
5953
|
"integration.google-sheets": "integration.google-sheets";
|
|
5904
5954
|
"integration.attio": "integration.attio";
|
|
5905
5955
|
"surface.dashboard": "surface.dashboard";
|
|
5956
|
+
"surface.calendar": "surface.calendar";
|
|
5906
5957
|
"surface.overview": "surface.overview";
|
|
5907
5958
|
"surface.command-view": "surface.command-view";
|
|
5908
5959
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -5936,6 +5987,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5936
5987
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5937
5988
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5938
5989
|
"nav.dashboard": "nav.dashboard";
|
|
5990
|
+
"nav.calendar": "nav.calendar";
|
|
5939
5991
|
"nav.sales": "nav.sales";
|
|
5940
5992
|
"nav.crm": "nav.crm";
|
|
5941
5993
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -5950,6 +6002,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5950
6002
|
"knowledge.strategy": "knowledge.strategy";
|
|
5951
6003
|
"knowledge.reference": "knowledge.reference";
|
|
5952
6004
|
"feature.dashboard": "feature.dashboard";
|
|
6005
|
+
"feature.calendar": "feature.calendar";
|
|
5953
6006
|
"feature.sales": "feature.sales";
|
|
5954
6007
|
"feature.crm": "feature.crm";
|
|
5955
6008
|
"feature.finance": "feature.finance";
|
|
@@ -5973,6 +6026,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5973
6026
|
"integration.google-sheets": "integration.google-sheets";
|
|
5974
6027
|
"integration.attio": "integration.attio";
|
|
5975
6028
|
"surface.dashboard": "surface.dashboard";
|
|
6029
|
+
"surface.calendar": "surface.calendar";
|
|
5976
6030
|
"surface.overview": "surface.overview";
|
|
5977
6031
|
"surface.command-view": "surface.command-view";
|
|
5978
6032
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -6143,6 +6197,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6143
6197
|
summary: z$1.ZodString;
|
|
6144
6198
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
6145
6199
|
"nav.dashboard": "nav.dashboard";
|
|
6200
|
+
"nav.calendar": "nav.calendar";
|
|
6146
6201
|
"nav.sales": "nav.sales";
|
|
6147
6202
|
"nav.crm": "nav.crm";
|
|
6148
6203
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -6157,6 +6212,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6157
6212
|
"knowledge.strategy": "knowledge.strategy";
|
|
6158
6213
|
"knowledge.reference": "knowledge.reference";
|
|
6159
6214
|
"feature.dashboard": "feature.dashboard";
|
|
6215
|
+
"feature.calendar": "feature.calendar";
|
|
6160
6216
|
"feature.sales": "feature.sales";
|
|
6161
6217
|
"feature.crm": "feature.crm";
|
|
6162
6218
|
"feature.finance": "feature.finance";
|
|
@@ -6180,6 +6236,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6180
6236
|
"integration.google-sheets": "integration.google-sheets";
|
|
6181
6237
|
"integration.attio": "integration.attio";
|
|
6182
6238
|
"surface.dashboard": "surface.dashboard";
|
|
6239
|
+
"surface.calendar": "surface.calendar";
|
|
6183
6240
|
"surface.overview": "surface.overview";
|
|
6184
6241
|
"surface.command-view": "surface.command-view";
|
|
6185
6242
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -6208,6 +6265,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6208
6265
|
links: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
6209
6266
|
nodeId: z$1.ZodString;
|
|
6210
6267
|
}, z$1.core.$strip>>>;
|
|
6268
|
+
skills: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
6269
|
+
domain: z$1.ZodOptional<z$1.ZodString>;
|
|
6211
6270
|
ownerIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
6212
6271
|
updatedAt: z$1.ZodString;
|
|
6213
6272
|
}, z$1.core.$strip>>>;
|
|
@@ -7457,8 +7516,6 @@ declare const LIMIT_ACTIVITY_FEED = 50;
|
|
|
7457
7516
|
declare const DEBOUNCE_FILTER = 150;
|
|
7458
7517
|
/** Slider input debounce delay (500ms). */
|
|
7459
7518
|
declare const DEBOUNCE_SLIDER = 500;
|
|
7460
|
-
/** OAuth popup closed-check polling interval (500ms). */
|
|
7461
|
-
declare const OAUTH_POPUP_CHECK_INTERVAL = 500;
|
|
7462
7519
|
/** OAuth flow maximum duration before timeout (5 min). */
|
|
7463
7520
|
declare const OAUTH_FLOW_TIMEOUT = 300000;
|
|
7464
7521
|
|
|
@@ -9856,7 +9913,11 @@ declare function useDeals(filters?: DealFilters): {
|
|
|
9856
9913
|
title: string | null;
|
|
9857
9914
|
headline: string | null;
|
|
9858
9915
|
linkedin_url: string | null;
|
|
9859
|
-
|
|
9916
|
+
processing_state: Record<string, {
|
|
9917
|
+
[x: string]: unknown;
|
|
9918
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
9919
|
+
data?: unknown;
|
|
9920
|
+
}> | null;
|
|
9860
9921
|
enrichment_data: Record<string, unknown> | null;
|
|
9861
9922
|
company: {
|
|
9862
9923
|
id: string;
|
|
@@ -9920,7 +9981,11 @@ declare function useDeals(filters?: DealFilters): {
|
|
|
9920
9981
|
title: string | null;
|
|
9921
9982
|
headline: string | null;
|
|
9922
9983
|
linkedin_url: string | null;
|
|
9923
|
-
|
|
9984
|
+
processing_state: Record<string, {
|
|
9985
|
+
[x: string]: unknown;
|
|
9986
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
9987
|
+
data?: unknown;
|
|
9988
|
+
}> | null;
|
|
9924
9989
|
enrichment_data: Record<string, unknown> | null;
|
|
9925
9990
|
company: {
|
|
9926
9991
|
id: string;
|
|
@@ -10497,6 +10562,7 @@ declare const companyKeys: {
|
|
|
10497
10562
|
website?: string | undefined;
|
|
10498
10563
|
segment?: string | undefined;
|
|
10499
10564
|
category?: string | undefined;
|
|
10565
|
+
pipelineStatus?: unknown;
|
|
10500
10566
|
batchId?: string | undefined;
|
|
10501
10567
|
status?: "active" | "invalid" | undefined;
|
|
10502
10568
|
includeAll?: boolean | undefined;
|
|
@@ -10519,7 +10585,11 @@ declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_
|
|
|
10519
10585
|
category: string | null;
|
|
10520
10586
|
categoryPain: string | null;
|
|
10521
10587
|
segment: string | null;
|
|
10522
|
-
|
|
10588
|
+
processingState: Record<string, {
|
|
10589
|
+
[x: string]: unknown;
|
|
10590
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10591
|
+
data?: unknown;
|
|
10592
|
+
}> | null;
|
|
10523
10593
|
enrichmentData: Record<string, unknown> | null;
|
|
10524
10594
|
source: string | null;
|
|
10525
10595
|
batchId: string | null;
|
|
@@ -10528,6 +10598,7 @@ declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_
|
|
|
10528
10598
|
verticalResearch: string | null;
|
|
10529
10599
|
createdAt: string;
|
|
10530
10600
|
updatedAt: string;
|
|
10601
|
+
pipelineStatus?: unknown;
|
|
10531
10602
|
}[];
|
|
10532
10603
|
total: number;
|
|
10533
10604
|
limit: number;
|
|
@@ -10548,7 +10619,11 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
10548
10619
|
category: string | null;
|
|
10549
10620
|
categoryPain: string | null;
|
|
10550
10621
|
segment: string | null;
|
|
10551
|
-
|
|
10622
|
+
processingState: Record<string, {
|
|
10623
|
+
[x: string]: unknown;
|
|
10624
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10625
|
+
data?: unknown;
|
|
10626
|
+
}> | null;
|
|
10552
10627
|
enrichmentData: Record<string, unknown> | null;
|
|
10553
10628
|
source: string | null;
|
|
10554
10629
|
batchId: string | null;
|
|
@@ -10557,6 +10632,7 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
10557
10632
|
verticalResearch: string | null;
|
|
10558
10633
|
createdAt: string;
|
|
10559
10634
|
updatedAt: string;
|
|
10635
|
+
pipelineStatus?: unknown;
|
|
10560
10636
|
} | null, Error>;
|
|
10561
10637
|
declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
10562
10638
|
id: string;
|
|
@@ -10572,7 +10648,11 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
10572
10648
|
category: string | null;
|
|
10573
10649
|
categoryPain: string | null;
|
|
10574
10650
|
segment: string | null;
|
|
10575
|
-
|
|
10651
|
+
processingState: Record<string, {
|
|
10652
|
+
[x: string]: unknown;
|
|
10653
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10654
|
+
data?: unknown;
|
|
10655
|
+
}> | null;
|
|
10576
10656
|
enrichmentData: Record<string, unknown> | null;
|
|
10577
10657
|
source: string | null;
|
|
10578
10658
|
batchId: string | null;
|
|
@@ -10581,6 +10661,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
10581
10661
|
verticalResearch: string | null;
|
|
10582
10662
|
createdAt: string;
|
|
10583
10663
|
updatedAt: string;
|
|
10664
|
+
pipelineStatus?: unknown;
|
|
10584
10665
|
}, Error, {
|
|
10585
10666
|
name: string;
|
|
10586
10667
|
domain?: string | undefined;
|
|
@@ -10593,6 +10674,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
10593
10674
|
category?: string | undefined;
|
|
10594
10675
|
source?: string | undefined;
|
|
10595
10676
|
batchId?: string | undefined;
|
|
10677
|
+
pipelineStatus?: unknown;
|
|
10596
10678
|
verticalResearch?: string | undefined;
|
|
10597
10679
|
}, unknown>;
|
|
10598
10680
|
declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseMutationResult<{
|
|
@@ -10609,7 +10691,11 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
10609
10691
|
category: string | null;
|
|
10610
10692
|
categoryPain: string | null;
|
|
10611
10693
|
segment: string | null;
|
|
10612
|
-
|
|
10694
|
+
processingState: Record<string, {
|
|
10695
|
+
[x: string]: unknown;
|
|
10696
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10697
|
+
data?: unknown;
|
|
10698
|
+
}> | null;
|
|
10613
10699
|
enrichmentData: Record<string, unknown> | null;
|
|
10614
10700
|
source: string | null;
|
|
10615
10701
|
batchId: string | null;
|
|
@@ -10618,6 +10704,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
10618
10704
|
verticalResearch: string | null;
|
|
10619
10705
|
createdAt: string;
|
|
10620
10706
|
updatedAt: string;
|
|
10707
|
+
pipelineStatus?: unknown;
|
|
10621
10708
|
}, Error, {
|
|
10622
10709
|
name?: string | undefined;
|
|
10623
10710
|
domain?: string | undefined;
|
|
@@ -10629,7 +10716,12 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
10629
10716
|
locationState?: string | undefined;
|
|
10630
10717
|
category?: string | undefined;
|
|
10631
10718
|
segment?: string | undefined;
|
|
10632
|
-
|
|
10719
|
+
processingState?: Record<string, {
|
|
10720
|
+
[x: string]: unknown;
|
|
10721
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10722
|
+
data?: unknown;
|
|
10723
|
+
}> | undefined;
|
|
10724
|
+
pipelineStatus?: unknown;
|
|
10633
10725
|
enrichmentData?: Record<string, unknown> | undefined;
|
|
10634
10726
|
source?: string | undefined;
|
|
10635
10727
|
batchId?: string | undefined;
|
|
@@ -10668,13 +10760,18 @@ declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_re
|
|
|
10668
10760
|
openingLine: string | null;
|
|
10669
10761
|
source: string | null;
|
|
10670
10762
|
sourceId: string | null;
|
|
10671
|
-
|
|
10763
|
+
processingState: Record<string, {
|
|
10764
|
+
[x: string]: unknown;
|
|
10765
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10766
|
+
data?: unknown;
|
|
10767
|
+
}> | null;
|
|
10672
10768
|
enrichmentData: Record<string, unknown> | null;
|
|
10673
10769
|
attioPersonId: string | null;
|
|
10674
10770
|
batchId: string | null;
|
|
10675
10771
|
status: "active" | "invalid";
|
|
10676
10772
|
createdAt: string;
|
|
10677
10773
|
updatedAt: string;
|
|
10774
|
+
pipelineStatus?: unknown;
|
|
10678
10775
|
company?: {
|
|
10679
10776
|
id: string;
|
|
10680
10777
|
name: string;
|
|
@@ -10705,13 +10802,18 @@ declare function useContact(contactId: string): _tanstack_react_query.UseQueryRe
|
|
|
10705
10802
|
openingLine: string | null;
|
|
10706
10803
|
source: string | null;
|
|
10707
10804
|
sourceId: string | null;
|
|
10708
|
-
|
|
10805
|
+
processingState: Record<string, {
|
|
10806
|
+
[x: string]: unknown;
|
|
10807
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10808
|
+
data?: unknown;
|
|
10809
|
+
}> | null;
|
|
10709
10810
|
enrichmentData: Record<string, unknown> | null;
|
|
10710
10811
|
attioPersonId: string | null;
|
|
10711
10812
|
batchId: string | null;
|
|
10712
10813
|
status: "active" | "invalid";
|
|
10713
10814
|
createdAt: string;
|
|
10714
10815
|
updatedAt: string;
|
|
10816
|
+
pipelineStatus?: unknown;
|
|
10715
10817
|
company?: {
|
|
10716
10818
|
id: string;
|
|
10717
10819
|
name: string;
|
|
@@ -10738,13 +10840,18 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
10738
10840
|
openingLine: string | null;
|
|
10739
10841
|
source: string | null;
|
|
10740
10842
|
sourceId: string | null;
|
|
10741
|
-
|
|
10843
|
+
processingState: Record<string, {
|
|
10844
|
+
[x: string]: unknown;
|
|
10845
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10846
|
+
data?: unknown;
|
|
10847
|
+
}> | null;
|
|
10742
10848
|
enrichmentData: Record<string, unknown> | null;
|
|
10743
10849
|
attioPersonId: string | null;
|
|
10744
10850
|
batchId: string | null;
|
|
10745
10851
|
status: "active" | "invalid";
|
|
10746
10852
|
createdAt: string;
|
|
10747
10853
|
updatedAt: string;
|
|
10854
|
+
pipelineStatus?: unknown;
|
|
10748
10855
|
company?: {
|
|
10749
10856
|
id: string;
|
|
10750
10857
|
name: string;
|
|
@@ -10765,6 +10872,7 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
10765
10872
|
source?: string | undefined;
|
|
10766
10873
|
sourceId?: string | undefined;
|
|
10767
10874
|
batchId?: string | undefined;
|
|
10875
|
+
pipelineStatus?: unknown;
|
|
10768
10876
|
}, unknown>;
|
|
10769
10877
|
declare function useUpdateContact(contactId: string): _tanstack_react_query.UseMutationResult<{
|
|
10770
10878
|
id: string;
|
|
@@ -10781,13 +10889,18 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
10781
10889
|
openingLine: string | null;
|
|
10782
10890
|
source: string | null;
|
|
10783
10891
|
sourceId: string | null;
|
|
10784
|
-
|
|
10892
|
+
processingState: Record<string, {
|
|
10893
|
+
[x: string]: unknown;
|
|
10894
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10895
|
+
data?: unknown;
|
|
10896
|
+
}> | null;
|
|
10785
10897
|
enrichmentData: Record<string, unknown> | null;
|
|
10786
10898
|
attioPersonId: string | null;
|
|
10787
10899
|
batchId: string | null;
|
|
10788
10900
|
status: "active" | "invalid";
|
|
10789
10901
|
createdAt: string;
|
|
10790
10902
|
updatedAt: string;
|
|
10903
|
+
pipelineStatus?: unknown;
|
|
10791
10904
|
company?: {
|
|
10792
10905
|
id: string;
|
|
10793
10906
|
name: string;
|
|
@@ -10808,7 +10921,12 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
10808
10921
|
headline?: string | undefined;
|
|
10809
10922
|
filterReason?: string | undefined;
|
|
10810
10923
|
openingLine?: string | undefined;
|
|
10811
|
-
|
|
10924
|
+
processingState?: Record<string, {
|
|
10925
|
+
[x: string]: unknown;
|
|
10926
|
+
status: "error" | "success" | "no_result" | "skipped";
|
|
10927
|
+
data?: unknown;
|
|
10928
|
+
}> | undefined;
|
|
10929
|
+
pipelineStatus?: unknown;
|
|
10812
10930
|
enrichmentData?: Record<string, unknown> | undefined;
|
|
10813
10931
|
status?: "active" | "invalid" | undefined;
|
|
10814
10932
|
}, unknown>;
|
|
@@ -12342,5 +12460,5 @@ declare function InitializationProvider({ children }: {
|
|
|
12342
12460
|
children: ReactNode;
|
|
12343
12461
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
12344
12462
|
|
|
12345
|
-
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, CrmActionsProvider, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, ListActionsProvider, NotificationProvider, OAUTH_FLOW_TIMEOUT,
|
|
12463
|
+
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, CrmActionsProvider, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, ListActionsProvider, NotificationProvider, OAUTH_FLOW_TIMEOUT, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceStatusColors, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calculateBarPosition, calculateGraphHeight, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, debounce, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, requestsKeys, restoreConsole, scheduleKeys, sessionsKeys, setupBrowserMocks, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useHasPermission, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrgRoles, useOrganization, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
|
|
12346
12464
|
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateOrgRoleInput, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus, FailingResource, FeatureAccessResult, FeatureIconComponent, FeatureModule, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LeadGenStageKey, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, RemoveCompaniesFromListResult, RequestRow, RequestsListFilters, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellFeature, ResolvedShellModel, ResolvedShellRouteMatch, ResourceFilterFacet, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StaleDealSummaryItem, StatefulItem, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|