@elevasis/ui 2.25.5 → 2.25.6
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.css +3 -24
- package/dist/app/index.d.ts +63 -56
- package/dist/app/index.js +3 -2
- package/dist/chunk-5RLYII6P.js +314 -0
- package/dist/chunk-6U7AIIHF.js +880 -0
- package/dist/{chunk-NHHCUECV.js → chunk-7F3IQMLI.js} +1 -1
- package/dist/{chunk-N2AP4I5N.js → chunk-ARJPZ66V.js} +39 -757
- package/dist/{chunk-IS53MXE4.js → chunk-BDKM56TP.js} +1 -1
- package/dist/{chunk-KINQW4JT.js → chunk-C7IBFI5B.js} +1 -1
- package/dist/{chunk-5BJXMZN4.js → chunk-CPAJXBTL.js} +9 -5
- package/dist/chunk-HAEJ4M54.js +94 -0
- package/dist/{chunk-QNCVK3ZF.js → chunk-JXSBOG2R.js} +1 -1
- package/dist/{chunk-3KY2GNPE.js → chunk-KNISO652.js} +1 -1
- package/dist/{chunk-VMAWXEVG.js → chunk-L7D6KNHV.js} +457 -290
- package/dist/{chunk-JMI7L7Y7.js → chunk-LPM7O6XM.js} +2 -233
- package/dist/{chunk-FVKLHLF4.js → chunk-QARSVM7Q.js} +1 -1
- package/dist/{chunk-F7JDHS2I.js → chunk-SBQ4MYQV.js} +3 -2
- package/dist/{chunk-MU4VPAMR.js → chunk-YRKQNPK2.js} +1 -1
- package/dist/components/index.css +3 -24
- package/dist/components/index.d.ts +11 -2
- package/dist/components/index.js +18 -16
- package/dist/components/navigation/index.css +3 -24
- package/dist/features/auth/index.css +3 -24
- package/dist/features/crm/index.css +3 -24
- package/dist/features/crm/index.js +5 -4
- package/dist/features/dashboard/index.css +3 -24
- package/dist/features/dashboard/index.js +5 -4
- package/dist/features/delivery/index.css +3 -24
- package/dist/features/delivery/index.js +5 -4
- package/dist/features/knowledge/index.js +397 -1
- package/dist/features/lead-gen/index.css +3 -24
- package/dist/features/lead-gen/index.d.ts +158 -151
- package/dist/features/lead-gen/index.js +6 -5
- package/dist/features/monitoring/index.css +3 -24
- package/dist/features/monitoring/index.js +6 -5
- package/dist/features/monitoring/requests/index.css +3 -24
- package/dist/features/monitoring/requests/index.js +4 -3
- package/dist/features/operations/index.css +3 -24
- package/dist/features/operations/index.js +9 -7
- package/dist/features/settings/index.css +3 -24
- package/dist/features/settings/index.js +5 -4
- package/dist/hooks/delivery/index.css +3 -24
- package/dist/hooks/index.css +3 -24
- package/dist/hooks/index.d.ts +14 -3
- package/dist/hooks/index.js +4 -3
- package/dist/hooks/published.css +3 -24
- package/dist/hooks/published.d.ts +14 -3
- package/dist/hooks/published.js +4 -3
- package/dist/index.css +3 -24
- package/dist/index.d.ts +611 -593
- package/dist/index.js +4 -3
- package/dist/knowledge/index.d.ts +14 -4
- package/dist/knowledge/index.js +20 -119
- package/dist/organization/index.css +3 -24
- package/dist/provider/index.css +3 -24
- package/dist/provider/index.d.ts +346 -339
- package/dist/provider/index.js +3 -2
- package/dist/provider/published.css +3 -24
- package/dist/provider/published.d.ts +346 -339
- package/dist/provider/published.js +2 -1
- package/package.json +33 -33
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,8 @@ import { ReactNode, ComponentType, MouseEvent, AnchorHTMLAttributes, ElementType
|
|
|
3
3
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { QueryClient } from '@tanstack/react-query';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
-
import
|
|
6
|
+
import * as z from 'zod';
|
|
7
|
+
import { z as z$1 } from 'zod';
|
|
7
8
|
import { CSSVariablesResolver, MantineThemeOverride } from '@mantine/core';
|
|
8
9
|
import { Node, Edge, NodeMouseHandler } from '@xyflow/react';
|
|
9
10
|
import { IconBrain } from '@tabler/icons-react';
|
|
@@ -3744,104 +3745,104 @@ interface ListTelemetry {
|
|
|
3744
3745
|
activeWorkflows?: string[];
|
|
3745
3746
|
}
|
|
3746
3747
|
|
|
3747
|
-
declare const TransitionItemRequestSchema: z.ZodObject<{
|
|
3748
|
-
pipelineKey: z.ZodString;
|
|
3749
|
-
stageKey: z.ZodString;
|
|
3750
|
-
stateKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3751
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
3752
|
-
expectedUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
3753
|
-
}, z.core.$strict>;
|
|
3748
|
+
declare const TransitionItemRequestSchema: z$1.ZodObject<{
|
|
3749
|
+
pipelineKey: z$1.ZodString;
|
|
3750
|
+
stageKey: z$1.ZodString;
|
|
3751
|
+
stateKey: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3752
|
+
reason: z$1.ZodOptional<z$1.ZodString>;
|
|
3753
|
+
expectedUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3754
|
+
}, z$1.core.$strict>;
|
|
3754
3755
|
/**
|
|
3755
3756
|
* Deal detail shape — currently the same as a list item (full joined record).
|
|
3756
3757
|
* Additive fields keep existing DealListItem callers compatible.
|
|
3757
3758
|
*/
|
|
3758
|
-
declare const DealDetailResponseSchema: z.ZodObject<{
|
|
3759
|
-
id: z.ZodString;
|
|
3760
|
-
organization_id: z.ZodString;
|
|
3761
|
-
contact_id: z.ZodNullable<z.ZodString>;
|
|
3762
|
-
contact_email: z.ZodString;
|
|
3763
|
-
pipeline_key: z.ZodString;
|
|
3764
|
-
stage_key: z.ZodNullable<z.ZodString>;
|
|
3765
|
-
state_key: z.ZodNullable<z.ZodString>;
|
|
3766
|
-
activity_log: z.ZodUnknown;
|
|
3767
|
-
discovery_data: z.ZodNullable<z.ZodUnknown>;
|
|
3768
|
-
discovery_submitted_at: z.ZodNullable<z.ZodString>;
|
|
3769
|
-
discovery_submitted_by: z.ZodNullable<z.ZodString>;
|
|
3770
|
-
proposal_data: z.ZodNullable<z.ZodUnknown>;
|
|
3771
|
-
proposal_sent_at: z.ZodNullable<z.ZodString>;
|
|
3772
|
-
proposal_pdf_url: z.ZodNullable<z.ZodString>;
|
|
3773
|
-
signature_envelope_id: z.ZodNullable<z.ZodString>;
|
|
3774
|
-
source_list_id: z.ZodNullable<z.ZodString>;
|
|
3775
|
-
source_type: z.ZodNullable<z.ZodString>;
|
|
3776
|
-
initial_fee: z.ZodNullable<z.ZodNumber>;
|
|
3777
|
-
monthly_fee: z.ZodNullable<z.ZodNumber>;
|
|
3778
|
-
closed_lost_at: z.ZodNullable<z.ZodString>;
|
|
3779
|
-
closed_lost_reason: z.ZodNullable<z.ZodString>;
|
|
3780
|
-
created_at: z.ZodString;
|
|
3781
|
-
updated_at: z.ZodString;
|
|
3782
|
-
priority: z.ZodObject<{
|
|
3783
|
-
bucketKey: z.ZodEnum<{
|
|
3759
|
+
declare const DealDetailResponseSchema: z$1.ZodObject<{
|
|
3760
|
+
id: z$1.ZodString;
|
|
3761
|
+
organization_id: z$1.ZodString;
|
|
3762
|
+
contact_id: z$1.ZodNullable<z$1.ZodString>;
|
|
3763
|
+
contact_email: z$1.ZodString;
|
|
3764
|
+
pipeline_key: z$1.ZodString;
|
|
3765
|
+
stage_key: z$1.ZodNullable<z$1.ZodString>;
|
|
3766
|
+
state_key: z$1.ZodNullable<z$1.ZodString>;
|
|
3767
|
+
activity_log: z$1.ZodUnknown;
|
|
3768
|
+
discovery_data: z$1.ZodNullable<z$1.ZodUnknown>;
|
|
3769
|
+
discovery_submitted_at: z$1.ZodNullable<z$1.ZodString>;
|
|
3770
|
+
discovery_submitted_by: z$1.ZodNullable<z$1.ZodString>;
|
|
3771
|
+
proposal_data: z$1.ZodNullable<z$1.ZodUnknown>;
|
|
3772
|
+
proposal_sent_at: z$1.ZodNullable<z$1.ZodString>;
|
|
3773
|
+
proposal_pdf_url: z$1.ZodNullable<z$1.ZodString>;
|
|
3774
|
+
signature_envelope_id: z$1.ZodNullable<z$1.ZodString>;
|
|
3775
|
+
source_list_id: z$1.ZodNullable<z$1.ZodString>;
|
|
3776
|
+
source_type: z$1.ZodNullable<z$1.ZodString>;
|
|
3777
|
+
initial_fee: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3778
|
+
monthly_fee: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3779
|
+
closed_lost_at: z$1.ZodNullable<z$1.ZodString>;
|
|
3780
|
+
closed_lost_reason: z$1.ZodNullable<z$1.ZodString>;
|
|
3781
|
+
created_at: z$1.ZodString;
|
|
3782
|
+
updated_at: z$1.ZodString;
|
|
3783
|
+
priority: z$1.ZodObject<{
|
|
3784
|
+
bucketKey: z$1.ZodEnum<{
|
|
3784
3785
|
needs_response: "needs_response";
|
|
3785
3786
|
follow_up_due: "follow_up_due";
|
|
3786
3787
|
waiting: "waiting";
|
|
3787
3788
|
stale: "stale";
|
|
3788
3789
|
closed_low: "closed_low";
|
|
3789
3790
|
}>;
|
|
3790
|
-
rank: z.ZodNumber;
|
|
3791
|
-
label: z.ZodString;
|
|
3792
|
-
color: z.ZodString;
|
|
3793
|
-
reason: z.ZodString;
|
|
3794
|
-
latestActivityAt: z.ZodNullable<z.ZodString>;
|
|
3795
|
-
nextActionAt: z.ZodNullable<z.ZodString>;
|
|
3796
|
-
}, z.core.$strip>;
|
|
3797
|
-
ownership: z.ZodNullable<z.ZodEnum<{
|
|
3791
|
+
rank: z$1.ZodNumber;
|
|
3792
|
+
label: z$1.ZodString;
|
|
3793
|
+
color: z$1.ZodString;
|
|
3794
|
+
reason: z$1.ZodString;
|
|
3795
|
+
latestActivityAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3796
|
+
nextActionAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3797
|
+
}, z$1.core.$strip>;
|
|
3798
|
+
ownership: z$1.ZodNullable<z$1.ZodEnum<{
|
|
3798
3799
|
us: "us";
|
|
3799
3800
|
them: "them";
|
|
3800
3801
|
}>>;
|
|
3801
|
-
nextAction: z.ZodNullable<z.ZodString>;
|
|
3802
|
-
contact: z.ZodNullable<z.ZodObject<{
|
|
3803
|
-
id: z.ZodString;
|
|
3804
|
-
first_name: z.ZodNullable<z.ZodString>;
|
|
3805
|
-
last_name: z.ZodNullable<z.ZodString>;
|
|
3806
|
-
email: z.ZodString;
|
|
3807
|
-
title: z.ZodNullable<z.ZodString>;
|
|
3808
|
-
headline: z.ZodNullable<z.ZodString>;
|
|
3809
|
-
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3810
|
-
pipeline_status: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3811
|
-
enrichment_data: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3812
|
-
company: z.ZodNullable<z.ZodObject<{
|
|
3813
|
-
id: z.ZodString;
|
|
3814
|
-
name: z.ZodString;
|
|
3815
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
3816
|
-
website: z.ZodNullable<z.ZodString>;
|
|
3817
|
-
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
3818
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
3819
|
-
category: z.ZodNullable<z.ZodString>;
|
|
3820
|
-
num_employees: z.ZodNullable<z.ZodNumber>;
|
|
3821
|
-
}, z.core.$strip>>;
|
|
3822
|
-
}, z.core.$strip>>;
|
|
3823
|
-
conversation: z.ZodObject<{
|
|
3824
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
3825
|
-
id: z.ZodString;
|
|
3826
|
-
direction: z.ZodEnum<{
|
|
3802
|
+
nextAction: z$1.ZodNullable<z$1.ZodString>;
|
|
3803
|
+
contact: z$1.ZodNullable<z$1.ZodObject<{
|
|
3804
|
+
id: z$1.ZodString;
|
|
3805
|
+
first_name: z$1.ZodNullable<z$1.ZodString>;
|
|
3806
|
+
last_name: z$1.ZodNullable<z$1.ZodString>;
|
|
3807
|
+
email: z$1.ZodString;
|
|
3808
|
+
title: z$1.ZodNullable<z$1.ZodString>;
|
|
3809
|
+
headline: z$1.ZodNullable<z$1.ZodString>;
|
|
3810
|
+
linkedin_url: z$1.ZodNullable<z$1.ZodString>;
|
|
3811
|
+
pipeline_status: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3812
|
+
enrichment_data: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3813
|
+
company: z$1.ZodNullable<z$1.ZodObject<{
|
|
3814
|
+
id: z$1.ZodString;
|
|
3815
|
+
name: z$1.ZodString;
|
|
3816
|
+
domain: z$1.ZodNullable<z$1.ZodString>;
|
|
3817
|
+
website: z$1.ZodNullable<z$1.ZodString>;
|
|
3818
|
+
linkedin_url: z$1.ZodNullable<z$1.ZodString>;
|
|
3819
|
+
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
3820
|
+
category: z$1.ZodNullable<z$1.ZodString>;
|
|
3821
|
+
num_employees: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3822
|
+
}, z$1.core.$strip>>;
|
|
3823
|
+
}, z$1.core.$strip>>;
|
|
3824
|
+
conversation: z$1.ZodObject<{
|
|
3825
|
+
messages: z$1.ZodArray<z$1.ZodObject<{
|
|
3826
|
+
id: z$1.ZodString;
|
|
3827
|
+
direction: z$1.ZodEnum<{
|
|
3827
3828
|
inbound: "inbound";
|
|
3828
3829
|
outbound: "outbound";
|
|
3829
3830
|
}>;
|
|
3830
|
-
fromEmail: z.ZodString;
|
|
3831
|
-
toEmail: z.ZodString;
|
|
3832
|
-
subject: z.ZodNullable<z.ZodString>;
|
|
3833
|
-
body: z.ZodString;
|
|
3834
|
-
sentAt: z.ZodNullable<z.ZodString>;
|
|
3835
|
-
}, z.core.$strip>>;
|
|
3836
|
-
}, z.core.$strip>;
|
|
3837
|
-
}, z.core.$strip>;
|
|
3838
|
-
type TransitionItemRequest = z.infer<typeof TransitionItemRequestSchema>;
|
|
3839
|
-
type DealDetailResponse = z.infer<typeof DealDetailResponseSchema>;
|
|
3831
|
+
fromEmail: z$1.ZodString;
|
|
3832
|
+
toEmail: z$1.ZodString;
|
|
3833
|
+
subject: z$1.ZodNullable<z$1.ZodString>;
|
|
3834
|
+
body: z$1.ZodString;
|
|
3835
|
+
sentAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3836
|
+
}, z$1.core.$strip>>;
|
|
3837
|
+
}, z$1.core.$strip>;
|
|
3838
|
+
}, z$1.core.$strip>;
|
|
3839
|
+
type TransitionItemRequest = z$1.infer<typeof TransitionItemRequestSchema>;
|
|
3840
|
+
type DealDetailResponse = z$1.infer<typeof DealDetailResponseSchema>;
|
|
3840
3841
|
/**
|
|
3841
3842
|
* Lifecycle status enum for `acq_lists.status` (mirrors DB CHECK constraint
|
|
3842
3843
|
* from migration 20260428000003_lead_gen_acq_lists_status_and_config.sql).
|
|
3843
3844
|
*/
|
|
3844
|
-
declare const ListStatusSchema: z.ZodEnum<{
|
|
3845
|
+
declare const ListStatusSchema: z$1.ZodEnum<{
|
|
3845
3846
|
closing: "closing";
|
|
3846
3847
|
draft: "draft";
|
|
3847
3848
|
enriching: "enriching";
|
|
@@ -3852,185 +3853,186 @@ declare const ListStatusSchema: z.ZodEnum<{
|
|
|
3852
3853
|
* Single list as returned by /api/acquisition/lists/:id etc.
|
|
3853
3854
|
* Camel-cased domain shape matching AcqList in types.ts.
|
|
3854
3855
|
*/
|
|
3855
|
-
declare const AcqListResponseSchema: z.ZodObject<{
|
|
3856
|
-
id: z.ZodString;
|
|
3857
|
-
organizationId: z.ZodString;
|
|
3858
|
-
name: z.ZodString;
|
|
3859
|
-
description: z.ZodNullable<z.ZodString>;
|
|
3860
|
-
batchIds: z.ZodArray<z.ZodString>;
|
|
3861
|
-
instantlyCampaignId: z.ZodNullable<z.ZodString>;
|
|
3862
|
-
status: z.ZodEnum<{
|
|
3856
|
+
declare const AcqListResponseSchema: z$1.ZodObject<{
|
|
3857
|
+
id: z$1.ZodString;
|
|
3858
|
+
organizationId: z$1.ZodString;
|
|
3859
|
+
name: z$1.ZodString;
|
|
3860
|
+
description: z$1.ZodNullable<z$1.ZodString>;
|
|
3861
|
+
batchIds: z$1.ZodArray<z$1.ZodString>;
|
|
3862
|
+
instantlyCampaignId: z$1.ZodNullable<z$1.ZodString>;
|
|
3863
|
+
status: z$1.ZodEnum<{
|
|
3863
3864
|
closing: "closing";
|
|
3864
3865
|
draft: "draft";
|
|
3865
3866
|
enriching: "enriching";
|
|
3866
3867
|
launched: "launched";
|
|
3867
3868
|
archived: "archived";
|
|
3868
3869
|
}>;
|
|
3869
|
-
metadata: z.ZodObject<{
|
|
3870
|
-
buildPlanSnapshot: z.ZodOptional<z.ZodObject<{
|
|
3871
|
-
templateId: z.ZodString;
|
|
3872
|
-
templateLabel: z.ZodString;
|
|
3873
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
3874
|
-
id: z.ZodString;
|
|
3875
|
-
label: z.ZodString;
|
|
3876
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3877
|
-
primaryEntity: z.ZodEnum<{
|
|
3870
|
+
metadata: z$1.ZodObject<{
|
|
3871
|
+
buildPlanSnapshot: z$1.ZodOptional<z$1.ZodObject<{
|
|
3872
|
+
templateId: z$1.ZodString;
|
|
3873
|
+
templateLabel: z$1.ZodString;
|
|
3874
|
+
steps: z$1.ZodArray<z$1.ZodObject<{
|
|
3875
|
+
id: z$1.ZodString;
|
|
3876
|
+
label: z$1.ZodString;
|
|
3877
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3878
|
+
primaryEntity: z$1.ZodEnum<{
|
|
3878
3879
|
company: "company";
|
|
3879
3880
|
contact: "contact";
|
|
3880
3881
|
}>;
|
|
3881
|
-
outputs: z.ZodArray<z.ZodEnum<{
|
|
3882
|
+
outputs: z$1.ZodArray<z$1.ZodEnum<{
|
|
3882
3883
|
company: "company";
|
|
3883
3884
|
contact: "contact";
|
|
3884
3885
|
export: "export";
|
|
3885
3886
|
}>>;
|
|
3886
|
-
stageKey: z.ZodString;
|
|
3887
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3888
|
-
dependencyMode: z.ZodLiteral<"per-record-eligibility">;
|
|
3889
|
-
capabilityKey: z.ZodString;
|
|
3890
|
-
defaultBatchSize: z.ZodNumber;
|
|
3891
|
-
maxBatchSize: z.ZodNumber;
|
|
3892
|
-
}, z.core.$strip>>;
|
|
3893
|
-
}, z.core.$strip>>;
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
}, z.core.$strip>;
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3887
|
+
stageKey: z$1.ZodString;
|
|
3888
|
+
dependsOn: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3889
|
+
dependencyMode: z$1.ZodLiteral<"per-record-eligibility">;
|
|
3890
|
+
capabilityKey: z$1.ZodString;
|
|
3891
|
+
defaultBatchSize: z$1.ZodNumber;
|
|
3892
|
+
maxBatchSize: z$1.ZodNumber;
|
|
3893
|
+
}, z$1.core.$strip>>;
|
|
3894
|
+
}, z$1.core.$strip>>;
|
|
3895
|
+
stepConfig: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3896
|
+
}, z$1.core.$catchall<z$1.ZodUnknown>>;
|
|
3897
|
+
launchedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3898
|
+
completedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
3899
|
+
createdAt: z$1.ZodString;
|
|
3900
|
+
scrapingConfig: z$1.ZodObject<{
|
|
3901
|
+
vertical: z$1.ZodOptional<z$1.ZodString>;
|
|
3902
|
+
geography: z$1.ZodOptional<z$1.ZodString>;
|
|
3903
|
+
size: z$1.ZodOptional<z$1.ZodString>;
|
|
3904
|
+
apifyInput: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3905
|
+
}, z$1.core.$strip>;
|
|
3906
|
+
icp: z$1.ZodObject<{
|
|
3907
|
+
qualificationRubricKey: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3908
|
+
targetDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
3909
|
+
minReviewCount: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3910
|
+
minRating: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3911
|
+
excludeFranchises: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3912
|
+
customRules: z$1.ZodOptional<z$1.ZodString>;
|
|
3913
|
+
}, z$1.core.$strip>;
|
|
3914
|
+
pipelineConfig: z$1.ZodObject<{
|
|
3915
|
+
stages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3916
|
+
key: z$1.ZodString;
|
|
3917
|
+
label: z$1.ZodOptional<z$1.ZodString>;
|
|
3918
|
+
enabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3919
|
+
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3920
|
+
}, z$1.core.$strip>>>;
|
|
3921
|
+
}, z$1.core.$strip>;
|
|
3922
|
+
}, z$1.core.$strip>;
|
|
3923
|
+
declare const ListCompaniesQuerySchema: z$1.ZodObject<{
|
|
3924
|
+
search: z$1.ZodOptional<z$1.ZodString>;
|
|
3925
|
+
listId: z$1.ZodOptional<z$1.ZodString>;
|
|
3926
|
+
domain: z$1.ZodOptional<z$1.ZodString>;
|
|
3927
|
+
website: z$1.ZodOptional<z$1.ZodString>;
|
|
3928
|
+
segment: z$1.ZodOptional<z$1.ZodString>;
|
|
3929
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
3930
|
+
batchId: z$1.ZodOptional<z$1.ZodString>;
|
|
3931
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3930
3932
|
active: "active";
|
|
3931
3933
|
invalid: "invalid";
|
|
3932
3934
|
}>>;
|
|
3933
|
-
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
3934
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
3935
|
-
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
3936
|
-
}, z.core.$strict>;
|
|
3937
|
-
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
3938
|
-
search: z.ZodOptional<z.ZodString>;
|
|
3939
|
-
listId: z.ZodOptional<z.ZodString>;
|
|
3940
|
-
openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
3941
|
-
batchId: z.ZodOptional<z.ZodString>;
|
|
3942
|
-
contactStatus: z.ZodOptional<z.ZodEnum<{
|
|
3935
|
+
includeAll: z$1.ZodOptional<z$1.ZodPipe<z$1.ZodTransform<unknown, unknown>, z$1.ZodBoolean>>;
|
|
3936
|
+
limit: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
3937
|
+
offset: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
3938
|
+
}, z$1.core.$strict>;
|
|
3939
|
+
declare const ListContactsQuerySchema: z$1.ZodObject<{
|
|
3940
|
+
search: z$1.ZodOptional<z$1.ZodString>;
|
|
3941
|
+
listId: z$1.ZodOptional<z$1.ZodString>;
|
|
3942
|
+
openingLineIsNull: z$1.ZodOptional<z$1.ZodPipe<z$1.ZodTransform<unknown, unknown>, z$1.ZodBoolean>>;
|
|
3943
|
+
batchId: z$1.ZodOptional<z$1.ZodString>;
|
|
3944
|
+
contactStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3943
3945
|
active: "active";
|
|
3944
3946
|
invalid: "invalid";
|
|
3945
3947
|
}>>;
|
|
3946
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
3947
|
-
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
3948
|
-
}, z.core.$strict>;
|
|
3949
|
-
declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
3950
|
-
id: z.ZodString;
|
|
3951
|
-
organizationId: z.ZodString;
|
|
3952
|
-
name: z.ZodString;
|
|
3953
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
3954
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
3955
|
-
website: z.ZodNullable<z.ZodString>;
|
|
3956
|
-
numEmployees: z.ZodNullable<z.ZodNumber>;
|
|
3957
|
-
foundedYear: z.ZodNullable<z.ZodNumber>;
|
|
3958
|
-
locationCity: z.ZodNullable<z.ZodString>;
|
|
3959
|
-
locationState: z.ZodNullable<z.ZodString>;
|
|
3960
|
-
category: z.ZodNullable<z.ZodString>;
|
|
3961
|
-
categoryPain: z.ZodNullable<z.ZodString>;
|
|
3962
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
3963
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3964
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3965
|
-
source: z.ZodNullable<z.ZodString>;
|
|
3966
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
3967
|
-
status: z.ZodEnum<{
|
|
3948
|
+
limit: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
3949
|
+
offset: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
3950
|
+
}, z$1.core.$strict>;
|
|
3951
|
+
declare const AcqCompanyResponseSchema: z$1.ZodObject<{
|
|
3952
|
+
id: z$1.ZodString;
|
|
3953
|
+
organizationId: z$1.ZodString;
|
|
3954
|
+
name: z$1.ZodString;
|
|
3955
|
+
domain: z$1.ZodNullable<z$1.ZodString>;
|
|
3956
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
3957
|
+
website: z$1.ZodNullable<z$1.ZodString>;
|
|
3958
|
+
numEmployees: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3959
|
+
foundedYear: z$1.ZodNullable<z$1.ZodNumber>;
|
|
3960
|
+
locationCity: z$1.ZodNullable<z$1.ZodString>;
|
|
3961
|
+
locationState: z$1.ZodNullable<z$1.ZodString>;
|
|
3962
|
+
category: z$1.ZodNullable<z$1.ZodString>;
|
|
3963
|
+
categoryPain: z$1.ZodNullable<z$1.ZodString>;
|
|
3964
|
+
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
3965
|
+
pipelineStatus: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3966
|
+
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3967
|
+
source: z$1.ZodNullable<z$1.ZodString>;
|
|
3968
|
+
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
3969
|
+
status: z$1.ZodEnum<{
|
|
3968
3970
|
active: "active";
|
|
3969
3971
|
invalid: "invalid";
|
|
3970
3972
|
}>;
|
|
3971
|
-
contactCount: z.ZodNumber;
|
|
3972
|
-
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
3973
|
-
createdAt: z.ZodString;
|
|
3974
|
-
updatedAt: z.ZodString;
|
|
3975
|
-
}, z.core.$strip>;
|
|
3976
|
-
declare const AcqContactResponseSchema: z.ZodObject<{
|
|
3977
|
-
id: z.ZodString;
|
|
3978
|
-
organizationId: z.ZodString;
|
|
3979
|
-
companyId: z.ZodNullable<z.ZodString>;
|
|
3980
|
-
email: z.ZodString;
|
|
3981
|
-
emailValid: z.ZodNullable<z.ZodEnum<{
|
|
3973
|
+
contactCount: z$1.ZodNumber;
|
|
3974
|
+
verticalResearch: z$1.ZodNullable<z$1.ZodString>;
|
|
3975
|
+
createdAt: z$1.ZodString;
|
|
3976
|
+
updatedAt: z$1.ZodString;
|
|
3977
|
+
}, z$1.core.$strip>;
|
|
3978
|
+
declare const AcqContactResponseSchema: z$1.ZodObject<{
|
|
3979
|
+
id: z$1.ZodString;
|
|
3980
|
+
organizationId: z$1.ZodString;
|
|
3981
|
+
companyId: z$1.ZodNullable<z$1.ZodString>;
|
|
3982
|
+
email: z$1.ZodString;
|
|
3983
|
+
emailValid: z$1.ZodNullable<z$1.ZodEnum<{
|
|
3982
3984
|
VALID: "VALID";
|
|
3983
3985
|
INVALID: "INVALID";
|
|
3984
3986
|
RISKY: "RISKY";
|
|
3985
3987
|
UNKNOWN: "UNKNOWN";
|
|
3986
3988
|
}>>;
|
|
3987
|
-
firstName: z.ZodNullable<z.ZodString>;
|
|
3988
|
-
lastName: z.ZodNullable<z.ZodString>;
|
|
3989
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
3990
|
-
title: z.ZodNullable<z.ZodString>;
|
|
3991
|
-
headline: z.ZodNullable<z.ZodString>;
|
|
3992
|
-
filterReason: z.ZodNullable<z.ZodString>;
|
|
3993
|
-
openingLine: z.ZodNullable<z.ZodString>;
|
|
3994
|
-
source: z.ZodNullable<z.ZodString>;
|
|
3995
|
-
sourceId: z.ZodNullable<z.ZodString>;
|
|
3996
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3997
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3998
|
-
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
3999
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
4000
|
-
status: z.ZodEnum<{
|
|
3989
|
+
firstName: z$1.ZodNullable<z$1.ZodString>;
|
|
3990
|
+
lastName: z$1.ZodNullable<z$1.ZodString>;
|
|
3991
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
3992
|
+
title: z$1.ZodNullable<z$1.ZodString>;
|
|
3993
|
+
headline: z$1.ZodNullable<z$1.ZodString>;
|
|
3994
|
+
filterReason: z$1.ZodNullable<z$1.ZodString>;
|
|
3995
|
+
openingLine: z$1.ZodNullable<z$1.ZodString>;
|
|
3996
|
+
source: z$1.ZodNullable<z$1.ZodString>;
|
|
3997
|
+
sourceId: z$1.ZodNullable<z$1.ZodString>;
|
|
3998
|
+
pipelineStatus: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3999
|
+
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4000
|
+
attioPersonId: z$1.ZodNullable<z$1.ZodString>;
|
|
4001
|
+
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
4002
|
+
status: z$1.ZodEnum<{
|
|
4001
4003
|
active: "active";
|
|
4002
4004
|
invalid: "invalid";
|
|
4003
4005
|
}>;
|
|
4004
|
-
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4005
|
-
id: z.ZodString;
|
|
4006
|
-
name: z.ZodString;
|
|
4007
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
4008
|
-
website: z.ZodNullable<z.ZodString>;
|
|
4009
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
4010
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
4011
|
-
category: z.ZodNullable<z.ZodString>;
|
|
4012
|
-
status: z.ZodEnum<{
|
|
4006
|
+
company: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
4007
|
+
id: z$1.ZodString;
|
|
4008
|
+
name: z$1.ZodString;
|
|
4009
|
+
domain: z$1.ZodNullable<z$1.ZodString>;
|
|
4010
|
+
website: z$1.ZodNullable<z$1.ZodString>;
|
|
4011
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
4012
|
+
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
4013
|
+
category: z$1.ZodNullable<z$1.ZodString>;
|
|
4014
|
+
status: z$1.ZodEnum<{
|
|
4013
4015
|
active: "active";
|
|
4014
4016
|
invalid: "invalid";
|
|
4015
4017
|
}>;
|
|
4016
|
-
}, z.core.$strip>>>;
|
|
4017
|
-
createdAt: z.ZodString;
|
|
4018
|
-
updatedAt: z.ZodString;
|
|
4019
|
-
}, z.core.$strip>;
|
|
4020
|
-
declare const AcqArtifactOwnerKindSchema: z.ZodEnum<{
|
|
4018
|
+
}, z$1.core.$strip>>>;
|
|
4019
|
+
createdAt: z$1.ZodString;
|
|
4020
|
+
updatedAt: z$1.ZodString;
|
|
4021
|
+
}, z$1.core.$strip>;
|
|
4022
|
+
declare const AcqArtifactOwnerKindSchema: z$1.ZodEnum<{
|
|
4021
4023
|
company: "company";
|
|
4022
4024
|
contact: "contact";
|
|
4023
4025
|
list: "list";
|
|
4024
4026
|
deal: "deal";
|
|
4025
4027
|
list_member: "list_member";
|
|
4026
4028
|
}>;
|
|
4027
|
-
type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
|
|
4028
|
-
type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
|
|
4029
|
-
type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
4030
|
-
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
4031
|
-
type AcqArtifactOwnerKind = z.infer<typeof AcqArtifactOwnerKindSchema>;
|
|
4032
|
-
type ListStatus = z.infer<typeof ListStatusSchema>;
|
|
4033
|
-
type AcqListResponse = z.infer<typeof AcqListResponseSchema>;
|
|
4029
|
+
type ListCompaniesQuery = z$1.infer<typeof ListCompaniesQuerySchema>;
|
|
4030
|
+
type ListContactsQuery = z$1.infer<typeof ListContactsQuerySchema>;
|
|
4031
|
+
type AcqCompanyResponse = z$1.infer<typeof AcqCompanyResponseSchema>;
|
|
4032
|
+
type AcqContactResponse = z$1.infer<typeof AcqContactResponseSchema>;
|
|
4033
|
+
type AcqArtifactOwnerKind = z$1.infer<typeof AcqArtifactOwnerKindSchema>;
|
|
4034
|
+
type ListStatus = z$1.infer<typeof ListStatusSchema>;
|
|
4035
|
+
type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
|
|
4034
4036
|
|
|
4035
4037
|
/**
|
|
4036
4038
|
* Lead Service Types
|
|
@@ -4349,14 +4351,14 @@ interface ProjectDetail extends ProjectRow {
|
|
|
4349
4351
|
interface Action {
|
|
4350
4352
|
key: string;
|
|
4351
4353
|
label: string;
|
|
4352
|
-
payloadSchema?: z.ZodTypeAny;
|
|
4354
|
+
payloadSchema?: z$1.ZodTypeAny;
|
|
4353
4355
|
}
|
|
4354
4356
|
interface ActionDef {
|
|
4355
4357
|
key: string;
|
|
4356
4358
|
label: string;
|
|
4357
4359
|
isAvailableFor: (deal: AcqDealRow) => boolean;
|
|
4358
4360
|
workflowId: string;
|
|
4359
|
-
payloadSchema?: z.ZodTypeAny;
|
|
4361
|
+
payloadSchema?: z$1.ZodTypeAny;
|
|
4360
4362
|
}
|
|
4361
4363
|
|
|
4362
4364
|
type MessageType = MessageEvent['type'];
|
|
@@ -4462,11 +4464,11 @@ interface UserConfig {
|
|
|
4462
4464
|
* Membership status validation
|
|
4463
4465
|
* Note: Database constraint only allows 'active' | 'inactive'
|
|
4464
4466
|
*/
|
|
4465
|
-
declare const MembershipStatusSchema: z.ZodEnum<{
|
|
4467
|
+
declare const MembershipStatusSchema: z$1.ZodEnum<{
|
|
4466
4468
|
active: "active";
|
|
4467
4469
|
inactive: "inactive";
|
|
4468
4470
|
}>;
|
|
4469
|
-
type MembershipStatus = z.infer<typeof MembershipStatusSchema>;
|
|
4471
|
+
type MembershipStatus = z$1.infer<typeof MembershipStatusSchema>;
|
|
4470
4472
|
|
|
4471
4473
|
/**
|
|
4472
4474
|
* Organization Membership types based on WorkOS API
|
|
@@ -5181,56 +5183,56 @@ interface CommandViewData {
|
|
|
5181
5183
|
edges: CommandViewEdge$1[];
|
|
5182
5184
|
}
|
|
5183
5185
|
|
|
5184
|
-
declare const FeatureSchema: z.ZodObject<{
|
|
5185
|
-
id: z.ZodString;
|
|
5186
|
-
label: z.ZodString;
|
|
5187
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5188
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5189
|
-
path: z.ZodOptional<z.ZodString>;
|
|
5190
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5191
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5192
|
-
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
5186
|
+
declare const FeatureSchema: z$1.ZodObject<{
|
|
5187
|
+
id: z$1.ZodString;
|
|
5188
|
+
label: z$1.ZodString;
|
|
5189
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5190
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
5191
|
+
path: z$1.ZodOptional<z$1.ZodString>;
|
|
5192
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5193
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5194
|
+
uiPosition: z$1.ZodOptional<z$1.ZodEnum<{
|
|
5193
5195
|
"sidebar-primary": "sidebar-primary";
|
|
5194
5196
|
"sidebar-bottom": "sidebar-bottom";
|
|
5195
5197
|
}>>;
|
|
5196
|
-
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
5197
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5198
|
-
}, z.core.$strip>;
|
|
5199
|
-
|
|
5200
|
-
declare const OrganizationModelSchema: z.ZodObject<{
|
|
5201
|
-
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
5202
|
-
features: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5203
|
-
id: z.ZodString;
|
|
5204
|
-
label: z.ZodString;
|
|
5205
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5206
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5207
|
-
path: z.ZodOptional<z.ZodString>;
|
|
5208
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5209
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5210
|
-
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
5198
|
+
requiresAdmin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5199
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5200
|
+
}, z$1.core.$strip>;
|
|
5201
|
+
|
|
5202
|
+
declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
5203
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
5204
|
+
features: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5205
|
+
id: z$1.ZodString;
|
|
5206
|
+
label: z$1.ZodString;
|
|
5207
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5208
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
5209
|
+
path: z$1.ZodOptional<z$1.ZodString>;
|
|
5210
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5211
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5212
|
+
uiPosition: z$1.ZodOptional<z$1.ZodEnum<{
|
|
5211
5213
|
"sidebar-primary": "sidebar-primary";
|
|
5212
5214
|
"sidebar-bottom": "sidebar-bottom";
|
|
5213
5215
|
}>>;
|
|
5214
|
-
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
5215
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5216
|
-
}, z.core.$strip>>>;
|
|
5217
|
-
branding: z.ZodObject<{
|
|
5218
|
-
organizationName: z.ZodString;
|
|
5219
|
-
productName: z.ZodString;
|
|
5220
|
-
shortName: z.ZodString;
|
|
5221
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5222
|
-
logos: z.ZodDefault<z.ZodObject<{
|
|
5223
|
-
light: z.ZodOptional<z.ZodString>;
|
|
5224
|
-
dark: z.ZodOptional<z.ZodString>;
|
|
5225
|
-
}, z.core.$strip>>;
|
|
5226
|
-
}, z.core.$strip>;
|
|
5227
|
-
navigation: z.ZodDefault<z.ZodObject<{
|
|
5228
|
-
defaultSurfaceId: z.ZodOptional<z.ZodString>;
|
|
5229
|
-
surfaces: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5230
|
-
id: z.ZodString;
|
|
5231
|
-
label: z.ZodString;
|
|
5232
|
-
path: z.ZodString;
|
|
5233
|
-
surfaceType: z.ZodEnum<{
|
|
5216
|
+
requiresAdmin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5217
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5218
|
+
}, z$1.core.$strip>>>;
|
|
5219
|
+
branding: z$1.ZodObject<{
|
|
5220
|
+
organizationName: z$1.ZodString;
|
|
5221
|
+
productName: z$1.ZodString;
|
|
5222
|
+
shortName: z$1.ZodString;
|
|
5223
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5224
|
+
logos: z$1.ZodDefault<z$1.ZodObject<{
|
|
5225
|
+
light: z$1.ZodOptional<z$1.ZodString>;
|
|
5226
|
+
dark: z$1.ZodOptional<z$1.ZodString>;
|
|
5227
|
+
}, z$1.core.$strip>>;
|
|
5228
|
+
}, z$1.core.$strip>;
|
|
5229
|
+
navigation: z$1.ZodDefault<z$1.ZodObject<{
|
|
5230
|
+
defaultSurfaceId: z$1.ZodOptional<z$1.ZodString>;
|
|
5231
|
+
surfaces: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5232
|
+
id: z$1.ZodString;
|
|
5233
|
+
label: z$1.ZodString;
|
|
5234
|
+
path: z$1.ZodString;
|
|
5235
|
+
surfaceType: z$1.ZodEnum<{
|
|
5234
5236
|
settings: "settings";
|
|
5235
5237
|
page: "page";
|
|
5236
5238
|
dashboard: "dashboard";
|
|
@@ -5238,235 +5240,235 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
5238
5240
|
detail: "detail";
|
|
5239
5241
|
list: "list";
|
|
5240
5242
|
}>;
|
|
5241
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5242
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
5243
|
-
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5244
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5245
|
-
featureId: z.ZodOptional<z.ZodString>;
|
|
5246
|
-
featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5247
|
-
entityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5248
|
-
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5249
|
-
capabilityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5250
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
5251
|
-
}, z.core.$strip>>>;
|
|
5252
|
-
groups: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5253
|
-
id: z.ZodString;
|
|
5254
|
-
label: z.ZodString;
|
|
5255
|
-
placement: z.ZodString;
|
|
5256
|
-
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5257
|
-
}, z.core.$strip>>>;
|
|
5258
|
-
}, z.core.$strip>>;
|
|
5259
|
-
sales: z.ZodObject<{
|
|
5260
|
-
entityId: z.ZodString;
|
|
5261
|
-
defaultPipelineId: z.ZodString;
|
|
5262
|
-
pipelines: z.ZodArray<z.ZodObject<{
|
|
5263
|
-
id: z.ZodString;
|
|
5264
|
-
label: z.ZodString;
|
|
5265
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5266
|
-
entityId: z.ZodString;
|
|
5267
|
-
stages: z.ZodArray<z.ZodObject<{
|
|
5268
|
-
label: z.ZodString;
|
|
5269
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5270
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5271
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5272
|
-
id: z.ZodString;
|
|
5273
|
-
order: z.ZodNumber;
|
|
5274
|
-
semanticClass: z.ZodEnum<{
|
|
5243
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5244
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
5245
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5246
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5247
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
5248
|
+
featureIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5249
|
+
entityIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5250
|
+
resourceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5251
|
+
capabilityIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5252
|
+
parentId: z$1.ZodOptional<z$1.ZodString>;
|
|
5253
|
+
}, z$1.core.$strip>>>;
|
|
5254
|
+
groups: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5255
|
+
id: z$1.ZodString;
|
|
5256
|
+
label: z$1.ZodString;
|
|
5257
|
+
placement: z$1.ZodString;
|
|
5258
|
+
surfaceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5259
|
+
}, z$1.core.$strip>>>;
|
|
5260
|
+
}, z$1.core.$strip>>;
|
|
5261
|
+
sales: z$1.ZodObject<{
|
|
5262
|
+
entityId: z$1.ZodString;
|
|
5263
|
+
defaultPipelineId: z$1.ZodString;
|
|
5264
|
+
pipelines: z$1.ZodArray<z$1.ZodObject<{
|
|
5265
|
+
id: z$1.ZodString;
|
|
5266
|
+
label: z$1.ZodString;
|
|
5267
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5268
|
+
entityId: z$1.ZodString;
|
|
5269
|
+
stages: z$1.ZodArray<z$1.ZodObject<{
|
|
5270
|
+
label: z$1.ZodString;
|
|
5271
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5272
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5273
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5274
|
+
id: z$1.ZodString;
|
|
5275
|
+
order: z$1.ZodNumber;
|
|
5276
|
+
semanticClass: z$1.ZodEnum<{
|
|
5275
5277
|
open: "open";
|
|
5276
5278
|
active: "active";
|
|
5277
5279
|
nurturing: "nurturing";
|
|
5278
5280
|
closed_won: "closed_won";
|
|
5279
5281
|
closed_lost: "closed_lost";
|
|
5280
5282
|
}>;
|
|
5281
|
-
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5282
|
-
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5283
|
-
}, z.core.$strip>>;
|
|
5284
|
-
}, z.core.$strip>>;
|
|
5285
|
-
}, z.core.$strip>;
|
|
5286
|
-
prospecting: z.ZodObject<{
|
|
5287
|
-
listEntityId: z.ZodString;
|
|
5288
|
-
companyEntityId: z.ZodString;
|
|
5289
|
-
contactEntityId: z.ZodString;
|
|
5290
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5291
|
-
companyStages: z.ZodArray<z.ZodObject<{
|
|
5292
|
-
label: z.ZodString;
|
|
5293
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5294
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5295
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5296
|
-
id: z.ZodString;
|
|
5297
|
-
order: z.ZodNumber;
|
|
5298
|
-
}, z.core.$strip>>;
|
|
5299
|
-
contactStages: z.ZodArray<z.ZodObject<{
|
|
5300
|
-
label: z.ZodString;
|
|
5301
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5302
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5303
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5304
|
-
id: z.ZodString;
|
|
5305
|
-
order: z.ZodNumber;
|
|
5306
|
-
}, z.core.$strip>>;
|
|
5307
|
-
defaultBuildTemplateId: z.ZodString;
|
|
5308
|
-
buildTemplates: z.ZodArray<z.ZodObject<{
|
|
5309
|
-
label: z.ZodString;
|
|
5310
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5311
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5312
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5313
|
-
id: z.ZodString;
|
|
5314
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
5315
|
-
label: z.ZodString;
|
|
5316
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5317
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5318
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5319
|
-
id: z.ZodString;
|
|
5320
|
-
primaryEntity: z.ZodEnum<{
|
|
5283
|
+
surfaceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5284
|
+
resourceIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5285
|
+
}, z$1.core.$strip>>;
|
|
5286
|
+
}, z$1.core.$strip>>;
|
|
5287
|
+
}, z$1.core.$strip>;
|
|
5288
|
+
prospecting: z$1.ZodObject<{
|
|
5289
|
+
listEntityId: z$1.ZodString;
|
|
5290
|
+
companyEntityId: z$1.ZodString;
|
|
5291
|
+
contactEntityId: z$1.ZodString;
|
|
5292
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5293
|
+
companyStages: z$1.ZodArray<z$1.ZodObject<{
|
|
5294
|
+
label: z$1.ZodString;
|
|
5295
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5296
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5297
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5298
|
+
id: z$1.ZodString;
|
|
5299
|
+
order: z$1.ZodNumber;
|
|
5300
|
+
}, z$1.core.$strip>>;
|
|
5301
|
+
contactStages: z$1.ZodArray<z$1.ZodObject<{
|
|
5302
|
+
label: z$1.ZodString;
|
|
5303
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5304
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5305
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5306
|
+
id: z$1.ZodString;
|
|
5307
|
+
order: z$1.ZodNumber;
|
|
5308
|
+
}, z$1.core.$strip>>;
|
|
5309
|
+
defaultBuildTemplateId: z$1.ZodString;
|
|
5310
|
+
buildTemplates: z$1.ZodArray<z$1.ZodObject<{
|
|
5311
|
+
label: z$1.ZodString;
|
|
5312
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5313
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5314
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5315
|
+
id: z$1.ZodString;
|
|
5316
|
+
steps: z$1.ZodArray<z$1.ZodObject<{
|
|
5317
|
+
label: z$1.ZodString;
|
|
5318
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5319
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5320
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5321
|
+
id: z$1.ZodString;
|
|
5322
|
+
primaryEntity: z$1.ZodEnum<{
|
|
5321
5323
|
company: "company";
|
|
5322
5324
|
contact: "contact";
|
|
5323
5325
|
}>;
|
|
5324
|
-
outputs: z.ZodArray<z.ZodEnum<{
|
|
5326
|
+
outputs: z$1.ZodArray<z$1.ZodEnum<{
|
|
5325
5327
|
company: "company";
|
|
5326
5328
|
contact: "contact";
|
|
5327
5329
|
export: "export";
|
|
5328
5330
|
}>>;
|
|
5329
|
-
stageKey: z.ZodString;
|
|
5330
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5331
|
-
dependencyMode: z.ZodLiteral<"per-record-eligibility">;
|
|
5332
|
-
capabilityKey: z.ZodString;
|
|
5333
|
-
defaultBatchSize: z.ZodNumber;
|
|
5334
|
-
maxBatchSize: z.ZodNumber;
|
|
5335
|
-
}, z.core.$strip>>;
|
|
5336
|
-
}, z.core.$strip>>;
|
|
5337
|
-
}, z.core.$strip>;
|
|
5338
|
-
projects: z.ZodObject<{
|
|
5339
|
-
projectEntityId: z.ZodString;
|
|
5340
|
-
milestoneEntityId: z.ZodString;
|
|
5341
|
-
taskEntityId: z.ZodString;
|
|
5342
|
-
projectStatuses: z.ZodArray<z.ZodObject<{
|
|
5343
|
-
label: z.ZodString;
|
|
5344
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5345
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5346
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5347
|
-
id: z.ZodString;
|
|
5348
|
-
order: z.ZodNumber;
|
|
5349
|
-
}, z.core.$strip>>;
|
|
5350
|
-
milestoneStatuses: z.ZodArray<z.ZodObject<{
|
|
5351
|
-
label: z.ZodString;
|
|
5352
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5353
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5354
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5355
|
-
id: z.ZodString;
|
|
5356
|
-
order: z.ZodNumber;
|
|
5357
|
-
}, z.core.$strip>>;
|
|
5358
|
-
taskStatuses: z.ZodArray<z.ZodObject<{
|
|
5359
|
-
label: z.ZodString;
|
|
5360
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5361
|
-
color: z.ZodOptional<z.ZodString>;
|
|
5362
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
5363
|
-
id: z.ZodString;
|
|
5364
|
-
order: z.ZodNumber;
|
|
5365
|
-
}, z.core.$strip>>;
|
|
5366
|
-
}, z.core.$strip>;
|
|
5367
|
-
identity: z.ZodDefault<z.ZodObject<{
|
|
5368
|
-
mission: z.ZodDefault<z.ZodString>;
|
|
5369
|
-
vision: z.ZodDefault<z.ZodString>;
|
|
5370
|
-
legalName: z.ZodDefault<z.ZodString>;
|
|
5371
|
-
entityType: z.ZodDefault<z.ZodString>;
|
|
5372
|
-
jurisdiction: z.ZodDefault<z.ZodString>;
|
|
5373
|
-
industryCategory: z.ZodDefault<z.ZodString>;
|
|
5374
|
-
geographicFocus: z.ZodDefault<z.ZodString>;
|
|
5375
|
-
timeZone: z.ZodDefault<z.ZodString>;
|
|
5376
|
-
businessHours: z.ZodDefault<z.ZodObject<{
|
|
5377
|
-
monday: z.ZodOptional<z.ZodObject<{
|
|
5378
|
-
open: z.ZodString;
|
|
5379
|
-
close: z.ZodString;
|
|
5380
|
-
}, z.core.$strip>>;
|
|
5381
|
-
tuesday: z.ZodOptional<z.ZodObject<{
|
|
5382
|
-
open: z.ZodString;
|
|
5383
|
-
close: z.ZodString;
|
|
5384
|
-
}, z.core.$strip>>;
|
|
5385
|
-
wednesday: z.ZodOptional<z.ZodObject<{
|
|
5386
|
-
open: z.ZodString;
|
|
5387
|
-
close: z.ZodString;
|
|
5388
|
-
}, z.core.$strip>>;
|
|
5389
|
-
thursday: z.ZodOptional<z.ZodObject<{
|
|
5390
|
-
open: z.ZodString;
|
|
5391
|
-
close: z.ZodString;
|
|
5392
|
-
}, z.core.$strip>>;
|
|
5393
|
-
friday: z.ZodOptional<z.ZodObject<{
|
|
5394
|
-
open: z.ZodString;
|
|
5395
|
-
close: z.ZodString;
|
|
5396
|
-
}, z.core.$strip>>;
|
|
5397
|
-
saturday: z.ZodOptional<z.ZodObject<{
|
|
5398
|
-
open: z.ZodString;
|
|
5399
|
-
close: z.ZodString;
|
|
5400
|
-
}, z.core.$strip>>;
|
|
5401
|
-
sunday: z.ZodOptional<z.ZodObject<{
|
|
5402
|
-
open: z.ZodString;
|
|
5403
|
-
close: z.ZodString;
|
|
5404
|
-
}, z.core.$strip>>;
|
|
5405
|
-
}, z.core.$strip>>;
|
|
5406
|
-
clientBrief: z.ZodDefault<z.ZodString>;
|
|
5407
|
-
}, z.core.$strip>>;
|
|
5408
|
-
customers: z.ZodDefault<z.ZodObject<{
|
|
5409
|
-
segments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5410
|
-
id: z.ZodString;
|
|
5411
|
-
name: z.ZodDefault<z.ZodString>;
|
|
5412
|
-
description: z.ZodDefault<z.ZodString>;
|
|
5413
|
-
jobsToBeDone: z.ZodDefault<z.ZodString>;
|
|
5414
|
-
pains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5415
|
-
gains: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5416
|
-
firmographics: z.ZodDefault<z.ZodObject<{
|
|
5417
|
-
industry: z.ZodOptional<z.ZodString>;
|
|
5418
|
-
companySize: z.ZodOptional<z.ZodString>;
|
|
5419
|
-
region: z.ZodOptional<z.ZodString>;
|
|
5420
|
-
}, z.core.$strip>>;
|
|
5421
|
-
valueProp: z.ZodDefault<z.ZodString>;
|
|
5422
|
-
}, z.core.$strip>>>;
|
|
5423
|
-
}, z.core.$strip>>;
|
|
5424
|
-
offerings: z.ZodDefault<z.ZodObject<{
|
|
5425
|
-
products: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5426
|
-
id: z.ZodString;
|
|
5427
|
-
name: z.ZodDefault<z.ZodString>;
|
|
5428
|
-
description: z.ZodDefault<z.ZodString>;
|
|
5429
|
-
pricingModel: z.ZodDefault<z.ZodEnum<{
|
|
5331
|
+
stageKey: z$1.ZodString;
|
|
5332
|
+
dependsOn: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
5333
|
+
dependencyMode: z$1.ZodLiteral<"per-record-eligibility">;
|
|
5334
|
+
capabilityKey: z$1.ZodString;
|
|
5335
|
+
defaultBatchSize: z$1.ZodNumber;
|
|
5336
|
+
maxBatchSize: z$1.ZodNumber;
|
|
5337
|
+
}, z$1.core.$strip>>;
|
|
5338
|
+
}, z$1.core.$strip>>;
|
|
5339
|
+
}, z$1.core.$strip>;
|
|
5340
|
+
projects: z$1.ZodObject<{
|
|
5341
|
+
projectEntityId: z$1.ZodString;
|
|
5342
|
+
milestoneEntityId: z$1.ZodString;
|
|
5343
|
+
taskEntityId: z$1.ZodString;
|
|
5344
|
+
projectStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
5345
|
+
label: z$1.ZodString;
|
|
5346
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5347
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5348
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5349
|
+
id: z$1.ZodString;
|
|
5350
|
+
order: z$1.ZodNumber;
|
|
5351
|
+
}, z$1.core.$strip>>;
|
|
5352
|
+
milestoneStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
5353
|
+
label: z$1.ZodString;
|
|
5354
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5355
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5356
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5357
|
+
id: z$1.ZodString;
|
|
5358
|
+
order: z$1.ZodNumber;
|
|
5359
|
+
}, z$1.core.$strip>>;
|
|
5360
|
+
taskStatuses: z$1.ZodArray<z$1.ZodObject<{
|
|
5361
|
+
label: z$1.ZodString;
|
|
5362
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5363
|
+
color: z$1.ZodOptional<z$1.ZodString>;
|
|
5364
|
+
icon: z$1.ZodOptional<z$1.ZodString>;
|
|
5365
|
+
id: z$1.ZodString;
|
|
5366
|
+
order: z$1.ZodNumber;
|
|
5367
|
+
}, z$1.core.$strip>>;
|
|
5368
|
+
}, z$1.core.$strip>;
|
|
5369
|
+
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
5370
|
+
mission: z$1.ZodDefault<z$1.ZodString>;
|
|
5371
|
+
vision: z$1.ZodDefault<z$1.ZodString>;
|
|
5372
|
+
legalName: z$1.ZodDefault<z$1.ZodString>;
|
|
5373
|
+
entityType: z$1.ZodDefault<z$1.ZodString>;
|
|
5374
|
+
jurisdiction: z$1.ZodDefault<z$1.ZodString>;
|
|
5375
|
+
industryCategory: z$1.ZodDefault<z$1.ZodString>;
|
|
5376
|
+
geographicFocus: z$1.ZodDefault<z$1.ZodString>;
|
|
5377
|
+
timeZone: z$1.ZodDefault<z$1.ZodString>;
|
|
5378
|
+
businessHours: z$1.ZodDefault<z$1.ZodObject<{
|
|
5379
|
+
monday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5380
|
+
open: z$1.ZodString;
|
|
5381
|
+
close: z$1.ZodString;
|
|
5382
|
+
}, z$1.core.$strip>>;
|
|
5383
|
+
tuesday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5384
|
+
open: z$1.ZodString;
|
|
5385
|
+
close: z$1.ZodString;
|
|
5386
|
+
}, z$1.core.$strip>>;
|
|
5387
|
+
wednesday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5388
|
+
open: z$1.ZodString;
|
|
5389
|
+
close: z$1.ZodString;
|
|
5390
|
+
}, z$1.core.$strip>>;
|
|
5391
|
+
thursday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5392
|
+
open: z$1.ZodString;
|
|
5393
|
+
close: z$1.ZodString;
|
|
5394
|
+
}, z$1.core.$strip>>;
|
|
5395
|
+
friday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5396
|
+
open: z$1.ZodString;
|
|
5397
|
+
close: z$1.ZodString;
|
|
5398
|
+
}, z$1.core.$strip>>;
|
|
5399
|
+
saturday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5400
|
+
open: z$1.ZodString;
|
|
5401
|
+
close: z$1.ZodString;
|
|
5402
|
+
}, z$1.core.$strip>>;
|
|
5403
|
+
sunday: z$1.ZodOptional<z$1.ZodObject<{
|
|
5404
|
+
open: z$1.ZodString;
|
|
5405
|
+
close: z$1.ZodString;
|
|
5406
|
+
}, z$1.core.$strip>>;
|
|
5407
|
+
}, z$1.core.$strip>>;
|
|
5408
|
+
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
5409
|
+
}, z$1.core.$strip>>;
|
|
5410
|
+
customers: z$1.ZodDefault<z$1.ZodObject<{
|
|
5411
|
+
segments: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5412
|
+
id: z$1.ZodString;
|
|
5413
|
+
name: z$1.ZodDefault<z$1.ZodString>;
|
|
5414
|
+
description: z$1.ZodDefault<z$1.ZodString>;
|
|
5415
|
+
jobsToBeDone: z$1.ZodDefault<z$1.ZodString>;
|
|
5416
|
+
pains: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5417
|
+
gains: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5418
|
+
firmographics: z$1.ZodDefault<z$1.ZodObject<{
|
|
5419
|
+
industry: z$1.ZodOptional<z$1.ZodString>;
|
|
5420
|
+
companySize: z$1.ZodOptional<z$1.ZodString>;
|
|
5421
|
+
region: z$1.ZodOptional<z$1.ZodString>;
|
|
5422
|
+
}, z$1.core.$strip>>;
|
|
5423
|
+
valueProp: z$1.ZodDefault<z$1.ZodString>;
|
|
5424
|
+
}, z$1.core.$strip>>>;
|
|
5425
|
+
}, z$1.core.$strip>>;
|
|
5426
|
+
offerings: z$1.ZodDefault<z$1.ZodObject<{
|
|
5427
|
+
products: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5428
|
+
id: z$1.ZodString;
|
|
5429
|
+
name: z$1.ZodDefault<z$1.ZodString>;
|
|
5430
|
+
description: z$1.ZodDefault<z$1.ZodString>;
|
|
5431
|
+
pricingModel: z$1.ZodDefault<z$1.ZodEnum<{
|
|
5430
5432
|
custom: "custom";
|
|
5431
5433
|
"one-time": "one-time";
|
|
5432
5434
|
subscription: "subscription";
|
|
5433
5435
|
"usage-based": "usage-based";
|
|
5434
5436
|
}>>;
|
|
5435
|
-
price: z.ZodDefault<z.ZodNumber>;
|
|
5436
|
-
currency: z.ZodDefault<z.ZodString>;
|
|
5437
|
-
targetSegmentIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5438
|
-
deliveryFeatureId: z.ZodOptional<z.ZodString>;
|
|
5439
|
-
}, z.core.$strip>>>;
|
|
5440
|
-
}, z.core.$strip>>;
|
|
5441
|
-
roles: z.ZodDefault<z.ZodObject<{
|
|
5442
|
-
roles: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5443
|
-
id: z.ZodString;
|
|
5444
|
-
title: z.ZodString;
|
|
5445
|
-
responsibilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5446
|
-
reportsToId: z.ZodOptional<z.ZodString>;
|
|
5447
|
-
heldBy: z.ZodOptional<z.ZodString>;
|
|
5448
|
-
}, z.core.$strip>>>;
|
|
5449
|
-
}, z.core.$strip>>;
|
|
5450
|
-
goals: z.ZodDefault<z.ZodObject<{
|
|
5451
|
-
objectives: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5452
|
-
id: z.ZodString;
|
|
5453
|
-
description: z.ZodString;
|
|
5454
|
-
periodStart: z.ZodString;
|
|
5455
|
-
periodEnd: z.ZodString;
|
|
5456
|
-
keyResults: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5457
|
-
id: z.ZodString;
|
|
5458
|
-
description: z.ZodString;
|
|
5459
|
-
targetMetric: z.ZodString;
|
|
5460
|
-
currentValue: z.ZodDefault<z.ZodNumber>;
|
|
5461
|
-
targetValue: z.ZodOptional<z.ZodNumber>;
|
|
5462
|
-
}, z.core.$strip>>>;
|
|
5463
|
-
}, z.core.$strip>>>;
|
|
5464
|
-
}, z.core.$strip>>;
|
|
5465
|
-
statuses: z.ZodDefault<z.ZodObject<{
|
|
5466
|
-
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5467
|
-
id: z.ZodString;
|
|
5468
|
-
label: z.ZodString;
|
|
5469
|
-
semanticClass: z.ZodEnum<{
|
|
5437
|
+
price: z$1.ZodDefault<z$1.ZodNumber>;
|
|
5438
|
+
currency: z$1.ZodDefault<z$1.ZodString>;
|
|
5439
|
+
targetSegmentIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5440
|
+
deliveryFeatureId: z$1.ZodOptional<z$1.ZodString>;
|
|
5441
|
+
}, z$1.core.$strip>>>;
|
|
5442
|
+
}, z$1.core.$strip>>;
|
|
5443
|
+
roles: z$1.ZodDefault<z$1.ZodObject<{
|
|
5444
|
+
roles: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5445
|
+
id: z$1.ZodString;
|
|
5446
|
+
title: z$1.ZodString;
|
|
5447
|
+
responsibilities: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5448
|
+
reportsToId: z$1.ZodOptional<z$1.ZodString>;
|
|
5449
|
+
heldBy: z$1.ZodOptional<z$1.ZodString>;
|
|
5450
|
+
}, z$1.core.$strip>>>;
|
|
5451
|
+
}, z$1.core.$strip>>;
|
|
5452
|
+
goals: z$1.ZodDefault<z$1.ZodObject<{
|
|
5453
|
+
objectives: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5454
|
+
id: z$1.ZodString;
|
|
5455
|
+
description: z$1.ZodString;
|
|
5456
|
+
periodStart: z$1.ZodString;
|
|
5457
|
+
periodEnd: z$1.ZodString;
|
|
5458
|
+
keyResults: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5459
|
+
id: z$1.ZodString;
|
|
5460
|
+
description: z$1.ZodString;
|
|
5461
|
+
targetMetric: z$1.ZodString;
|
|
5462
|
+
currentValue: z$1.ZodDefault<z$1.ZodNumber>;
|
|
5463
|
+
targetValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
5464
|
+
}, z$1.core.$strip>>>;
|
|
5465
|
+
}, z$1.core.$strip>>>;
|
|
5466
|
+
}, z$1.core.$strip>>;
|
|
5467
|
+
statuses: z$1.ZodDefault<z$1.ZodObject<{
|
|
5468
|
+
entries: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5469
|
+
id: z$1.ZodString;
|
|
5470
|
+
label: z$1.ZodString;
|
|
5471
|
+
semanticClass: z$1.ZodEnum<{
|
|
5470
5472
|
"delivery.project": "delivery.project";
|
|
5471
5473
|
"delivery.milestone": "delivery.milestone";
|
|
5472
5474
|
"delivery.task": "delivery.task";
|
|
@@ -5476,50 +5478,50 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
5476
5478
|
"schedule.run": "schedule.run";
|
|
5477
5479
|
request: "request";
|
|
5478
5480
|
}>;
|
|
5479
|
-
category: z.ZodOptional<z.ZodString>;
|
|
5480
|
-
}, z.core.$strip>>>;
|
|
5481
|
-
}, z.core.$strip>>;
|
|
5482
|
-
operations: z.ZodDefault<z.ZodObject<{
|
|
5483
|
-
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5484
|
-
id: z.ZodString;
|
|
5485
|
-
label: z.ZodString;
|
|
5486
|
-
semanticClass: z.ZodEnum<{
|
|
5481
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
5482
|
+
}, z$1.core.$strip>>>;
|
|
5483
|
+
}, z$1.core.$strip>>;
|
|
5484
|
+
operations: z$1.ZodDefault<z$1.ZodObject<{
|
|
5485
|
+
entries: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5486
|
+
id: z$1.ZodString;
|
|
5487
|
+
label: z$1.ZodString;
|
|
5488
|
+
semanticClass: z$1.ZodEnum<{
|
|
5487
5489
|
queue: "queue";
|
|
5488
5490
|
executions: "executions";
|
|
5489
5491
|
sessions: "sessions";
|
|
5490
5492
|
notifications: "notifications";
|
|
5491
5493
|
schedules: "schedules";
|
|
5492
5494
|
}>;
|
|
5493
|
-
featureId: z.ZodOptional<z.ZodString>;
|
|
5494
|
-
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5495
|
-
}, z.core.$strip>>>;
|
|
5496
|
-
}, z.core.$strip>>;
|
|
5497
|
-
knowledge: z.ZodDefault<z.ZodObject<{
|
|
5498
|
-
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5499
|
-
id: z.ZodString;
|
|
5500
|
-
kind: z.ZodEnum<{
|
|
5495
|
+
featureId: z$1.ZodOptional<z$1.ZodString>;
|
|
5496
|
+
supportedStatusSemanticClass: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
5497
|
+
}, z$1.core.$strip>>>;
|
|
5498
|
+
}, z$1.core.$strip>>;
|
|
5499
|
+
knowledge: z$1.ZodDefault<z$1.ZodObject<{
|
|
5500
|
+
nodes: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5501
|
+
id: z$1.ZodString;
|
|
5502
|
+
kind: z$1.ZodEnum<{
|
|
5501
5503
|
playbook: "playbook";
|
|
5502
5504
|
strategy: "strategy";
|
|
5503
5505
|
reference: "reference";
|
|
5504
5506
|
}>;
|
|
5505
|
-
title: z.ZodString;
|
|
5506
|
-
summary: z.ZodString;
|
|
5507
|
-
body: z.ZodString;
|
|
5508
|
-
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5509
|
-
nodeId: z.ZodString;
|
|
5510
|
-
}, z.core.$strip>>>;
|
|
5511
|
-
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5512
|
-
updatedAt: z.ZodString;
|
|
5513
|
-
}, z.core.$strip>>>;
|
|
5514
|
-
}, z.core.$strip>>;
|
|
5515
|
-
}, z.core.$strip>;
|
|
5516
|
-
|
|
5517
|
-
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
5518
|
-
type OrganizationModelFeature = z.infer<typeof FeatureSchema>;
|
|
5519
|
-
|
|
5520
|
-
declare const LinkSchema: z.ZodObject<{
|
|
5521
|
-
nodeId: z.ZodString;
|
|
5522
|
-
kind: z.ZodEnum<{
|
|
5507
|
+
title: z$1.ZodString;
|
|
5508
|
+
summary: z$1.ZodString;
|
|
5509
|
+
body: z$1.ZodString;
|
|
5510
|
+
links: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
5511
|
+
nodeId: z$1.ZodString;
|
|
5512
|
+
}, z$1.core.$strip>>>;
|
|
5513
|
+
ownerIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5514
|
+
updatedAt: z$1.ZodString;
|
|
5515
|
+
}, z$1.core.$strip>>>;
|
|
5516
|
+
}, z$1.core.$strip>>;
|
|
5517
|
+
}, z$1.core.$strip>;
|
|
5518
|
+
|
|
5519
|
+
type OrganizationModel = z$1.infer<typeof OrganizationModelSchema>;
|
|
5520
|
+
type OrganizationModelFeature = z$1.infer<typeof FeatureSchema>;
|
|
5521
|
+
|
|
5522
|
+
declare const LinkSchema: z$1.ZodObject<{
|
|
5523
|
+
nodeId: z$1.ZodString;
|
|
5524
|
+
kind: z$1.ZodEnum<{
|
|
5523
5525
|
contains: "contains";
|
|
5524
5526
|
references: "references";
|
|
5525
5527
|
exposes: "exposes";
|
|
@@ -5528,16 +5530,16 @@ declare const LinkSchema: z.ZodObject<{
|
|
|
5528
5530
|
uses: "uses";
|
|
5529
5531
|
governs: "governs";
|
|
5530
5532
|
}>;
|
|
5531
|
-
}, z.core.$strip>;
|
|
5532
|
-
type Link = z.infer<typeof LinkSchema>;
|
|
5533
|
+
}, z$1.core.$strip>;
|
|
5534
|
+
type Link = z$1.infer<typeof LinkSchema>;
|
|
5533
5535
|
|
|
5534
|
-
declare const ResourceCategorySchema: z.ZodEnum<{
|
|
5536
|
+
declare const ResourceCategorySchema: z$1.ZodEnum<{
|
|
5535
5537
|
production: "production";
|
|
5536
5538
|
diagnostic: "diagnostic";
|
|
5537
5539
|
internal: "internal";
|
|
5538
5540
|
testing: "testing";
|
|
5539
5541
|
}>;
|
|
5540
|
-
type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
|
|
5542
|
+
type ResourceCategory = z$1.infer<typeof ResourceCategorySchema>;
|
|
5541
5543
|
type ResourceLink = Link;
|
|
5542
5544
|
|
|
5543
5545
|
type ExecutionStatus = 'pending' | 'running' | 'completed' | 'failed' | 'warning';
|
|
@@ -5773,45 +5775,45 @@ interface PermissionDescriptor {
|
|
|
5773
5775
|
* Execution history item.
|
|
5774
5776
|
* Represents a single execution triggered by a schedule.
|
|
5775
5777
|
*/
|
|
5776
|
-
declare const ExecutionHistoryItemSchema: z.ZodObject<{
|
|
5777
|
-
id: z.ZodString;
|
|
5778
|
-
createdAt: z.ZodString;
|
|
5779
|
-
status: z.ZodEnum<{
|
|
5778
|
+
declare const ExecutionHistoryItemSchema: z$1.ZodObject<{
|
|
5779
|
+
id: z$1.ZodString;
|
|
5780
|
+
createdAt: z$1.ZodString;
|
|
5781
|
+
status: z$1.ZodEnum<{
|
|
5780
5782
|
completed: "completed";
|
|
5781
5783
|
cancelled: "cancelled";
|
|
5782
5784
|
failed: "failed";
|
|
5783
5785
|
running: "running";
|
|
5784
5786
|
}>;
|
|
5785
|
-
step: z.ZodNullable<z.ZodNumber>;
|
|
5786
|
-
itemLabel: z.ZodNullable<z.ZodString>;
|
|
5787
|
-
duration: z.ZodNullable<z.ZodNumber>;
|
|
5788
|
-
error: z.ZodNullable<z.ZodString>;
|
|
5789
|
-
}, z.core.$strip>;
|
|
5787
|
+
step: z$1.ZodNullable<z$1.ZodNumber>;
|
|
5788
|
+
itemLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
5789
|
+
duration: z$1.ZodNullable<z$1.ZodNumber>;
|
|
5790
|
+
error: z$1.ZodNullable<z$1.ZodString>;
|
|
5791
|
+
}, z$1.core.$strip>;
|
|
5790
5792
|
/**
|
|
5791
5793
|
* Execution history response.
|
|
5792
5794
|
* Returned by GET /schedules/:id/executions with pagination.
|
|
5793
5795
|
*/
|
|
5794
|
-
declare const ExecutionHistoryResponseSchema: z.ZodObject<{
|
|
5795
|
-
executions: z.ZodArray<z.ZodObject<{
|
|
5796
|
-
id: z.ZodString;
|
|
5797
|
-
createdAt: z.ZodString;
|
|
5798
|
-
status: z.ZodEnum<{
|
|
5796
|
+
declare const ExecutionHistoryResponseSchema: z$1.ZodObject<{
|
|
5797
|
+
executions: z$1.ZodArray<z$1.ZodObject<{
|
|
5798
|
+
id: z$1.ZodString;
|
|
5799
|
+
createdAt: z$1.ZodString;
|
|
5800
|
+
status: z$1.ZodEnum<{
|
|
5799
5801
|
completed: "completed";
|
|
5800
5802
|
cancelled: "cancelled";
|
|
5801
5803
|
failed: "failed";
|
|
5802
5804
|
running: "running";
|
|
5803
5805
|
}>;
|
|
5804
|
-
step: z.ZodNullable<z.ZodNumber>;
|
|
5805
|
-
itemLabel: z.ZodNullable<z.ZodString>;
|
|
5806
|
-
duration: z.ZodNullable<z.ZodNumber>;
|
|
5807
|
-
error: z.ZodNullable<z.ZodString>;
|
|
5808
|
-
}, z.core.$strip>>;
|
|
5809
|
-
total: z.ZodNumber;
|
|
5810
|
-
limit: z.ZodNumber;
|
|
5811
|
-
offset: z.ZodNumber;
|
|
5812
|
-
}, z.core.$strip>;
|
|
5813
|
-
type ExecutionHistoryItem = z.infer<typeof ExecutionHistoryItemSchema>;
|
|
5814
|
-
type ExecutionHistoryResponse = z.infer<typeof ExecutionHistoryResponseSchema>;
|
|
5806
|
+
step: z$1.ZodNullable<z$1.ZodNumber>;
|
|
5807
|
+
itemLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
5808
|
+
duration: z$1.ZodNullable<z$1.ZodNumber>;
|
|
5809
|
+
error: z$1.ZodNullable<z$1.ZodString>;
|
|
5810
|
+
}, z$1.core.$strip>>;
|
|
5811
|
+
total: z$1.ZodNumber;
|
|
5812
|
+
limit: z$1.ZodNumber;
|
|
5813
|
+
offset: z$1.ZodNumber;
|
|
5814
|
+
}, z$1.core.$strip>;
|
|
5815
|
+
type ExecutionHistoryItem = z$1.infer<typeof ExecutionHistoryItemSchema>;
|
|
5816
|
+
type ExecutionHistoryResponse = z$1.infer<typeof ExecutionHistoryResponseSchema>;
|
|
5815
5817
|
|
|
5816
5818
|
/**
|
|
5817
5819
|
* Deployment types — browser-safe
|
|
@@ -5855,17 +5857,17 @@ declare function getTimeRangeLabel(range: TimeRange): string;
|
|
|
5855
5857
|
/**
|
|
5856
5858
|
* GET /api/credentials - List credentials
|
|
5857
5859
|
*/
|
|
5858
|
-
declare const ListCredentialsResponseSchema: z.ZodObject<{
|
|
5859
|
-
credentials: z.ZodArray<z.ZodObject<{
|
|
5860
|
-
id: z.ZodString;
|
|
5861
|
-
name: z.ZodString;
|
|
5862
|
-
type: z.ZodString;
|
|
5863
|
-
provider: z.ZodNullable<z.ZodString>;
|
|
5864
|
-
createdAt: z.ZodString;
|
|
5865
|
-
}, z.core.$strip>>;
|
|
5866
|
-
}, z.core.$strip>;
|
|
5860
|
+
declare const ListCredentialsResponseSchema: z$1.ZodObject<{
|
|
5861
|
+
credentials: z$1.ZodArray<z$1.ZodObject<{
|
|
5862
|
+
id: z$1.ZodString;
|
|
5863
|
+
name: z$1.ZodString;
|
|
5864
|
+
type: z$1.ZodString;
|
|
5865
|
+
provider: z$1.ZodNullable<z$1.ZodString>;
|
|
5866
|
+
createdAt: z$1.ZodString;
|
|
5867
|
+
}, z$1.core.$strip>>;
|
|
5868
|
+
}, z$1.core.$strip>;
|
|
5867
5869
|
/** API response type for a single credential list item */
|
|
5868
|
-
type CredentialListItem = z.infer<typeof ListCredentialsResponseSchema>['credentials'][number];
|
|
5870
|
+
type CredentialListItem = z$1.infer<typeof ListCredentialsResponseSchema>['credentials'][number];
|
|
5869
5871
|
|
|
5870
5872
|
type ListBuilderWorkflowCategory = 'build' | 'enrich' | 'qualify' | 'scrape' | 'utility';
|
|
5871
5873
|
type LeadGenStageKey = string;
|
|
@@ -5882,6 +5884,11 @@ interface ListBuilderWorkflow {
|
|
|
5882
5884
|
description: string;
|
|
5883
5885
|
category: ListBuilderWorkflowCategory;
|
|
5884
5886
|
stagesAffected: readonly LeadGenStageKey[];
|
|
5887
|
+
configSchema?: z.ZodSchema<unknown>;
|
|
5888
|
+
ConfigForm?: ComponentType<{
|
|
5889
|
+
value: Record<string, unknown>;
|
|
5890
|
+
onChange: (next: Record<string, unknown>) => void;
|
|
5891
|
+
}>;
|
|
5885
5892
|
inputForm?: ComponentType<ListBuilderWorkflowFormProps>;
|
|
5886
5893
|
defaultInput?: (list: AcqListResponse) => unknown;
|
|
5887
5894
|
}
|
|
@@ -7448,7 +7455,7 @@ interface ArchivedLogsState {
|
|
|
7448
7455
|
*/
|
|
7449
7456
|
declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
|
|
7450
7457
|
|
|
7451
|
-
interface UseExecuteResourceOptions<TSchema extends z.ZodType | undefined = undefined> {
|
|
7458
|
+
interface UseExecuteResourceOptions<TSchema extends z$1.ZodType | undefined = undefined> {
|
|
7452
7459
|
resourceId: string;
|
|
7453
7460
|
resourceType: ResourceType;
|
|
7454
7461
|
schema?: TSchema;
|
|
@@ -7468,8 +7475,8 @@ interface UseExecuteResourceOptions<TSchema extends z.ZodType | undefined = unde
|
|
|
7468
7475
|
* })
|
|
7469
7476
|
* await execute({ dealId: '...', note: '...' })
|
|
7470
7477
|
*/
|
|
7471
|
-
declare function useExecuteResource<TSchema extends z.ZodType | undefined = undefined>(options: UseExecuteResourceOptions<TSchema>): {
|
|
7472
|
-
execute: (input: TSchema extends z.ZodType ? z.infer<TSchema> : unknown) => Promise<ExecuteAsyncResult>;
|
|
7478
|
+
declare function useExecuteResource<TSchema extends z$1.ZodType | undefined = undefined>(options: UseExecuteResourceOptions<TSchema>): {
|
|
7479
|
+
execute: (input: TSchema extends z$1.ZodType ? z$1.infer<TSchema> : unknown) => Promise<ExecuteAsyncResult>;
|
|
7473
7480
|
mutation: ReturnType<typeof useExecuteAsync>;
|
|
7474
7481
|
isPending: boolean;
|
|
7475
7482
|
isSuccess: boolean;
|
|
@@ -8633,18 +8640,18 @@ declare function usePatchTask(): _tanstack_react_query.UseMutationResult<Task, E
|
|
|
8633
8640
|
* Table mapping:
|
|
8634
8641
|
* reported_requests -> RequestSchemas
|
|
8635
8642
|
*/
|
|
8636
|
-
declare const RequestSeverityEnum: z.ZodEnum<{
|
|
8643
|
+
declare const RequestSeverityEnum: z$1.ZodEnum<{
|
|
8637
8644
|
critical: "critical";
|
|
8638
8645
|
warning: "warning";
|
|
8639
8646
|
info: "info";
|
|
8640
8647
|
}>;
|
|
8641
|
-
declare const RequestStatusEnum: z.ZodEnum<{
|
|
8648
|
+
declare const RequestStatusEnum: z$1.ZodEnum<{
|
|
8642
8649
|
open: "open";
|
|
8643
8650
|
resolved: "resolved";
|
|
8644
8651
|
investigating: "investigating";
|
|
8645
8652
|
wont_fix: "wont_fix";
|
|
8646
8653
|
}>;
|
|
8647
|
-
declare const RequestSourceEnum: z.ZodEnum<{
|
|
8654
|
+
declare const RequestSourceEnum: z$1.ZodEnum<{
|
|
8648
8655
|
agent: "agent";
|
|
8649
8656
|
api: "api";
|
|
8650
8657
|
external: "external";
|
|
@@ -8652,16 +8659,16 @@ declare const RequestSourceEnum: z.ZodEnum<{
|
|
|
8652
8659
|
webhook: "webhook";
|
|
8653
8660
|
cli: "cli";
|
|
8654
8661
|
}>;
|
|
8655
|
-
declare const RequestTypeEnum: z.ZodEnum<{
|
|
8662
|
+
declare const RequestTypeEnum: z$1.ZodEnum<{
|
|
8656
8663
|
feature: "feature";
|
|
8657
8664
|
other: "other";
|
|
8658
8665
|
bug: "bug";
|
|
8659
8666
|
question: "question";
|
|
8660
8667
|
}>;
|
|
8661
|
-
type RequestSeverity = z.infer<typeof RequestSeverityEnum>;
|
|
8662
|
-
type RequestStatus = z.infer<typeof RequestStatusEnum>;
|
|
8663
|
-
type RequestSource = z.infer<typeof RequestSourceEnum>;
|
|
8664
|
-
type RequestType = z.infer<typeof RequestTypeEnum>;
|
|
8668
|
+
type RequestSeverity = z$1.infer<typeof RequestSeverityEnum>;
|
|
8669
|
+
type RequestStatus = z$1.infer<typeof RequestStatusEnum>;
|
|
8670
|
+
type RequestSource = z$1.infer<typeof RequestSourceEnum>;
|
|
8671
|
+
type RequestType = z$1.infer<typeof RequestTypeEnum>;
|
|
8665
8672
|
|
|
8666
8673
|
interface RequestsListFilters {
|
|
8667
8674
|
type?: RequestType;
|
|
@@ -9486,8 +9493,12 @@ declare const acquisitionListKeys: {
|
|
|
9486
9493
|
detail: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", string | null, string];
|
|
9487
9494
|
telemetry: (organizationId: string | null) => readonly ["acquisition-lists", "telemetry", string | null];
|
|
9488
9495
|
progress: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "progress", string | null, string];
|
|
9489
|
-
executions: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "executions", string | null, string];
|
|
9496
|
+
executions: (organizationId: string | null, listId: string, filters?: ListExecutionsFilters) => readonly ["acquisition-lists", "executions", string | null, string, string | null, number | null];
|
|
9490
9497
|
};
|
|
9498
|
+
interface ListExecutionsFilters {
|
|
9499
|
+
resourceId?: string | null;
|
|
9500
|
+
limit?: number;
|
|
9501
|
+
}
|
|
9491
9502
|
declare function useLists(): _tanstack_react_query.UseQueryResult<{
|
|
9492
9503
|
id: string;
|
|
9493
9504
|
organizationId: string;
|
|
@@ -9515,6 +9526,7 @@ declare function useLists(): _tanstack_react_query.UseQueryResult<{
|
|
|
9515
9526
|
dependsOn?: string[] | undefined;
|
|
9516
9527
|
}[];
|
|
9517
9528
|
} | undefined;
|
|
9529
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9518
9530
|
};
|
|
9519
9531
|
launchedAt: string | null;
|
|
9520
9532
|
completedAt: string | null;
|
|
@@ -9569,6 +9581,7 @@ declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
|
|
|
9569
9581
|
dependsOn?: string[] | undefined;
|
|
9570
9582
|
}[];
|
|
9571
9583
|
} | undefined;
|
|
9584
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9572
9585
|
};
|
|
9573
9586
|
launchedAt: string | null;
|
|
9574
9587
|
completedAt: string | null;
|
|
@@ -9621,13 +9634,14 @@ declare function useListProgress(listId: string): _tanstack_react_query.UseQuery
|
|
|
9621
9634
|
notAttempted: number;
|
|
9622
9635
|
}>;
|
|
9623
9636
|
}, Error>;
|
|
9624
|
-
declare function useListExecutions(listId: string): _tanstack_react_query.UseQueryResult<{
|
|
9637
|
+
declare function useListExecutions(listId: string, filters?: ListExecutionsFilters): _tanstack_react_query.UseQueryResult<{
|
|
9625
9638
|
executionId: string;
|
|
9626
9639
|
resourceId: string;
|
|
9627
9640
|
status: string;
|
|
9628
9641
|
createdAt: string;
|
|
9629
9642
|
completedAt: string | null;
|
|
9630
9643
|
durationMs: number | null;
|
|
9644
|
+
input?: unknown;
|
|
9631
9645
|
}[], Error>;
|
|
9632
9646
|
declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
|
|
9633
9647
|
id: string;
|
|
@@ -9656,6 +9670,7 @@ declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
|
|
|
9656
9670
|
dependsOn?: string[] | undefined;
|
|
9657
9671
|
}[];
|
|
9658
9672
|
} | undefined;
|
|
9673
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9659
9674
|
};
|
|
9660
9675
|
launchedAt: string | null;
|
|
9661
9676
|
completedAt: string | null;
|
|
@@ -9737,6 +9752,7 @@ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutatio
|
|
|
9737
9752
|
dependsOn?: string[] | undefined;
|
|
9738
9753
|
}[];
|
|
9739
9754
|
} | undefined;
|
|
9755
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9740
9756
|
};
|
|
9741
9757
|
launchedAt: string | null;
|
|
9742
9758
|
completedAt: string | null;
|
|
@@ -9797,6 +9813,7 @@ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseM
|
|
|
9797
9813
|
dependsOn?: string[] | undefined;
|
|
9798
9814
|
}[];
|
|
9799
9815
|
} | undefined;
|
|
9816
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9800
9817
|
};
|
|
9801
9818
|
launchedAt: string | null;
|
|
9802
9819
|
completedAt: string | null;
|
|
@@ -9846,6 +9863,7 @@ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseM
|
|
|
9846
9863
|
order?: number | undefined;
|
|
9847
9864
|
}[] | undefined;
|
|
9848
9865
|
} | undefined;
|
|
9866
|
+
stepConfig?: Record<string, unknown> | undefined;
|
|
9849
9867
|
}, unknown>;
|
|
9850
9868
|
declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
|
|
9851
9869
|
|
|
@@ -10652,49 +10670,49 @@ declare function useDeleteWebhookEndpoint(): _tanstack_react_query.UseMutationRe
|
|
|
10652
10670
|
*
|
|
10653
10671
|
* The `key` and `id` are generated server-side and not accepted in the request.
|
|
10654
10672
|
*/
|
|
10655
|
-
declare const CreateWebhookEndpointRequestSchema: z.ZodObject<{
|
|
10656
|
-
name: z.ZodString;
|
|
10657
|
-
resourceId: z.ZodOptional<z.ZodString>;
|
|
10658
|
-
description: z.ZodOptional<z.ZodString>;
|
|
10659
|
-
}, z.core.$strict>;
|
|
10660
|
-
type CreateWebhookEndpointRequest = z.infer<typeof CreateWebhookEndpointRequestSchema>;
|
|
10673
|
+
declare const CreateWebhookEndpointRequestSchema: z$1.ZodObject<{
|
|
10674
|
+
name: z$1.ZodString;
|
|
10675
|
+
resourceId: z$1.ZodOptional<z$1.ZodString>;
|
|
10676
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
10677
|
+
}, z$1.core.$strict>;
|
|
10678
|
+
type CreateWebhookEndpointRequest = z$1.infer<typeof CreateWebhookEndpointRequestSchema>;
|
|
10661
10679
|
/**
|
|
10662
10680
|
* PATCH /api/webhook-endpoints/:id - Update an existing webhook endpoint
|
|
10663
10681
|
*
|
|
10664
10682
|
* At least one field must be provided.
|
|
10665
10683
|
*/
|
|
10666
|
-
declare const UpdateWebhookEndpointRequestSchema: z.ZodObject<{
|
|
10667
|
-
name: z.ZodOptional<z.ZodString>;
|
|
10668
|
-
description: z.ZodOptional<z.ZodString>;
|
|
10669
|
-
resourceId: z.ZodOptional<z.ZodString>;
|
|
10670
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
10684
|
+
declare const UpdateWebhookEndpointRequestSchema: z$1.ZodObject<{
|
|
10685
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
10686
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
10687
|
+
resourceId: z$1.ZodOptional<z$1.ZodString>;
|
|
10688
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
10671
10689
|
active: "active";
|
|
10672
10690
|
paused: "paused";
|
|
10673
10691
|
}>>;
|
|
10674
|
-
}, z.core.$strict>;
|
|
10675
|
-
type UpdateWebhookEndpointRequest = z.infer<typeof UpdateWebhookEndpointRequestSchema>;
|
|
10692
|
+
}, z$1.core.$strict>;
|
|
10693
|
+
type UpdateWebhookEndpointRequest = z$1.infer<typeof UpdateWebhookEndpointRequestSchema>;
|
|
10676
10694
|
/**
|
|
10677
10695
|
* Response shape for a single webhook endpoint.
|
|
10678
10696
|
* NOT strict — response schemas allow extra fields for forward compatibility.
|
|
10679
10697
|
*/
|
|
10680
|
-
declare const WebhookEndpointResponseSchema: z.ZodObject<{
|
|
10681
|
-
id: z.ZodString;
|
|
10682
|
-
organizationId: z.ZodString;
|
|
10683
|
-
key: z.ZodOptional<z.ZodString>;
|
|
10684
|
-
keyPrefix: z.ZodNullable<z.ZodString>;
|
|
10685
|
-
name: z.ZodString;
|
|
10686
|
-
description: z.ZodNullable<z.ZodString>;
|
|
10687
|
-
resourceId: z.ZodNullable<z.ZodString>;
|
|
10688
|
-
status: z.ZodEnum<{
|
|
10698
|
+
declare const WebhookEndpointResponseSchema: z$1.ZodObject<{
|
|
10699
|
+
id: z$1.ZodString;
|
|
10700
|
+
organizationId: z$1.ZodString;
|
|
10701
|
+
key: z$1.ZodOptional<z$1.ZodString>;
|
|
10702
|
+
keyPrefix: z$1.ZodNullable<z$1.ZodString>;
|
|
10703
|
+
name: z$1.ZodString;
|
|
10704
|
+
description: z$1.ZodNullable<z$1.ZodString>;
|
|
10705
|
+
resourceId: z$1.ZodNullable<z$1.ZodString>;
|
|
10706
|
+
status: z$1.ZodEnum<{
|
|
10689
10707
|
active: "active";
|
|
10690
10708
|
paused: "paused";
|
|
10691
10709
|
}>;
|
|
10692
|
-
lastTriggeredAt: z.ZodNullable<z.ZodString>;
|
|
10693
|
-
requestCount: z.ZodNumber;
|
|
10694
|
-
createdAt: z.ZodString;
|
|
10695
|
-
updatedAt: z.ZodString;
|
|
10696
|
-
}, z.core.$strip>;
|
|
10697
|
-
type WebhookEndpointResponse = z.infer<typeof WebhookEndpointResponseSchema>;
|
|
10710
|
+
lastTriggeredAt: z$1.ZodNullable<z$1.ZodString>;
|
|
10711
|
+
requestCount: z$1.ZodNumber;
|
|
10712
|
+
createdAt: z$1.ZodString;
|
|
10713
|
+
updatedAt: z$1.ZodString;
|
|
10714
|
+
}, z$1.core.$strip>;
|
|
10715
|
+
type WebhookEndpointResponse = z$1.infer<typeof WebhookEndpointResponseSchema>;
|
|
10698
10716
|
|
|
10699
10717
|
declare function useUpdateWebhookEndpoint(): _tanstack_react_query.UseMutationResult<{
|
|
10700
10718
|
id: string;
|
|
@@ -11740,4 +11758,4 @@ declare function InitializationProvider({ children }: {
|
|
|
11740
11758
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
11741
11759
|
|
|
11742
11760
|
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, OAUTH_POPUP_CHECK_INTERVAL, 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, useCommandViewLayout, 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, useGraphStats, 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 };
|
|
11743
|
-
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, ListBuilderWorkflowFormProps, ListCredentialsResponse, 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 };
|
|
11761
|
+
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, ListBuilderWorkflowFormProps, 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 };
|