@elevasis/ui 2.12.0 → 2.14.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/app/index.js +5 -5
- package/dist/chunk-442LZPIR.js +5 -0
- package/dist/{chunk-PXFV47B3.js → chunk-5IBTTMWX.js} +3 -3
- package/dist/{chunk-ETWKPFOO.js → chunk-6RWMRQN5.js} +1 -1
- package/dist/{chunk-F6SMVMFC.js → chunk-A7346I7H.js} +3 -3
- package/dist/{chunk-ZKCQEHEJ.js → chunk-C56A2MAS.js} +357 -26
- package/dist/{chunk-ISVFJCPP.js → chunk-ETQRV5A6.js} +1 -1
- package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
- package/dist/{chunk-235RO24Z.js → chunk-IO75JNQE.js} +8 -3
- package/dist/{chunk-WM7JTTPX.js → chunk-JAUU6TZU.js} +74 -6
- package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
- package/dist/{chunk-MISBW6WW.js → chunk-PPKJKM3U.js} +1 -1
- package/dist/{chunk-7PLBPEBW.js → chunk-QFBENUS2.js} +2 -2
- package/dist/{chunk-TXZXMTZB.js → chunk-QFEQWAPQ.js} +7 -4
- package/dist/{chunk-TYWZABTP.js → chunk-R73EHHPN.js} +89 -46
- package/dist/{chunk-GHCYUZZE.js → chunk-TAUPDLQ7.js} +3 -3
- package/dist/{chunk-F4TPY6YL.js → chunk-WLOQ4IBG.js} +9 -3
- package/dist/{chunk-R7WLWGPO.js → chunk-ZB5GAV7J.js} +1 -1
- package/dist/components/index.d.ts +16 -10
- package/dist/components/index.js +20 -20
- package/dist/features/auth/index.d.ts +7 -4
- package/dist/features/auth/index.js +2 -2
- package/dist/features/crm/index.d.ts +7 -4
- package/dist/features/crm/index.js +7 -7
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +7 -4
- package/dist/features/delivery/index.js +8 -8
- package/dist/features/lead-gen/index.js +12 -12
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.d.ts +125 -0
- package/dist/features/operations/index.js +11 -11
- package/dist/features/settings/index.d.ts +7 -4
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/index.d.ts +137 -17
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +137 -17
- package/dist/hooks/published.js +6 -6
- package/dist/index.d.ts +182 -16
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +7 -4
- package/dist/layout/index.d.ts +9 -2
- package/dist/layout/index.js +2 -2
- package/dist/organization/index.js +1 -1
- package/dist/profile/index.d.ts +7 -4
- package/dist/provider/index.d.ts +47 -1
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.d.ts +47 -1
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +14 -8
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +10 -7
- package/package.json +6 -2
- package/dist/chunk-G2TDX3W6.js +0 -5
package/dist/index.d.ts
CHANGED
|
@@ -3004,7 +3004,7 @@ type Database$1 = {
|
|
|
3004
3004
|
}
|
|
3005
3005
|
];
|
|
3006
3006
|
};
|
|
3007
|
-
|
|
3007
|
+
reported_requests: {
|
|
3008
3008
|
Row: {
|
|
3009
3009
|
affected_page: string | null;
|
|
3010
3010
|
category: string;
|
|
@@ -3023,6 +3023,7 @@ type Database$1 = {
|
|
|
3023
3023
|
status: string;
|
|
3024
3024
|
task_id: string | null;
|
|
3025
3025
|
title: string;
|
|
3026
|
+
type: string;
|
|
3026
3027
|
updated_at: string;
|
|
3027
3028
|
};
|
|
3028
3029
|
Insert: {
|
|
@@ -3043,6 +3044,7 @@ type Database$1 = {
|
|
|
3043
3044
|
status?: string;
|
|
3044
3045
|
task_id?: string | null;
|
|
3045
3046
|
title: string;
|
|
3047
|
+
type: string;
|
|
3046
3048
|
updated_at?: string;
|
|
3047
3049
|
};
|
|
3048
3050
|
Update: {
|
|
@@ -3063,25 +3065,26 @@ type Database$1 = {
|
|
|
3063
3065
|
status?: string;
|
|
3064
3066
|
task_id?: string | null;
|
|
3065
3067
|
title?: string;
|
|
3068
|
+
type?: string;
|
|
3066
3069
|
updated_at?: string;
|
|
3067
3070
|
};
|
|
3068
3071
|
Relationships: [
|
|
3069
3072
|
{
|
|
3070
|
-
foreignKeyName: "
|
|
3073
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
3071
3074
|
columns: ["organization_id"];
|
|
3072
3075
|
isOneToOne: false;
|
|
3073
3076
|
referencedRelation: "organizations";
|
|
3074
3077
|
referencedColumns: ["id"];
|
|
3075
3078
|
},
|
|
3076
3079
|
{
|
|
3077
|
-
foreignKeyName: "
|
|
3080
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
3078
3081
|
columns: ["project_id"];
|
|
3079
3082
|
isOneToOne: false;
|
|
3080
3083
|
referencedRelation: "prj_projects";
|
|
3081
3084
|
referencedColumns: ["id"];
|
|
3082
3085
|
},
|
|
3083
3086
|
{
|
|
3084
|
-
foreignKeyName: "
|
|
3087
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
3085
3088
|
columns: ["task_id"];
|
|
3086
3089
|
isOneToOne: false;
|
|
3087
3090
|
referencedRelation: "prj_tasks";
|
|
@@ -3732,7 +3735,7 @@ interface Task extends OriginTracking {
|
|
|
3732
3735
|
priority: number;
|
|
3733
3736
|
/** Optional checkpoint identifier for grouping related human approval tasks */
|
|
3734
3737
|
humanCheckpoint?: string;
|
|
3735
|
-
status:
|
|
3738
|
+
status: QueueTaskStatus;
|
|
3736
3739
|
/**
|
|
3737
3740
|
* Target resource tracking — mirrors origin columns.
|
|
3738
3741
|
* Set when task is created; patchable to redirect execution to a different resource.
|
|
@@ -3762,7 +3765,7 @@ interface Task extends OriginTracking {
|
|
|
3762
3765
|
* - failed: execution failed, task can be retried
|
|
3763
3766
|
* - expired: timed out before action
|
|
3764
3767
|
*/
|
|
3765
|
-
type
|
|
3768
|
+
type QueueTaskStatus = 'pending' | 'processing' | 'completed' | 'failed' | 'expired';
|
|
3766
3769
|
/**
|
|
3767
3770
|
* Parameters for patching mutable metadata on a task
|
|
3768
3771
|
*/
|
|
@@ -5974,12 +5977,58 @@ declare const OrganizationModelSchema = OrganizationModelSchemaBase.superRefine(
|
|
|
5974
5977
|
addIssue(
|
|
5975
5978
|
ctx,
|
|
5976
5979
|
['navigation', 'surfaces', surfaceIndex, 'resourceIds', resourceIndex],
|
|
5977
|
-
`Surface "${surface.id}" references resource "${resourceId}" but that
|
|
5980
|
+
`Surface "${surface.id}" references resource "${resourceId}" but that surface does not include resource "${surface.id}"`
|
|
5978
5981
|
)
|
|
5979
5982
|
}
|
|
5980
5983
|
})
|
|
5981
5984
|
})
|
|
5982
5985
|
|
|
5986
|
+
// Offerings -> CustomerSegment cross-ref: targetSegmentIds must resolve
|
|
5987
|
+
const segmentsById = new Map(model.customers.segments.map((seg) => [seg.id, seg]))
|
|
5988
|
+
model.offerings.products.forEach((product, productIndex) => {
|
|
5989
|
+
product.targetSegmentIds.forEach((segmentId, segmentIndex) => {
|
|
5990
|
+
if (!segmentsById.has(segmentId)) {
|
|
5991
|
+
addIssue(
|
|
5992
|
+
ctx,
|
|
5993
|
+
['offerings', 'products', productIndex, 'targetSegmentIds', segmentIndex],
|
|
5994
|
+
`Product "${product.id}" references unknown customer segment "${segmentId}"`
|
|
5995
|
+
)
|
|
5996
|
+
}
|
|
5997
|
+
})
|
|
5998
|
+
|
|
5999
|
+
// Offerings -> Feature cross-ref: deliveryFeatureId must resolve (when present)
|
|
6000
|
+
if (product.deliveryFeatureId !== undefined && !featuresById.has(product.deliveryFeatureId)) {
|
|
6001
|
+
addIssue(
|
|
6002
|
+
ctx,
|
|
6003
|
+
['offerings', 'products', productIndex, 'deliveryFeatureId'],
|
|
6004
|
+
`Product "${product.id}" references unknown delivery feature "${product.deliveryFeatureId}"`
|
|
6005
|
+
)
|
|
6006
|
+
}
|
|
6007
|
+
})
|
|
6008
|
+
|
|
6009
|
+
// Goals -> period-range validation: periodEnd must be strictly after periodStart
|
|
6010
|
+
model.goals.objectives.forEach((objective, index) => {
|
|
6011
|
+
if (objective.periodEnd <= objective.periodStart) {
|
|
6012
|
+
addIssue(
|
|
6013
|
+
ctx,
|
|
6014
|
+
['goals', 'objectives', index, 'periodEnd'],
|
|
6015
|
+
`Goal "${objective.id}" has periodEnd "${objective.periodEnd}" which must be strictly after periodStart "${objective.periodStart}"`
|
|
6016
|
+
)
|
|
6017
|
+
}
|
|
6018
|
+
})
|
|
6019
|
+
|
|
6020
|
+
// Roles -> reportsToId cross-ref: each reportsToId must resolve to another role in the same collection
|
|
6021
|
+
const rolesById = new Map(model.roles.roles.map((role) => [role.id, role]))
|
|
6022
|
+
model.roles.roles.forEach((role, roleIndex) => {
|
|
6023
|
+
if (role.reportsToId !== undefined && !rolesById.has(role.reportsToId)) {
|
|
6024
|
+
addIssue(
|
|
6025
|
+
ctx,
|
|
6026
|
+
['roles', 'roles', roleIndex, 'reportsToId'],
|
|
6027
|
+
`Role "${role.id}" references unknown reportsToId "${role.reportsToId}"`
|
|
6028
|
+
)
|
|
6029
|
+
}
|
|
6030
|
+
})
|
|
6031
|
+
|
|
5983
6032
|
// ResourceMapping -> Feature and Surface bidirectional validation
|
|
5984
6033
|
model.resourceMappings.forEach((resourceMapping, resourceIndex) => {
|
|
5985
6034
|
resourceMapping.featureIds.forEach((featureId, featureIndex) => {
|
|
@@ -8366,7 +8415,7 @@ type Database = {
|
|
|
8366
8415
|
},
|
|
8367
8416
|
]
|
|
8368
8417
|
}
|
|
8369
|
-
|
|
8418
|
+
reported_requests: {
|
|
8370
8419
|
Row: {
|
|
8371
8420
|
affected_page: string | null
|
|
8372
8421
|
category: string
|
|
@@ -8385,6 +8434,7 @@ type Database = {
|
|
|
8385
8434
|
status: string
|
|
8386
8435
|
task_id: string | null
|
|
8387
8436
|
title: string
|
|
8437
|
+
type: string
|
|
8388
8438
|
updated_at: string
|
|
8389
8439
|
}
|
|
8390
8440
|
Insert: {
|
|
@@ -8405,6 +8455,7 @@ type Database = {
|
|
|
8405
8455
|
status?: string
|
|
8406
8456
|
task_id?: string | null
|
|
8407
8457
|
title: string
|
|
8458
|
+
type: string
|
|
8408
8459
|
updated_at?: string
|
|
8409
8460
|
}
|
|
8410
8461
|
Update: {
|
|
@@ -8425,25 +8476,26 @@ type Database = {
|
|
|
8425
8476
|
status?: string
|
|
8426
8477
|
task_id?: string | null
|
|
8427
8478
|
title?: string
|
|
8479
|
+
type?: string
|
|
8428
8480
|
updated_at?: string
|
|
8429
8481
|
}
|
|
8430
8482
|
Relationships: [
|
|
8431
8483
|
{
|
|
8432
|
-
foreignKeyName: "
|
|
8484
|
+
foreignKeyName: "reported_requests_organization_id_fkey"
|
|
8433
8485
|
columns: ["organization_id"]
|
|
8434
8486
|
isOneToOne: false
|
|
8435
8487
|
referencedRelation: "organizations"
|
|
8436
8488
|
referencedColumns: ["id"]
|
|
8437
8489
|
},
|
|
8438
8490
|
{
|
|
8439
|
-
foreignKeyName: "
|
|
8491
|
+
foreignKeyName: "reported_requests_project_id_fkey"
|
|
8440
8492
|
columns: ["project_id"]
|
|
8441
8493
|
isOneToOne: false
|
|
8442
8494
|
referencedRelation: "prj_projects"
|
|
8443
8495
|
referencedColumns: ["id"]
|
|
8444
8496
|
},
|
|
8445
8497
|
{
|
|
8446
|
-
foreignKeyName: "
|
|
8498
|
+
foreignKeyName: "reported_requests_task_id_fkey"
|
|
8447
8499
|
columns: ["task_id"]
|
|
8448
8500
|
isOneToOne: false
|
|
8449
8501
|
referencedRelation: "prj_tasks"
|
|
@@ -10455,8 +10507,8 @@ declare function useSessionWebSocket(sessionId: string, apiUrl: string): {
|
|
|
10455
10507
|
lastTokenUsage: SessionTokenUsage | null;
|
|
10456
10508
|
};
|
|
10457
10509
|
|
|
10458
|
-
declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeRange, priorityMin, priorityMax
|
|
10459
|
-
status?:
|
|
10510
|
+
declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeRange, priorityMin, priorityMax }?: {
|
|
10511
|
+
status?: QueueTaskStatus;
|
|
10460
10512
|
limit?: number;
|
|
10461
10513
|
offset?: number;
|
|
10462
10514
|
humanCheckpoint?: string;
|
|
@@ -10476,7 +10528,7 @@ declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeR
|
|
|
10476
10528
|
description?: string;
|
|
10477
10529
|
priority: number;
|
|
10478
10530
|
humanCheckpoint?: string;
|
|
10479
|
-
status:
|
|
10531
|
+
status: QueueTaskStatus;
|
|
10480
10532
|
targetResourceId?: string;
|
|
10481
10533
|
targetResourceType?: "agent" | "workflow";
|
|
10482
10534
|
targetExecutionId?: string;
|
|
@@ -10538,6 +10590,120 @@ declare function usePatchTask(): _tanstack_react_query.UseMutationResult<Task, E
|
|
|
10538
10590
|
params: PatchTaskParams;
|
|
10539
10591
|
}, unknown>;
|
|
10540
10592
|
|
|
10593
|
+
/**
|
|
10594
|
+
* Request Reporting API Schemas
|
|
10595
|
+
*
|
|
10596
|
+
* Request/response validation for /api/requests and /api/external/requests surfaces.
|
|
10597
|
+
* Used by both the API (routes.ts, external-routes.ts) and the CLI.
|
|
10598
|
+
*
|
|
10599
|
+
* Table mapping:
|
|
10600
|
+
* reported_requests -> RequestSchemas
|
|
10601
|
+
*/
|
|
10602
|
+
|
|
10603
|
+
// ---------------------------------------------------------------------------
|
|
10604
|
+
// Enum literals (must match DB CHECK constraints exactly)
|
|
10605
|
+
// ---------------------------------------------------------------------------
|
|
10606
|
+
|
|
10607
|
+
declare const RequestSeverityEnum = z.enum(['critical', 'warning', 'info'])
|
|
10608
|
+
declare const RequestStatusEnum = z.enum(['open', 'investigating', 'resolved', 'wont_fix'])
|
|
10609
|
+
declare const RequestSourceEnum = z.enum(['agent', 'cli', 'api', 'webhook', 'user', 'external'])
|
|
10610
|
+
declare const RequestTypeEnum = z.enum(['bug', 'feature', 'question', 'other'])
|
|
10611
|
+
|
|
10612
|
+
// ---------------------------------------------------------------------------
|
|
10613
|
+
// Inferred types
|
|
10614
|
+
// ---------------------------------------------------------------------------
|
|
10615
|
+
|
|
10616
|
+
type RequestSeverity = z.infer<typeof RequestSeverityEnum>
|
|
10617
|
+
type RequestStatus = z.infer<typeof RequestStatusEnum>
|
|
10618
|
+
type RequestSource = z.infer<typeof RequestSourceEnum>
|
|
10619
|
+
type RequestType = z.infer<typeof RequestTypeEnum>
|
|
10620
|
+
|
|
10621
|
+
interface RequestsListFilters {
|
|
10622
|
+
type?: RequestType;
|
|
10623
|
+
severity?: RequestSeverity;
|
|
10624
|
+
status?: RequestStatus;
|
|
10625
|
+
source?: RequestSource;
|
|
10626
|
+
limit?: number;
|
|
10627
|
+
offset?: number;
|
|
10628
|
+
}
|
|
10629
|
+
declare const requestsKeys: {
|
|
10630
|
+
all: readonly ["requests"];
|
|
10631
|
+
lists: () => readonly ["requests", "list"];
|
|
10632
|
+
list: (organizationId: string | null | undefined, filters: RequestsListFilters) => readonly ["requests", "list", string | null | undefined, RequestsListFilters];
|
|
10633
|
+
details: () => readonly ["requests", "detail"];
|
|
10634
|
+
detail: (organizationId: string | null | undefined, id: string | undefined) => readonly ["requests", "detail", string | null | undefined, string | undefined];
|
|
10635
|
+
};
|
|
10636
|
+
|
|
10637
|
+
type RequestRow = Database['public']['Tables']['reported_requests']['Row'];
|
|
10638
|
+
declare function useRequestsList(filters?: RequestsListFilters): _tanstack_react_query.UseQueryResult<{
|
|
10639
|
+
affected_page: string | null;
|
|
10640
|
+
category: string;
|
|
10641
|
+
context: Json$1 | null;
|
|
10642
|
+
created_at: string;
|
|
10643
|
+
description: string;
|
|
10644
|
+
evidence: Json$1 | null;
|
|
10645
|
+
id: string;
|
|
10646
|
+
organization_id: string;
|
|
10647
|
+
project_id: string | null;
|
|
10648
|
+
reported_at: string;
|
|
10649
|
+
reporter_id: string | null;
|
|
10650
|
+
resolved_at: string | null;
|
|
10651
|
+
severity: string;
|
|
10652
|
+
source: string;
|
|
10653
|
+
status: string;
|
|
10654
|
+
task_id: string | null;
|
|
10655
|
+
title: string;
|
|
10656
|
+
type: string;
|
|
10657
|
+
updated_at: string;
|
|
10658
|
+
}[], Error>;
|
|
10659
|
+
|
|
10660
|
+
declare function useRequest(id: string | undefined): _tanstack_react_query.UseQueryResult<{
|
|
10661
|
+
affected_page: string | null;
|
|
10662
|
+
category: string;
|
|
10663
|
+
context: Json$1 | null;
|
|
10664
|
+
created_at: string;
|
|
10665
|
+
description: string;
|
|
10666
|
+
evidence: Json$1 | null;
|
|
10667
|
+
id: string;
|
|
10668
|
+
organization_id: string;
|
|
10669
|
+
project_id: string | null;
|
|
10670
|
+
reported_at: string;
|
|
10671
|
+
reporter_id: string | null;
|
|
10672
|
+
resolved_at: string | null;
|
|
10673
|
+
severity: string;
|
|
10674
|
+
source: string;
|
|
10675
|
+
status: string;
|
|
10676
|
+
task_id: string | null;
|
|
10677
|
+
title: string;
|
|
10678
|
+
type: string;
|
|
10679
|
+
updated_at: string;
|
|
10680
|
+
}, Error>;
|
|
10681
|
+
|
|
10682
|
+
declare function useUpdateRequestStatus(): _tanstack_react_query.UseMutationResult<{
|
|
10683
|
+
affected_page: string | null;
|
|
10684
|
+
category: string;
|
|
10685
|
+
context: Json$1 | null;
|
|
10686
|
+
created_at: string;
|
|
10687
|
+
description: string;
|
|
10688
|
+
evidence: Json$1 | null;
|
|
10689
|
+
id: string;
|
|
10690
|
+
organization_id: string;
|
|
10691
|
+
project_id: string | null;
|
|
10692
|
+
reported_at: string;
|
|
10693
|
+
reporter_id: string | null;
|
|
10694
|
+
resolved_at: string | null;
|
|
10695
|
+
severity: string;
|
|
10696
|
+
source: string;
|
|
10697
|
+
status: string;
|
|
10698
|
+
task_id: string | null;
|
|
10699
|
+
title: string;
|
|
10700
|
+
type: string;
|
|
10701
|
+
updated_at: string;
|
|
10702
|
+
}, Error, {
|
|
10703
|
+
id: string;
|
|
10704
|
+
status: RequestStatus;
|
|
10705
|
+
}, unknown>;
|
|
10706
|
+
|
|
10541
10707
|
/**
|
|
10542
10708
|
* Query key factories for Operations TanStack Query hooks.
|
|
10543
10709
|
*
|
|
@@ -12938,5 +13104,5 @@ declare function InitializationProvider({ children }: {
|
|
|
12938
13104
|
children: ReactNode;
|
|
12939
13105
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
12940
13106
|
|
|
12941
|
-
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, 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, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, 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, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
12942
|
-
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppShellOverrides, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureAccessResult, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellModel, ResolvedShellNavItem, ResolvedShellRouteMatch, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellNavPlacement, ShellNavSource, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
|
13107
|
+
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, 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, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, 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, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, requestsKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
13108
|
+
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppShellOverrides, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureAccessResult, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, RequestRow, RequestsListFilters, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellModel, ResolvedShellNavItem, ResolvedShellRouteMatch, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellNavPlacement, ShellNavSource, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
package/dist/index.js
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import './chunk-XCYKC6OZ.js';
|
|
2
|
-
export { useAvailablePresets } from './chunk-
|
|
2
|
+
export { useAvailablePresets } from './chunk-6RWMRQN5.js';
|
|
3
3
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-GHIPBT5V.js';
|
|
4
4
|
import './chunk-7M2VOCYN.js';
|
|
5
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, operationsKeys, projectActivityKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from './chunk-
|
|
5
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from './chunk-JAUU6TZU.js';
|
|
6
6
|
export { observabilityKeys, useErrorTrends } from './chunk-LXHZYSMQ.js';
|
|
7
7
|
import './chunk-BRXELOHC.js';
|
|
8
8
|
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-22UVE3RA.js';
|
|
9
9
|
export { useMergedExecution } from './chunk-3ZMAGTWF.js';
|
|
10
10
|
export { createTestFeaturesProvider } from './chunk-DKQQK3WX.js';
|
|
11
|
-
export { ElevasisUIProvider } from './chunk-
|
|
12
|
-
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-
|
|
13
|
-
import './chunk-
|
|
11
|
+
export { ElevasisUIProvider } from './chunk-5IBTTMWX.js';
|
|
12
|
+
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-R73EHHPN.js';
|
|
13
|
+
import './chunk-WLOQ4IBG.js';
|
|
14
14
|
export { ElevasisFeaturesProvider, FeatureShell, createFeatureAccessHook, createUseFeatureAccess, useElevasisFeatures, useOptionalElevasisFeatures } from './chunk-C7BX547M.js';
|
|
15
15
|
import './chunk-RX4UWZZR.js';
|
|
16
16
|
import './chunk-SQQGLGHW.js';
|
|
17
17
|
import './chunk-3KMDHCAR.js';
|
|
18
18
|
import './chunk-NYBEU5TE.js';
|
|
19
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from './chunk-
|
|
19
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from './chunk-ZB5GAV7J.js';
|
|
20
20
|
import './chunk-SZHARWKU.js';
|
|
21
21
|
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-NVOCKXUQ.js';
|
|
22
22
|
export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
|
|
23
23
|
import './chunk-ELJIFLCB.js';
|
|
24
24
|
export { OrganizationSwitcher, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from './chunk-L4XXM55J.js';
|
|
25
|
-
export { OrganizationProvider } from './chunk-
|
|
25
|
+
export { OrganizationProvider } from './chunk-FL67C3WY.js';
|
|
26
26
|
export { AppearanceProvider, useAppearance } from './chunk-QJ2KCHKX.js';
|
|
27
27
|
import './chunk-DT3QYZVU.js';
|
|
28
28
|
export { createUseAppInitialization } from './chunk-SLVC5OJ2.js';
|
|
@@ -2070,7 +2070,7 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
-
|
|
2073
|
+
reported_requests: {
|
|
2074
2074
|
Row: {
|
|
2075
2075
|
affected_page: string | null;
|
|
2076
2076
|
category: string;
|
|
@@ -2089,6 +2089,7 @@ type Database = {
|
|
|
2089
2089
|
status: string;
|
|
2090
2090
|
task_id: string | null;
|
|
2091
2091
|
title: string;
|
|
2092
|
+
type: string;
|
|
2092
2093
|
updated_at: string;
|
|
2093
2094
|
};
|
|
2094
2095
|
Insert: {
|
|
@@ -2109,6 +2110,7 @@ type Database = {
|
|
|
2109
2110
|
status?: string;
|
|
2110
2111
|
task_id?: string | null;
|
|
2111
2112
|
title: string;
|
|
2113
|
+
type: string;
|
|
2112
2114
|
updated_at?: string;
|
|
2113
2115
|
};
|
|
2114
2116
|
Update: {
|
|
@@ -2129,25 +2131,26 @@ type Database = {
|
|
|
2129
2131
|
status?: string;
|
|
2130
2132
|
task_id?: string | null;
|
|
2131
2133
|
title?: string;
|
|
2134
|
+
type?: string;
|
|
2132
2135
|
updated_at?: string;
|
|
2133
2136
|
};
|
|
2134
2137
|
Relationships: [
|
|
2135
2138
|
{
|
|
2136
|
-
foreignKeyName: "
|
|
2139
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2137
2140
|
columns: ["organization_id"];
|
|
2138
2141
|
isOneToOne: false;
|
|
2139
2142
|
referencedRelation: "organizations";
|
|
2140
2143
|
referencedColumns: ["id"];
|
|
2141
2144
|
},
|
|
2142
2145
|
{
|
|
2143
|
-
foreignKeyName: "
|
|
2146
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2144
2147
|
columns: ["project_id"];
|
|
2145
2148
|
isOneToOne: false;
|
|
2146
2149
|
referencedRelation: "prj_projects";
|
|
2147
2150
|
referencedColumns: ["id"];
|
|
2148
2151
|
},
|
|
2149
2152
|
{
|
|
2150
|
-
foreignKeyName: "
|
|
2153
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2151
2154
|
columns: ["task_id"];
|
|
2152
2155
|
isOneToOne: false;
|
|
2153
2156
|
referencedRelation: "prj_tasks";
|
package/dist/layout/index.d.ts
CHANGED
|
@@ -55,8 +55,10 @@ interface AmbientBloomGridProps {
|
|
|
55
55
|
}
|
|
56
56
|
declare function AmbientBloomGrid({ color, intensity, size }: AmbientBloomGridProps): React$1.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare function AppBackground({ children }: {
|
|
58
|
+
declare function AppBackground({ children, gridGlowColor, gridGlowIntensity }: {
|
|
59
59
|
children?: ReactNode;
|
|
60
|
+
gridGlowColor?: string;
|
|
61
|
+
gridGlowIntensity?: number;
|
|
60
62
|
}): react_jsx_runtime.JSX.Element;
|
|
61
63
|
|
|
62
64
|
type CyberVariant = 'chrome' | 'strike' | 'void' | 'volt';
|
|
@@ -213,12 +215,17 @@ interface PerspectiveGridProps {
|
|
|
213
215
|
* 100 = full lineColor, 0 = invisible. Defaults to 100.
|
|
214
216
|
*/
|
|
215
217
|
lineIntensity?: number;
|
|
218
|
+
/**
|
|
219
|
+
* Percentage (0-100) scaling the visible intensity of the bottom radial glow.
|
|
220
|
+
* 100 = full glowColor, 0 = invisible. Defaults to 100.
|
|
221
|
+
*/
|
|
222
|
+
glowIntensity?: number;
|
|
216
223
|
className?: string;
|
|
217
224
|
}
|
|
218
225
|
/**
|
|
219
226
|
* 3D perspective grid background using CSS transforms
|
|
220
227
|
*/
|
|
221
|
-
declare function PerspectiveGrid({ glowColor: glowColorProp, lineColor: lineColorProp, prominentGlow, lineIntensity, className }: PerspectiveGridProps): React$1.JSX.Element;
|
|
228
|
+
declare function PerspectiveGrid({ glowColor: glowColorProp, lineColor: lineColorProp, prominentGlow, lineIntensity, glowIntensity, className }: PerspectiveGridProps): React$1.JSX.Element;
|
|
222
229
|
|
|
223
230
|
interface RadiantGlowProps {
|
|
224
231
|
/** Override the glow color. Defaults to var(--color-primary). */
|
package/dist/layout/index.js
CHANGED
|
@@ -3,8 +3,8 @@ export { SubshellLoader } from '../chunk-ADSSLKKP.js';
|
|
|
3
3
|
export { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
4
4
|
export { SubshellNavItem } from '../chunk-CEWTOKE7.js';
|
|
5
5
|
export { SubshellSidebarSection } from '../chunk-IIMU5YAJ.js';
|
|
6
|
-
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-
|
|
7
|
-
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-
|
|
6
|
+
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-M25JL54Z.js';
|
|
7
|
+
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-WLOQ4IBG.js';
|
|
8
8
|
export { SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar } from '../chunk-RX4UWZZR.js';
|
|
9
9
|
import '../chunk-NYBEU5TE.js';
|
|
10
10
|
import '../chunk-2IFYDILW.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { OrganizationSwitcher, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-L4XXM55J.js';
|
|
2
|
-
export { OrganizationProvider } from '../chunk-
|
|
2
|
+
export { OrganizationProvider } from '../chunk-FL67C3WY.js';
|
|
3
3
|
import '../chunk-RNP5R5I3.js';
|
|
4
4
|
export { OrganizationContext, useOrganization } from '../chunk-DD3CCMCZ.js';
|
|
5
5
|
import '../chunk-QEPXAWE2.js';
|
package/dist/profile/index.d.ts
CHANGED
|
@@ -2070,7 +2070,7 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
-
|
|
2073
|
+
reported_requests: {
|
|
2074
2074
|
Row: {
|
|
2075
2075
|
affected_page: string | null;
|
|
2076
2076
|
category: string;
|
|
@@ -2089,6 +2089,7 @@ type Database = {
|
|
|
2089
2089
|
status: string;
|
|
2090
2090
|
task_id: string | null;
|
|
2091
2091
|
title: string;
|
|
2092
|
+
type: string;
|
|
2092
2093
|
updated_at: string;
|
|
2093
2094
|
};
|
|
2094
2095
|
Insert: {
|
|
@@ -2109,6 +2110,7 @@ type Database = {
|
|
|
2109
2110
|
status?: string;
|
|
2110
2111
|
task_id?: string | null;
|
|
2111
2112
|
title: string;
|
|
2113
|
+
type: string;
|
|
2112
2114
|
updated_at?: string;
|
|
2113
2115
|
};
|
|
2114
2116
|
Update: {
|
|
@@ -2129,25 +2131,26 @@ type Database = {
|
|
|
2129
2131
|
status?: string;
|
|
2130
2132
|
task_id?: string | null;
|
|
2131
2133
|
title?: string;
|
|
2134
|
+
type?: string;
|
|
2132
2135
|
updated_at?: string;
|
|
2133
2136
|
};
|
|
2134
2137
|
Relationships: [
|
|
2135
2138
|
{
|
|
2136
|
-
foreignKeyName: "
|
|
2139
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2137
2140
|
columns: ["organization_id"];
|
|
2138
2141
|
isOneToOne: false;
|
|
2139
2142
|
referencedRelation: "organizations";
|
|
2140
2143
|
referencedColumns: ["id"];
|
|
2141
2144
|
},
|
|
2142
2145
|
{
|
|
2143
|
-
foreignKeyName: "
|
|
2146
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2144
2147
|
columns: ["project_id"];
|
|
2145
2148
|
isOneToOne: false;
|
|
2146
2149
|
referencedRelation: "prj_projects";
|
|
2147
2150
|
referencedColumns: ["id"];
|
|
2148
2151
|
},
|
|
2149
2152
|
{
|
|
2150
|
-
foreignKeyName: "
|
|
2153
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2151
2154
|
columns: ["task_id"];
|
|
2152
2155
|
isOneToOne: false;
|
|
2153
2156
|
referencedRelation: "prj_tasks";
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -424,12 +424,58 @@ declare const OrganizationModelSchema = OrganizationModelSchemaBase.superRefine(
|
|
|
424
424
|
addIssue(
|
|
425
425
|
ctx,
|
|
426
426
|
['navigation', 'surfaces', surfaceIndex, 'resourceIds', resourceIndex],
|
|
427
|
-
`Surface "${surface.id}" references resource "${resourceId}" but that
|
|
427
|
+
`Surface "${surface.id}" references resource "${resourceId}" but that surface does not include resource "${surface.id}"`
|
|
428
428
|
)
|
|
429
429
|
}
|
|
430
430
|
})
|
|
431
431
|
})
|
|
432
432
|
|
|
433
|
+
// Offerings -> CustomerSegment cross-ref: targetSegmentIds must resolve
|
|
434
|
+
const segmentsById = new Map(model.customers.segments.map((seg) => [seg.id, seg]))
|
|
435
|
+
model.offerings.products.forEach((product, productIndex) => {
|
|
436
|
+
product.targetSegmentIds.forEach((segmentId, segmentIndex) => {
|
|
437
|
+
if (!segmentsById.has(segmentId)) {
|
|
438
|
+
addIssue(
|
|
439
|
+
ctx,
|
|
440
|
+
['offerings', 'products', productIndex, 'targetSegmentIds', segmentIndex],
|
|
441
|
+
`Product "${product.id}" references unknown customer segment "${segmentId}"`
|
|
442
|
+
)
|
|
443
|
+
}
|
|
444
|
+
})
|
|
445
|
+
|
|
446
|
+
// Offerings -> Feature cross-ref: deliveryFeatureId must resolve (when present)
|
|
447
|
+
if (product.deliveryFeatureId !== undefined && !featuresById.has(product.deliveryFeatureId)) {
|
|
448
|
+
addIssue(
|
|
449
|
+
ctx,
|
|
450
|
+
['offerings', 'products', productIndex, 'deliveryFeatureId'],
|
|
451
|
+
`Product "${product.id}" references unknown delivery feature "${product.deliveryFeatureId}"`
|
|
452
|
+
)
|
|
453
|
+
}
|
|
454
|
+
})
|
|
455
|
+
|
|
456
|
+
// Goals -> period-range validation: periodEnd must be strictly after periodStart
|
|
457
|
+
model.goals.objectives.forEach((objective, index) => {
|
|
458
|
+
if (objective.periodEnd <= objective.periodStart) {
|
|
459
|
+
addIssue(
|
|
460
|
+
ctx,
|
|
461
|
+
['goals', 'objectives', index, 'periodEnd'],
|
|
462
|
+
`Goal "${objective.id}" has periodEnd "${objective.periodEnd}" which must be strictly after periodStart "${objective.periodStart}"`
|
|
463
|
+
)
|
|
464
|
+
}
|
|
465
|
+
})
|
|
466
|
+
|
|
467
|
+
// Roles -> reportsToId cross-ref: each reportsToId must resolve to another role in the same collection
|
|
468
|
+
const rolesById = new Map(model.roles.roles.map((role) => [role.id, role]))
|
|
469
|
+
model.roles.roles.forEach((role, roleIndex) => {
|
|
470
|
+
if (role.reportsToId !== undefined && !rolesById.has(role.reportsToId)) {
|
|
471
|
+
addIssue(
|
|
472
|
+
ctx,
|
|
473
|
+
['roles', 'roles', roleIndex, 'reportsToId'],
|
|
474
|
+
`Role "${role.id}" references unknown reportsToId "${role.reportsToId}"`
|
|
475
|
+
)
|
|
476
|
+
}
|
|
477
|
+
})
|
|
478
|
+
|
|
433
479
|
// ResourceMapping -> Feature and Surface bidirectional validation
|
|
434
480
|
model.resourceMappings.forEach((resourceMapping, resourceIndex) => {
|
|
435
481
|
resourceMapping.featureIds.forEach((featureId, featureIndex) => {
|