@elevasis/ui 2.10.2 → 2.12.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 +2 -2
- package/dist/{chunk-YQLE5HR5.js → chunk-235RO24Z.js} +2 -2
- package/dist/chunk-3ZMAGTWF.js +18 -0
- package/dist/{chunk-AT5XCBTU.js → chunk-7PLBPEBW.js} +2 -2
- package/dist/chunk-BRXELOHC.js +47 -0
- package/dist/{chunk-KYOF6NYW.js → chunk-ETWKPFOO.js} +1 -1
- package/dist/{chunk-M6ZZ2FW5.js → chunk-F6SMVMFC.js} +3 -3
- package/dist/{chunk-GJVGV7QZ.js → chunk-GHCYUZZE.js} +276 -5
- package/dist/{chunk-XA34RETF.js → chunk-GHIPBT5V.js} +1 -14
- package/dist/{chunk-TSX4I3NW.js → chunk-ISVFJCPP.js} +1 -1
- package/dist/{chunk-WHQXDETX.js → chunk-MISBW6WW.js} +124 -5
- package/dist/{chunk-LPSBID5V.js → chunk-PXFV47B3.js} +1 -1
- package/dist/{chunk-CLXMNMIS.js → chunk-TXZXMTZB.js} +652 -110
- package/dist/{chunk-6PNHW4X2.js → chunk-TYWZABTP.js} +115 -137
- package/dist/{chunk-E3IFHX6A.js → chunk-WM7JTTPX.js} +494 -311
- package/dist/{chunk-CYT4PORT.js → chunk-ZKCQEHEJ.js} +7 -51
- package/dist/components/index.d.ts +241 -3
- package/dist/components/index.js +20 -18
- package/dist/execution/index.js +2 -1
- package/dist/features/auth/index.d.ts +85 -0
- package/dist/features/crm/index.d.ts +94 -2
- package/dist/features/crm/index.js +6 -4
- package/dist/features/dashboard/index.js +7 -5
- package/dist/features/delivery/index.d.ts +132 -13
- package/dist/features/delivery/index.js +6 -4
- package/dist/features/lead-gen/index.js +10 -8
- package/dist/features/monitoring/index.js +8 -6
- package/dist/features/operations/index.js +9 -7
- package/dist/features/settings/index.d.ts +85 -0
- package/dist/features/settings/index.js +7 -5
- package/dist/hooks/index.d.ts +426 -52
- package/dist/hooks/index.js +5 -3
- package/dist/hooks/published.d.ts +426 -52
- package/dist/hooks/published.js +5 -3
- package/dist/index.d.ts +387 -23
- package/dist/index.js +7 -5
- package/dist/initialization/index.d.ts +85 -0
- package/dist/profile/index.d.ts +85 -0
- package/dist/provider/index.js +2 -2
- package/dist/supabase/index.d.ts +166 -0
- package/dist/supabase/index.js +2 -47
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +86 -1
- package/dist/zustand/index.d.ts +0 -4
- package/dist/zustand/index.js +0 -10
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -3004,6 +3004,91 @@ type Database$1 = {
|
|
|
3004
3004
|
}
|
|
3005
3005
|
];
|
|
3006
3006
|
};
|
|
3007
|
+
reported_issues: {
|
|
3008
|
+
Row: {
|
|
3009
|
+
affected_page: string | null;
|
|
3010
|
+
category: string;
|
|
3011
|
+
context: Json$1 | null;
|
|
3012
|
+
created_at: string;
|
|
3013
|
+
description: string;
|
|
3014
|
+
evidence: Json$1 | null;
|
|
3015
|
+
id: string;
|
|
3016
|
+
organization_id: string;
|
|
3017
|
+
project_id: string | null;
|
|
3018
|
+
reported_at: string;
|
|
3019
|
+
reporter_id: string | null;
|
|
3020
|
+
resolved_at: string | null;
|
|
3021
|
+
severity: string;
|
|
3022
|
+
source: string;
|
|
3023
|
+
status: string;
|
|
3024
|
+
task_id: string | null;
|
|
3025
|
+
title: string;
|
|
3026
|
+
updated_at: string;
|
|
3027
|
+
};
|
|
3028
|
+
Insert: {
|
|
3029
|
+
affected_page?: string | null;
|
|
3030
|
+
category: string;
|
|
3031
|
+
context?: Json$1 | null;
|
|
3032
|
+
created_at?: string;
|
|
3033
|
+
description: string;
|
|
3034
|
+
evidence?: Json$1 | null;
|
|
3035
|
+
id?: string;
|
|
3036
|
+
organization_id: string;
|
|
3037
|
+
project_id?: string | null;
|
|
3038
|
+
reported_at?: string;
|
|
3039
|
+
reporter_id?: string | null;
|
|
3040
|
+
resolved_at?: string | null;
|
|
3041
|
+
severity: string;
|
|
3042
|
+
source: string;
|
|
3043
|
+
status?: string;
|
|
3044
|
+
task_id?: string | null;
|
|
3045
|
+
title: string;
|
|
3046
|
+
updated_at?: string;
|
|
3047
|
+
};
|
|
3048
|
+
Update: {
|
|
3049
|
+
affected_page?: string | null;
|
|
3050
|
+
category?: string;
|
|
3051
|
+
context?: Json$1 | null;
|
|
3052
|
+
created_at?: string;
|
|
3053
|
+
description?: string;
|
|
3054
|
+
evidence?: Json$1 | null;
|
|
3055
|
+
id?: string;
|
|
3056
|
+
organization_id?: string;
|
|
3057
|
+
project_id?: string | null;
|
|
3058
|
+
reported_at?: string;
|
|
3059
|
+
reporter_id?: string | null;
|
|
3060
|
+
resolved_at?: string | null;
|
|
3061
|
+
severity?: string;
|
|
3062
|
+
source?: string;
|
|
3063
|
+
status?: string;
|
|
3064
|
+
task_id?: string | null;
|
|
3065
|
+
title?: string;
|
|
3066
|
+
updated_at?: string;
|
|
3067
|
+
};
|
|
3068
|
+
Relationships: [
|
|
3069
|
+
{
|
|
3070
|
+
foreignKeyName: "reported_issues_organization_id_fkey";
|
|
3071
|
+
columns: ["organization_id"];
|
|
3072
|
+
isOneToOne: false;
|
|
3073
|
+
referencedRelation: "organizations";
|
|
3074
|
+
referencedColumns: ["id"];
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
foreignKeyName: "reported_issues_project_id_fkey";
|
|
3078
|
+
columns: ["project_id"];
|
|
3079
|
+
isOneToOne: false;
|
|
3080
|
+
referencedRelation: "prj_projects";
|
|
3081
|
+
referencedColumns: ["id"];
|
|
3082
|
+
},
|
|
3083
|
+
{
|
|
3084
|
+
foreignKeyName: "reported_issues_task_id_fkey";
|
|
3085
|
+
columns: ["task_id"];
|
|
3086
|
+
isOneToOne: false;
|
|
3087
|
+
referencedRelation: "prj_tasks";
|
|
3088
|
+
referencedColumns: ["id"];
|
|
3089
|
+
}
|
|
3090
|
+
];
|
|
3091
|
+
};
|
|
3007
3092
|
session_messages: {
|
|
3008
3093
|
Row: {
|
|
3009
3094
|
created_at: string | null;
|
|
@@ -3521,6 +3606,8 @@ interface DealContact {
|
|
|
3521
3606
|
interface DealFilters {
|
|
3522
3607
|
stage?: DealStage;
|
|
3523
3608
|
search?: string;
|
|
3609
|
+
limit?: number;
|
|
3610
|
+
offset?: number;
|
|
3524
3611
|
}
|
|
3525
3612
|
/** Deal list item with joined contact and company data */
|
|
3526
3613
|
interface DealListItem extends AcqDealRow {
|
|
@@ -4471,7 +4558,7 @@ interface DomainDefinition {
|
|
|
4471
4558
|
icon?: string;
|
|
4472
4559
|
}
|
|
4473
4560
|
/** Webhook provider identifiers */
|
|
4474
|
-
type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify';
|
|
4561
|
+
type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify' | 'test';
|
|
4475
4562
|
/** Webhook trigger configuration */
|
|
4476
4563
|
interface WebhookTriggerConfig {
|
|
4477
4564
|
/** Provider identifier */
|
|
@@ -8279,6 +8366,91 @@ type Database = {
|
|
|
8279
8366
|
},
|
|
8280
8367
|
]
|
|
8281
8368
|
}
|
|
8369
|
+
reported_issues: {
|
|
8370
|
+
Row: {
|
|
8371
|
+
affected_page: string | null
|
|
8372
|
+
category: string
|
|
8373
|
+
context: Json | null
|
|
8374
|
+
created_at: string
|
|
8375
|
+
description: string
|
|
8376
|
+
evidence: Json | null
|
|
8377
|
+
id: string
|
|
8378
|
+
organization_id: string
|
|
8379
|
+
project_id: string | null
|
|
8380
|
+
reported_at: string
|
|
8381
|
+
reporter_id: string | null
|
|
8382
|
+
resolved_at: string | null
|
|
8383
|
+
severity: string
|
|
8384
|
+
source: string
|
|
8385
|
+
status: string
|
|
8386
|
+
task_id: string | null
|
|
8387
|
+
title: string
|
|
8388
|
+
updated_at: string
|
|
8389
|
+
}
|
|
8390
|
+
Insert: {
|
|
8391
|
+
affected_page?: string | null
|
|
8392
|
+
category: string
|
|
8393
|
+
context?: Json | null
|
|
8394
|
+
created_at?: string
|
|
8395
|
+
description: string
|
|
8396
|
+
evidence?: Json | null
|
|
8397
|
+
id?: string
|
|
8398
|
+
organization_id: string
|
|
8399
|
+
project_id?: string | null
|
|
8400
|
+
reported_at?: string
|
|
8401
|
+
reporter_id?: string | null
|
|
8402
|
+
resolved_at?: string | null
|
|
8403
|
+
severity: string
|
|
8404
|
+
source: string
|
|
8405
|
+
status?: string
|
|
8406
|
+
task_id?: string | null
|
|
8407
|
+
title: string
|
|
8408
|
+
updated_at?: string
|
|
8409
|
+
}
|
|
8410
|
+
Update: {
|
|
8411
|
+
affected_page?: string | null
|
|
8412
|
+
category?: string
|
|
8413
|
+
context?: Json | null
|
|
8414
|
+
created_at?: string
|
|
8415
|
+
description?: string
|
|
8416
|
+
evidence?: Json | null
|
|
8417
|
+
id?: string
|
|
8418
|
+
organization_id?: string
|
|
8419
|
+
project_id?: string | null
|
|
8420
|
+
reported_at?: string
|
|
8421
|
+
reporter_id?: string | null
|
|
8422
|
+
resolved_at?: string | null
|
|
8423
|
+
severity?: string
|
|
8424
|
+
source?: string
|
|
8425
|
+
status?: string
|
|
8426
|
+
task_id?: string | null
|
|
8427
|
+
title?: string
|
|
8428
|
+
updated_at?: string
|
|
8429
|
+
}
|
|
8430
|
+
Relationships: [
|
|
8431
|
+
{
|
|
8432
|
+
foreignKeyName: "reported_issues_organization_id_fkey"
|
|
8433
|
+
columns: ["organization_id"]
|
|
8434
|
+
isOneToOne: false
|
|
8435
|
+
referencedRelation: "organizations"
|
|
8436
|
+
referencedColumns: ["id"]
|
|
8437
|
+
},
|
|
8438
|
+
{
|
|
8439
|
+
foreignKeyName: "reported_issues_project_id_fkey"
|
|
8440
|
+
columns: ["project_id"]
|
|
8441
|
+
isOneToOne: false
|
|
8442
|
+
referencedRelation: "prj_projects"
|
|
8443
|
+
referencedColumns: ["id"]
|
|
8444
|
+
},
|
|
8445
|
+
{
|
|
8446
|
+
foreignKeyName: "reported_issues_task_id_fkey"
|
|
8447
|
+
columns: ["task_id"]
|
|
8448
|
+
isOneToOne: false
|
|
8449
|
+
referencedRelation: "prj_tasks"
|
|
8450
|
+
referencedColumns: ["id"]
|
|
8451
|
+
},
|
|
8452
|
+
]
|
|
8453
|
+
}
|
|
8282
8454
|
session_messages: {
|
|
8283
8455
|
Row: {
|
|
8284
8456
|
created_at: string | null
|
|
@@ -8675,6 +8847,7 @@ type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
|
8675
8847
|
type MilestoneUpdate = Database['public']['Tables']['prj_milestones']['Update']
|
|
8676
8848
|
|
|
8677
8849
|
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
8850
|
+
type TaskUpdate = Database['public']['Tables']['prj_tasks']['Update']
|
|
8678
8851
|
|
|
8679
8852
|
// Status enums
|
|
8680
8853
|
type ProjectStatus = 'active' | 'on_track' | 'at_risk' | 'blocked' | 'completed' | 'paused'
|
|
@@ -9163,21 +9336,29 @@ interface ArchivedLogsState {
|
|
|
9163
9336
|
*/
|
|
9164
9337
|
declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
|
|
9165
9338
|
|
|
9166
|
-
interface
|
|
9167
|
-
schema: TSchema;
|
|
9168
|
-
}
|
|
9169
|
-
interface UseExecuteWorkflowParams<TSchema extends z.ZodType> {
|
|
9339
|
+
interface UseExecuteResourceOptions<TSchema extends z.ZodType | undefined = undefined> {
|
|
9170
9340
|
resourceId: string;
|
|
9171
|
-
resourceType:
|
|
9172
|
-
|
|
9341
|
+
resourceType: ResourceType;
|
|
9342
|
+
schema?: TSchema;
|
|
9173
9343
|
}
|
|
9174
9344
|
/**
|
|
9175
|
-
*
|
|
9176
|
-
*
|
|
9345
|
+
* Generic resource execution hook. Binds resourceId and resourceType at
|
|
9346
|
+
* construction time so callers only pass input to execute().
|
|
9347
|
+
*
|
|
9348
|
+
* When schema is provided, validates input via schema.safeParse and throws
|
|
9349
|
+
* a descriptive error on failure. When no schema, passes input through unchanged.
|
|
9350
|
+
*
|
|
9351
|
+
* @example
|
|
9352
|
+
* const { execute, isPending } = useExecuteResource({
|
|
9353
|
+
* resourceId: 'my-workflow',
|
|
9354
|
+
* resourceType: 'workflow',
|
|
9355
|
+
* schema: writeNoteInputSchema
|
|
9356
|
+
* })
|
|
9357
|
+
* await execute({ dealId: '...', note: '...' })
|
|
9177
9358
|
*/
|
|
9178
|
-
declare function
|
|
9179
|
-
execute: (
|
|
9180
|
-
mutation:
|
|
9359
|
+
declare function useExecuteResource<TSchema extends z.ZodType | undefined = undefined>(options: UseExecuteResourceOptions<TSchema>): {
|
|
9360
|
+
execute: (input: TSchema extends z.ZodType ? z.infer<TSchema> : unknown) => Promise<ExecuteAsyncResult>;
|
|
9361
|
+
mutation: ReturnType<typeof useExecuteAsync>;
|
|
9181
9362
|
isPending: boolean;
|
|
9182
9363
|
isSuccess: boolean;
|
|
9183
9364
|
isError: boolean;
|
|
@@ -9186,6 +9367,15 @@ declare function useExecuteWorkflow<TSchema extends z.ZodType>(options: UseExecu
|
|
|
9186
9367
|
reset: () => void;
|
|
9187
9368
|
};
|
|
9188
9369
|
|
|
9370
|
+
declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
|
|
9371
|
+
liveExecutions: Set<string>;
|
|
9372
|
+
connected: boolean;
|
|
9373
|
+
error: string | null;
|
|
9374
|
+
runningCount: number;
|
|
9375
|
+
isLive: (executionId: string) => boolean;
|
|
9376
|
+
streamingLogs: Map<string, ExecutionLogMessage$1[]>;
|
|
9377
|
+
};
|
|
9378
|
+
|
|
9189
9379
|
interface UseScheduledTasksOptions {
|
|
9190
9380
|
status?: 'active' | 'paused' | 'completed' | 'cancelled';
|
|
9191
9381
|
targetResourceType?: 'agent' | 'workflow';
|
|
@@ -9411,6 +9601,44 @@ declare function useCancelSchedule(): _tanstack_react_query.UseMutationResult<Ta
|
|
|
9411
9601
|
*/
|
|
9412
9602
|
declare function useDeleteSchedule(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
|
|
9413
9603
|
|
|
9604
|
+
/**
|
|
9605
|
+
* Subscribe to Supabase Realtime for activity INSERT events.
|
|
9606
|
+
*
|
|
9607
|
+
* Replaces the former Activities SSE subscription. The `activities` table is
|
|
9608
|
+
* in the `supabase_realtime` publication (migration 20260418000000). RLS on
|
|
9609
|
+
* the table enforces org-scoping server-side; the filter here is a belt-and-
|
|
9610
|
+
* suspenders guard that also avoids receiving rows that RLS already blocks.
|
|
9611
|
+
*
|
|
9612
|
+
* When `enabled` is false (e.g., the user is on a route where activity feed
|
|
9613
|
+
* is not displayed) no channel is opened -- preserving the same route-gating
|
|
9614
|
+
* behaviour the SSEProvider enforced.
|
|
9615
|
+
*
|
|
9616
|
+
* On INSERT, invalidates the broad `['activities']` query key, which matches
|
|
9617
|
+
* both `['activities', 'list', ...]` and `['activities', 'trend', ...]` caches
|
|
9618
|
+
* used by `useActivities` and `useActivityTrend`.
|
|
9619
|
+
*
|
|
9620
|
+
* @param organizationId - Supabase UUID for the current org (used as RLS filter)
|
|
9621
|
+
* @param enabled - Whether to open the subscription (route-gating)
|
|
9622
|
+
*/
|
|
9623
|
+
declare function useActivitiesRealtime(organizationId: string, enabled: boolean): void;
|
|
9624
|
+
|
|
9625
|
+
declare const projectActivityKeys: {
|
|
9626
|
+
all: readonly ["project-activities"];
|
|
9627
|
+
list: (projectId: string) => readonly ["project-activities", "list", string];
|
|
9628
|
+
};
|
|
9629
|
+
/**
|
|
9630
|
+
* Fetches activities scoped to a single project via entity filtering.
|
|
9631
|
+
*
|
|
9632
|
+
* Uses the existing /activities endpoint with entityType=project and entityId=projectId.
|
|
9633
|
+
* Wave 3's useProjectRealtime hook will invalidate ['project-activities', 'list', projectId]
|
|
9634
|
+
* on project-scoped Realtime events -- this query key is intentionally stable so that
|
|
9635
|
+
* invalidation from the outside does not require coupling to local state.
|
|
9636
|
+
*
|
|
9637
|
+
* @param projectId - The project's UUID
|
|
9638
|
+
* @param enabled - Whether the query should run (route-gating)
|
|
9639
|
+
*/
|
|
9640
|
+
declare function useProjectActivities(projectId: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<Activity[], Error>;
|
|
9641
|
+
|
|
9414
9642
|
interface UseActivitiesParams {
|
|
9415
9643
|
limit?: number;
|
|
9416
9644
|
offset?: number;
|
|
@@ -10333,15 +10561,6 @@ declare const operationsKeys: {
|
|
|
10333
10561
|
session: (org: string, sessionId: string) => readonly ["operations", "session", string, string];
|
|
10334
10562
|
};
|
|
10335
10563
|
|
|
10336
|
-
declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
|
|
10337
|
-
liveExecutions: Set<string>;
|
|
10338
|
-
connected: boolean;
|
|
10339
|
-
error: string | null;
|
|
10340
|
-
runningCount: number;
|
|
10341
|
-
isLive: (executionId: string) => boolean;
|
|
10342
|
-
streamingLogs: Map<string, ExecutionLogMessage$1[]>;
|
|
10343
|
-
};
|
|
10344
|
-
|
|
10345
10564
|
interface UseExecutionPanelStateOptions {
|
|
10346
10565
|
resourceId: string;
|
|
10347
10566
|
manager: SSEConnectionManagerLike;
|
|
@@ -11847,15 +12066,101 @@ declare function useExecutionLogsFilters(_timeRange: TimeRange): {
|
|
|
11847
12066
|
*/
|
|
11848
12067
|
declare function useOrganizationMembers(organizationId: string, params?: Omit<ListMembershipsParams, 'organizationId'>): _tanstack_react_query.UseQueryResult<MembershipWithDetails[], Error>;
|
|
11849
12068
|
|
|
12069
|
+
/**
|
|
12070
|
+
* Subscribe to Supabase Realtime for project-scoped postgres_changes events.
|
|
12071
|
+
*
|
|
12072
|
+
* Opens a single multiplexed channel listening to INSERT / UPDATE / DELETE on:
|
|
12073
|
+
* - `prj_projects` (filter: id=eq.{projectId})
|
|
12074
|
+
* - `prj_milestones` (filter: project_id=eq.{projectId})
|
|
12075
|
+
* - `prj_tasks` (filter: project_id=eq.{projectId})
|
|
12076
|
+
* - `prj_notes` (filter: project_id=eq.{projectId})
|
|
12077
|
+
*
|
|
12078
|
+
* All five tables are in the `supabase_realtime` publication (migration
|
|
12079
|
+
* 20260418000000). RLS enforces org scoping server-side; no client-side
|
|
12080
|
+
* org filter is needed here.
|
|
12081
|
+
*
|
|
12082
|
+
* On any event the hook invalidates the relevant TanStack Query cache:
|
|
12083
|
+
* - `prj_projects` → projectKeys.detail(projectId)
|
|
12084
|
+
* - `prj_milestones` → projectKeys.milestones(projectId)
|
|
12085
|
+
* - `prj_tasks` → projectKeys.tasks(projectId)
|
|
12086
|
+
* - `prj_notes` → noteKeys.all (broad: covers all note list variants)
|
|
12087
|
+
* - any table → projectActivityKeys.list(projectId) (activity feed is
|
|
12088
|
+
* derived from project state and is NOT covered by the
|
|
12089
|
+
* org-level useActivitiesRealtime, which only invalidates
|
|
12090
|
+
* the top-level ['activities'] key)
|
|
12091
|
+
*
|
|
12092
|
+
* If `projectId` is falsy no channel is opened, preserving the no-idle-
|
|
12093
|
+
* subscription contract.
|
|
12094
|
+
*
|
|
12095
|
+
* @param projectId - UUID of the project to scope the subscription to
|
|
12096
|
+
*/
|
|
12097
|
+
declare function useProjectRealtime(projectId: string | null | undefined): void;
|
|
12098
|
+
|
|
11850
12099
|
declare const projectKeys: {
|
|
11851
12100
|
all: readonly ["projects"];
|
|
11852
12101
|
lists: () => readonly ["projects", "list"];
|
|
11853
12102
|
list: (orgId: string | null, filters: ProjectFilters) => readonly ["projects", "list", string | null, ProjectFilters];
|
|
11854
12103
|
details: () => readonly ["projects", "detail"];
|
|
11855
12104
|
detail: (id: string) => readonly ["projects", "detail", string];
|
|
12105
|
+
milestones: (id: string) => readonly ["projects", string, "milestones"];
|
|
12106
|
+
tasks: (id: string) => readonly ["projects", string, "tasks"];
|
|
11856
12107
|
};
|
|
11857
12108
|
declare function useProjects(filters?: ProjectFilters): _tanstack_react_query.UseQueryResult<ProjectWithCounts[], Error>;
|
|
11858
12109
|
declare function useProject(id: string): _tanstack_react_query.UseQueryResult<ProjectDetail | null, Error>;
|
|
12110
|
+
/**
|
|
12111
|
+
* Fetches milestones for a single project with a stable, project-scoped query key.
|
|
12112
|
+
*
|
|
12113
|
+
* Query key: ['projects', projectId, 'milestones']
|
|
12114
|
+
*
|
|
12115
|
+
* This key is distinct from the generic `useMilestones` key so that
|
|
12116
|
+
* `queryClient.invalidateQueries({ queryKey: projectKeys.milestones(projectId) })`
|
|
12117
|
+
* invalidates only this project's milestone list -- used by `useProjectRealtime`
|
|
12118
|
+
* to respond to `prj_milestones` Realtime events without forcing a full project refetch.
|
|
12119
|
+
*/
|
|
12120
|
+
declare function useProjectMilestones(projectId: string): _tanstack_react_query.UseQueryResult<{
|
|
12121
|
+
checklist: Json$1 | null;
|
|
12122
|
+
completed_at: string | null;
|
|
12123
|
+
created_at: string;
|
|
12124
|
+
description: string | null;
|
|
12125
|
+
due_date: string | null;
|
|
12126
|
+
id: string;
|
|
12127
|
+
metadata: Json$1 | null;
|
|
12128
|
+
name: string;
|
|
12129
|
+
organization_id: string;
|
|
12130
|
+
project_id: string;
|
|
12131
|
+
sequence: number;
|
|
12132
|
+
status: string;
|
|
12133
|
+
updated_at: string;
|
|
12134
|
+
}[], Error>;
|
|
12135
|
+
/**
|
|
12136
|
+
* Fetches tasks for a single project with a stable, project-scoped query key.
|
|
12137
|
+
*
|
|
12138
|
+
* Query key: ['projects', projectId, 'tasks']
|
|
12139
|
+
*
|
|
12140
|
+
* This key is distinct from the generic `useTasks` key so that
|
|
12141
|
+
* `queryClient.invalidateQueries({ queryKey: projectKeys.tasks(projectId) })`
|
|
12142
|
+
* invalidates only this project's task list -- used by `useProjectRealtime`
|
|
12143
|
+
* to respond to `prj_tasks` Realtime events without forcing a full project refetch.
|
|
12144
|
+
*/
|
|
12145
|
+
declare function useProjectTasks(projectId: string): _tanstack_react_query.UseQueryResult<{
|
|
12146
|
+
checklist: Json$1;
|
|
12147
|
+
completed_at: string | null;
|
|
12148
|
+
created_at: string;
|
|
12149
|
+
description: string | null;
|
|
12150
|
+
due_date: string | null;
|
|
12151
|
+
file_url: string | null;
|
|
12152
|
+
id: string;
|
|
12153
|
+
metadata: Json$1 | null;
|
|
12154
|
+
milestone_id: string | null;
|
|
12155
|
+
name: string;
|
|
12156
|
+
organization_id: string;
|
|
12157
|
+
parent_task_id: string | null;
|
|
12158
|
+
project_id: string;
|
|
12159
|
+
resume_context: Json$1 | null;
|
|
12160
|
+
status: string;
|
|
12161
|
+
type: string;
|
|
12162
|
+
updated_at: string;
|
|
12163
|
+
}[], Error>;
|
|
11859
12164
|
declare function useCreateProject(): _tanstack_react_query.UseMutationResult<{
|
|
11860
12165
|
actual_end_date: string | null;
|
|
11861
12166
|
client_company_id: string | null;
|
|
@@ -12037,6 +12342,65 @@ declare function useTasks(filters?: TaskFilters): _tanstack_react_query.UseQuery
|
|
|
12037
12342
|
type: string;
|
|
12038
12343
|
updated_at: string;
|
|
12039
12344
|
}[], Error>;
|
|
12345
|
+
declare function useCreateTask(): _tanstack_react_query.UseMutationResult<{
|
|
12346
|
+
checklist: Json$1;
|
|
12347
|
+
completed_at: string | null;
|
|
12348
|
+
created_at: string;
|
|
12349
|
+
description: string | null;
|
|
12350
|
+
due_date: string | null;
|
|
12351
|
+
file_url: string | null;
|
|
12352
|
+
id: string;
|
|
12353
|
+
metadata: Json$1 | null;
|
|
12354
|
+
milestone_id: string | null;
|
|
12355
|
+
name: string;
|
|
12356
|
+
organization_id: string;
|
|
12357
|
+
parent_task_id: string | null;
|
|
12358
|
+
project_id: string;
|
|
12359
|
+
resume_context: Json$1 | null;
|
|
12360
|
+
status: string;
|
|
12361
|
+
type: string;
|
|
12362
|
+
updated_at: string;
|
|
12363
|
+
}, Error, Omit<{
|
|
12364
|
+
checklist?: Json$1;
|
|
12365
|
+
completed_at?: string | null;
|
|
12366
|
+
created_at?: string;
|
|
12367
|
+
description?: string | null;
|
|
12368
|
+
due_date?: string | null;
|
|
12369
|
+
file_url?: string | null;
|
|
12370
|
+
id?: string;
|
|
12371
|
+
metadata?: Json$1 | null;
|
|
12372
|
+
milestone_id?: string | null;
|
|
12373
|
+
name: string;
|
|
12374
|
+
organization_id: string;
|
|
12375
|
+
parent_task_id?: string | null;
|
|
12376
|
+
project_id: string;
|
|
12377
|
+
resume_context?: Json$1 | null;
|
|
12378
|
+
status?: string;
|
|
12379
|
+
type?: string;
|
|
12380
|
+
updated_at?: string;
|
|
12381
|
+
}, "organization_id">, unknown>;
|
|
12382
|
+
declare function useUpdateTask(): _tanstack_react_query.UseMutationResult<{
|
|
12383
|
+
checklist: Json$1;
|
|
12384
|
+
completed_at: string | null;
|
|
12385
|
+
created_at: string;
|
|
12386
|
+
description: string | null;
|
|
12387
|
+
due_date: string | null;
|
|
12388
|
+
file_url: string | null;
|
|
12389
|
+
id: string;
|
|
12390
|
+
metadata: Json$1 | null;
|
|
12391
|
+
milestone_id: string | null;
|
|
12392
|
+
name: string;
|
|
12393
|
+
organization_id: string;
|
|
12394
|
+
parent_task_id: string | null;
|
|
12395
|
+
project_id: string;
|
|
12396
|
+
resume_context: Json$1 | null;
|
|
12397
|
+
status: string;
|
|
12398
|
+
type: string;
|
|
12399
|
+
updated_at: string;
|
|
12400
|
+
}, Error, {
|
|
12401
|
+
id: string;
|
|
12402
|
+
updates: Omit<TaskUpdate, "organization_id">;
|
|
12403
|
+
}, unknown>;
|
|
12040
12404
|
declare function useDeleteTask(): _tanstack_react_query.UseMutationResult<void, Error, {
|
|
12041
12405
|
id: string;
|
|
12042
12406
|
projectId: string;
|
|
@@ -12574,5 +12938,5 @@ declare function InitializationProvider({ children }: {
|
|
|
12574
12938
|
children: ReactNode;
|
|
12575
12939
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
12576
12940
|
|
|
12577
|
-
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, projectKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, 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, 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,
|
|
12578
|
-
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,
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import './chunk-XCYKC6OZ.js';
|
|
2
|
-
export { useAvailablePresets } from './chunk-
|
|
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,
|
|
2
|
+
export { useAvailablePresets } from './chunk-ETWKPFOO.js';
|
|
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, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, 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, 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,
|
|
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-WM7JTTPX.js';
|
|
6
6
|
export { observabilityKeys, useErrorTrends } from './chunk-LXHZYSMQ.js';
|
|
7
|
+
import './chunk-BRXELOHC.js';
|
|
7
8
|
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-22UVE3RA.js';
|
|
9
|
+
export { useMergedExecution } from './chunk-3ZMAGTWF.js';
|
|
8
10
|
export { createTestFeaturesProvider } from './chunk-DKQQK3WX.js';
|
|
9
|
-
export { ElevasisUIProvider } from './chunk-
|
|
10
|
-
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-
|
|
11
|
+
export { ElevasisUIProvider } from './chunk-PXFV47B3.js';
|
|
12
|
+
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-TYWZABTP.js';
|
|
11
13
|
import './chunk-F4TPY6YL.js';
|
|
12
14
|
export { ElevasisFeaturesProvider, FeatureShell, createFeatureAccessHook, createUseFeatureAccess, useElevasisFeatures, useOptionalElevasisFeatures } from './chunk-C7BX547M.js';
|
|
13
15
|
import './chunk-RX4UWZZR.js';
|
|
@@ -2070,6 +2070,91 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
+
reported_issues: {
|
|
2074
|
+
Row: {
|
|
2075
|
+
affected_page: string | null;
|
|
2076
|
+
category: string;
|
|
2077
|
+
context: Json | null;
|
|
2078
|
+
created_at: string;
|
|
2079
|
+
description: string;
|
|
2080
|
+
evidence: Json | null;
|
|
2081
|
+
id: string;
|
|
2082
|
+
organization_id: string;
|
|
2083
|
+
project_id: string | null;
|
|
2084
|
+
reported_at: string;
|
|
2085
|
+
reporter_id: string | null;
|
|
2086
|
+
resolved_at: string | null;
|
|
2087
|
+
severity: string;
|
|
2088
|
+
source: string;
|
|
2089
|
+
status: string;
|
|
2090
|
+
task_id: string | null;
|
|
2091
|
+
title: string;
|
|
2092
|
+
updated_at: string;
|
|
2093
|
+
};
|
|
2094
|
+
Insert: {
|
|
2095
|
+
affected_page?: string | null;
|
|
2096
|
+
category: string;
|
|
2097
|
+
context?: Json | null;
|
|
2098
|
+
created_at?: string;
|
|
2099
|
+
description: string;
|
|
2100
|
+
evidence?: Json | null;
|
|
2101
|
+
id?: string;
|
|
2102
|
+
organization_id: string;
|
|
2103
|
+
project_id?: string | null;
|
|
2104
|
+
reported_at?: string;
|
|
2105
|
+
reporter_id?: string | null;
|
|
2106
|
+
resolved_at?: string | null;
|
|
2107
|
+
severity: string;
|
|
2108
|
+
source: string;
|
|
2109
|
+
status?: string;
|
|
2110
|
+
task_id?: string | null;
|
|
2111
|
+
title: string;
|
|
2112
|
+
updated_at?: string;
|
|
2113
|
+
};
|
|
2114
|
+
Update: {
|
|
2115
|
+
affected_page?: string | null;
|
|
2116
|
+
category?: string;
|
|
2117
|
+
context?: Json | null;
|
|
2118
|
+
created_at?: string;
|
|
2119
|
+
description?: string;
|
|
2120
|
+
evidence?: Json | null;
|
|
2121
|
+
id?: string;
|
|
2122
|
+
organization_id?: string;
|
|
2123
|
+
project_id?: string | null;
|
|
2124
|
+
reported_at?: string;
|
|
2125
|
+
reporter_id?: string | null;
|
|
2126
|
+
resolved_at?: string | null;
|
|
2127
|
+
severity?: string;
|
|
2128
|
+
source?: string;
|
|
2129
|
+
status?: string;
|
|
2130
|
+
task_id?: string | null;
|
|
2131
|
+
title?: string;
|
|
2132
|
+
updated_at?: string;
|
|
2133
|
+
};
|
|
2134
|
+
Relationships: [
|
|
2135
|
+
{
|
|
2136
|
+
foreignKeyName: "reported_issues_organization_id_fkey";
|
|
2137
|
+
columns: ["organization_id"];
|
|
2138
|
+
isOneToOne: false;
|
|
2139
|
+
referencedRelation: "organizations";
|
|
2140
|
+
referencedColumns: ["id"];
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
foreignKeyName: "reported_issues_project_id_fkey";
|
|
2144
|
+
columns: ["project_id"];
|
|
2145
|
+
isOneToOne: false;
|
|
2146
|
+
referencedRelation: "prj_projects";
|
|
2147
|
+
referencedColumns: ["id"];
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
foreignKeyName: "reported_issues_task_id_fkey";
|
|
2151
|
+
columns: ["task_id"];
|
|
2152
|
+
isOneToOne: false;
|
|
2153
|
+
referencedRelation: "prj_tasks";
|
|
2154
|
+
referencedColumns: ["id"];
|
|
2155
|
+
}
|
|
2156
|
+
];
|
|
2157
|
+
};
|
|
2073
2158
|
session_messages: {
|
|
2074
2159
|
Row: {
|
|
2075
2160
|
created_at: string | null;
|