@elevasis/ui 2.3.0 → 2.4.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/{chunk-F6RBK7NJ.js → chunk-22UVE3RA.js} +1 -1
- package/dist/{chunk-OCP2MBTY.js → chunk-27COZ5AH.js} +3 -118
- package/dist/chunk-2DZACNOX.js +1111 -0
- package/dist/chunk-3ONP2CEB.js +1842 -0
- package/dist/{chunk-ZY4MWZW2.js → chunk-5XGBMKUY.js} +3 -3
- package/dist/chunk-BZZCNLT6.js +12 -0
- package/dist/{chunk-SWIAK47F.js → chunk-G3G2QEB6.js} +5 -5
- package/dist/chunk-IDACMRGQ.js +115 -0
- package/dist/{chunk-2XWEOJSX.js → chunk-IPRMGSCV.js} +1 -1
- package/dist/chunk-J5KWNRSD.js +45 -0
- package/dist/{chunk-NKV5MEWQ.js → chunk-KRTZTBVP.js} +10 -8
- package/dist/{chunk-Q3FTQP2M.js → chunk-PEZ4WOPF.js} +1 -1
- package/dist/chunk-TUMSNGTX.js +35 -0
- package/dist/{chunk-PEATQEEP.js → chunk-WN764MR7.js} +2 -2
- package/dist/chunk-WSL5MNAI.js +955 -0
- package/dist/{chunk-IWFIKQR5.js → chunk-ZG7MLOBE.js} +1 -1
- package/dist/components/index.css +10 -14
- package/dist/components/index.js +46 -3922
- package/dist/features/auth/index.css +10 -14
- package/dist/features/crm/index.css +589 -0
- package/dist/features/crm/index.d.ts +2833 -0
- package/dist/features/crm/index.js +33 -0
- package/dist/features/dashboard/index.css +10 -14
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.css +589 -0
- package/dist/features/delivery/index.d.ts +2648 -0
- package/dist/features/delivery/index.js +33 -0
- package/dist/features/lead-gen/index.css +589 -0
- package/dist/features/lead-gen/index.d.ts +451 -0
- package/dist/features/lead-gen/index.js +42 -0
- package/dist/features/monitoring/index.css +10 -14
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.css +10 -14
- package/dist/features/operations/index.js +10 -8
- package/dist/features/seo/index.d.ts +41 -0
- package/dist/features/seo/index.js +5 -0
- package/dist/features/settings/index.css +10 -14
- package/dist/features/settings/index.js +4 -4
- package/dist/graph/index.css +0 -14
- package/dist/graph/index.js +1 -1
- package/dist/hooks/index.css +10 -14
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.css +10 -14
- package/dist/hooks/published.js +2 -2
- package/dist/index.css +10 -14
- package/dist/index.js +4 -4
- package/dist/layout/index.js +3 -1
- package/package.json +19 -3
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentType, ReactNode } from 'react';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
|
+
|
|
6
|
+
declare const LeadGenSidebar: () => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const LeadGenSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare const LeadGenSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Full ListConfig shape. `qualification` is required; everything else optional.
|
|
14
|
+
* Matches `acq_lists.config` jsonb and ListConfig type in types.ts.
|
|
15
|
+
*/
|
|
16
|
+
declare const ListConfigSchema: z.ZodObject<{
|
|
17
|
+
qualification: z.ZodObject<{
|
|
18
|
+
targetDescription: z.ZodString;
|
|
19
|
+
minReviewCount: z.ZodNumber;
|
|
20
|
+
minRating: z.ZodNumber;
|
|
21
|
+
excludeFranchises: z.ZodBoolean;
|
|
22
|
+
customRules: z.ZodString;
|
|
23
|
+
}, z.core.$strip>;
|
|
24
|
+
enrichment: z.ZodOptional<z.ZodObject<{
|
|
25
|
+
emailDiscovery: z.ZodOptional<z.ZodObject<{
|
|
26
|
+
primary: z.ZodEnum<{
|
|
27
|
+
tomba: "tomba";
|
|
28
|
+
anymailfinder: "anymailfinder";
|
|
29
|
+
}>;
|
|
30
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
33
|
+
provider: z.ZodLiteral<"millionverifier">;
|
|
34
|
+
threshold: z.ZodOptional<z.ZodEnum<{
|
|
35
|
+
ok: "ok";
|
|
36
|
+
"ok+catch_all": "ok+catch_all";
|
|
37
|
+
}>>;
|
|
38
|
+
}, z.core.$strip>>;
|
|
39
|
+
}, z.core.$strip>>;
|
|
40
|
+
personalization: z.ZodOptional<z.ZodObject<{
|
|
41
|
+
industryContext: z.ZodOptional<z.ZodString>;
|
|
42
|
+
emailBody: z.ZodOptional<z.ZodString>;
|
|
43
|
+
creativeDirection: z.ZodOptional<z.ZodString>;
|
|
44
|
+
exclusionRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45
|
+
}, z.core.$strip>>;
|
|
46
|
+
pipeline: z.ZodOptional<z.ZodObject<{
|
|
47
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
48
|
+
key: z.ZodString;
|
|
49
|
+
label: z.ZodString;
|
|
50
|
+
resourceId: z.ZodString;
|
|
51
|
+
inputTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
52
|
+
enabled: z.ZodBoolean;
|
|
53
|
+
order: z.ZodNumber;
|
|
54
|
+
}, z.core.$strip>>;
|
|
55
|
+
}, z.core.$strip>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
58
|
+
search: z.ZodOptional<z.ZodString>;
|
|
59
|
+
listId: z.ZodOptional<z.ZodString>;
|
|
60
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
61
|
+
website: z.ZodOptional<z.ZodString>;
|
|
62
|
+
segment: z.ZodOptional<z.ZodString>;
|
|
63
|
+
category: z.ZodOptional<z.ZodString>;
|
|
64
|
+
batchId: z.ZodOptional<z.ZodString>;
|
|
65
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
66
|
+
active: "active";
|
|
67
|
+
invalid: "invalid";
|
|
68
|
+
}>>;
|
|
69
|
+
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
70
|
+
}, z.core.$strict>;
|
|
71
|
+
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
72
|
+
search: z.ZodOptional<z.ZodString>;
|
|
73
|
+
listId: z.ZodOptional<z.ZodString>;
|
|
74
|
+
openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
75
|
+
batchId: z.ZodOptional<z.ZodString>;
|
|
76
|
+
contactStatus: z.ZodOptional<z.ZodEnum<{
|
|
77
|
+
active: "active";
|
|
78
|
+
invalid: "invalid";
|
|
79
|
+
}>>;
|
|
80
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
81
|
+
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
82
|
+
}, z.core.$strict>;
|
|
83
|
+
declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
84
|
+
id: z.ZodString;
|
|
85
|
+
organizationId: z.ZodString;
|
|
86
|
+
name: z.ZodString;
|
|
87
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
88
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
89
|
+
website: z.ZodNullable<z.ZodString>;
|
|
90
|
+
numEmployees: z.ZodNullable<z.ZodNumber>;
|
|
91
|
+
foundedYear: z.ZodNullable<z.ZodNumber>;
|
|
92
|
+
locationCity: z.ZodNullable<z.ZodString>;
|
|
93
|
+
locationState: z.ZodNullable<z.ZodString>;
|
|
94
|
+
category: z.ZodNullable<z.ZodString>;
|
|
95
|
+
categoryPain: z.ZodNullable<z.ZodString>;
|
|
96
|
+
segment: z.ZodNullable<z.ZodString>;
|
|
97
|
+
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
98
|
+
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
99
|
+
source: z.ZodNullable<z.ZodString>;
|
|
100
|
+
batchId: z.ZodNullable<z.ZodString>;
|
|
101
|
+
status: z.ZodEnum<{
|
|
102
|
+
active: "active";
|
|
103
|
+
invalid: "invalid";
|
|
104
|
+
}>;
|
|
105
|
+
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
106
|
+
createdAt: z.ZodString;
|
|
107
|
+
updatedAt: z.ZodString;
|
|
108
|
+
}, z.core.$strip>;
|
|
109
|
+
declare const AcqContactResponseSchema: z.ZodObject<{
|
|
110
|
+
id: z.ZodString;
|
|
111
|
+
organizationId: z.ZodString;
|
|
112
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
113
|
+
email: z.ZodString;
|
|
114
|
+
emailValid: z.ZodNullable<z.ZodEnum<{
|
|
115
|
+
VALID: "VALID";
|
|
116
|
+
INVALID: "INVALID";
|
|
117
|
+
RISKY: "RISKY";
|
|
118
|
+
UNKNOWN: "UNKNOWN";
|
|
119
|
+
}>>;
|
|
120
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
121
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
122
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
123
|
+
title: z.ZodNullable<z.ZodString>;
|
|
124
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
125
|
+
filterReason: z.ZodNullable<z.ZodString>;
|
|
126
|
+
openingLine: z.ZodNullable<z.ZodString>;
|
|
127
|
+
source: z.ZodNullable<z.ZodString>;
|
|
128
|
+
sourceId: z.ZodNullable<z.ZodString>;
|
|
129
|
+
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
130
|
+
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
131
|
+
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
132
|
+
batchId: z.ZodNullable<z.ZodString>;
|
|
133
|
+
status: z.ZodEnum<{
|
|
134
|
+
active: "active";
|
|
135
|
+
invalid: "invalid";
|
|
136
|
+
}>;
|
|
137
|
+
createdAt: z.ZodString;
|
|
138
|
+
updatedAt: z.ZodString;
|
|
139
|
+
}, z.core.$strip>;
|
|
140
|
+
type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
|
|
141
|
+
type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
|
|
142
|
+
type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
143
|
+
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
144
|
+
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
145
|
+
|
|
146
|
+
interface FeatureNavLink {
|
|
147
|
+
label: string;
|
|
148
|
+
link: string;
|
|
149
|
+
featureKey?: string;
|
|
150
|
+
onClick?: () => void;
|
|
151
|
+
links?: FeatureNavLink[];
|
|
152
|
+
}
|
|
153
|
+
interface FeatureNavEntry {
|
|
154
|
+
label: string;
|
|
155
|
+
icon: ComponentType;
|
|
156
|
+
link?: string;
|
|
157
|
+
featureKey?: string;
|
|
158
|
+
requiresAdmin?: boolean;
|
|
159
|
+
dataOnboardingTourId?: string;
|
|
160
|
+
links?: FeatureNavLink[];
|
|
161
|
+
}
|
|
162
|
+
type FeatureSidebarComponent = ComponentType;
|
|
163
|
+
interface FeatureModule {
|
|
164
|
+
key: string;
|
|
165
|
+
label?: string;
|
|
166
|
+
navEntry?: FeatureNavEntry;
|
|
167
|
+
sidebar?: FeatureSidebarComponent;
|
|
168
|
+
subshellRoutes?: string[];
|
|
169
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
170
|
+
}
|
|
171
|
+
interface OrganizationGraphFeatureBridge {
|
|
172
|
+
surfaceId: string;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
declare const leadGenManifest: FeatureModule;
|
|
176
|
+
|
|
177
|
+
interface LeadGenRouteLink {
|
|
178
|
+
label: string;
|
|
179
|
+
to: string;
|
|
180
|
+
}
|
|
181
|
+
declare const LEAD_GEN_ROUTE_LINKS: LeadGenRouteLink[];
|
|
182
|
+
declare function LeadGenRouteShell({ title, caption, body, links }: {
|
|
183
|
+
title: string;
|
|
184
|
+
caption: string;
|
|
185
|
+
body: ReactNode;
|
|
186
|
+
links?: LeadGenRouteLink[];
|
|
187
|
+
}): react_jsx_runtime.JSX.Element;
|
|
188
|
+
declare function formatDate(dateValue: string | Date): string;
|
|
189
|
+
declare function getStatusColor(status: string | null): "green" | "red" | "gray";
|
|
190
|
+
declare function getEnrichmentColor(status: string): "green" | "red" | "gray" | "yellow";
|
|
191
|
+
declare function getEnrichmentStatus(enrichmentData: Record<string, unknown> | null | undefined): "failed" | "pending" | "complete";
|
|
192
|
+
type LeadGenCompanyListItem = AcqCompanyResponse & {
|
|
193
|
+
contactCount: number;
|
|
194
|
+
};
|
|
195
|
+
type LeadGenContactListItem = AcqContactResponse & {
|
|
196
|
+
company?: AcqCompanyResponse | null;
|
|
197
|
+
};
|
|
198
|
+
declare function CompanyDetailModal({ company, onClose }: {
|
|
199
|
+
company: LeadGenCompanyListItem | null;
|
|
200
|
+
onClose: () => void;
|
|
201
|
+
}): react_jsx_runtime.JSX.Element;
|
|
202
|
+
declare function ContactDetailModal({ contact, onClose }: {
|
|
203
|
+
contact: LeadGenContactListItem | null;
|
|
204
|
+
onClose: () => void;
|
|
205
|
+
}): react_jsx_runtime.JSX.Element;
|
|
206
|
+
declare const LIST_TEMPLATE_OPTIONS: readonly [{
|
|
207
|
+
readonly value: "blank";
|
|
208
|
+
readonly label: "Blank";
|
|
209
|
+
readonly description: "Create an empty draft list with qualification defaults and no pipeline steps.";
|
|
210
|
+
}, {
|
|
211
|
+
readonly value: "full_pipeline";
|
|
212
|
+
readonly label: "Full 6-Stage";
|
|
213
|
+
readonly description: "Create a complete lead-gen pipeline from scrape through personalization.";
|
|
214
|
+
}, {
|
|
215
|
+
readonly value: "personalize_only";
|
|
216
|
+
readonly label: "Personalize Only";
|
|
217
|
+
readonly description: "Start with personalization and upload-focused steps for already-prepared contacts.";
|
|
218
|
+
}, {
|
|
219
|
+
readonly value: "email_refresh";
|
|
220
|
+
readonly label: "Email Refresh";
|
|
221
|
+
readonly description: "Run discovery, verification, and personalization for an existing company set.";
|
|
222
|
+
}];
|
|
223
|
+
type LeadGenListTemplateValue = (typeof LIST_TEMPLATE_OPTIONS)[number]['value'];
|
|
224
|
+
declare function buildListConfig(template: LeadGenListTemplateValue, targetDescription: string): ListConfigInput;
|
|
225
|
+
|
|
226
|
+
interface AcqCompanyWithCount extends AcqCompanyResponse {
|
|
227
|
+
contactCount: number;
|
|
228
|
+
}
|
|
229
|
+
declare const companyKeys: {
|
|
230
|
+
all: readonly ["acquisition-companies"];
|
|
231
|
+
list: (organizationId: string | null, filters: Partial<ListCompaniesQuery>) => readonly ["acquisition-companies", "list", string | null, Partial<{
|
|
232
|
+
search?: string | undefined;
|
|
233
|
+
listId?: string | undefined;
|
|
234
|
+
domain?: string | undefined;
|
|
235
|
+
website?: string | undefined;
|
|
236
|
+
segment?: string | undefined;
|
|
237
|
+
category?: string | undefined;
|
|
238
|
+
batchId?: string | undefined;
|
|
239
|
+
status?: "active" | "invalid" | undefined;
|
|
240
|
+
includeAll?: boolean | undefined;
|
|
241
|
+
}>];
|
|
242
|
+
detail: (organizationId: string | null, companyId: string) => readonly ["acquisition-companies", "detail", string | null, string];
|
|
243
|
+
};
|
|
244
|
+
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<AcqCompanyWithCount[], Error>;
|
|
245
|
+
declare function useCompany(companyId: string): _tanstack_react_query.UseQueryResult<{
|
|
246
|
+
id: string;
|
|
247
|
+
organizationId: string;
|
|
248
|
+
name: string;
|
|
249
|
+
domain: string | null;
|
|
250
|
+
linkedinUrl: string | null;
|
|
251
|
+
website: string | null;
|
|
252
|
+
numEmployees: number | null;
|
|
253
|
+
foundedYear: number | null;
|
|
254
|
+
locationCity: string | null;
|
|
255
|
+
locationState: string | null;
|
|
256
|
+
category: string | null;
|
|
257
|
+
categoryPain: string | null;
|
|
258
|
+
segment: string | null;
|
|
259
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
260
|
+
enrichmentData: Record<string, unknown> | null;
|
|
261
|
+
source: string | null;
|
|
262
|
+
batchId: string | null;
|
|
263
|
+
status: "active" | "invalid";
|
|
264
|
+
verticalResearch: string | null;
|
|
265
|
+
createdAt: string;
|
|
266
|
+
updatedAt: string;
|
|
267
|
+
} | null, Error>;
|
|
268
|
+
declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
269
|
+
id: string;
|
|
270
|
+
organizationId: string;
|
|
271
|
+
name: string;
|
|
272
|
+
domain: string | null;
|
|
273
|
+
linkedinUrl: string | null;
|
|
274
|
+
website: string | null;
|
|
275
|
+
numEmployees: number | null;
|
|
276
|
+
foundedYear: number | null;
|
|
277
|
+
locationCity: string | null;
|
|
278
|
+
locationState: string | null;
|
|
279
|
+
category: string | null;
|
|
280
|
+
categoryPain: string | null;
|
|
281
|
+
segment: string | null;
|
|
282
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
283
|
+
enrichmentData: Record<string, unknown> | null;
|
|
284
|
+
source: string | null;
|
|
285
|
+
batchId: string | null;
|
|
286
|
+
status: "active" | "invalid";
|
|
287
|
+
verticalResearch: string | null;
|
|
288
|
+
createdAt: string;
|
|
289
|
+
updatedAt: string;
|
|
290
|
+
}, Error, {
|
|
291
|
+
name: string;
|
|
292
|
+
domain?: string | undefined;
|
|
293
|
+
linkedinUrl?: string | undefined;
|
|
294
|
+
website?: string | undefined;
|
|
295
|
+
numEmployees?: number | undefined;
|
|
296
|
+
foundedYear?: number | undefined;
|
|
297
|
+
locationCity?: string | undefined;
|
|
298
|
+
locationState?: string | undefined;
|
|
299
|
+
category?: string | undefined;
|
|
300
|
+
source?: string | undefined;
|
|
301
|
+
batchId?: string | undefined;
|
|
302
|
+
verticalResearch?: string | undefined;
|
|
303
|
+
}, unknown>;
|
|
304
|
+
declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseMutationResult<{
|
|
305
|
+
id: string;
|
|
306
|
+
organizationId: string;
|
|
307
|
+
name: string;
|
|
308
|
+
domain: string | null;
|
|
309
|
+
linkedinUrl: string | null;
|
|
310
|
+
website: string | null;
|
|
311
|
+
numEmployees: number | null;
|
|
312
|
+
foundedYear: number | null;
|
|
313
|
+
locationCity: string | null;
|
|
314
|
+
locationState: string | null;
|
|
315
|
+
category: string | null;
|
|
316
|
+
categoryPain: string | null;
|
|
317
|
+
segment: string | null;
|
|
318
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
319
|
+
enrichmentData: Record<string, unknown> | null;
|
|
320
|
+
source: string | null;
|
|
321
|
+
batchId: string | null;
|
|
322
|
+
status: "active" | "invalid";
|
|
323
|
+
verticalResearch: string | null;
|
|
324
|
+
createdAt: string;
|
|
325
|
+
updatedAt: string;
|
|
326
|
+
}, Error, {
|
|
327
|
+
name?: string | undefined;
|
|
328
|
+
domain?: string | undefined;
|
|
329
|
+
linkedinUrl?: string | undefined;
|
|
330
|
+
website?: string | undefined;
|
|
331
|
+
numEmployees?: number | undefined;
|
|
332
|
+
foundedYear?: number | undefined;
|
|
333
|
+
locationCity?: string | undefined;
|
|
334
|
+
locationState?: string | undefined;
|
|
335
|
+
category?: string | undefined;
|
|
336
|
+
segment?: string | undefined;
|
|
337
|
+
pipelineStatus?: Record<string, unknown> | undefined;
|
|
338
|
+
enrichmentData?: Record<string, unknown> | undefined;
|
|
339
|
+
source?: string | undefined;
|
|
340
|
+
batchId?: string | undefined;
|
|
341
|
+
status?: "active" | "invalid" | undefined;
|
|
342
|
+
verticalResearch?: string | null | undefined;
|
|
343
|
+
}, unknown>;
|
|
344
|
+
declare function useDeleteCompanies(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
345
|
+
|
|
346
|
+
interface AcqContactWithCompany extends AcqContactResponse {
|
|
347
|
+
company?: AcqCompanyResponse | null;
|
|
348
|
+
}
|
|
349
|
+
declare const contactKeys: {
|
|
350
|
+
all: readonly ["acquisition-contacts"];
|
|
351
|
+
list: (organizationId: string | null, filters: Partial<ListContactsQuery>) => readonly ["acquisition-contacts", "list", string | null, Partial<{
|
|
352
|
+
limit: number;
|
|
353
|
+
offset: number;
|
|
354
|
+
search?: string | undefined;
|
|
355
|
+
listId?: string | undefined;
|
|
356
|
+
openingLineIsNull?: boolean | undefined;
|
|
357
|
+
batchId?: string | undefined;
|
|
358
|
+
contactStatus?: "active" | "invalid" | undefined;
|
|
359
|
+
}>];
|
|
360
|
+
detail: (organizationId: string | null, contactId: string) => readonly ["acquisition-contacts", "detail", string | null, string];
|
|
361
|
+
};
|
|
362
|
+
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<AcqContactWithCompany[], Error>;
|
|
363
|
+
declare function useContact(contactId: string): _tanstack_react_query.UseQueryResult<AcqContactWithCompany | null, Error>;
|
|
364
|
+
declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
365
|
+
id: string;
|
|
366
|
+
organizationId: string;
|
|
367
|
+
companyId: string | null;
|
|
368
|
+
email: string;
|
|
369
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
370
|
+
firstName: string | null;
|
|
371
|
+
lastName: string | null;
|
|
372
|
+
linkedinUrl: string | null;
|
|
373
|
+
title: string | null;
|
|
374
|
+
headline: string | null;
|
|
375
|
+
filterReason: string | null;
|
|
376
|
+
openingLine: string | null;
|
|
377
|
+
source: string | null;
|
|
378
|
+
sourceId: string | null;
|
|
379
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
380
|
+
enrichmentData: Record<string, unknown> | null;
|
|
381
|
+
attioPersonId: string | null;
|
|
382
|
+
batchId: string | null;
|
|
383
|
+
status: "active" | "invalid";
|
|
384
|
+
createdAt: string;
|
|
385
|
+
updatedAt: string;
|
|
386
|
+
}, Error, {
|
|
387
|
+
email: string;
|
|
388
|
+
companyId?: string | undefined;
|
|
389
|
+
firstName?: string | undefined;
|
|
390
|
+
lastName?: string | undefined;
|
|
391
|
+
linkedinUrl?: string | undefined;
|
|
392
|
+
title?: string | undefined;
|
|
393
|
+
source?: string | undefined;
|
|
394
|
+
sourceId?: string | undefined;
|
|
395
|
+
batchId?: string | undefined;
|
|
396
|
+
}, unknown>;
|
|
397
|
+
declare function useUpdateContact(contactId: string): _tanstack_react_query.UseMutationResult<{
|
|
398
|
+
id: string;
|
|
399
|
+
organizationId: string;
|
|
400
|
+
companyId: string | null;
|
|
401
|
+
email: string;
|
|
402
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
403
|
+
firstName: string | null;
|
|
404
|
+
lastName: string | null;
|
|
405
|
+
linkedinUrl: string | null;
|
|
406
|
+
title: string | null;
|
|
407
|
+
headline: string | null;
|
|
408
|
+
filterReason: string | null;
|
|
409
|
+
openingLine: string | null;
|
|
410
|
+
source: string | null;
|
|
411
|
+
sourceId: string | null;
|
|
412
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
413
|
+
enrichmentData: Record<string, unknown> | null;
|
|
414
|
+
attioPersonId: string | null;
|
|
415
|
+
batchId: string | null;
|
|
416
|
+
status: "active" | "invalid";
|
|
417
|
+
createdAt: string;
|
|
418
|
+
updatedAt: string;
|
|
419
|
+
}, Error, {
|
|
420
|
+
companyId?: string | undefined;
|
|
421
|
+
emailValid?: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | undefined;
|
|
422
|
+
firstName?: string | undefined;
|
|
423
|
+
lastName?: string | undefined;
|
|
424
|
+
linkedinUrl?: string | undefined;
|
|
425
|
+
title?: string | undefined;
|
|
426
|
+
headline?: string | undefined;
|
|
427
|
+
filterReason?: string | undefined;
|
|
428
|
+
openingLine?: string | undefined;
|
|
429
|
+
pipelineStatus?: Record<string, unknown> | undefined;
|
|
430
|
+
enrichmentData?: Record<string, unknown> | undefined;
|
|
431
|
+
status?: "active" | "invalid" | undefined;
|
|
432
|
+
}, unknown>;
|
|
433
|
+
declare function useDeleteContacts(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
434
|
+
|
|
435
|
+
declare function useDeleteLists(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
436
|
+
|
|
437
|
+
declare function LeadGenOverviewPage(): react_jsx_runtime.JSX.Element;
|
|
438
|
+
declare function LeadGenDeliverabilityPage(): react_jsx_runtime.JSX.Element;
|
|
439
|
+
|
|
440
|
+
declare function LeadGenListsPage(): react_jsx_runtime.JSX.Element;
|
|
441
|
+
|
|
442
|
+
declare function LeadGenListDetailPage({ listId }: {
|
|
443
|
+
listId: string;
|
|
444
|
+
}): react_jsx_runtime.JSX.Element;
|
|
445
|
+
|
|
446
|
+
declare function LeadGenCompaniesPage(): react_jsx_runtime.JSX.Element;
|
|
447
|
+
|
|
448
|
+
declare function LeadGenContactsPage(): react_jsx_runtime.JSX.Element;
|
|
449
|
+
|
|
450
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, buildListConfig, companyKeys, contactKeys, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useUpdateCompany, useUpdateContact };
|
|
451
|
+
export type { AcqCompanyWithCount, AcqContactWithCompany, LeadGenCompanyListItem, LeadGenContactListItem, LeadGenListTemplateValue, LeadGenRouteLink };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-3ONP2CEB.js';
|
|
2
|
+
import '../../chunk-KRTZTBVP.js';
|
|
3
|
+
import '../../chunk-ROSMICXG.js';
|
|
4
|
+
import '../../chunk-IDACMRGQ.js';
|
|
5
|
+
import '../../chunk-ZG7MLOBE.js';
|
|
6
|
+
import '../../chunk-TUMSNGTX.js';
|
|
7
|
+
import '../../chunk-BZZCNLT6.js';
|
|
8
|
+
import '../../chunk-27COZ5AH.js';
|
|
9
|
+
import '../../chunk-PDHTXPSF.js';
|
|
10
|
+
import '../../chunk-GBMNCNHX.js';
|
|
11
|
+
import '../../chunk-G3G2QEB6.js';
|
|
12
|
+
import '../../chunk-LGKLC5MG.js';
|
|
13
|
+
import '../../chunk-KFICYU6S.js';
|
|
14
|
+
import '../../chunk-YEX4MQSY.js';
|
|
15
|
+
import '../../chunk-XA34RETF.js';
|
|
16
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
17
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-IPRMGSCV.js';
|
|
18
|
+
import '../../chunk-LXHZYSMQ.js';
|
|
19
|
+
import '../../chunk-22UVE3RA.js';
|
|
20
|
+
import '../../chunk-JT7WDIZI.js';
|
|
21
|
+
import '../../chunk-47YILFON.js';
|
|
22
|
+
import '../../chunk-CYXZHBP4.js';
|
|
23
|
+
import '../../chunk-ISHNN42L.js';
|
|
24
|
+
import '../../chunk-RX4UWZZR.js';
|
|
25
|
+
import '../../chunk-Y3D3WFJG.js';
|
|
26
|
+
import '../../chunk-3KMDHCAR.js';
|
|
27
|
+
import '../../chunk-NYBEU5TE.js';
|
|
28
|
+
import '../../chunk-NVOCKXUQ.js';
|
|
29
|
+
import '../../chunk-2IFYDILW.js';
|
|
30
|
+
import '../../chunk-ELJIFLCB.js';
|
|
31
|
+
import '../../chunk-W4VYXIN7.js';
|
|
32
|
+
import '../../chunk-QJ2KCHKX.js';
|
|
33
|
+
import '../../chunk-DT3QYZVU.js';
|
|
34
|
+
import '../../chunk-SLVC5OJ2.js';
|
|
35
|
+
import '../../chunk-RNP5R5I3.js';
|
|
36
|
+
import '../../chunk-IOKL7BKE.js';
|
|
37
|
+
import '../../chunk-MTJ43R2E.js';
|
|
38
|
+
import '../../chunk-TUXTSEAF.js';
|
|
39
|
+
import '../../chunk-DD3CCMCZ.js';
|
|
40
|
+
import '../../chunk-QEPXAWE2.js';
|
|
41
|
+
import '../../chunk-BRJ3QZ4E.js';
|
|
42
|
+
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -299,14 +299,6 @@
|
|
|
299
299
|
opacity: 0;
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
303
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
304
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
305
|
-
outline: none !important;
|
|
306
|
-
}
|
|
307
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
308
|
-
box-shadow: none;
|
|
309
|
-
}
|
|
310
302
|
.graphContainer {
|
|
311
303
|
position: relative;
|
|
312
304
|
background-image:
|
|
@@ -347,12 +339,6 @@
|
|
|
347
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
348
340
|
position: relative;
|
|
349
341
|
}
|
|
350
|
-
.node :global(.react-flow__node.selected),
|
|
351
|
-
.node :global(.react-flow__node:focus),
|
|
352
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
353
|
-
outline: none !important;
|
|
354
|
-
box-shadow: none !important;
|
|
355
|
-
}
|
|
356
342
|
.node:nth-child(1) {
|
|
357
343
|
animation-delay: 0.05s;
|
|
358
344
|
}
|
|
@@ -591,3 +577,13 @@
|
|
|
591
577
|
transform: none;
|
|
592
578
|
}
|
|
593
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-5XGBMKUY.js';
|
|
2
|
+
import '../../chunk-ZG7MLOBE.js';
|
|
2
3
|
import '../../chunk-PDHTXPSF.js';
|
|
3
|
-
import '../../chunk-IWFIKQR5.js';
|
|
4
4
|
import '../../chunk-GBMNCNHX.js';
|
|
5
5
|
import '../../chunk-LGKLC5MG.js';
|
|
6
6
|
import '../../chunk-KFICYU6S.js';
|
|
7
7
|
import '../../chunk-YEX4MQSY.js';
|
|
8
|
-
import '../../chunk-Q3FTQP2M.js';
|
|
9
|
-
import '../../chunk-2XWEOJSX.js';
|
|
10
|
-
import '../../chunk-LXHZYSMQ.js';
|
|
11
|
-
import '../../chunk-F6RBK7NJ.js';
|
|
12
8
|
import '../../chunk-XA34RETF.js';
|
|
9
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
10
|
+
import '../../chunk-IPRMGSCV.js';
|
|
11
|
+
import '../../chunk-LXHZYSMQ.js';
|
|
12
|
+
import '../../chunk-22UVE3RA.js';
|
|
13
13
|
import '../../chunk-JT7WDIZI.js';
|
|
14
14
|
import '../../chunk-47YILFON.js';
|
|
15
15
|
import '../../chunk-CYXZHBP4.js';
|
|
@@ -299,14 +299,6 @@
|
|
|
299
299
|
opacity: 0;
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
303
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
304
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
305
|
-
outline: none !important;
|
|
306
|
-
}
|
|
307
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
308
|
-
box-shadow: none;
|
|
309
|
-
}
|
|
310
302
|
.graphContainer {
|
|
311
303
|
position: relative;
|
|
312
304
|
background-image:
|
|
@@ -347,12 +339,6 @@
|
|
|
347
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
348
340
|
position: relative;
|
|
349
341
|
}
|
|
350
|
-
.node :global(.react-flow__node.selected),
|
|
351
|
-
.node :global(.react-flow__node:focus),
|
|
352
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
353
|
-
outline: none !important;
|
|
354
|
-
box-shadow: none !important;
|
|
355
|
-
}
|
|
356
342
|
.node:nth-child(1) {
|
|
357
343
|
animation-delay: 0.05s;
|
|
358
344
|
}
|
|
@@ -591,3 +577,13 @@
|
|
|
591
577
|
transform: none;
|
|
592
578
|
}
|
|
593
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-KRTZTBVP.js';
|
|
2
2
|
import '../../chunk-ROSMICXG.js';
|
|
3
|
-
import '../../chunk-
|
|
4
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-IDACMRGQ.js';
|
|
4
|
+
import '../../chunk-ZG7MLOBE.js';
|
|
5
|
+
import '../../chunk-BZZCNLT6.js';
|
|
6
|
+
import '../../chunk-27COZ5AH.js';
|
|
5
7
|
import '../../chunk-GBMNCNHX.js';
|
|
6
|
-
export { OperationsOverview } from '../../chunk-
|
|
8
|
+
export { OperationsOverview } from '../../chunk-G3G2QEB6.js';
|
|
7
9
|
import '../../chunk-LGKLC5MG.js';
|
|
8
10
|
import '../../chunk-KFICYU6S.js';
|
|
9
11
|
import '../../chunk-YEX4MQSY.js';
|
|
10
|
-
import '../../chunk-Q3FTQP2M.js';
|
|
11
|
-
import '../../chunk-2XWEOJSX.js';
|
|
12
|
-
import '../../chunk-LXHZYSMQ.js';
|
|
13
|
-
import '../../chunk-F6RBK7NJ.js';
|
|
14
12
|
import '../../chunk-XA34RETF.js';
|
|
13
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
14
|
+
import '../../chunk-IPRMGSCV.js';
|
|
15
|
+
import '../../chunk-LXHZYSMQ.js';
|
|
16
|
+
import '../../chunk-22UVE3RA.js';
|
|
15
17
|
import '../../chunk-JT7WDIZI.js';
|
|
16
18
|
import '../../chunk-47YILFON.js';
|
|
17
19
|
import '../../chunk-CYXZHBP4.js';
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ComponentType } from 'react';
|
|
3
|
+
|
|
4
|
+
declare const SEOSidebar: () => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const SEOSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const SEOSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
interface FeatureNavLink {
|
|
11
|
+
label: string;
|
|
12
|
+
link: string;
|
|
13
|
+
featureKey?: string;
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
links?: FeatureNavLink[];
|
|
16
|
+
}
|
|
17
|
+
interface FeatureNavEntry {
|
|
18
|
+
label: string;
|
|
19
|
+
icon: ComponentType;
|
|
20
|
+
link?: string;
|
|
21
|
+
featureKey?: string;
|
|
22
|
+
requiresAdmin?: boolean;
|
|
23
|
+
dataOnboardingTourId?: string;
|
|
24
|
+
links?: FeatureNavLink[];
|
|
25
|
+
}
|
|
26
|
+
type FeatureSidebarComponent = ComponentType;
|
|
27
|
+
interface FeatureModule {
|
|
28
|
+
key: string;
|
|
29
|
+
label?: string;
|
|
30
|
+
navEntry?: FeatureNavEntry;
|
|
31
|
+
sidebar?: FeatureSidebarComponent;
|
|
32
|
+
subshellRoutes?: string[];
|
|
33
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
34
|
+
}
|
|
35
|
+
interface OrganizationGraphFeatureBridge {
|
|
36
|
+
surfaceId: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare const seoManifest: FeatureModule;
|
|
40
|
+
|
|
41
|
+
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest };
|