@elevasis/ui 2.51.0 → 2.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.d.ts +82 -151
- package/dist/app/index.js +6 -5
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-SBNC3FRX.js → chunk-CPIQ5GXG.js} +394 -112
- package/dist/{chunk-GUKY77FJ.js → chunk-E6NSKXYN.js} +12 -4
- package/dist/{chunk-7FPLLSHN.js → chunk-I3CFGE3N.js} +6 -0
- package/dist/chunk-M7WWRZ5Z.js +159 -0
- package/dist/components/chat/index.d.ts +9 -1
- package/dist/components/chat/index.js +1 -1
- package/dist/components/index.d.ts +98 -155
- package/dist/components/index.js +4 -4
- package/dist/components/navigation/index.js +4 -4
- package/dist/execution/index.d.ts +2 -0
- package/dist/execution/index.js +1 -1
- package/dist/features/auth/index.d.ts +80 -150
- package/dist/features/auth/index.js +5 -5
- package/dist/features/clients/index.js +4 -4
- package/dist/features/crm/index.d.ts +80 -150
- package/dist/features/crm/index.js +4 -4
- package/dist/features/dashboard/index.js +4 -4
- package/dist/features/delivery/index.d.ts +80 -150
- package/dist/features/delivery/index.js +4 -4
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.js +4 -4
- package/dist/features/monitoring/index.d.ts +1 -1
- package/dist/features/monitoring/index.js +4 -4
- package/dist/features/monitoring/requests/index.js +5 -5
- package/dist/features/operations/index.js +4 -4
- 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 +4 -4
- package/dist/hooks/access/index.js +4 -4
- package/dist/hooks/delivery/index.d.ts +80 -150
- package/dist/hooks/delivery/index.js +4 -4
- package/dist/hooks/index.d.ts +98 -152
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +98 -152
- package/dist/hooks/published.js +4 -4
- package/dist/index.d.ts +116 -155
- package/dist/index.js +4 -4
- package/dist/initialization/index.d.ts +80 -150
- package/dist/knowledge/index.js +5 -5
- package/dist/layout/index.js +4 -4
- package/dist/organization/index.js +4 -4
- package/dist/profile/index.d.ts +80 -150
- package/dist/provider/index.d.ts +80 -150
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.d.ts +80 -150
- package/dist/provider/published.js +4 -4
- package/dist/supabase/index.d.ts +159 -292
- package/dist/types/index.d.ts +81 -151
- package/package.json +3 -3
- package/dist/chunk-EJL4U7OZ.js +0 -79
|
@@ -107,9 +107,6 @@ type Json = string | number | boolean | null | {
|
|
|
107
107
|
[key: string]: Json | undefined;
|
|
108
108
|
} | Json[];
|
|
109
109
|
type Database = {
|
|
110
|
-
__InternalSupabase: {
|
|
111
|
-
PostgrestVersion: "12.2.3 (519615d)";
|
|
112
|
-
};
|
|
113
110
|
public: {
|
|
114
111
|
Tables: {
|
|
115
112
|
acq_artifacts: {
|
|
@@ -1309,6 +1306,74 @@ type Database = {
|
|
|
1309
1306
|
}
|
|
1310
1307
|
];
|
|
1311
1308
|
};
|
|
1309
|
+
agent_access_grants: {
|
|
1310
|
+
Row: {
|
|
1311
|
+
allowed_origins: string[];
|
|
1312
|
+
branding: Json;
|
|
1313
|
+
capture_fields: Json;
|
|
1314
|
+
code_hash: string | null;
|
|
1315
|
+
code_salt: string | null;
|
|
1316
|
+
created_at: string;
|
|
1317
|
+
disabled_at: string | null;
|
|
1318
|
+
expires_at: string | null;
|
|
1319
|
+
id: string;
|
|
1320
|
+
max_sessions_per_visitor: number;
|
|
1321
|
+
max_turns_per_session: number;
|
|
1322
|
+
mode: string;
|
|
1323
|
+
organization_id: string;
|
|
1324
|
+
resource_id: string;
|
|
1325
|
+
slug: string;
|
|
1326
|
+
tool_policy: Json;
|
|
1327
|
+
updated_at: string;
|
|
1328
|
+
};
|
|
1329
|
+
Insert: {
|
|
1330
|
+
allowed_origins?: string[];
|
|
1331
|
+
branding?: Json;
|
|
1332
|
+
capture_fields?: Json;
|
|
1333
|
+
code_hash?: string | null;
|
|
1334
|
+
code_salt?: string | null;
|
|
1335
|
+
created_at?: string;
|
|
1336
|
+
disabled_at?: string | null;
|
|
1337
|
+
expires_at?: string | null;
|
|
1338
|
+
id?: string;
|
|
1339
|
+
max_sessions_per_visitor?: number;
|
|
1340
|
+
max_turns_per_session?: number;
|
|
1341
|
+
mode?: string;
|
|
1342
|
+
organization_id: string;
|
|
1343
|
+
resource_id: string;
|
|
1344
|
+
slug: string;
|
|
1345
|
+
tool_policy?: Json;
|
|
1346
|
+
updated_at?: string;
|
|
1347
|
+
};
|
|
1348
|
+
Update: {
|
|
1349
|
+
allowed_origins?: string[];
|
|
1350
|
+
branding?: Json;
|
|
1351
|
+
capture_fields?: Json;
|
|
1352
|
+
code_hash?: string | null;
|
|
1353
|
+
code_salt?: string | null;
|
|
1354
|
+
created_at?: string;
|
|
1355
|
+
disabled_at?: string | null;
|
|
1356
|
+
expires_at?: string | null;
|
|
1357
|
+
id?: string;
|
|
1358
|
+
max_sessions_per_visitor?: number;
|
|
1359
|
+
max_turns_per_session?: number;
|
|
1360
|
+
mode?: string;
|
|
1361
|
+
organization_id?: string;
|
|
1362
|
+
resource_id?: string;
|
|
1363
|
+
slug?: string;
|
|
1364
|
+
tool_policy?: Json;
|
|
1365
|
+
updated_at?: string;
|
|
1366
|
+
};
|
|
1367
|
+
Relationships: [
|
|
1368
|
+
{
|
|
1369
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
1370
|
+
columns: ["organization_id"];
|
|
1371
|
+
isOneToOne: false;
|
|
1372
|
+
referencedRelation: "organizations";
|
|
1373
|
+
referencedColumns: ["id"];
|
|
1374
|
+
}
|
|
1375
|
+
];
|
|
1376
|
+
};
|
|
1312
1377
|
api_keys: {
|
|
1313
1378
|
Row: {
|
|
1314
1379
|
created_at: string | null;
|
|
@@ -2216,138 +2281,6 @@ type Database = {
|
|
|
2216
2281
|
};
|
|
2217
2282
|
Relationships: [];
|
|
2218
2283
|
};
|
|
2219
|
-
agent_access_grants: {
|
|
2220
|
-
Row: {
|
|
2221
|
-
allowed_origins: string[];
|
|
2222
|
-
branding: Json;
|
|
2223
|
-
capture_fields: Json;
|
|
2224
|
-
code_hash: string | null;
|
|
2225
|
-
code_salt: string | null;
|
|
2226
|
-
created_at: string;
|
|
2227
|
-
disabled_at: string | null;
|
|
2228
|
-
expires_at: string | null;
|
|
2229
|
-
id: string;
|
|
2230
|
-
max_sessions_per_visitor: number;
|
|
2231
|
-
max_turns_per_session: number;
|
|
2232
|
-
mode: string;
|
|
2233
|
-
organization_id: string;
|
|
2234
|
-
resource_id: string;
|
|
2235
|
-
slug: string;
|
|
2236
|
-
tool_policy: Json;
|
|
2237
|
-
updated_at: string;
|
|
2238
|
-
};
|
|
2239
|
-
Insert: {
|
|
2240
|
-
allowed_origins?: string[];
|
|
2241
|
-
branding?: Json;
|
|
2242
|
-
capture_fields?: Json;
|
|
2243
|
-
code_hash?: string | null;
|
|
2244
|
-
code_salt?: string | null;
|
|
2245
|
-
created_at?: string;
|
|
2246
|
-
disabled_at?: string | null;
|
|
2247
|
-
expires_at?: string | null;
|
|
2248
|
-
id?: string;
|
|
2249
|
-
max_sessions_per_visitor?: number;
|
|
2250
|
-
max_turns_per_session?: number;
|
|
2251
|
-
mode?: string;
|
|
2252
|
-
organization_id: string;
|
|
2253
|
-
resource_id: string;
|
|
2254
|
-
slug: string;
|
|
2255
|
-
tool_policy?: Json;
|
|
2256
|
-
updated_at?: string;
|
|
2257
|
-
};
|
|
2258
|
-
Update: {
|
|
2259
|
-
allowed_origins?: string[];
|
|
2260
|
-
branding?: Json;
|
|
2261
|
-
capture_fields?: Json;
|
|
2262
|
-
code_hash?: string | null;
|
|
2263
|
-
code_salt?: string | null;
|
|
2264
|
-
created_at?: string;
|
|
2265
|
-
disabled_at?: string | null;
|
|
2266
|
-
expires_at?: string | null;
|
|
2267
|
-
id?: string;
|
|
2268
|
-
max_sessions_per_visitor?: number;
|
|
2269
|
-
max_turns_per_session?: number;
|
|
2270
|
-
mode?: string;
|
|
2271
|
-
organization_id?: string;
|
|
2272
|
-
resource_id?: string;
|
|
2273
|
-
slug?: string;
|
|
2274
|
-
tool_policy?: Json;
|
|
2275
|
-
updated_at?: string;
|
|
2276
|
-
};
|
|
2277
|
-
Relationships: [
|
|
2278
|
-
{
|
|
2279
|
-
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2280
|
-
columns: ["organization_id"];
|
|
2281
|
-
isOneToOne: false;
|
|
2282
|
-
referencedRelation: "organizations";
|
|
2283
|
-
referencedColumns: ["id"];
|
|
2284
|
-
}
|
|
2285
|
-
];
|
|
2286
|
-
};
|
|
2287
|
-
agent_chat_capabilities: {
|
|
2288
|
-
Row: {
|
|
2289
|
-
created_at: string;
|
|
2290
|
-
expires_at: string;
|
|
2291
|
-
grant_id: string;
|
|
2292
|
-
id: string;
|
|
2293
|
-
organization_id: string;
|
|
2294
|
-
origin: string | null;
|
|
2295
|
-
resource_id: string;
|
|
2296
|
-
revoked_at: string | null;
|
|
2297
|
-
session_id: string | null;
|
|
2298
|
-
token_hash: string;
|
|
2299
|
-
visitor_id: string | null;
|
|
2300
|
-
};
|
|
2301
|
-
Insert: {
|
|
2302
|
-
created_at?: string;
|
|
2303
|
-
expires_at: string;
|
|
2304
|
-
grant_id: string;
|
|
2305
|
-
id?: string;
|
|
2306
|
-
organization_id: string;
|
|
2307
|
-
origin?: string | null;
|
|
2308
|
-
resource_id: string;
|
|
2309
|
-
revoked_at?: string | null;
|
|
2310
|
-
session_id?: string | null;
|
|
2311
|
-
token_hash: string;
|
|
2312
|
-
visitor_id?: string | null;
|
|
2313
|
-
};
|
|
2314
|
-
Update: {
|
|
2315
|
-
created_at?: string;
|
|
2316
|
-
expires_at?: string;
|
|
2317
|
-
grant_id?: string;
|
|
2318
|
-
id?: string;
|
|
2319
|
-
organization_id?: string;
|
|
2320
|
-
origin?: string | null;
|
|
2321
|
-
resource_id?: string;
|
|
2322
|
-
revoked_at?: string | null;
|
|
2323
|
-
session_id?: string | null;
|
|
2324
|
-
token_hash?: string;
|
|
2325
|
-
visitor_id?: string | null;
|
|
2326
|
-
};
|
|
2327
|
-
Relationships: [
|
|
2328
|
-
{
|
|
2329
|
-
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2330
|
-
columns: ["grant_id"];
|
|
2331
|
-
isOneToOne: false;
|
|
2332
|
-
referencedRelation: "agent_access_grants";
|
|
2333
|
-
referencedColumns: ["id"];
|
|
2334
|
-
},
|
|
2335
|
-
{
|
|
2336
|
-
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2337
|
-
columns: ["organization_id"];
|
|
2338
|
-
isOneToOne: false;
|
|
2339
|
-
referencedRelation: "organizations";
|
|
2340
|
-
referencedColumns: ["id"];
|
|
2341
|
-
},
|
|
2342
|
-
{
|
|
2343
|
-
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2344
|
-
columns: ["session_id"];
|
|
2345
|
-
isOneToOne: false;
|
|
2346
|
-
referencedRelation: "sessions";
|
|
2347
|
-
referencedColumns: ["session_id"];
|
|
2348
|
-
}
|
|
2349
|
-
];
|
|
2350
|
-
};
|
|
2351
2284
|
organizations: {
|
|
2352
2285
|
Row: {
|
|
2353
2286
|
config: Json;
|
|
@@ -3246,11 +3179,11 @@ type Database = {
|
|
|
3246
3179
|
Returns: undefined;
|
|
3247
3180
|
};
|
|
3248
3181
|
auth_jwt_claims: {
|
|
3249
|
-
Args: never
|
|
3182
|
+
Args: Record<PropertyKey, never>;
|
|
3250
3183
|
Returns: Json;
|
|
3251
3184
|
};
|
|
3252
3185
|
auth_uid_safe: {
|
|
3253
|
-
Args: never
|
|
3186
|
+
Args: Record<PropertyKey, never>;
|
|
3254
3187
|
Returns: string;
|
|
3255
3188
|
};
|
|
3256
3189
|
can_assign_role_in_org: {
|
|
@@ -3261,7 +3194,7 @@ type Database = {
|
|
|
3261
3194
|
Returns: boolean;
|
|
3262
3195
|
};
|
|
3263
3196
|
current_user_is_platform_admin: {
|
|
3264
|
-
Args: never
|
|
3197
|
+
Args: Record<PropertyKey, never>;
|
|
3265
3198
|
Returns: boolean;
|
|
3266
3199
|
};
|
|
3267
3200
|
current_user_shares_org_with: {
|
|
@@ -3271,11 +3204,11 @@ type Database = {
|
|
|
3271
3204
|
Returns: boolean;
|
|
3272
3205
|
};
|
|
3273
3206
|
current_user_supabase_id: {
|
|
3274
|
-
Args: never
|
|
3207
|
+
Args: Record<PropertyKey, never>;
|
|
3275
3208
|
Returns: string;
|
|
3276
3209
|
};
|
|
3277
3210
|
detect_stalled_executions: {
|
|
3278
|
-
Args: never
|
|
3211
|
+
Args: Record<PropertyKey, never>;
|
|
3279
3212
|
Returns: undefined;
|
|
3280
3213
|
};
|
|
3281
3214
|
execute_session_turn: {
|
|
@@ -3296,7 +3229,7 @@ type Database = {
|
|
|
3296
3229
|
}[];
|
|
3297
3230
|
};
|
|
3298
3231
|
get_platform_credential_kek: {
|
|
3299
|
-
Args: never
|
|
3232
|
+
Args: Record<PropertyKey, never>;
|
|
3300
3233
|
Returns: string;
|
|
3301
3234
|
};
|
|
3302
3235
|
get_storage_org_id: {
|
|
@@ -3306,7 +3239,7 @@ type Database = {
|
|
|
3306
3239
|
Returns: string;
|
|
3307
3240
|
};
|
|
3308
3241
|
get_workos_user_id: {
|
|
3309
|
-
Args: never
|
|
3242
|
+
Args: Record<PropertyKey, never>;
|
|
3310
3243
|
Returns: string;
|
|
3311
3244
|
};
|
|
3312
3245
|
has_org_access: {
|
|
@@ -3314,10 +3247,7 @@ type Database = {
|
|
|
3314
3247
|
action?: string;
|
|
3315
3248
|
org_id: string;
|
|
3316
3249
|
system_path: string;
|
|
3317
|
-
}
|
|
3318
|
-
Returns: boolean;
|
|
3319
|
-
} | {
|
|
3320
|
-
Args: {
|
|
3250
|
+
} | {
|
|
3321
3251
|
action?: string;
|
|
3322
3252
|
system_path: string;
|
|
3323
3253
|
};
|
|
@@ -3353,15 +3283,15 @@ type Database = {
|
|
|
3353
3283
|
Returns: Json;
|
|
3354
3284
|
};
|
|
3355
3285
|
process_due_schedules: {
|
|
3356
|
-
Args: never
|
|
3286
|
+
Args: Record<PropertyKey, never>;
|
|
3357
3287
|
Returns: Json;
|
|
3358
3288
|
};
|
|
3359
3289
|
recompute_all_memberships: {
|
|
3360
|
-
Args: never
|
|
3290
|
+
Args: Record<PropertyKey, never>;
|
|
3361
3291
|
Returns: undefined;
|
|
3362
3292
|
};
|
|
3363
3293
|
repair_membership_role_assignments: {
|
|
3364
|
-
Args: never
|
|
3294
|
+
Args: Record<PropertyKey, never>;
|
|
3365
3295
|
Returns: {
|
|
3366
3296
|
membership_id: string;
|
|
3367
3297
|
organization_id: string;
|
|
@@ -3391,7 +3321,7 @@ type Database = {
|
|
|
3391
3321
|
Returns: string;
|
|
3392
3322
|
};
|
|
3393
3323
|
upsert_user_profile: {
|
|
3394
|
-
Args: never
|
|
3324
|
+
Args: Record<PropertyKey, never>;
|
|
3395
3325
|
Returns: {
|
|
3396
3326
|
profile_display_name: string;
|
|
3397
3327
|
profile_email: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-CPIQ5GXG.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -11,12 +11,12 @@ import '../chunk-GMXGDO3I.js';
|
|
|
11
11
|
import '../chunk-S3XR4II4.js';
|
|
12
12
|
import '../chunk-6DO4PE3O.js';
|
|
13
13
|
import '../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../chunk-
|
|
15
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-M7WWRZ5Z.js';
|
|
15
|
+
import '../chunk-E6NSKXYN.js';
|
|
16
16
|
import '../chunk-2IFYDILW.js';
|
|
17
17
|
import '../chunk-Q7DJKLEN.js';
|
|
18
18
|
import '../chunk-HENXLGVD.js';
|
|
19
|
-
import '../chunk-
|
|
19
|
+
import '../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../chunk-W2SFTXMT.js';
|
|
22
22
|
import '../chunk-XOPLS4S6.js';
|