@elevasis/ui 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{CoreAuthKitInner-3J4RVQO6.js → CoreAuthKitInner-Y6LQYIPX.js} +1 -0
- package/dist/api/index.js +1 -0
- package/dist/auth/context.js +1 -0
- package/dist/auth/index.js +1 -0
- package/dist/charts/index.d.ts +96 -0
- package/dist/charts/index.js +384 -0
- package/dist/chunk-54S7KNJV.js +112 -0
- package/dist/{chunk-6IX5JZEH.js → chunk-G4TAF3T6.js} +166 -1
- package/dist/{chunk-Y2I5JJ3N.js → chunk-K3YVC5RW.js} +2 -2
- package/dist/chunk-KB5NKPTN.js +1455 -0
- package/dist/chunk-MLKGABMK.js +7 -0
- package/dist/{chunk-GIFAF5ZS.js → chunk-MS45MNFM.js} +6 -1
- package/dist/chunk-R56VC63S.js +129 -0
- package/dist/chunk-TYV5NJV2.js +1 -0
- package/dist/{chunk-JQLT6HBI.js → chunk-YJFTZUJJ.js} +22 -2
- package/dist/components/index.css +486 -0
- package/dist/components/index.d.ts +2047 -1
- package/dist/components/index.js +3350 -0
- package/dist/components/navigation/index.js +1 -0
- package/dist/execution/index.d.ts +15 -3
- package/dist/execution/index.js +2 -1
- package/dist/graph/index.js +2 -1
- package/dist/hooks/index.d.ts +270 -0
- package/dist/hooks/index.js +3 -2
- package/dist/hooks/published.d.ts +546 -2
- package/dist/hooks/published.js +3 -2
- package/dist/index.css +62 -0
- package/dist/index.d.ts +351 -4
- package/dist/index.js +12 -1038
- package/dist/initialization/index.d.ts +270 -0
- package/dist/initialization/index.js +1 -0
- package/dist/layout/index.css +44 -0
- package/dist/layout/index.d.ts +330 -0
- package/dist/layout/index.js +1440 -0
- package/dist/organization/index.js +1 -0
- package/dist/profile/index.d.ts +270 -0
- package/dist/profile/index.js +1 -0
- package/dist/provider/index.css +61 -0
- package/dist/provider/index.d.ts +54 -2
- package/dist/provider/index.js +5 -3
- package/dist/provider/published.d.ts +6 -0
- package/dist/provider/published.js +3 -2
- package/dist/router/context.js +1 -0
- package/dist/router/index.js +1 -0
- package/dist/sse/index.js +1 -1
- package/dist/supabase/index.d.ts +525 -0
- package/dist/supabase/index.js +1 -0
- package/dist/theme/index.d.ts +107 -0
- package/dist/theme/index.js +3 -0
- package/dist/typeform/index.js +1 -0
- package/dist/typeform/schemas.js +1 -0
- package/dist/types/index.d.ts +3636 -368
- package/dist/utils/index.js +1 -0
- package/package.json +64 -3
- package/dist/chunk-XXDDMASA.js +0 -170
- /package/dist/{chunk-BUZONXAW.js → chunk-ARQRKA6J.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { QueryClient } from '@tanstack/react-query';
|
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import { ReactNode, MouseEvent, AnchorHTMLAttributes, ElementType } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import { CSSVariablesResolver, MantineThemeOverride } from '@mantine/core';
|
|
6
7
|
import { Node, Edge, NodeMouseHandler } from '@xyflow/react';
|
|
7
8
|
import { IconBrain } from '@tabler/icons-react';
|
|
8
9
|
import { z } from 'zod';
|
|
@@ -121,6 +122,12 @@ interface ElevasisTokenOverrides {
|
|
|
121
122
|
durationFast?: string;
|
|
122
123
|
durationNormal?: string;
|
|
123
124
|
easing?: string;
|
|
125
|
+
/** Foreground text color for destructive/error buttons. Defaults to '#fff'. */
|
|
126
|
+
destructiveFg?: string;
|
|
127
|
+
/** Heading font family — used for titles, section headers. */
|
|
128
|
+
fontHeading?: string;
|
|
129
|
+
/** Body font family — used for general text. */
|
|
130
|
+
fontSans?: string;
|
|
124
131
|
}
|
|
125
132
|
/**
|
|
126
133
|
* Core theme config — Mantine-free.
|
|
@@ -266,6 +273,19 @@ declare function generateShades(hex: string): ColorShadesTuple;
|
|
|
266
273
|
/** Look up a preset by name. Falls back to default preset for unknown names. */
|
|
267
274
|
declare function getPreset(name: PresetName | (string & {})): ThemePreset;
|
|
268
275
|
|
|
276
|
+
/** Token key → CSS variable name. Single source of truth for the mapping. */
|
|
277
|
+
declare const TOKEN_VAR_MAP: Record<keyof ElevasisTokenOverrides, string>;
|
|
278
|
+
/**
|
|
279
|
+
* Creates a CSS variables resolver from theme config.
|
|
280
|
+
*
|
|
281
|
+
* Merge order per scheme: PRESET_DEFAULTS → flat overrides → scheme-specific overrides
|
|
282
|
+
*/
|
|
283
|
+
declare function createCssVariablesResolver(tokens?: ElevasisCoreThemeConfig['tokens'], preset?: PresetName): CSSVariablesResolver;
|
|
284
|
+
|
|
285
|
+
declare const mantineThemeOverride: MantineThemeOverride;
|
|
286
|
+
|
|
287
|
+
declare const componentThemes: MantineThemeOverride['components'];
|
|
288
|
+
|
|
269
289
|
/**
|
|
270
290
|
* Error categories for observability grouping and classification.
|
|
271
291
|
* Used to categorize errors in the execution_errors table metadata.
|
|
@@ -1944,6 +1964,276 @@ type Database = {
|
|
|
1944
1964
|
}
|
|
1945
1965
|
];
|
|
1946
1966
|
};
|
|
1967
|
+
delivery_deliverables: {
|
|
1968
|
+
Row: {
|
|
1969
|
+
completed_at: string | null;
|
|
1970
|
+
created_at: string;
|
|
1971
|
+
description: string | null;
|
|
1972
|
+
due_date: string | null;
|
|
1973
|
+
engagement_id: string;
|
|
1974
|
+
file_url: string | null;
|
|
1975
|
+
id: string;
|
|
1976
|
+
metadata: Json | null;
|
|
1977
|
+
milestone_id: string | null;
|
|
1978
|
+
name: string;
|
|
1979
|
+
organization_id: string;
|
|
1980
|
+
status: string;
|
|
1981
|
+
type: string;
|
|
1982
|
+
updated_at: string;
|
|
1983
|
+
};
|
|
1984
|
+
Insert: {
|
|
1985
|
+
completed_at?: string | null;
|
|
1986
|
+
created_at?: string;
|
|
1987
|
+
description?: string | null;
|
|
1988
|
+
due_date?: string | null;
|
|
1989
|
+
engagement_id: string;
|
|
1990
|
+
file_url?: string | null;
|
|
1991
|
+
id?: string;
|
|
1992
|
+
metadata?: Json | null;
|
|
1993
|
+
milestone_id?: string | null;
|
|
1994
|
+
name: string;
|
|
1995
|
+
organization_id: string;
|
|
1996
|
+
status?: string;
|
|
1997
|
+
type?: string;
|
|
1998
|
+
updated_at?: string;
|
|
1999
|
+
};
|
|
2000
|
+
Update: {
|
|
2001
|
+
completed_at?: string | null;
|
|
2002
|
+
created_at?: string;
|
|
2003
|
+
description?: string | null;
|
|
2004
|
+
due_date?: string | null;
|
|
2005
|
+
engagement_id?: string;
|
|
2006
|
+
file_url?: string | null;
|
|
2007
|
+
id?: string;
|
|
2008
|
+
metadata?: Json | null;
|
|
2009
|
+
milestone_id?: string | null;
|
|
2010
|
+
name?: string;
|
|
2011
|
+
organization_id?: string;
|
|
2012
|
+
status?: string;
|
|
2013
|
+
type?: string;
|
|
2014
|
+
updated_at?: string;
|
|
2015
|
+
};
|
|
2016
|
+
Relationships: [
|
|
2017
|
+
{
|
|
2018
|
+
foreignKeyName: "delivery_deliverables_engagement_id_fkey";
|
|
2019
|
+
columns: ["engagement_id"];
|
|
2020
|
+
isOneToOne: false;
|
|
2021
|
+
referencedRelation: "delivery_engagements";
|
|
2022
|
+
referencedColumns: ["id"];
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
foreignKeyName: "delivery_deliverables_milestone_id_fkey";
|
|
2026
|
+
columns: ["milestone_id"];
|
|
2027
|
+
isOneToOne: false;
|
|
2028
|
+
referencedRelation: "delivery_milestones";
|
|
2029
|
+
referencedColumns: ["id"];
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
foreignKeyName: "delivery_deliverables_organization_id_fkey";
|
|
2033
|
+
columns: ["organization_id"];
|
|
2034
|
+
isOneToOne: false;
|
|
2035
|
+
referencedRelation: "organizations";
|
|
2036
|
+
referencedColumns: ["id"];
|
|
2037
|
+
}
|
|
2038
|
+
];
|
|
2039
|
+
};
|
|
2040
|
+
delivery_engagements: {
|
|
2041
|
+
Row: {
|
|
2042
|
+
actual_end_date: string | null;
|
|
2043
|
+
client_company_id: string | null;
|
|
2044
|
+
contract_value: number | null;
|
|
2045
|
+
created_at: string;
|
|
2046
|
+
deal_id: string | null;
|
|
2047
|
+
description: string | null;
|
|
2048
|
+
id: string;
|
|
2049
|
+
metadata: Json | null;
|
|
2050
|
+
name: string;
|
|
2051
|
+
organization_id: string;
|
|
2052
|
+
start_date: string | null;
|
|
2053
|
+
status: string;
|
|
2054
|
+
target_end_date: string | null;
|
|
2055
|
+
updated_at: string;
|
|
2056
|
+
};
|
|
2057
|
+
Insert: {
|
|
2058
|
+
actual_end_date?: string | null;
|
|
2059
|
+
client_company_id?: string | null;
|
|
2060
|
+
contract_value?: number | null;
|
|
2061
|
+
created_at?: string;
|
|
2062
|
+
deal_id?: string | null;
|
|
2063
|
+
description?: string | null;
|
|
2064
|
+
id?: string;
|
|
2065
|
+
metadata?: Json | null;
|
|
2066
|
+
name: string;
|
|
2067
|
+
organization_id: string;
|
|
2068
|
+
start_date?: string | null;
|
|
2069
|
+
status?: string;
|
|
2070
|
+
target_end_date?: string | null;
|
|
2071
|
+
updated_at?: string;
|
|
2072
|
+
};
|
|
2073
|
+
Update: {
|
|
2074
|
+
actual_end_date?: string | null;
|
|
2075
|
+
client_company_id?: string | null;
|
|
2076
|
+
contract_value?: number | null;
|
|
2077
|
+
created_at?: string;
|
|
2078
|
+
deal_id?: string | null;
|
|
2079
|
+
description?: string | null;
|
|
2080
|
+
id?: string;
|
|
2081
|
+
metadata?: Json | null;
|
|
2082
|
+
name?: string;
|
|
2083
|
+
organization_id?: string;
|
|
2084
|
+
start_date?: string | null;
|
|
2085
|
+
status?: string;
|
|
2086
|
+
target_end_date?: string | null;
|
|
2087
|
+
updated_at?: string;
|
|
2088
|
+
};
|
|
2089
|
+
Relationships: [
|
|
2090
|
+
{
|
|
2091
|
+
foreignKeyName: "delivery_engagements_client_company_id_fkey";
|
|
2092
|
+
columns: ["client_company_id"];
|
|
2093
|
+
isOneToOne: false;
|
|
2094
|
+
referencedRelation: "acq_companies";
|
|
2095
|
+
referencedColumns: ["id"];
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
foreignKeyName: "delivery_engagements_deal_id_fkey";
|
|
2099
|
+
columns: ["deal_id"];
|
|
2100
|
+
isOneToOne: false;
|
|
2101
|
+
referencedRelation: "acq_deals";
|
|
2102
|
+
referencedColumns: ["id"];
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
foreignKeyName: "delivery_engagements_organization_id_fkey";
|
|
2106
|
+
columns: ["organization_id"];
|
|
2107
|
+
isOneToOne: false;
|
|
2108
|
+
referencedRelation: "organizations";
|
|
2109
|
+
referencedColumns: ["id"];
|
|
2110
|
+
}
|
|
2111
|
+
];
|
|
2112
|
+
};
|
|
2113
|
+
delivery_milestones: {
|
|
2114
|
+
Row: {
|
|
2115
|
+
checklist: Json | null;
|
|
2116
|
+
completed_at: string | null;
|
|
2117
|
+
created_at: string;
|
|
2118
|
+
description: string | null;
|
|
2119
|
+
due_date: string | null;
|
|
2120
|
+
engagement_id: string;
|
|
2121
|
+
id: string;
|
|
2122
|
+
metadata: Json | null;
|
|
2123
|
+
name: string;
|
|
2124
|
+
organization_id: string;
|
|
2125
|
+
sequence: number;
|
|
2126
|
+
status: string;
|
|
2127
|
+
updated_at: string;
|
|
2128
|
+
};
|
|
2129
|
+
Insert: {
|
|
2130
|
+
checklist?: Json | null;
|
|
2131
|
+
completed_at?: string | null;
|
|
2132
|
+
created_at?: string;
|
|
2133
|
+
description?: string | null;
|
|
2134
|
+
due_date?: string | null;
|
|
2135
|
+
engagement_id: string;
|
|
2136
|
+
id?: string;
|
|
2137
|
+
metadata?: Json | null;
|
|
2138
|
+
name: string;
|
|
2139
|
+
organization_id: string;
|
|
2140
|
+
sequence?: number;
|
|
2141
|
+
status?: string;
|
|
2142
|
+
updated_at?: string;
|
|
2143
|
+
};
|
|
2144
|
+
Update: {
|
|
2145
|
+
checklist?: Json | null;
|
|
2146
|
+
completed_at?: string | null;
|
|
2147
|
+
created_at?: string;
|
|
2148
|
+
description?: string | null;
|
|
2149
|
+
due_date?: string | null;
|
|
2150
|
+
engagement_id?: string;
|
|
2151
|
+
id?: string;
|
|
2152
|
+
metadata?: Json | null;
|
|
2153
|
+
name?: string;
|
|
2154
|
+
organization_id?: string;
|
|
2155
|
+
sequence?: number;
|
|
2156
|
+
status?: string;
|
|
2157
|
+
updated_at?: string;
|
|
2158
|
+
};
|
|
2159
|
+
Relationships: [
|
|
2160
|
+
{
|
|
2161
|
+
foreignKeyName: "delivery_milestones_engagement_id_fkey";
|
|
2162
|
+
columns: ["engagement_id"];
|
|
2163
|
+
isOneToOne: false;
|
|
2164
|
+
referencedRelation: "delivery_engagements";
|
|
2165
|
+
referencedColumns: ["id"];
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
foreignKeyName: "delivery_milestones_organization_id_fkey";
|
|
2169
|
+
columns: ["organization_id"];
|
|
2170
|
+
isOneToOne: false;
|
|
2171
|
+
referencedRelation: "organizations";
|
|
2172
|
+
referencedColumns: ["id"];
|
|
2173
|
+
}
|
|
2174
|
+
];
|
|
2175
|
+
};
|
|
2176
|
+
delivery_notes: {
|
|
2177
|
+
Row: {
|
|
2178
|
+
content: string;
|
|
2179
|
+
created_at: string;
|
|
2180
|
+
created_by: string | null;
|
|
2181
|
+
engagement_id: string;
|
|
2182
|
+
id: string;
|
|
2183
|
+
metadata: Json | null;
|
|
2184
|
+
occurred_at: string;
|
|
2185
|
+
organization_id: string;
|
|
2186
|
+
summary: string | null;
|
|
2187
|
+
type: string;
|
|
2188
|
+
};
|
|
2189
|
+
Insert: {
|
|
2190
|
+
content: string;
|
|
2191
|
+
created_at?: string;
|
|
2192
|
+
created_by?: string | null;
|
|
2193
|
+
engagement_id: string;
|
|
2194
|
+
id?: string;
|
|
2195
|
+
metadata?: Json | null;
|
|
2196
|
+
occurred_at?: string;
|
|
2197
|
+
organization_id: string;
|
|
2198
|
+
summary?: string | null;
|
|
2199
|
+
type?: string;
|
|
2200
|
+
};
|
|
2201
|
+
Update: {
|
|
2202
|
+
content?: string;
|
|
2203
|
+
created_at?: string;
|
|
2204
|
+
created_by?: string | null;
|
|
2205
|
+
engagement_id?: string;
|
|
2206
|
+
id?: string;
|
|
2207
|
+
metadata?: Json | null;
|
|
2208
|
+
occurred_at?: string;
|
|
2209
|
+
organization_id?: string;
|
|
2210
|
+
summary?: string | null;
|
|
2211
|
+
type?: string;
|
|
2212
|
+
};
|
|
2213
|
+
Relationships: [
|
|
2214
|
+
{
|
|
2215
|
+
foreignKeyName: "delivery_notes_created_by_fkey";
|
|
2216
|
+
columns: ["created_by"];
|
|
2217
|
+
isOneToOne: false;
|
|
2218
|
+
referencedRelation: "users";
|
|
2219
|
+
referencedColumns: ["id"];
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
foreignKeyName: "delivery_notes_engagement_id_fkey";
|
|
2223
|
+
columns: ["engagement_id"];
|
|
2224
|
+
isOneToOne: false;
|
|
2225
|
+
referencedRelation: "delivery_engagements";
|
|
2226
|
+
referencedColumns: ["id"];
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
foreignKeyName: "delivery_notes_organization_id_fkey";
|
|
2230
|
+
columns: ["organization_id"];
|
|
2231
|
+
isOneToOne: false;
|
|
2232
|
+
referencedRelation: "organizations";
|
|
2233
|
+
referencedColumns: ["id"];
|
|
2234
|
+
}
|
|
2235
|
+
];
|
|
2236
|
+
};
|
|
1947
2237
|
deployments: {
|
|
1948
2238
|
Row: {
|
|
1949
2239
|
compiled_docs: Json | null;
|
|
@@ -4012,8 +4302,8 @@ declare function calculateBarPosition(startTime: number, endTime: number, execut
|
|
|
4012
4302
|
};
|
|
4013
4303
|
|
|
4014
4304
|
/**
|
|
4015
|
-
*
|
|
4016
|
-
*
|
|
4305
|
+
* Timeline visualization constants
|
|
4306
|
+
* Layout and styling constants for timeline components
|
|
4017
4307
|
*/
|
|
4018
4308
|
declare const TIMELINE_CONSTANTS: {
|
|
4019
4309
|
readonly BAR_HEIGHT: 24;
|
|
@@ -4024,6 +4314,9 @@ declare const TIMELINE_CONSTANTS: {
|
|
|
4024
4314
|
readonly CONTAINER_PADDING: 16;
|
|
4025
4315
|
readonly CONTAINER_BORDER_RADIUS: 8;
|
|
4026
4316
|
};
|
|
4317
|
+
/**
|
|
4318
|
+
* Shared visualization constants used by both workflow and agent visualizers
|
|
4319
|
+
*/
|
|
4027
4320
|
declare const SHARED_VIZ_CONSTANTS: {
|
|
4028
4321
|
readonly NODE_WIDTH: 160;
|
|
4029
4322
|
readonly NODE_SPACING: 220;
|
|
@@ -4031,6 +4324,15 @@ declare const SHARED_VIZ_CONSTANTS: {
|
|
|
4031
4324
|
readonly MIN_ZOOM: 0.5;
|
|
4032
4325
|
readonly MAX_ZOOM: 2;
|
|
4033
4326
|
};
|
|
4327
|
+
/**
|
|
4328
|
+
* Container height constant (used by VisualizerContainer and EmptyVisualizer)
|
|
4329
|
+
*/
|
|
4330
|
+
declare const CONTAINER_CONSTANTS: {
|
|
4331
|
+
CONTAINER_HEIGHT: number;
|
|
4332
|
+
};
|
|
4333
|
+
/**
|
|
4334
|
+
* Agent-specific dimension and layout constants
|
|
4335
|
+
*/
|
|
4034
4336
|
declare const AGENT_CONSTANTS: {
|
|
4035
4337
|
readonly NODE_HEIGHT: 140;
|
|
4036
4338
|
readonly CONTAINER_HEIGHT: 430;
|
|
@@ -4419,6 +4721,51 @@ declare function useElevasisServices(): ElevasisServiceContextValue;
|
|
|
4419
4721
|
*/
|
|
4420
4722
|
declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
|
|
4421
4723
|
|
|
4724
|
+
/**
|
|
4725
|
+
* Mantine-specific theme config — extends the headless core config with
|
|
4726
|
+
* a full Mantine theme override escape hatch.
|
|
4727
|
+
*/
|
|
4728
|
+
interface ElevasisThemeConfig extends ElevasisCoreThemeConfig {
|
|
4729
|
+
/** Full Mantine theme override — merged on top of Elevasis defaults. */
|
|
4730
|
+
mantine?: MantineThemeOverride;
|
|
4731
|
+
}
|
|
4732
|
+
/**
|
|
4733
|
+
* Props for ElevasisUIProvider (Mantine variant).
|
|
4734
|
+
* Extends ElevasisCoreProviderProps with Mantine-aware theme config.
|
|
4735
|
+
*/
|
|
4736
|
+
interface ElevasisProviderProps extends Omit<ElevasisCoreProviderProps, 'theme' | 'notifications'> {
|
|
4737
|
+
theme?: ElevasisThemeConfig;
|
|
4738
|
+
}
|
|
4739
|
+
/**
|
|
4740
|
+
* UI provider for Elevasis-powered applications. Includes Mantine theme integration.
|
|
4741
|
+
*
|
|
4742
|
+
* A thin Mantine shell around ElevasisCoreProvider. Handles:
|
|
4743
|
+
* - MantineProvider with theme resolution (presets, token overrides, color scheme)
|
|
4744
|
+
* - Google Font injection for preset fonts
|
|
4745
|
+
* - CSS variables resolver
|
|
4746
|
+
* - Mantine notification adapter (wired into NotificationProvider automatically)
|
|
4747
|
+
*
|
|
4748
|
+
* All auth, API, profile, organization, and initialization composition is
|
|
4749
|
+
* delegated to ElevasisCoreProvider.
|
|
4750
|
+
*/
|
|
4751
|
+
declare function ElevasisUIProvider({ theme, children, ...coreProps }: ElevasisProviderProps): react_jsx_runtime.JSX.Element;
|
|
4752
|
+
/** @deprecated Use ElevasisUIProvider instead. Alias kept for backwards compatibility. */
|
|
4753
|
+
declare const ElevasisProvider: typeof ElevasisUIProvider;
|
|
4754
|
+
|
|
4755
|
+
/**
|
|
4756
|
+
* Mantine-backed notification adapter.
|
|
4757
|
+
*
|
|
4758
|
+
* Wraps `@mantine/notifications` with the same defaults as `notify.tsx`
|
|
4759
|
+
* (`autoClose: 5000`, `position: 'top-right'`). The `apiError()` method
|
|
4760
|
+
* replicates `showApiErrorNotification` behavior including retryAfter-based
|
|
4761
|
+
* autoClose.
|
|
4762
|
+
*
|
|
4763
|
+
* Use this adapter in Command Center (Mantine-powered) consumers.
|
|
4764
|
+
* Template consumers should omit the NotificationProvider and rely on the
|
|
4765
|
+
* console fallback, or supply their own adapter.
|
|
4766
|
+
*/
|
|
4767
|
+
declare const mantineNotificationAdapter: NotificationAdapter;
|
|
4768
|
+
|
|
4422
4769
|
declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeRange, priorityMin, priorityMax, }?: {
|
|
4423
4770
|
status?: TaskStatus;
|
|
4424
4771
|
limit?: number;
|
|
@@ -6312,5 +6659,5 @@ declare function InitializationProvider({ children }: {
|
|
|
6312
6659
|
children: ReactNode;
|
|
6313
6660
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
6314
6661
|
|
|
6315
|
-
export { AGENT_CONSTANTS, APIClientError, AdminGuard, ApiClientProvider, AuthProvider, ElevasisCoreProvider, ElevasisServiceProvider, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, NotificationProvider, OperationsService, OrganizationProvider, ProfileProvider, ProtectedRoute, RouterProvider, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, calculateBarPosition, calculateGraphHeight, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, executionsKeys, formatDate, formatDuration, formatErrorMessage, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, observabilityKeys, scheduleKeys, shouldAnimateEdge, sortData, useActivities, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAuthContext, useBatchDelete, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCommandQueue, useCommandQueueTotals, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteTask, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogs, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useInitialization, useListSchedules, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useNodeSelection, useNotificationAdapter, useNotificationCount, useNotifications, useOrganization, usePaginationState, usePatchTask, usePauseSchedule, useProfile, useReactFlowAgent, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResources, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useSessionCheck, useSortedData, useStableAccessToken, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUpdateAnchor, useUpdateSchedule, useUserProfile, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
6316
|
-
export type { ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ColorShadesTuple, CostBreakdownItem, CreateScheduleInput, CreateSessionResponse, DeleteExecutionParams, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FrameworkThemeOverrides, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListSchedulesFilters, ListSchedulesResponse, MembershipWithDetails, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionListItem, SortDirection, SortState, StatusColorScheme, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseExecutionHealthParams, UseExecutionLogsParams, UseOrgInitializationReturn, UseOrganizationsReturn, UseSSEConnectionOptions, UseUserProfileReturn, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
|
6662
|
+
export { AGENT_CONSTANTS, APIClientError, AdminGuard, ApiClientProvider, AuthProvider, CONTAINER_CONSTANTS, ElevasisCoreProvider, ElevasisProvider, ElevasisServiceProvider, ElevasisUIProvider, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, NotificationProvider, OperationsService, OrganizationProvider, ProfileProvider, ProtectedRoute, RouterProvider, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, calculateBarPosition, calculateGraphHeight, componentThemes, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, executionsKeys, formatDate, formatDuration, formatErrorMessage, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, mantineNotificationAdapter, mantineThemeOverride, observabilityKeys, scheduleKeys, shouldAnimateEdge, sortData, useActivities, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAuthContext, useBatchDelete, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCommandQueue, useCommandQueueTotals, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteTask, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogs, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useInitialization, useListSchedules, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useNodeSelection, useNotificationAdapter, useNotificationCount, useNotifications, useOrganization, usePaginationState, usePatchTask, usePauseSchedule, useProfile, useReactFlowAgent, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResources, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useSessionCheck, useSortedData, useStableAccessToken, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUpdateAnchor, useUpdateSchedule, useUserProfile, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
6663
|
+
export type { ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ColorShadesTuple, CostBreakdownItem, CreateScheduleInput, CreateSessionResponse, DeleteExecutionParams, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FrameworkThemeOverrides, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListSchedulesFilters, ListSchedulesResponse, MembershipWithDetails, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionListItem, SortDirection, SortState, StatusColorScheme, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseExecutionHealthParams, UseExecutionLogsParams, UseOrgInitializationReturn, UseOrganizationsReturn, UseSSEConnectionOptions, UseUserProfileReturn, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|