@elevasis/ui 2.4.0 → 2.5.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-2DZACNOX.js → chunk-3VTACYBT.js} +4 -1
- package/dist/{chunk-IPRMGSCV.js → chunk-5RYRL7DP.js} +1 -1
- package/dist/{chunk-WN764MR7.js → chunk-CKBJVNSA.js} +3 -2
- package/dist/{chunk-PEZ4WOPF.js → chunk-DRBMVLJE.js} +2 -2
- package/dist/{chunk-JT7WDIZI.js → chunk-GEJZ6WLM.js} +1 -1
- package/dist/{chunk-WSL5MNAI.js → chunk-RBRSRRG4.js} +5 -2
- package/dist/{chunk-KRTZTBVP.js → chunk-S5EXLTGK.js} +8 -5
- package/dist/{chunk-ISHNN42L.js → chunk-TNYUWKSJ.js} +225 -33
- package/dist/{chunk-ZG7MLOBE.js → chunk-URFYQRJO.js} +1 -1
- package/dist/{chunk-G3G2QEB6.js → chunk-UXYE5ZBY.js} +2 -2
- package/dist/{chunk-3ONP2CEB.js → chunk-XGUMNEIR.js} +5 -2
- package/dist/{chunk-J5KWNRSD.js → chunk-YIWLA2B6.js} +1 -0
- package/dist/{chunk-5XGBMKUY.js → chunk-ZGV3X3UQ.js} +3 -2
- package/dist/components/index.d.ts +127 -99
- package/dist/components/index.js +16 -16
- package/dist/features/crm/index.d.ts +24 -0
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.d.ts +25 -0
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.d.ts +25 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +25 -1
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.d.ts +25 -0
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +24 -0
- package/dist/features/operations/index.js +7 -7
- package/dist/features/seo/index.d.ts +25 -0
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +24 -0
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +239 -239
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +169 -169
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +303 -241
- package/dist/index.js +4 -4
- package/dist/provider/index.d.ts +64 -2
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +64 -2
- package/dist/provider/published.js +1 -1
- package/dist/types/index.d.ts +134 -134
- package/package.json +4 -3
- package/src/README.md +29 -0
- package/src/api/README.md +18 -0
- package/src/auth/README.md +18 -0
- package/src/components/README.md +24 -0
- package/src/execution/README.md +16 -0
- package/src/features/README.md +28 -0
- package/src/graph/README.md +16 -0
- package/src/hooks/README.md +24 -0
- package/src/initialization/README.md +19 -0
- package/src/organization/README.md +18 -0
- package/src/profile/README.md +19 -0
- package/src/provider/README.md +31 -0
- package/src/router/README.md +18 -0
- package/src/sse/README.md +13 -0
- package/src/theme/README.md +23 -0
- package/src/types/README.md +16 -0
- package/src/utils/README.md +18 -0
- package/src/zustand/README.md +18 -0
|
@@ -4190,6 +4190,88 @@ type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables
|
|
|
4190
4190
|
|
|
4191
4191
|
type SupabaseUserProfile = Tables<'users'>;
|
|
4192
4192
|
|
|
4193
|
+
/** Raw database row type for acq_deals table */
|
|
4194
|
+
type AcqDealRow = Database['public']['Tables']['acq_deals']['Row'];
|
|
4195
|
+
type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
|
|
4196
|
+
interface DealContact {
|
|
4197
|
+
id: string;
|
|
4198
|
+
first_name: string | null;
|
|
4199
|
+
last_name: string | null;
|
|
4200
|
+
email: string;
|
|
4201
|
+
title: string | null;
|
|
4202
|
+
headline: string | null;
|
|
4203
|
+
linkedin_url: string | null;
|
|
4204
|
+
pipeline_status: Record<string, unknown> | null;
|
|
4205
|
+
enrichment_data: Record<string, unknown> | null;
|
|
4206
|
+
company: {
|
|
4207
|
+
id: string;
|
|
4208
|
+
name: string;
|
|
4209
|
+
domain: string | null;
|
|
4210
|
+
website: string | null;
|
|
4211
|
+
linkedin_url: string | null;
|
|
4212
|
+
segment: string | null;
|
|
4213
|
+
category: string | null;
|
|
4214
|
+
num_employees: number | null;
|
|
4215
|
+
} | null;
|
|
4216
|
+
}
|
|
4217
|
+
interface DealFilters {
|
|
4218
|
+
stage?: DealStage;
|
|
4219
|
+
search?: string;
|
|
4220
|
+
}
|
|
4221
|
+
/** Deal list item with joined contact and company data */
|
|
4222
|
+
interface DealListItem extends AcqDealRow {
|
|
4223
|
+
contact: DealContact | null;
|
|
4224
|
+
}
|
|
4225
|
+
type DealDetail = DealListItem;
|
|
4226
|
+
/** Task kind options for a deal task (human follow-up action type) */
|
|
4227
|
+
type AcqDealTaskKind = 'call' | 'email' | 'meeting' | 'other';
|
|
4228
|
+
/**
|
|
4229
|
+
* A CRM to-do item attached to a deal representing a human follow-up action.
|
|
4230
|
+
* Transformed from AcqDealTaskRow with camelCase properties.
|
|
4231
|
+
*/
|
|
4232
|
+
interface AcqDealTask {
|
|
4233
|
+
id: string;
|
|
4234
|
+
organizationId: string;
|
|
4235
|
+
dealId: string;
|
|
4236
|
+
title: string;
|
|
4237
|
+
description: string | null;
|
|
4238
|
+
kind: AcqDealTaskKind;
|
|
4239
|
+
dueAt: string | null;
|
|
4240
|
+
assigneeUserId: string | null;
|
|
4241
|
+
completedAt: string | null;
|
|
4242
|
+
completedByUserId: string | null;
|
|
4243
|
+
createdAt: string;
|
|
4244
|
+
updatedAt: string;
|
|
4245
|
+
createdByUserId: string | null;
|
|
4246
|
+
}
|
|
4247
|
+
/**
|
|
4248
|
+
* Live-scan aggregate telemetry for a single list, computed on demand from
|
|
4249
|
+
* the list junction tables and current contact deliverability state.
|
|
4250
|
+
*/
|
|
4251
|
+
interface ListTelemetry {
|
|
4252
|
+
listId: string;
|
|
4253
|
+
totalCompanies: number;
|
|
4254
|
+
totalContacts: number;
|
|
4255
|
+
stageCounts: {
|
|
4256
|
+
populated: number;
|
|
4257
|
+
extracted: number;
|
|
4258
|
+
qualified: number;
|
|
4259
|
+
discovered: number;
|
|
4260
|
+
verified: number;
|
|
4261
|
+
personalized: number;
|
|
4262
|
+
uploaded: number;
|
|
4263
|
+
};
|
|
4264
|
+
deliverability: {
|
|
4265
|
+
valid: number;
|
|
4266
|
+
risky: number;
|
|
4267
|
+
invalid: number;
|
|
4268
|
+
unknown: number;
|
|
4269
|
+
bounced: number;
|
|
4270
|
+
};
|
|
4271
|
+
/** Reserved -- active workflow IDs associated with this list. */
|
|
4272
|
+
activeWorkflows?: string[];
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4193
4275
|
/**
|
|
4194
4276
|
* Action configuration for HITL tasks
|
|
4195
4277
|
* Defines available user actions and their behavior
|
|
@@ -4435,87 +4517,93 @@ interface NotificationDTO {
|
|
|
4435
4517
|
createdAt: string;
|
|
4436
4518
|
}
|
|
4437
4519
|
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
}
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4520
|
+
declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
4521
|
+
search: z.ZodOptional<z.ZodString>;
|
|
4522
|
+
listId: z.ZodOptional<z.ZodString>;
|
|
4523
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
4524
|
+
website: z.ZodOptional<z.ZodString>;
|
|
4525
|
+
segment: z.ZodOptional<z.ZodString>;
|
|
4526
|
+
category: z.ZodOptional<z.ZodString>;
|
|
4527
|
+
batchId: z.ZodOptional<z.ZodString>;
|
|
4528
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
4529
|
+
active: "active";
|
|
4530
|
+
invalid: "invalid";
|
|
4531
|
+
}>>;
|
|
4532
|
+
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
4533
|
+
}, z.core.$strict>;
|
|
4534
|
+
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
4535
|
+
search: z.ZodOptional<z.ZodString>;
|
|
4536
|
+
listId: z.ZodOptional<z.ZodString>;
|
|
4537
|
+
openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
4538
|
+
batchId: z.ZodOptional<z.ZodString>;
|
|
4539
|
+
contactStatus: z.ZodOptional<z.ZodEnum<{
|
|
4540
|
+
active: "active";
|
|
4541
|
+
invalid: "invalid";
|
|
4542
|
+
}>>;
|
|
4543
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
4544
|
+
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
4545
|
+
}, z.core.$strict>;
|
|
4546
|
+
declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
4547
|
+
id: z.ZodString;
|
|
4548
|
+
organizationId: z.ZodString;
|
|
4549
|
+
name: z.ZodString;
|
|
4550
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
4551
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
4552
|
+
website: z.ZodNullable<z.ZodString>;
|
|
4553
|
+
numEmployees: z.ZodNullable<z.ZodNumber>;
|
|
4554
|
+
foundedYear: z.ZodNullable<z.ZodNumber>;
|
|
4555
|
+
locationCity: z.ZodNullable<z.ZodString>;
|
|
4556
|
+
locationState: z.ZodNullable<z.ZodString>;
|
|
4557
|
+
category: z.ZodNullable<z.ZodString>;
|
|
4558
|
+
categoryPain: z.ZodNullable<z.ZodString>;
|
|
4559
|
+
segment: z.ZodNullable<z.ZodString>;
|
|
4560
|
+
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4561
|
+
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4562
|
+
source: z.ZodNullable<z.ZodString>;
|
|
4563
|
+
batchId: z.ZodNullable<z.ZodString>;
|
|
4564
|
+
status: z.ZodEnum<{
|
|
4565
|
+
active: "active";
|
|
4566
|
+
invalid: "invalid";
|
|
4567
|
+
}>;
|
|
4568
|
+
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
4569
|
+
createdAt: z.ZodString;
|
|
4570
|
+
updatedAt: z.ZodString;
|
|
4571
|
+
}, z.core.$strip>;
|
|
4572
|
+
declare const AcqContactResponseSchema: z.ZodObject<{
|
|
4573
|
+
id: z.ZodString;
|
|
4574
|
+
organizationId: z.ZodString;
|
|
4575
|
+
companyId: z.ZodNullable<z.ZodString>;
|
|
4576
|
+
email: z.ZodString;
|
|
4577
|
+
emailValid: z.ZodNullable<z.ZodEnum<{
|
|
4578
|
+
VALID: "VALID";
|
|
4579
|
+
INVALID: "INVALID";
|
|
4580
|
+
RISKY: "RISKY";
|
|
4581
|
+
UNKNOWN: "UNKNOWN";
|
|
4582
|
+
}>>;
|
|
4583
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
4584
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
4585
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
4586
|
+
title: z.ZodNullable<z.ZodString>;
|
|
4587
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
4588
|
+
filterReason: z.ZodNullable<z.ZodString>;
|
|
4589
|
+
openingLine: z.ZodNullable<z.ZodString>;
|
|
4590
|
+
source: z.ZodNullable<z.ZodString>;
|
|
4591
|
+
sourceId: z.ZodNullable<z.ZodString>;
|
|
4592
|
+
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4593
|
+
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4594
|
+
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
4595
|
+
batchId: z.ZodNullable<z.ZodString>;
|
|
4596
|
+
status: z.ZodEnum<{
|
|
4597
|
+
active: "active";
|
|
4598
|
+
invalid: "invalid";
|
|
4599
|
+
}>;
|
|
4600
|
+
createdAt: z.ZodString;
|
|
4601
|
+
updatedAt: z.ZodString;
|
|
4602
|
+
}, z.core.$strip>;
|
|
4603
|
+
type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
|
|
4604
|
+
type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
|
|
4605
|
+
type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
4606
|
+
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
4519
4607
|
|
|
4520
4608
|
type MessageType = MessageEvent['type'];
|
|
4521
4609
|
/**
|
|
@@ -5881,94 +5969,6 @@ interface Deployment {
|
|
|
5881
5969
|
updatedAt: string;
|
|
5882
5970
|
}
|
|
5883
5971
|
|
|
5884
|
-
declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
5885
|
-
search: z.ZodOptional<z.ZodString>;
|
|
5886
|
-
listId: z.ZodOptional<z.ZodString>;
|
|
5887
|
-
domain: z.ZodOptional<z.ZodString>;
|
|
5888
|
-
website: z.ZodOptional<z.ZodString>;
|
|
5889
|
-
segment: z.ZodOptional<z.ZodString>;
|
|
5890
|
-
category: z.ZodOptional<z.ZodString>;
|
|
5891
|
-
batchId: z.ZodOptional<z.ZodString>;
|
|
5892
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
5893
|
-
active: "active";
|
|
5894
|
-
invalid: "invalid";
|
|
5895
|
-
}>>;
|
|
5896
|
-
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
5897
|
-
}, z.core.$strict>;
|
|
5898
|
-
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
5899
|
-
search: z.ZodOptional<z.ZodString>;
|
|
5900
|
-
listId: z.ZodOptional<z.ZodString>;
|
|
5901
|
-
openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
5902
|
-
batchId: z.ZodOptional<z.ZodString>;
|
|
5903
|
-
contactStatus: z.ZodOptional<z.ZodEnum<{
|
|
5904
|
-
active: "active";
|
|
5905
|
-
invalid: "invalid";
|
|
5906
|
-
}>>;
|
|
5907
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
5908
|
-
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
5909
|
-
}, z.core.$strict>;
|
|
5910
|
-
declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
5911
|
-
id: z.ZodString;
|
|
5912
|
-
organizationId: z.ZodString;
|
|
5913
|
-
name: z.ZodString;
|
|
5914
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
5915
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
5916
|
-
website: z.ZodNullable<z.ZodString>;
|
|
5917
|
-
numEmployees: z.ZodNullable<z.ZodNumber>;
|
|
5918
|
-
foundedYear: z.ZodNullable<z.ZodNumber>;
|
|
5919
|
-
locationCity: z.ZodNullable<z.ZodString>;
|
|
5920
|
-
locationState: z.ZodNullable<z.ZodString>;
|
|
5921
|
-
category: z.ZodNullable<z.ZodString>;
|
|
5922
|
-
categoryPain: z.ZodNullable<z.ZodString>;
|
|
5923
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
5924
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5925
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5926
|
-
source: z.ZodNullable<z.ZodString>;
|
|
5927
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
5928
|
-
status: z.ZodEnum<{
|
|
5929
|
-
active: "active";
|
|
5930
|
-
invalid: "invalid";
|
|
5931
|
-
}>;
|
|
5932
|
-
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
5933
|
-
createdAt: z.ZodString;
|
|
5934
|
-
updatedAt: z.ZodString;
|
|
5935
|
-
}, z.core.$strip>;
|
|
5936
|
-
declare const AcqContactResponseSchema: z.ZodObject<{
|
|
5937
|
-
id: z.ZodString;
|
|
5938
|
-
organizationId: z.ZodString;
|
|
5939
|
-
companyId: z.ZodNullable<z.ZodString>;
|
|
5940
|
-
email: z.ZodString;
|
|
5941
|
-
emailValid: z.ZodNullable<z.ZodEnum<{
|
|
5942
|
-
VALID: "VALID";
|
|
5943
|
-
INVALID: "INVALID";
|
|
5944
|
-
RISKY: "RISKY";
|
|
5945
|
-
UNKNOWN: "UNKNOWN";
|
|
5946
|
-
}>>;
|
|
5947
|
-
firstName: z.ZodNullable<z.ZodString>;
|
|
5948
|
-
lastName: z.ZodNullable<z.ZodString>;
|
|
5949
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
5950
|
-
title: z.ZodNullable<z.ZodString>;
|
|
5951
|
-
headline: z.ZodNullable<z.ZodString>;
|
|
5952
|
-
filterReason: z.ZodNullable<z.ZodString>;
|
|
5953
|
-
openingLine: z.ZodNullable<z.ZodString>;
|
|
5954
|
-
source: z.ZodNullable<z.ZodString>;
|
|
5955
|
-
sourceId: z.ZodNullable<z.ZodString>;
|
|
5956
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5957
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5958
|
-
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
5959
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
5960
|
-
status: z.ZodEnum<{
|
|
5961
|
-
active: "active";
|
|
5962
|
-
invalid: "invalid";
|
|
5963
|
-
}>;
|
|
5964
|
-
createdAt: z.ZodString;
|
|
5965
|
-
updatedAt: z.ZodString;
|
|
5966
|
-
}, z.core.$strip>;
|
|
5967
|
-
type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
|
|
5968
|
-
type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
|
|
5969
|
-
type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
5970
|
-
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
5971
|
-
|
|
5972
5972
|
/**
|
|
5973
5973
|
* Fetch all available Execution Engine resources (workflows, agents, pipelines).
|
|
5974
5974
|
*
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-
|
|
1
|
+
export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-5RYRL7DP.js';
|
|
2
2
|
export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
|
|
3
3
|
import '../chunk-22UVE3RA.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-GEJZ6WLM.js';
|
|
5
5
|
import '../chunk-47YILFON.js';
|
|
6
6
|
import '../chunk-CYXZHBP4.js';
|
|
7
|
-
export { createUseFeatureAccess } from '../chunk-
|
|
7
|
+
export { createUseFeatureAccess } from '../chunk-TNYUWKSJ.js';
|
|
8
8
|
import '../chunk-RX4UWZZR.js';
|
|
9
9
|
import '../chunk-Y3D3WFJG.js';
|
|
10
10
|
import '../chunk-3KMDHCAR.js';
|