@elevasis/ui 1.26.1 → 1.27.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/charts/index.js +2 -2
- package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
- package/dist/chunk-5COLSYBE.js +199 -0
- package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
- package/dist/chunk-BAGYETKM.js +635 -0
- package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
- package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
- package/dist/chunk-ITCEULI5.js +238 -0
- package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
- package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
- package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
- package/dist/chunk-TLAIQC7B.js +6382 -0
- package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
- package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
- package/dist/chunk-WJ7W7JU4.js +2115 -0
- package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
- package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
- package/dist/components/index.d.ts +333 -73
- package/dist/components/index.js +838 -686
- package/dist/features/auth/index.d.ts +125 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +28 -2
- package/dist/features/dashboard/index.js +21 -635
- package/dist/features/monitoring/index.d.ts +28 -1
- package/dist/features/monitoring/index.js +19 -529
- package/dist/features/operations/index.d.ts +51 -8
- package/dist/features/operations/index.js +25 -3760
- package/dist/features/settings/index.d.ts +153 -1
- package/dist/features/settings/index.js +19 -1438
- package/dist/hooks/index.d.ts +262 -25
- package/dist/hooks/index.js +12 -8
- package/dist/hooks/published.d.ts +137 -25
- package/dist/hooks/published.js +11 -7
- package/dist/index.d.ts +310 -28
- package/dist/index.js +12 -11
- package/dist/initialization/index.d.ts +125 -0
- package/dist/layout/index.d.ts +2 -0
- package/dist/layout/index.js +6 -5
- package/dist/organization/index.js +1 -2
- package/dist/profile/index.d.ts +125 -0
- package/dist/provider/index.d.ts +48 -3
- package/dist/provider/index.js +10 -4
- package/dist/provider/published.d.ts +48 -3
- package/dist/provider/published.js +8 -2
- package/dist/supabase/index.d.ts +242 -0
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +126 -1
- package/package.json +3 -3
- package/dist/chunk-LR4WVA7W.js +0 -682
- package/dist/chunk-R7WLWGPO.js +0 -126
- package/dist/chunk-TCKIAHDC.js +0 -2626
- package/dist/chunk-V7XHGJQZ.js +0 -145
- package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ReactNode, MouseEvent, AnchorHTMLAttributes, ElementType } from 'react';
|
|
2
|
+
import { ReactNode, MouseEvent, AnchorHTMLAttributes, ElementType, ComponentType } from 'react';
|
|
3
3
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { QueryClient } from '@tanstack/react-query';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -2071,6 +2071,106 @@ type Database$1 = {
|
|
|
2071
2071
|
}
|
|
2072
2072
|
];
|
|
2073
2073
|
};
|
|
2074
|
+
acq_list_companies: {
|
|
2075
|
+
Row: {
|
|
2076
|
+
added_at: string;
|
|
2077
|
+
added_by: string | null;
|
|
2078
|
+
company_id: string;
|
|
2079
|
+
id: string;
|
|
2080
|
+
list_id: string;
|
|
2081
|
+
source_execution_id: string | null;
|
|
2082
|
+
source_input_hash: string | null;
|
|
2083
|
+
source_resource_id: string | null;
|
|
2084
|
+
stage: string | null;
|
|
2085
|
+
stage_updated_at: string | null;
|
|
2086
|
+
};
|
|
2087
|
+
Insert: {
|
|
2088
|
+
added_at?: string;
|
|
2089
|
+
added_by?: string | null;
|
|
2090
|
+
company_id: string;
|
|
2091
|
+
id?: string;
|
|
2092
|
+
list_id: string;
|
|
2093
|
+
source_execution_id?: string | null;
|
|
2094
|
+
source_input_hash?: string | null;
|
|
2095
|
+
source_resource_id?: string | null;
|
|
2096
|
+
stage?: string | null;
|
|
2097
|
+
stage_updated_at?: string | null;
|
|
2098
|
+
};
|
|
2099
|
+
Update: {
|
|
2100
|
+
added_at?: string;
|
|
2101
|
+
added_by?: string | null;
|
|
2102
|
+
company_id?: string;
|
|
2103
|
+
id?: string;
|
|
2104
|
+
list_id?: string;
|
|
2105
|
+
source_execution_id?: string | null;
|
|
2106
|
+
source_input_hash?: string | null;
|
|
2107
|
+
source_resource_id?: string | null;
|
|
2108
|
+
stage?: string | null;
|
|
2109
|
+
stage_updated_at?: string | null;
|
|
2110
|
+
};
|
|
2111
|
+
Relationships: [
|
|
2112
|
+
{
|
|
2113
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
2114
|
+
columns: ["company_id"];
|
|
2115
|
+
isOneToOne: false;
|
|
2116
|
+
referencedRelation: "acq_companies";
|
|
2117
|
+
referencedColumns: ["id"];
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
2121
|
+
columns: ["list_id"];
|
|
2122
|
+
isOneToOne: false;
|
|
2123
|
+
referencedRelation: "acq_lists";
|
|
2124
|
+
referencedColumns: ["id"];
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
2128
|
+
columns: ["source_execution_id"];
|
|
2129
|
+
isOneToOne: false;
|
|
2130
|
+
referencedRelation: "execution_logs";
|
|
2131
|
+
referencedColumns: ["execution_id"];
|
|
2132
|
+
}
|
|
2133
|
+
];
|
|
2134
|
+
};
|
|
2135
|
+
acq_list_executions: {
|
|
2136
|
+
Row: {
|
|
2137
|
+
created_at: string;
|
|
2138
|
+
execution_id: string;
|
|
2139
|
+
id: string;
|
|
2140
|
+
list_id: string;
|
|
2141
|
+
payload: Json$1;
|
|
2142
|
+
};
|
|
2143
|
+
Insert: {
|
|
2144
|
+
created_at?: string;
|
|
2145
|
+
execution_id: string;
|
|
2146
|
+
id?: string;
|
|
2147
|
+
list_id: string;
|
|
2148
|
+
payload?: Json$1;
|
|
2149
|
+
};
|
|
2150
|
+
Update: {
|
|
2151
|
+
created_at?: string;
|
|
2152
|
+
execution_id?: string;
|
|
2153
|
+
id?: string;
|
|
2154
|
+
list_id?: string;
|
|
2155
|
+
payload?: Json$1;
|
|
2156
|
+
};
|
|
2157
|
+
Relationships: [
|
|
2158
|
+
{
|
|
2159
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
2160
|
+
columns: ["execution_id"];
|
|
2161
|
+
isOneToOne: false;
|
|
2162
|
+
referencedRelation: "execution_logs";
|
|
2163
|
+
referencedColumns: ["execution_id"];
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
2167
|
+
columns: ["list_id"];
|
|
2168
|
+
isOneToOne: false;
|
|
2169
|
+
referencedRelation: "acq_lists";
|
|
2170
|
+
referencedColumns: ["id"];
|
|
2171
|
+
}
|
|
2172
|
+
];
|
|
2173
|
+
};
|
|
2074
2174
|
acq_list_members: {
|
|
2075
2175
|
Row: {
|
|
2076
2176
|
added_at: string;
|
|
@@ -2078,6 +2178,11 @@ type Database$1 = {
|
|
|
2078
2178
|
contact_id: string;
|
|
2079
2179
|
id: string;
|
|
2080
2180
|
list_id: string;
|
|
2181
|
+
source_execution_id: string | null;
|
|
2182
|
+
source_input_hash: string | null;
|
|
2183
|
+
source_resource_id: string | null;
|
|
2184
|
+
stage: string | null;
|
|
2185
|
+
stage_updated_at: string | null;
|
|
2081
2186
|
};
|
|
2082
2187
|
Insert: {
|
|
2083
2188
|
added_at?: string;
|
|
@@ -2085,6 +2190,11 @@ type Database$1 = {
|
|
|
2085
2190
|
contact_id: string;
|
|
2086
2191
|
id?: string;
|
|
2087
2192
|
list_id: string;
|
|
2193
|
+
source_execution_id?: string | null;
|
|
2194
|
+
source_input_hash?: string | null;
|
|
2195
|
+
source_resource_id?: string | null;
|
|
2196
|
+
stage?: string | null;
|
|
2197
|
+
stage_updated_at?: string | null;
|
|
2088
2198
|
};
|
|
2089
2199
|
Update: {
|
|
2090
2200
|
added_at?: string;
|
|
@@ -2092,6 +2202,11 @@ type Database$1 = {
|
|
|
2092
2202
|
contact_id?: string;
|
|
2093
2203
|
id?: string;
|
|
2094
2204
|
list_id?: string;
|
|
2205
|
+
source_execution_id?: string | null;
|
|
2206
|
+
source_input_hash?: string | null;
|
|
2207
|
+
source_resource_id?: string | null;
|
|
2208
|
+
stage?: string | null;
|
|
2209
|
+
stage_updated_at?: string | null;
|
|
2095
2210
|
};
|
|
2096
2211
|
Relationships: [
|
|
2097
2212
|
{
|
|
@@ -2107,6 +2222,13 @@ type Database$1 = {
|
|
|
2107
2222
|
isOneToOne: false;
|
|
2108
2223
|
referencedRelation: "acq_lists";
|
|
2109
2224
|
referencedColumns: ["id"];
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
2228
|
+
columns: ["source_execution_id"];
|
|
2229
|
+
isOneToOne: false;
|
|
2230
|
+
referencedRelation: "execution_logs";
|
|
2231
|
+
referencedColumns: ["execution_id"];
|
|
2110
2232
|
}
|
|
2111
2233
|
];
|
|
2112
2234
|
};
|
|
@@ -2114,6 +2236,7 @@ type Database$1 = {
|
|
|
2114
2236
|
Row: {
|
|
2115
2237
|
batch_ids: string[];
|
|
2116
2238
|
completed_at: string | null;
|
|
2239
|
+
config: Json$1;
|
|
2117
2240
|
created_at: string;
|
|
2118
2241
|
description: string | null;
|
|
2119
2242
|
id: string;
|
|
@@ -2128,6 +2251,7 @@ type Database$1 = {
|
|
|
2128
2251
|
Insert: {
|
|
2129
2252
|
batch_ids?: string[];
|
|
2130
2253
|
completed_at?: string | null;
|
|
2254
|
+
config?: Json$1;
|
|
2131
2255
|
created_at?: string;
|
|
2132
2256
|
description?: string | null;
|
|
2133
2257
|
id?: string;
|
|
@@ -2142,6 +2266,7 @@ type Database$1 = {
|
|
|
2142
2266
|
Update: {
|
|
2143
2267
|
batch_ids?: string[];
|
|
2144
2268
|
completed_at?: string | null;
|
|
2269
|
+
config?: Json$1;
|
|
2145
2270
|
created_at?: string;
|
|
2146
2271
|
description?: string | null;
|
|
2147
2272
|
id?: string;
|
|
@@ -4326,7 +4451,7 @@ interface NotificationDTO {
|
|
|
4326
4451
|
|
|
4327
4452
|
/** Raw database row type for acq_deals table */
|
|
4328
4453
|
type AcqDealRow = Database$1['public']['Tables']['acq_deals']['Row'];
|
|
4329
|
-
type DealStage = 'interested' | '
|
|
4454
|
+
type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
|
|
4330
4455
|
interface DealContact {
|
|
4331
4456
|
id: string;
|
|
4332
4457
|
first_name: string | null;
|
|
@@ -4379,45 +4504,30 @@ interface AcqDealTask {
|
|
|
4379
4504
|
createdByUserId: string | null;
|
|
4380
4505
|
}
|
|
4381
4506
|
/**
|
|
4382
|
-
*
|
|
4383
|
-
*
|
|
4384
|
-
* the lead-gen pipeline for the given batchId.
|
|
4507
|
+
* Live-scan aggregate telemetry for a single list, computed on demand from
|
|
4508
|
+
* the list junction tables and current contact deliverability state.
|
|
4385
4509
|
*/
|
|
4386
|
-
interface
|
|
4387
|
-
|
|
4510
|
+
interface ListTelemetry {
|
|
4511
|
+
listId: string;
|
|
4388
4512
|
totalCompanies: number;
|
|
4389
4513
|
totalContacts: number;
|
|
4390
|
-
/** Per-stage company and contact counts derived from pipeline_status fields */
|
|
4391
4514
|
stageCounts: {
|
|
4392
|
-
|
|
4393
|
-
scraped: number;
|
|
4394
|
-
/** Companies where pipeline_status.enrichment.websiteCrawl?.status === 'complete' */
|
|
4515
|
+
populated: number;
|
|
4395
4516
|
extracted: number;
|
|
4396
|
-
/** Companies where category_pain != null */
|
|
4397
|
-
categoryPained: number;
|
|
4398
|
-
/** Companies where category != null AND category_pain != null */
|
|
4399
4517
|
qualified: number;
|
|
4400
|
-
/** Total contacts belonging to the batch */
|
|
4401
4518
|
discovered: number;
|
|
4402
|
-
/** Contacts where email_valid != null */
|
|
4403
4519
|
verified: number;
|
|
4404
|
-
/** Contacts where pipeline_status.personalization.status === 'complete' */
|
|
4405
4520
|
personalized: number;
|
|
4521
|
+
uploaded: number;
|
|
4406
4522
|
};
|
|
4407
|
-
/** Email deliverability breakdown for contacts in the batch */
|
|
4408
4523
|
deliverability: {
|
|
4409
|
-
/** Contacts where email_valid === 'VALID' */
|
|
4410
4524
|
valid: number;
|
|
4411
|
-
/** Contacts where email_valid === 'RISKY' */
|
|
4412
4525
|
risky: number;
|
|
4413
|
-
/** Contacts where email_valid === 'INVALID' */
|
|
4414
4526
|
invalid: number;
|
|
4415
|
-
/** Contacts where email_valid === 'UNKNOWN' or email_valid is null */
|
|
4416
4527
|
unknown: number;
|
|
4417
|
-
/** Contacts where pipeline_status.outreach.status === 'bounced' */
|
|
4418
4528
|
bounced: number;
|
|
4419
4529
|
};
|
|
4420
|
-
/** Reserved
|
|
4530
|
+
/** Reserved -- active workflow IDs associated with this list. */
|
|
4421
4531
|
activeWorkflows?: string[];
|
|
4422
4532
|
}
|
|
4423
4533
|
|
|
@@ -6712,6 +6822,51 @@ declare function ScrollToTop(): react_jsx_runtime.JSX.Element;
|
|
|
6712
6822
|
*/
|
|
6713
6823
|
declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
|
|
6714
6824
|
|
|
6825
|
+
interface FeatureNavLink {
|
|
6826
|
+
label: string;
|
|
6827
|
+
link: string;
|
|
6828
|
+
featureKey?: string;
|
|
6829
|
+
onClick?: () => void;
|
|
6830
|
+
}
|
|
6831
|
+
interface FeatureNavEntry {
|
|
6832
|
+
label: string;
|
|
6833
|
+
icon: ComponentType;
|
|
6834
|
+
link?: string;
|
|
6835
|
+
featureKey?: string;
|
|
6836
|
+
requiresAdmin?: boolean;
|
|
6837
|
+
dataOnboardingTourId?: string;
|
|
6838
|
+
links?: FeatureNavLink[];
|
|
6839
|
+
}
|
|
6840
|
+
type FeatureSidebarComponent = ComponentType;
|
|
6841
|
+
interface FeatureModule {
|
|
6842
|
+
key: string;
|
|
6843
|
+
label?: string;
|
|
6844
|
+
navEntry?: FeatureNavEntry;
|
|
6845
|
+
sidebar?: FeatureSidebarComponent;
|
|
6846
|
+
subshellRoutes?: string[];
|
|
6847
|
+
}
|
|
6848
|
+
interface FeatureRegistry {
|
|
6849
|
+
features: FeatureModule[];
|
|
6850
|
+
}
|
|
6851
|
+
interface ElevasisFeaturesProviderProps {
|
|
6852
|
+
features: FeatureModule[];
|
|
6853
|
+
children: ReactNode;
|
|
6854
|
+
}
|
|
6855
|
+
interface ElevasisFeaturesContextValue {
|
|
6856
|
+
navItems: FeatureNavEntry[];
|
|
6857
|
+
enabledFeatures: FeatureModule[];
|
|
6858
|
+
allFeatures: FeatureModule[];
|
|
6859
|
+
isFeatureEnabled: (key: string) => boolean;
|
|
6860
|
+
getFeature: (key: string) => FeatureModule | undefined;
|
|
6861
|
+
}
|
|
6862
|
+
|
|
6863
|
+
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
6864
|
+
declare function ElevasisFeaturesProvider({ features, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
6865
|
+
|
|
6866
|
+
declare function FeatureShell({ children }: {
|
|
6867
|
+
children: ReactNode;
|
|
6868
|
+
}): react_jsx_runtime.JSX.Element;
|
|
6869
|
+
|
|
6715
6870
|
interface AppearanceConfig {
|
|
6716
6871
|
/** Background layers rendered behind app content. Defaults to Elevasis background. */
|
|
6717
6872
|
background?: ReactNode;
|
|
@@ -7672,6 +7827,106 @@ type Database = {
|
|
|
7672
7827
|
},
|
|
7673
7828
|
]
|
|
7674
7829
|
}
|
|
7830
|
+
acq_list_companies: {
|
|
7831
|
+
Row: {
|
|
7832
|
+
added_at: string
|
|
7833
|
+
added_by: string | null
|
|
7834
|
+
company_id: string
|
|
7835
|
+
id: string
|
|
7836
|
+
list_id: string
|
|
7837
|
+
source_execution_id: string | null
|
|
7838
|
+
source_input_hash: string | null
|
|
7839
|
+
source_resource_id: string | null
|
|
7840
|
+
stage: string | null
|
|
7841
|
+
stage_updated_at: string | null
|
|
7842
|
+
}
|
|
7843
|
+
Insert: {
|
|
7844
|
+
added_at?: string
|
|
7845
|
+
added_by?: string | null
|
|
7846
|
+
company_id: string
|
|
7847
|
+
id?: string
|
|
7848
|
+
list_id: string
|
|
7849
|
+
source_execution_id?: string | null
|
|
7850
|
+
source_input_hash?: string | null
|
|
7851
|
+
source_resource_id?: string | null
|
|
7852
|
+
stage?: string | null
|
|
7853
|
+
stage_updated_at?: string | null
|
|
7854
|
+
}
|
|
7855
|
+
Update: {
|
|
7856
|
+
added_at?: string
|
|
7857
|
+
added_by?: string | null
|
|
7858
|
+
company_id?: string
|
|
7859
|
+
id?: string
|
|
7860
|
+
list_id?: string
|
|
7861
|
+
source_execution_id?: string | null
|
|
7862
|
+
source_input_hash?: string | null
|
|
7863
|
+
source_resource_id?: string | null
|
|
7864
|
+
stage?: string | null
|
|
7865
|
+
stage_updated_at?: string | null
|
|
7866
|
+
}
|
|
7867
|
+
Relationships: [
|
|
7868
|
+
{
|
|
7869
|
+
foreignKeyName: "acq_list_companies_company_id_fkey"
|
|
7870
|
+
columns: ["company_id"]
|
|
7871
|
+
isOneToOne: false
|
|
7872
|
+
referencedRelation: "acq_companies"
|
|
7873
|
+
referencedColumns: ["id"]
|
|
7874
|
+
},
|
|
7875
|
+
{
|
|
7876
|
+
foreignKeyName: "acq_list_companies_list_id_fkey"
|
|
7877
|
+
columns: ["list_id"]
|
|
7878
|
+
isOneToOne: false
|
|
7879
|
+
referencedRelation: "acq_lists"
|
|
7880
|
+
referencedColumns: ["id"]
|
|
7881
|
+
},
|
|
7882
|
+
{
|
|
7883
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey"
|
|
7884
|
+
columns: ["source_execution_id"]
|
|
7885
|
+
isOneToOne: false
|
|
7886
|
+
referencedRelation: "execution_logs"
|
|
7887
|
+
referencedColumns: ["execution_id"]
|
|
7888
|
+
},
|
|
7889
|
+
]
|
|
7890
|
+
}
|
|
7891
|
+
acq_list_executions: {
|
|
7892
|
+
Row: {
|
|
7893
|
+
created_at: string
|
|
7894
|
+
execution_id: string
|
|
7895
|
+
id: string
|
|
7896
|
+
list_id: string
|
|
7897
|
+
payload: Json
|
|
7898
|
+
}
|
|
7899
|
+
Insert: {
|
|
7900
|
+
created_at?: string
|
|
7901
|
+
execution_id: string
|
|
7902
|
+
id?: string
|
|
7903
|
+
list_id: string
|
|
7904
|
+
payload?: Json
|
|
7905
|
+
}
|
|
7906
|
+
Update: {
|
|
7907
|
+
created_at?: string
|
|
7908
|
+
execution_id?: string
|
|
7909
|
+
id?: string
|
|
7910
|
+
list_id?: string
|
|
7911
|
+
payload?: Json
|
|
7912
|
+
}
|
|
7913
|
+
Relationships: [
|
|
7914
|
+
{
|
|
7915
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey"
|
|
7916
|
+
columns: ["execution_id"]
|
|
7917
|
+
isOneToOne: false
|
|
7918
|
+
referencedRelation: "execution_logs"
|
|
7919
|
+
referencedColumns: ["execution_id"]
|
|
7920
|
+
},
|
|
7921
|
+
{
|
|
7922
|
+
foreignKeyName: "acq_list_executions_list_id_fkey"
|
|
7923
|
+
columns: ["list_id"]
|
|
7924
|
+
isOneToOne: false
|
|
7925
|
+
referencedRelation: "acq_lists"
|
|
7926
|
+
referencedColumns: ["id"]
|
|
7927
|
+
},
|
|
7928
|
+
]
|
|
7929
|
+
}
|
|
7675
7930
|
acq_list_members: {
|
|
7676
7931
|
Row: {
|
|
7677
7932
|
added_at: string
|
|
@@ -7679,6 +7934,11 @@ type Database = {
|
|
|
7679
7934
|
contact_id: string
|
|
7680
7935
|
id: string
|
|
7681
7936
|
list_id: string
|
|
7937
|
+
source_execution_id: string | null
|
|
7938
|
+
source_input_hash: string | null
|
|
7939
|
+
source_resource_id: string | null
|
|
7940
|
+
stage: string | null
|
|
7941
|
+
stage_updated_at: string | null
|
|
7682
7942
|
}
|
|
7683
7943
|
Insert: {
|
|
7684
7944
|
added_at?: string
|
|
@@ -7686,6 +7946,11 @@ type Database = {
|
|
|
7686
7946
|
contact_id: string
|
|
7687
7947
|
id?: string
|
|
7688
7948
|
list_id: string
|
|
7949
|
+
source_execution_id?: string | null
|
|
7950
|
+
source_input_hash?: string | null
|
|
7951
|
+
source_resource_id?: string | null
|
|
7952
|
+
stage?: string | null
|
|
7953
|
+
stage_updated_at?: string | null
|
|
7689
7954
|
}
|
|
7690
7955
|
Update: {
|
|
7691
7956
|
added_at?: string
|
|
@@ -7693,6 +7958,11 @@ type Database = {
|
|
|
7693
7958
|
contact_id?: string
|
|
7694
7959
|
id?: string
|
|
7695
7960
|
list_id?: string
|
|
7961
|
+
source_execution_id?: string | null
|
|
7962
|
+
source_input_hash?: string | null
|
|
7963
|
+
source_resource_id?: string | null
|
|
7964
|
+
stage?: string | null
|
|
7965
|
+
stage_updated_at?: string | null
|
|
7696
7966
|
}
|
|
7697
7967
|
Relationships: [
|
|
7698
7968
|
{
|
|
@@ -7709,12 +7979,20 @@ type Database = {
|
|
|
7709
7979
|
referencedRelation: "acq_lists"
|
|
7710
7980
|
referencedColumns: ["id"]
|
|
7711
7981
|
},
|
|
7982
|
+
{
|
|
7983
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey"
|
|
7984
|
+
columns: ["source_execution_id"]
|
|
7985
|
+
isOneToOne: false
|
|
7986
|
+
referencedRelation: "execution_logs"
|
|
7987
|
+
referencedColumns: ["execution_id"]
|
|
7988
|
+
},
|
|
7712
7989
|
]
|
|
7713
7990
|
}
|
|
7714
7991
|
acq_lists: {
|
|
7715
7992
|
Row: {
|
|
7716
7993
|
batch_ids: string[]
|
|
7717
7994
|
completed_at: string | null
|
|
7995
|
+
config: Json
|
|
7718
7996
|
created_at: string
|
|
7719
7997
|
description: string | null
|
|
7720
7998
|
id: string
|
|
@@ -7729,6 +8007,7 @@ type Database = {
|
|
|
7729
8007
|
Insert: {
|
|
7730
8008
|
batch_ids?: string[]
|
|
7731
8009
|
completed_at?: string | null
|
|
8010
|
+
config?: Json
|
|
7732
8011
|
created_at?: string
|
|
7733
8012
|
description?: string | null
|
|
7734
8013
|
id?: string
|
|
@@ -7743,6 +8022,7 @@ type Database = {
|
|
|
7743
8022
|
Update: {
|
|
7744
8023
|
batch_ids?: string[]
|
|
7745
8024
|
completed_at?: string | null
|
|
8025
|
+
config?: Json
|
|
7746
8026
|
created_at?: string
|
|
7747
8027
|
description?: string | null
|
|
7748
8028
|
id?: string
|
|
@@ -11421,6 +11701,8 @@ interface UseExecutionPanelStateOptions {
|
|
|
11421
11701
|
apiUrl: string;
|
|
11422
11702
|
limit?: number;
|
|
11423
11703
|
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
11704
|
+
selectedId?: string | null;
|
|
11705
|
+
onSelectedIdChange?: (id: string | null) => void;
|
|
11424
11706
|
}
|
|
11425
11707
|
interface UseExecutionPanelStateReturn {
|
|
11426
11708
|
executions: APIExecutionSummary$1[];
|
|
@@ -11453,7 +11735,7 @@ interface UseExecutionPanelStateReturn {
|
|
|
11453
11735
|
* } = useExecutionPanelState({ resourceId, manager, onConnectionStatus })
|
|
11454
11736
|
* ```
|
|
11455
11737
|
*/
|
|
11456
|
-
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
11738
|
+
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
11457
11739
|
|
|
11458
11740
|
/**
|
|
11459
11741
|
* Utilities for extracting typed properties from resource definitions
|
|
@@ -11981,7 +12263,7 @@ interface CompleteDealTaskParams {
|
|
|
11981
12263
|
*/
|
|
11982
12264
|
declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
|
|
11983
12265
|
|
|
11984
|
-
declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<
|
|
12266
|
+
declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
|
|
11985
12267
|
|
|
11986
12268
|
// Row types from Supabase
|
|
11987
12269
|
type ProjectRow = Database['public']['Tables']['prj_projects']['Row']
|
|
@@ -12780,5 +13062,5 @@ declare function InitializationProvider({ children }: {
|
|
|
12780
13062
|
children: ReactNode;
|
|
12781
13063
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
12782
13064
|
|
|
12783
|
-
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisServiceProvider, ElevasisUIProvider, 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, calculateBarPosition, calculateGraphHeight, calibrationKeys, componentThemes, createCssVariablesResolver, createOrganizationsSlice, 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, useAllCalibrationProjects, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectNotes, 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, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
12784
|
-
export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
|
13065
|
+
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, calculateBarPosition, calculateGraphHeight, calibrationKeys, componentThemes, createCssVariablesResolver, createOrganizationsSlice, 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, useAllCalibrationProjects, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectNotes, 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, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
13066
|
+
export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, 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, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
export { useAvailablePresets } from './chunk-BS4J2LAW.js';
|
|
2
1
|
import './chunk-XCYKC6OZ.js';
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
2
|
+
export { useAvailablePresets } from './chunk-QTD5HPKD.js';
|
|
3
|
+
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from './chunk-WLNEJ6JJ.js';
|
|
4
|
+
export { OperationsService, calibrationKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateProject, useUpdateSchedule, useWarningNotification } from './chunk-RCQPWA5X.js';
|
|
5
5
|
export { observabilityKeys, useErrorTrends } from './chunk-LXHZYSMQ.js';
|
|
6
|
-
export { ScrollToTop, TanStackRouterBridge } from './chunk-MHW43EOH.js';
|
|
7
6
|
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-F6RBK7NJ.js';
|
|
8
7
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-XA34RETF.js';
|
|
9
8
|
import './chunk-ELJIFLCB.js';
|
|
10
|
-
export {
|
|
11
|
-
export { createUseAppInitialization } from './chunk-SLVC5OJ2.js';
|
|
12
|
-
import './chunk-RNP5R5I3.js';
|
|
13
|
-
export { ElevasisUIProvider } from './chunk-RMPXGBNI.js';
|
|
9
|
+
export { ElevasisUIProvider } from './chunk-5JSR6TL5.js';
|
|
14
10
|
import './chunk-SZHARWKU.js';
|
|
15
|
-
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-
|
|
11
|
+
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-TXPUIHX2.js';
|
|
16
12
|
import './chunk-CYXZHBP4.js';
|
|
17
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from './chunk-
|
|
13
|
+
export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, createUseFeatureAccess, useElevasisFeatures, useNotificationAdapter } from './chunk-ITCEULI5.js';
|
|
14
|
+
import './chunk-5COLSYBE.js';
|
|
18
15
|
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-NVOCKXUQ.js';
|
|
19
|
-
export {
|
|
16
|
+
export { ScrollToTop, TanStackRouterBridge } from './chunk-MHW43EOH.js';
|
|
17
|
+
export { OrganizationProvider, OrganizationSwitcher, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from './chunk-W4VYXIN7.js';
|
|
20
18
|
export { AppearanceProvider, useAppearance } from './chunk-QJ2KCHKX.js';
|
|
19
|
+
import './chunk-QJ2S46NI.js';
|
|
20
|
+
export { createUseAppInitialization } from './chunk-SLVC5OJ2.js';
|
|
21
|
+
import './chunk-RNP5R5I3.js';
|
|
21
22
|
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, isAPIClientError, restoreConsole, suppressKnownWarnings, validateEmail } from './chunk-IOKL7BKE.js';
|
|
22
23
|
export { AdminGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck } from './chunk-RWQIFKMJ.js';
|
|
23
24
|
export { useStableAccessToken } from './chunk-ALA56RGZ.js';
|