@elevasis/ui 2.50.0 → 2.51.1
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.d.ts +82 -151
- package/dist/app/index.js +5 -4
- package/dist/auth/index.js +3 -3
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-GUKY77FJ.js → chunk-E6NSKXYN.js} +12 -4
- package/dist/chunk-M7WWRZ5Z.js +159 -0
- package/dist/{chunk-SBNC3FRX.js → chunk-V3B26UZR.js} +10 -10
- package/dist/components/chat/index.d.ts +9 -1
- package/dist/components/chat/index.js +1 -1
- package/dist/components/index.d.ts +80 -150
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +80 -150
- package/dist/features/auth/index.js +4 -4
- package/dist/features/clients/index.js +3 -3
- package/dist/features/crm/index.d.ts +80 -150
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.d.ts +80 -150
- package/dist/features/delivery/index.js +3 -3
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.js +3 -3
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.js +3 -3
- package/dist/features/public-agent-chat/index.d.ts +17 -3
- package/dist/features/public-agent-chat/index.js +313 -113
- package/dist/features/settings/index.d.ts +80 -150
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +80 -150
- package/dist/hooks/delivery/index.js +3 -3
- package/dist/hooks/index.d.ts +97 -151
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.d.ts +97 -151
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +97 -151
- package/dist/index.js +3 -3
- package/dist/initialization/index.d.ts +80 -150
- package/dist/knowledge/index.d.ts +48 -2
- package/dist/knowledge/index.js +324 -83
- package/dist/layout/index.js +3 -3
- package/dist/organization/index.js +3 -3
- package/dist/profile/index.d.ts +80 -150
- package/dist/provider/index.d.ts +80 -150
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +80 -150
- package/dist/provider/published.js +3 -3
- package/dist/supabase/index.d.ts +159 -292
- package/dist/types/index.d.ts +80 -150
- package/package.json +3 -3
- package/src/knowledge/README.md +4 -2
- package/dist/chunk-EJL4U7OZ.js +0 -79
|
@@ -5,9 +5,6 @@ type Json = string | number | boolean | null | {
|
|
|
5
5
|
[key: string]: Json | undefined;
|
|
6
6
|
} | Json[];
|
|
7
7
|
type Database = {
|
|
8
|
-
__InternalSupabase: {
|
|
9
|
-
PostgrestVersion: "12.2.3 (519615d)";
|
|
10
|
-
};
|
|
11
8
|
public: {
|
|
12
9
|
Tables: {
|
|
13
10
|
acq_artifacts: {
|
|
@@ -1207,6 +1204,74 @@ type Database = {
|
|
|
1207
1204
|
}
|
|
1208
1205
|
];
|
|
1209
1206
|
};
|
|
1207
|
+
agent_access_grants: {
|
|
1208
|
+
Row: {
|
|
1209
|
+
allowed_origins: string[];
|
|
1210
|
+
branding: Json;
|
|
1211
|
+
capture_fields: Json;
|
|
1212
|
+
code_hash: string | null;
|
|
1213
|
+
code_salt: string | null;
|
|
1214
|
+
created_at: string;
|
|
1215
|
+
disabled_at: string | null;
|
|
1216
|
+
expires_at: string | null;
|
|
1217
|
+
id: string;
|
|
1218
|
+
max_sessions_per_visitor: number;
|
|
1219
|
+
max_turns_per_session: number;
|
|
1220
|
+
mode: string;
|
|
1221
|
+
organization_id: string;
|
|
1222
|
+
resource_id: string;
|
|
1223
|
+
slug: string;
|
|
1224
|
+
tool_policy: Json;
|
|
1225
|
+
updated_at: string;
|
|
1226
|
+
};
|
|
1227
|
+
Insert: {
|
|
1228
|
+
allowed_origins?: string[];
|
|
1229
|
+
branding?: Json;
|
|
1230
|
+
capture_fields?: Json;
|
|
1231
|
+
code_hash?: string | null;
|
|
1232
|
+
code_salt?: string | null;
|
|
1233
|
+
created_at?: string;
|
|
1234
|
+
disabled_at?: string | null;
|
|
1235
|
+
expires_at?: string | null;
|
|
1236
|
+
id?: string;
|
|
1237
|
+
max_sessions_per_visitor?: number;
|
|
1238
|
+
max_turns_per_session?: number;
|
|
1239
|
+
mode?: string;
|
|
1240
|
+
organization_id: string;
|
|
1241
|
+
resource_id: string;
|
|
1242
|
+
slug: string;
|
|
1243
|
+
tool_policy?: Json;
|
|
1244
|
+
updated_at?: string;
|
|
1245
|
+
};
|
|
1246
|
+
Update: {
|
|
1247
|
+
allowed_origins?: string[];
|
|
1248
|
+
branding?: Json;
|
|
1249
|
+
capture_fields?: Json;
|
|
1250
|
+
code_hash?: string | null;
|
|
1251
|
+
code_salt?: string | null;
|
|
1252
|
+
created_at?: string;
|
|
1253
|
+
disabled_at?: string | null;
|
|
1254
|
+
expires_at?: string | null;
|
|
1255
|
+
id?: string;
|
|
1256
|
+
max_sessions_per_visitor?: number;
|
|
1257
|
+
max_turns_per_session?: number;
|
|
1258
|
+
mode?: string;
|
|
1259
|
+
organization_id?: string;
|
|
1260
|
+
resource_id?: string;
|
|
1261
|
+
slug?: string;
|
|
1262
|
+
tool_policy?: Json;
|
|
1263
|
+
updated_at?: string;
|
|
1264
|
+
};
|
|
1265
|
+
Relationships: [
|
|
1266
|
+
{
|
|
1267
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
1268
|
+
columns: ["organization_id"];
|
|
1269
|
+
isOneToOne: false;
|
|
1270
|
+
referencedRelation: "organizations";
|
|
1271
|
+
referencedColumns: ["id"];
|
|
1272
|
+
}
|
|
1273
|
+
];
|
|
1274
|
+
};
|
|
1210
1275
|
api_keys: {
|
|
1211
1276
|
Row: {
|
|
1212
1277
|
created_at: string | null;
|
|
@@ -2114,138 +2179,6 @@ type Database = {
|
|
|
2114
2179
|
};
|
|
2115
2180
|
Relationships: [];
|
|
2116
2181
|
};
|
|
2117
|
-
agent_access_grants: {
|
|
2118
|
-
Row: {
|
|
2119
|
-
allowed_origins: string[];
|
|
2120
|
-
branding: Json;
|
|
2121
|
-
capture_fields: Json;
|
|
2122
|
-
code_hash: string | null;
|
|
2123
|
-
code_salt: string | null;
|
|
2124
|
-
created_at: string;
|
|
2125
|
-
disabled_at: string | null;
|
|
2126
|
-
expires_at: string | null;
|
|
2127
|
-
id: string;
|
|
2128
|
-
max_sessions_per_visitor: number;
|
|
2129
|
-
max_turns_per_session: number;
|
|
2130
|
-
mode: string;
|
|
2131
|
-
organization_id: string;
|
|
2132
|
-
resource_id: string;
|
|
2133
|
-
slug: string;
|
|
2134
|
-
tool_policy: Json;
|
|
2135
|
-
updated_at: string;
|
|
2136
|
-
};
|
|
2137
|
-
Insert: {
|
|
2138
|
-
allowed_origins?: string[];
|
|
2139
|
-
branding?: Json;
|
|
2140
|
-
capture_fields?: Json;
|
|
2141
|
-
code_hash?: string | null;
|
|
2142
|
-
code_salt?: string | null;
|
|
2143
|
-
created_at?: string;
|
|
2144
|
-
disabled_at?: string | null;
|
|
2145
|
-
expires_at?: string | null;
|
|
2146
|
-
id?: string;
|
|
2147
|
-
max_sessions_per_visitor?: number;
|
|
2148
|
-
max_turns_per_session?: number;
|
|
2149
|
-
mode?: string;
|
|
2150
|
-
organization_id: string;
|
|
2151
|
-
resource_id: string;
|
|
2152
|
-
slug: string;
|
|
2153
|
-
tool_policy?: Json;
|
|
2154
|
-
updated_at?: string;
|
|
2155
|
-
};
|
|
2156
|
-
Update: {
|
|
2157
|
-
allowed_origins?: string[];
|
|
2158
|
-
branding?: Json;
|
|
2159
|
-
capture_fields?: Json;
|
|
2160
|
-
code_hash?: string | null;
|
|
2161
|
-
code_salt?: string | null;
|
|
2162
|
-
created_at?: string;
|
|
2163
|
-
disabled_at?: string | null;
|
|
2164
|
-
expires_at?: string | null;
|
|
2165
|
-
id?: string;
|
|
2166
|
-
max_sessions_per_visitor?: number;
|
|
2167
|
-
max_turns_per_session?: number;
|
|
2168
|
-
mode?: string;
|
|
2169
|
-
organization_id?: string;
|
|
2170
|
-
resource_id?: string;
|
|
2171
|
-
slug?: string;
|
|
2172
|
-
tool_policy?: Json;
|
|
2173
|
-
updated_at?: string;
|
|
2174
|
-
};
|
|
2175
|
-
Relationships: [
|
|
2176
|
-
{
|
|
2177
|
-
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2178
|
-
columns: ["organization_id"];
|
|
2179
|
-
isOneToOne: false;
|
|
2180
|
-
referencedRelation: "organizations";
|
|
2181
|
-
referencedColumns: ["id"];
|
|
2182
|
-
}
|
|
2183
|
-
];
|
|
2184
|
-
};
|
|
2185
|
-
agent_chat_capabilities: {
|
|
2186
|
-
Row: {
|
|
2187
|
-
created_at: string;
|
|
2188
|
-
expires_at: string;
|
|
2189
|
-
grant_id: string;
|
|
2190
|
-
id: string;
|
|
2191
|
-
organization_id: string;
|
|
2192
|
-
origin: string | null;
|
|
2193
|
-
resource_id: string;
|
|
2194
|
-
revoked_at: string | null;
|
|
2195
|
-
session_id: string | null;
|
|
2196
|
-
token_hash: string;
|
|
2197
|
-
visitor_id: string | null;
|
|
2198
|
-
};
|
|
2199
|
-
Insert: {
|
|
2200
|
-
created_at?: string;
|
|
2201
|
-
expires_at: string;
|
|
2202
|
-
grant_id: string;
|
|
2203
|
-
id?: string;
|
|
2204
|
-
organization_id: string;
|
|
2205
|
-
origin?: string | null;
|
|
2206
|
-
resource_id: string;
|
|
2207
|
-
revoked_at?: string | null;
|
|
2208
|
-
session_id?: string | null;
|
|
2209
|
-
token_hash: string;
|
|
2210
|
-
visitor_id?: string | null;
|
|
2211
|
-
};
|
|
2212
|
-
Update: {
|
|
2213
|
-
created_at?: string;
|
|
2214
|
-
expires_at?: string;
|
|
2215
|
-
grant_id?: string;
|
|
2216
|
-
id?: string;
|
|
2217
|
-
organization_id?: string;
|
|
2218
|
-
origin?: string | null;
|
|
2219
|
-
resource_id?: string;
|
|
2220
|
-
revoked_at?: string | null;
|
|
2221
|
-
session_id?: string | null;
|
|
2222
|
-
token_hash?: string;
|
|
2223
|
-
visitor_id?: string | null;
|
|
2224
|
-
};
|
|
2225
|
-
Relationships: [
|
|
2226
|
-
{
|
|
2227
|
-
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2228
|
-
columns: ["grant_id"];
|
|
2229
|
-
isOneToOne: false;
|
|
2230
|
-
referencedRelation: "agent_access_grants";
|
|
2231
|
-
referencedColumns: ["id"];
|
|
2232
|
-
},
|
|
2233
|
-
{
|
|
2234
|
-
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2235
|
-
columns: ["organization_id"];
|
|
2236
|
-
isOneToOne: false;
|
|
2237
|
-
referencedRelation: "organizations";
|
|
2238
|
-
referencedColumns: ["id"];
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2242
|
-
columns: ["session_id"];
|
|
2243
|
-
isOneToOne: false;
|
|
2244
|
-
referencedRelation: "sessions";
|
|
2245
|
-
referencedColumns: ["session_id"];
|
|
2246
|
-
}
|
|
2247
|
-
];
|
|
2248
|
-
};
|
|
2249
2182
|
organizations: {
|
|
2250
2183
|
Row: {
|
|
2251
2184
|
config: Json;
|
|
@@ -3144,11 +3077,11 @@ type Database = {
|
|
|
3144
3077
|
Returns: undefined;
|
|
3145
3078
|
};
|
|
3146
3079
|
auth_jwt_claims: {
|
|
3147
|
-
Args: never
|
|
3080
|
+
Args: Record<PropertyKey, never>;
|
|
3148
3081
|
Returns: Json;
|
|
3149
3082
|
};
|
|
3150
3083
|
auth_uid_safe: {
|
|
3151
|
-
Args: never
|
|
3084
|
+
Args: Record<PropertyKey, never>;
|
|
3152
3085
|
Returns: string;
|
|
3153
3086
|
};
|
|
3154
3087
|
can_assign_role_in_org: {
|
|
@@ -3159,7 +3092,7 @@ type Database = {
|
|
|
3159
3092
|
Returns: boolean;
|
|
3160
3093
|
};
|
|
3161
3094
|
current_user_is_platform_admin: {
|
|
3162
|
-
Args: never
|
|
3095
|
+
Args: Record<PropertyKey, never>;
|
|
3163
3096
|
Returns: boolean;
|
|
3164
3097
|
};
|
|
3165
3098
|
current_user_shares_org_with: {
|
|
@@ -3169,11 +3102,11 @@ type Database = {
|
|
|
3169
3102
|
Returns: boolean;
|
|
3170
3103
|
};
|
|
3171
3104
|
current_user_supabase_id: {
|
|
3172
|
-
Args: never
|
|
3105
|
+
Args: Record<PropertyKey, never>;
|
|
3173
3106
|
Returns: string;
|
|
3174
3107
|
};
|
|
3175
3108
|
detect_stalled_executions: {
|
|
3176
|
-
Args: never
|
|
3109
|
+
Args: Record<PropertyKey, never>;
|
|
3177
3110
|
Returns: undefined;
|
|
3178
3111
|
};
|
|
3179
3112
|
execute_session_turn: {
|
|
@@ -3194,7 +3127,7 @@ type Database = {
|
|
|
3194
3127
|
}[];
|
|
3195
3128
|
};
|
|
3196
3129
|
get_platform_credential_kek: {
|
|
3197
|
-
Args: never
|
|
3130
|
+
Args: Record<PropertyKey, never>;
|
|
3198
3131
|
Returns: string;
|
|
3199
3132
|
};
|
|
3200
3133
|
get_storage_org_id: {
|
|
@@ -3204,7 +3137,7 @@ type Database = {
|
|
|
3204
3137
|
Returns: string;
|
|
3205
3138
|
};
|
|
3206
3139
|
get_workos_user_id: {
|
|
3207
|
-
Args: never
|
|
3140
|
+
Args: Record<PropertyKey, never>;
|
|
3208
3141
|
Returns: string;
|
|
3209
3142
|
};
|
|
3210
3143
|
has_org_access: {
|
|
@@ -3212,10 +3145,7 @@ type Database = {
|
|
|
3212
3145
|
action?: string;
|
|
3213
3146
|
org_id: string;
|
|
3214
3147
|
system_path: string;
|
|
3215
|
-
}
|
|
3216
|
-
Returns: boolean;
|
|
3217
|
-
} | {
|
|
3218
|
-
Args: {
|
|
3148
|
+
} | {
|
|
3219
3149
|
action?: string;
|
|
3220
3150
|
system_path: string;
|
|
3221
3151
|
};
|
|
@@ -3251,15 +3181,15 @@ type Database = {
|
|
|
3251
3181
|
Returns: Json;
|
|
3252
3182
|
};
|
|
3253
3183
|
process_due_schedules: {
|
|
3254
|
-
Args: never
|
|
3184
|
+
Args: Record<PropertyKey, never>;
|
|
3255
3185
|
Returns: Json;
|
|
3256
3186
|
};
|
|
3257
3187
|
recompute_all_memberships: {
|
|
3258
|
-
Args: never
|
|
3188
|
+
Args: Record<PropertyKey, never>;
|
|
3259
3189
|
Returns: undefined;
|
|
3260
3190
|
};
|
|
3261
3191
|
repair_membership_role_assignments: {
|
|
3262
|
-
Args: never
|
|
3192
|
+
Args: Record<PropertyKey, never>;
|
|
3263
3193
|
Returns: {
|
|
3264
3194
|
membership_id: string;
|
|
3265
3195
|
organization_id: string;
|
|
@@ -3289,7 +3219,7 @@ type Database = {
|
|
|
3289
3219
|
Returns: string;
|
|
3290
3220
|
};
|
|
3291
3221
|
upsert_user_profile: {
|
|
3292
|
-
Args: never
|
|
3222
|
+
Args: Record<PropertyKey, never>;
|
|
3293
3223
|
Returns: {
|
|
3294
3224
|
profile_display_name: string;
|
|
3295
3225
|
profile_email: string;
|
|
@@ -1512,6 +1512,52 @@ interface KnowledgeBrowserProps {
|
|
|
1512
1512
|
*/
|
|
1513
1513
|
declare function KnowledgeBrowser({ graph, knowledgeNodes, organizationModel, initialNodeId, onNavigateToNode, onSelectNode }: KnowledgeBrowserProps): react_jsx_runtime.JSX.Element;
|
|
1514
1514
|
|
|
1515
|
+
interface KnowledgeItemRouteId {
|
|
1516
|
+
domainKey: string;
|
|
1517
|
+
itemId: string;
|
|
1518
|
+
}
|
|
1519
|
+
type KnowledgeRouteTarget = {
|
|
1520
|
+
kind: 'domain';
|
|
1521
|
+
domainKey: string;
|
|
1522
|
+
} | {
|
|
1523
|
+
kind: 'group';
|
|
1524
|
+
groupKey: string;
|
|
1525
|
+
label?: string;
|
|
1526
|
+
domainKeys: readonly string[];
|
|
1527
|
+
} | {
|
|
1528
|
+
kind: 'folder';
|
|
1529
|
+
folderId: string;
|
|
1530
|
+
} | {
|
|
1531
|
+
kind: 'item';
|
|
1532
|
+
domainKey: string;
|
|
1533
|
+
itemId: string;
|
|
1534
|
+
} | {
|
|
1535
|
+
kind: 'knowledge';
|
|
1536
|
+
node: OrgKnowledgeNode;
|
|
1537
|
+
} | {
|
|
1538
|
+
kind: 'graph';
|
|
1539
|
+
node: OrganizationGraphNode;
|
|
1540
|
+
} | {
|
|
1541
|
+
kind: 'unresolved';
|
|
1542
|
+
nodeId: string;
|
|
1543
|
+
};
|
|
1544
|
+
declare function decodeKnowledgeRouteNodeId(nodeId: string): string;
|
|
1545
|
+
declare function formatKnowledgeRouteTitle(id: string): string;
|
|
1546
|
+
declare function formatKnowledgeDomainLabel(domainKey: string): string;
|
|
1547
|
+
declare function parseKnowledgeItemRouteId(nodeId: string): KnowledgeItemRouteId | undefined;
|
|
1548
|
+
declare function resolveKnowledgeGraphNodeByRouteId(graph: OrganizationGraph, routeNodeId: string): OrganizationGraphNode | undefined;
|
|
1549
|
+
declare function resolveKnowledgeRouteTarget(graph: OrganizationGraph, knowledgeNodes: OrgKnowledgeNode[], nodeId: string | undefined): KnowledgeRouteTarget | null;
|
|
1550
|
+
declare function getKnowledgeRouteBreadcrumbLabel(nodeId: string, graph: OrganizationGraph): string | undefined;
|
|
1551
|
+
|
|
1552
|
+
interface KnowledgeNodeDetailRouteViewProps {
|
|
1553
|
+
nodeId: string;
|
|
1554
|
+
graph: OrganizationGraph;
|
|
1555
|
+
knowledgeNodes: OrgKnowledgeNode[];
|
|
1556
|
+
organizationModel: OrganizationModel;
|
|
1557
|
+
onNavigateToNode?: (nodeId: string) => void;
|
|
1558
|
+
}
|
|
1559
|
+
declare function KnowledgeNodeDetailRouteView({ nodeId, graph, knowledgeNodes, organizationModel, onNavigateToNode }: KnowledgeNodeDetailRouteViewProps): react_jsx_runtime.JSX.Element;
|
|
1560
|
+
|
|
1515
1561
|
/**
|
|
1516
1562
|
* Identifies how to dispatch a favorited entry on click. Maps onto the
|
|
1517
1563
|
* `onSelect*` callback surface that `KnowledgeTree` already exposes.
|
|
@@ -2030,5 +2076,5 @@ interface NodeDescribeShellProps {
|
|
|
2030
2076
|
}
|
|
2031
2077
|
declare function NodeDescribeShell({ header, content, relationships, footer }: NodeDescribeShellProps): react_jsx_runtime.JSX.Element;
|
|
2032
2078
|
|
|
2033
|
-
export { DescribeNodeView, DomainPanelDispatcher, EdgeRelationshipGroup, FILTERABLE_DOMAIN_KEYS, GenericDescribeView, KNOWLEDGE_ALLOWLIST, KNOWLEDGE_BODIES, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KNOWLEDGE_ITEMS, KindChip, KnowledgeBrowser, KnowledgeMDXProvider, KnowledgeNodeList, KnowledgeNodeView, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, OrganizationDescribeView, RelatedKnowledgeSection, ResourceDescribeView, SemanticIcon, SystemDescribeView, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent, useKnowledgeAllowlist };
|
|
2034
|
-
export type { DescribeNodeViewProps, DomainPanelDispatcherProps, DomainPanelKey, EdgeRelationshipGroupProps, GenericDescribeViewProps, KindChipProps, KindChipTone, KnowledgeBrowserProps, KnowledgeFacetStates, KnowledgeNodeListProps, KnowledgeNodeViewProps, KnowledgeSearchBarProps, KnowledgeTreeNodeData, KnowledgeTreeProps, NodeDescribeShellProps, NodeHeaderProps, NodeMetadataFooterProps, OrganizationDescribeViewProps, RelatedKnowledgeSectionProps, ResourceDescribeViewProps, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SystemDescribeViewProps };
|
|
2079
|
+
export { DescribeNodeView, DomainPanelDispatcher, EdgeRelationshipGroup, FILTERABLE_DOMAIN_KEYS, GenericDescribeView, KNOWLEDGE_ALLOWLIST, KNOWLEDGE_BODIES, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KNOWLEDGE_ITEMS, KindChip, KnowledgeBrowser, KnowledgeMDXProvider, KnowledgeNodeDetailRouteView, KnowledgeNodeList, KnowledgeNodeView, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, OrganizationDescribeView, RelatedKnowledgeSection, ResourceDescribeView, SemanticIcon, SystemDescribeView, buildKnowledgeOmTreeData, decodeKnowledgeRouteNodeId, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, formatKnowledgeDomainLabel, formatKnowledgeRouteTitle, getKnowledgeIconToken, getKnowledgeRouteBreadcrumbLabel, getSemanticIconComponent, getSharedOrganizationGraph, parseKnowledgeItemRouteId, resolveKnowledgeGraphNodeByRouteId, resolveKnowledgeRouteTarget, resolveSemanticIconComponent, useKnowledgeAllowlist };
|
|
2080
|
+
export type { DescribeNodeViewProps, DomainPanelDispatcherProps, DomainPanelKey, EdgeRelationshipGroupProps, GenericDescribeViewProps, KindChipProps, KindChipTone, KnowledgeBrowserProps, KnowledgeFacetStates, KnowledgeItemRouteId, KnowledgeNodeDetailRouteViewProps, KnowledgeNodeListProps, KnowledgeNodeViewProps, KnowledgeRouteTarget, KnowledgeSearchBarProps, KnowledgeTreeNodeData, KnowledgeTreeProps, NodeDescribeShellProps, NodeHeaderProps, NodeMetadataFooterProps, OrganizationDescribeViewProps, RelatedKnowledgeSectionProps, ResourceDescribeViewProps, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SystemDescribeViewProps };
|