@elevasis/ui 1.26.1 → 1.28.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-MHW43EOH.js → chunk-2IFYDILW.js} +2 -1
- package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
- package/dist/{chunk-4INR75ZS.js → chunk-37NT4BNV.js} +589 -65
- package/dist/chunk-5COLSYBE.js +199 -0
- package/dist/{chunk-YNGQ7U5H.js → chunk-7CJ5QBN2.js} +2 -2
- package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
- package/dist/chunk-C4WOXS2C.js +6646 -0
- package/dist/{chunk-RMPXGBNI.js → chunk-D25AE46Q.js} +2 -2
- package/dist/{chunk-ZVJKIJFG.js → chunk-EBCIUZVV.js} +13 -42
- package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
- package/dist/chunk-KLG4H5NM.js +247 -0
- package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
- package/dist/chunk-S4S6K4MV.js +635 -0
- package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
- package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
- package/dist/{chunk-4WKWLFBZ.js → chunk-ZUJ7WMGV.js} +1 -1
- package/dist/chunk-ZXBD5SBV.js +2115 -0
- package/dist/components/index.d.ts +339 -73
- package/dist/components/index.js +840 -688
- 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 +57 -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 +388 -99
- 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 +130 -3
- package/dist/provider/index.js +10 -4
- package/dist/provider/published.d.ts +130 -3
- package/dist/provider/published.js +8 -2
- package/dist/router/context.d.ts +1 -0
- package/dist/router/index.d.ts +1 -0
- package/dist/router/index.js +1 -1
- 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 +1 -1
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ReactNode } from 'react';
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
4
|
|
|
5
5
|
/** Framework-agnostic theme overrides bundled with a preset (fonts, radius, component styles). */
|
|
@@ -271,6 +271,133 @@ interface ElevasisServiceProviderProps {
|
|
|
271
271
|
*/
|
|
272
272
|
declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
|
|
273
273
|
|
|
274
|
+
/**
|
|
275
|
+
* Time range selector for dashboard metrics
|
|
276
|
+
*/
|
|
277
|
+
type TimeRange = '1h' | '24h' | '7d' | '30d';
|
|
278
|
+
|
|
279
|
+
interface EventSourceMessage {
|
|
280
|
+
id: string;
|
|
281
|
+
event: string;
|
|
282
|
+
data: string;
|
|
283
|
+
retry?: number;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
interface FetchEventSourceWithTokenRefreshOptions {
|
|
287
|
+
url: string;
|
|
288
|
+
getToken: () => Promise<string | undefined>;
|
|
289
|
+
headers?: Record<string, string>;
|
|
290
|
+
signal: AbortSignal;
|
|
291
|
+
/** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
|
|
292
|
+
tokenRefreshDelayMs?: number;
|
|
293
|
+
onopen?: (response: Response) => void | Promise<void>;
|
|
294
|
+
onmessage?: (event: EventSourceMessage) => void;
|
|
295
|
+
onerror?: (error: unknown) => void;
|
|
296
|
+
onclose?: () => void;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
interface SSEConnectionManagerOptions {
|
|
300
|
+
/** Grace period in ms before closing idle connections. Defaults to 5000. */
|
|
301
|
+
closeGracePeriodMs?: number;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* SSE Connection Manager
|
|
305
|
+
*
|
|
306
|
+
* Ensures only ONE SSE connection exists per endpoint, preventing duplicate
|
|
307
|
+
* connections when components re-render or remount.
|
|
308
|
+
*
|
|
309
|
+
* Benefits:
|
|
310
|
+
* - Prevents resource waste from duplicate connections
|
|
311
|
+
* - Eliminates race conditions from overlapping connections
|
|
312
|
+
* - Automatically manages connection lifecycle
|
|
313
|
+
* - Shares single connection across multiple subscribers
|
|
314
|
+
*/
|
|
315
|
+
declare class SSEConnectionManager {
|
|
316
|
+
private connections;
|
|
317
|
+
private closeGracePeriodMs;
|
|
318
|
+
constructor(options?: SSEConnectionManagerOptions);
|
|
319
|
+
/**
|
|
320
|
+
* Subscribe to an SSE endpoint
|
|
321
|
+
*
|
|
322
|
+
* If a connection already exists for this endpoint, reuses it.
|
|
323
|
+
* Otherwise, creates a new connection.
|
|
324
|
+
*
|
|
325
|
+
* @param key - Unique identifier for the connection (e.g., 'notifications', 'resource-executive-agent')
|
|
326
|
+
* @param subscriberId - Unique identifier for this subscriber (usually component instance)
|
|
327
|
+
* @param options - SSE connection options
|
|
328
|
+
* @returns Unsubscribe function to call when component unmounts
|
|
329
|
+
*/
|
|
330
|
+
subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
|
|
331
|
+
/**
|
|
332
|
+
* Unsubscribe from an SSE endpoint
|
|
333
|
+
*
|
|
334
|
+
* If this is the last subscriber, closes the connection after grace period.
|
|
335
|
+
*/
|
|
336
|
+
private unsubscribe;
|
|
337
|
+
/**
|
|
338
|
+
* Force close a connection and all its subscribers
|
|
339
|
+
*/
|
|
340
|
+
closeConnection(key: string): void;
|
|
341
|
+
/**
|
|
342
|
+
* Get current connection status
|
|
343
|
+
*/
|
|
344
|
+
getConnectionInfo(): Map<string, {
|
|
345
|
+
url: string;
|
|
346
|
+
subscribers: number;
|
|
347
|
+
}>;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
interface FeatureNavLink {
|
|
351
|
+
label: string;
|
|
352
|
+
link: string;
|
|
353
|
+
featureKey?: string;
|
|
354
|
+
onClick?: () => void;
|
|
355
|
+
}
|
|
356
|
+
interface FeatureNavEntry {
|
|
357
|
+
label: string;
|
|
358
|
+
icon: ComponentType;
|
|
359
|
+
link?: string;
|
|
360
|
+
featureKey?: string;
|
|
361
|
+
requiresAdmin?: boolean;
|
|
362
|
+
dataOnboardingTourId?: string;
|
|
363
|
+
links?: FeatureNavLink[];
|
|
364
|
+
}
|
|
365
|
+
type FeatureSidebarComponent = ComponentType;
|
|
366
|
+
interface FeatureModule {
|
|
367
|
+
key: string;
|
|
368
|
+
label?: string;
|
|
369
|
+
navEntry?: FeatureNavEntry;
|
|
370
|
+
sidebar?: FeatureSidebarComponent;
|
|
371
|
+
subshellRoutes?: string[];
|
|
372
|
+
}
|
|
373
|
+
interface FeatureRegistry {
|
|
374
|
+
features: FeatureModule[];
|
|
375
|
+
}
|
|
376
|
+
interface ElevasisFeaturesProviderProps {
|
|
377
|
+
features: FeatureModule[];
|
|
378
|
+
timeRange?: TimeRange;
|
|
379
|
+
operationsApiUrl?: string;
|
|
380
|
+
operationsSSEManager?: SSEConnectionManager;
|
|
381
|
+
children: ReactNode;
|
|
382
|
+
}
|
|
383
|
+
interface ElevasisFeaturesContextValue {
|
|
384
|
+
navItems: FeatureNavEntry[];
|
|
385
|
+
enabledFeatures: FeatureModule[];
|
|
386
|
+
allFeatures: FeatureModule[];
|
|
387
|
+
timeRange?: TimeRange;
|
|
388
|
+
operationsApiUrl?: string;
|
|
389
|
+
operationsSSEManager?: SSEConnectionManager;
|
|
390
|
+
isFeatureEnabled: (key: string) => boolean;
|
|
391
|
+
getFeature: (key: string) => FeatureModule | undefined;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
395
|
+
declare function ElevasisFeaturesProvider({ features, timeRange, operationsApiUrl, operationsSSEManager, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
396
|
+
|
|
397
|
+
declare function FeatureShell({ children }: {
|
|
398
|
+
children: ReactNode;
|
|
399
|
+
}): react_jsx_runtime.JSX.Element;
|
|
400
|
+
|
|
274
401
|
interface AppearanceConfig {
|
|
275
402
|
/** Background layers rendered behind app content. Defaults to Elevasis background. */
|
|
276
403
|
background?: ReactNode;
|
|
@@ -312,5 +439,5 @@ declare function useElevasisServices(): ElevasisServiceContextValue;
|
|
|
312
439
|
*/
|
|
313
440
|
declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
|
|
314
441
|
|
|
315
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisServiceProvider, NotificationProvider, useAppearance, useElevasisServices, useNotificationAdapter };
|
|
316
|
-
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, NotificationAdapter, WithSchemes };
|
|
442
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, FeatureShell, NotificationProvider, useAppearance, useElevasisFeatures, useElevasisServices, useNotificationAdapter };
|
|
443
|
+
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureSidebarComponent, NotificationAdapter, WithSchemes };
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
1
|
+
export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, useElevasisFeatures, useNotificationAdapter } from '../chunk-KLG4H5NM.js';
|
|
2
|
+
import '../chunk-5COLSYBE.js';
|
|
2
3
|
import '../chunk-NVOCKXUQ.js';
|
|
3
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-2IFYDILW.js';
|
|
5
|
+
import '../chunk-W4VYXIN7.js';
|
|
4
6
|
export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
7
|
+
import '../chunk-QJ2S46NI.js';
|
|
8
|
+
import '../chunk-SLVC5OJ2.js';
|
|
9
|
+
import '../chunk-RNP5R5I3.js';
|
|
5
10
|
import '../chunk-IOKL7BKE.js';
|
|
6
11
|
import '../chunk-TUXTSEAF.js';
|
|
7
12
|
import '../chunk-DD3CCMCZ.js';
|
|
8
13
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-QEPXAWE2.js';
|
|
9
14
|
import '../chunk-BRJ3QZ4E.js';
|
|
15
|
+
import '../chunk-Q7DJKLEN.js';
|
package/dist/router/context.d.ts
CHANGED
package/dist/router/index.d.ts
CHANGED
package/dist/router/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { ScrollToTop, TanStackRouterBridge } from '../chunk-
|
|
1
|
+
export { ScrollToTop, TanStackRouterBridge } from '../chunk-2IFYDILW.js';
|
|
2
2
|
export { RouterProvider, useRouterContext } from '../chunk-Q7DJKLEN.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -533,6 +533,106 @@ type Database = {
|
|
|
533
533
|
}
|
|
534
534
|
];
|
|
535
535
|
};
|
|
536
|
+
acq_list_companies: {
|
|
537
|
+
Row: {
|
|
538
|
+
added_at: string;
|
|
539
|
+
added_by: string | null;
|
|
540
|
+
company_id: string;
|
|
541
|
+
id: string;
|
|
542
|
+
list_id: string;
|
|
543
|
+
source_execution_id: string | null;
|
|
544
|
+
source_input_hash: string | null;
|
|
545
|
+
source_resource_id: string | null;
|
|
546
|
+
stage: string | null;
|
|
547
|
+
stage_updated_at: string | null;
|
|
548
|
+
};
|
|
549
|
+
Insert: {
|
|
550
|
+
added_at?: string;
|
|
551
|
+
added_by?: string | null;
|
|
552
|
+
company_id: string;
|
|
553
|
+
id?: string;
|
|
554
|
+
list_id: string;
|
|
555
|
+
source_execution_id?: string | null;
|
|
556
|
+
source_input_hash?: string | null;
|
|
557
|
+
source_resource_id?: string | null;
|
|
558
|
+
stage?: string | null;
|
|
559
|
+
stage_updated_at?: string | null;
|
|
560
|
+
};
|
|
561
|
+
Update: {
|
|
562
|
+
added_at?: string;
|
|
563
|
+
added_by?: string | null;
|
|
564
|
+
company_id?: string;
|
|
565
|
+
id?: string;
|
|
566
|
+
list_id?: string;
|
|
567
|
+
source_execution_id?: string | null;
|
|
568
|
+
source_input_hash?: string | null;
|
|
569
|
+
source_resource_id?: string | null;
|
|
570
|
+
stage?: string | null;
|
|
571
|
+
stage_updated_at?: string | null;
|
|
572
|
+
};
|
|
573
|
+
Relationships: [
|
|
574
|
+
{
|
|
575
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
576
|
+
columns: ["company_id"];
|
|
577
|
+
isOneToOne: false;
|
|
578
|
+
referencedRelation: "acq_companies";
|
|
579
|
+
referencedColumns: ["id"];
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
583
|
+
columns: ["list_id"];
|
|
584
|
+
isOneToOne: false;
|
|
585
|
+
referencedRelation: "acq_lists";
|
|
586
|
+
referencedColumns: ["id"];
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
590
|
+
columns: ["source_execution_id"];
|
|
591
|
+
isOneToOne: false;
|
|
592
|
+
referencedRelation: "execution_logs";
|
|
593
|
+
referencedColumns: ["execution_id"];
|
|
594
|
+
}
|
|
595
|
+
];
|
|
596
|
+
};
|
|
597
|
+
acq_list_executions: {
|
|
598
|
+
Row: {
|
|
599
|
+
created_at: string;
|
|
600
|
+
execution_id: string;
|
|
601
|
+
id: string;
|
|
602
|
+
list_id: string;
|
|
603
|
+
payload: Json;
|
|
604
|
+
};
|
|
605
|
+
Insert: {
|
|
606
|
+
created_at?: string;
|
|
607
|
+
execution_id: string;
|
|
608
|
+
id?: string;
|
|
609
|
+
list_id: string;
|
|
610
|
+
payload?: Json;
|
|
611
|
+
};
|
|
612
|
+
Update: {
|
|
613
|
+
created_at?: string;
|
|
614
|
+
execution_id?: string;
|
|
615
|
+
id?: string;
|
|
616
|
+
list_id?: string;
|
|
617
|
+
payload?: Json;
|
|
618
|
+
};
|
|
619
|
+
Relationships: [
|
|
620
|
+
{
|
|
621
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
622
|
+
columns: ["execution_id"];
|
|
623
|
+
isOneToOne: false;
|
|
624
|
+
referencedRelation: "execution_logs";
|
|
625
|
+
referencedColumns: ["execution_id"];
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
629
|
+
columns: ["list_id"];
|
|
630
|
+
isOneToOne: false;
|
|
631
|
+
referencedRelation: "acq_lists";
|
|
632
|
+
referencedColumns: ["id"];
|
|
633
|
+
}
|
|
634
|
+
];
|
|
635
|
+
};
|
|
536
636
|
acq_list_members: {
|
|
537
637
|
Row: {
|
|
538
638
|
added_at: string;
|
|
@@ -540,6 +640,11 @@ type Database = {
|
|
|
540
640
|
contact_id: string;
|
|
541
641
|
id: string;
|
|
542
642
|
list_id: string;
|
|
643
|
+
source_execution_id: string | null;
|
|
644
|
+
source_input_hash: string | null;
|
|
645
|
+
source_resource_id: string | null;
|
|
646
|
+
stage: string | null;
|
|
647
|
+
stage_updated_at: string | null;
|
|
543
648
|
};
|
|
544
649
|
Insert: {
|
|
545
650
|
added_at?: string;
|
|
@@ -547,6 +652,11 @@ type Database = {
|
|
|
547
652
|
contact_id: string;
|
|
548
653
|
id?: string;
|
|
549
654
|
list_id: string;
|
|
655
|
+
source_execution_id?: string | null;
|
|
656
|
+
source_input_hash?: string | null;
|
|
657
|
+
source_resource_id?: string | null;
|
|
658
|
+
stage?: string | null;
|
|
659
|
+
stage_updated_at?: string | null;
|
|
550
660
|
};
|
|
551
661
|
Update: {
|
|
552
662
|
added_at?: string;
|
|
@@ -554,6 +664,11 @@ type Database = {
|
|
|
554
664
|
contact_id?: string;
|
|
555
665
|
id?: string;
|
|
556
666
|
list_id?: string;
|
|
667
|
+
source_execution_id?: string | null;
|
|
668
|
+
source_input_hash?: string | null;
|
|
669
|
+
source_resource_id?: string | null;
|
|
670
|
+
stage?: string | null;
|
|
671
|
+
stage_updated_at?: string | null;
|
|
557
672
|
};
|
|
558
673
|
Relationships: [
|
|
559
674
|
{
|
|
@@ -569,6 +684,13 @@ type Database = {
|
|
|
569
684
|
isOneToOne: false;
|
|
570
685
|
referencedRelation: "acq_lists";
|
|
571
686
|
referencedColumns: ["id"];
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
690
|
+
columns: ["source_execution_id"];
|
|
691
|
+
isOneToOne: false;
|
|
692
|
+
referencedRelation: "execution_logs";
|
|
693
|
+
referencedColumns: ["execution_id"];
|
|
572
694
|
}
|
|
573
695
|
];
|
|
574
696
|
};
|
|
@@ -576,6 +698,7 @@ type Database = {
|
|
|
576
698
|
Row: {
|
|
577
699
|
batch_ids: string[];
|
|
578
700
|
completed_at: string | null;
|
|
701
|
+
config: Json;
|
|
579
702
|
created_at: string;
|
|
580
703
|
description: string | null;
|
|
581
704
|
id: string;
|
|
@@ -590,6 +713,7 @@ type Database = {
|
|
|
590
713
|
Insert: {
|
|
591
714
|
batch_ids?: string[];
|
|
592
715
|
completed_at?: string | null;
|
|
716
|
+
config?: Json;
|
|
593
717
|
created_at?: string;
|
|
594
718
|
description?: string | null;
|
|
595
719
|
id?: string;
|
|
@@ -604,6 +728,7 @@ type Database = {
|
|
|
604
728
|
Update: {
|
|
605
729
|
batch_ids?: string[];
|
|
606
730
|
completed_at?: string | null;
|
|
731
|
+
config?: Json;
|
|
607
732
|
created_at?: string;
|
|
608
733
|
description?: string | null;
|
|
609
734
|
id?: string;
|
|
@@ -2974,6 +3099,99 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
2974
3099
|
referencedColumns: ["id"];
|
|
2975
3100
|
}];
|
|
2976
3101
|
};
|
|
3102
|
+
acq_list_companies: {
|
|
3103
|
+
Row: {
|
|
3104
|
+
added_at: string;
|
|
3105
|
+
added_by: string | null;
|
|
3106
|
+
company_id: string;
|
|
3107
|
+
id: string;
|
|
3108
|
+
list_id: string;
|
|
3109
|
+
source_execution_id: string | null;
|
|
3110
|
+
source_input_hash: string | null;
|
|
3111
|
+
source_resource_id: string | null;
|
|
3112
|
+
stage: string | null;
|
|
3113
|
+
stage_updated_at: string | null;
|
|
3114
|
+
};
|
|
3115
|
+
Insert: {
|
|
3116
|
+
added_at?: string;
|
|
3117
|
+
added_by?: string | null;
|
|
3118
|
+
company_id: string;
|
|
3119
|
+
id?: string;
|
|
3120
|
+
list_id: string;
|
|
3121
|
+
source_execution_id?: string | null;
|
|
3122
|
+
source_input_hash?: string | null;
|
|
3123
|
+
source_resource_id?: string | null;
|
|
3124
|
+
stage?: string | null;
|
|
3125
|
+
stage_updated_at?: string | null;
|
|
3126
|
+
};
|
|
3127
|
+
Update: {
|
|
3128
|
+
added_at?: string;
|
|
3129
|
+
added_by?: string | null;
|
|
3130
|
+
company_id?: string;
|
|
3131
|
+
id?: string;
|
|
3132
|
+
list_id?: string;
|
|
3133
|
+
source_execution_id?: string | null;
|
|
3134
|
+
source_input_hash?: string | null;
|
|
3135
|
+
source_resource_id?: string | null;
|
|
3136
|
+
stage?: string | null;
|
|
3137
|
+
stage_updated_at?: string | null;
|
|
3138
|
+
};
|
|
3139
|
+
Relationships: [{
|
|
3140
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
3141
|
+
columns: ["company_id"];
|
|
3142
|
+
isOneToOne: false;
|
|
3143
|
+
referencedRelation: "acq_companies";
|
|
3144
|
+
referencedColumns: ["id"];
|
|
3145
|
+
}, {
|
|
3146
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
3147
|
+
columns: ["list_id"];
|
|
3148
|
+
isOneToOne: false;
|
|
3149
|
+
referencedRelation: "acq_lists";
|
|
3150
|
+
referencedColumns: ["id"];
|
|
3151
|
+
}, {
|
|
3152
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
3153
|
+
columns: ["source_execution_id"];
|
|
3154
|
+
isOneToOne: false;
|
|
3155
|
+
referencedRelation: "execution_logs";
|
|
3156
|
+
referencedColumns: ["execution_id"];
|
|
3157
|
+
}];
|
|
3158
|
+
};
|
|
3159
|
+
acq_list_executions: {
|
|
3160
|
+
Row: {
|
|
3161
|
+
created_at: string;
|
|
3162
|
+
execution_id: string;
|
|
3163
|
+
id: string;
|
|
3164
|
+
list_id: string;
|
|
3165
|
+
payload: Json;
|
|
3166
|
+
};
|
|
3167
|
+
Insert: {
|
|
3168
|
+
created_at?: string;
|
|
3169
|
+
execution_id: string;
|
|
3170
|
+
id?: string;
|
|
3171
|
+
list_id: string;
|
|
3172
|
+
payload?: Json;
|
|
3173
|
+
};
|
|
3174
|
+
Update: {
|
|
3175
|
+
created_at?: string;
|
|
3176
|
+
execution_id?: string;
|
|
3177
|
+
id?: string;
|
|
3178
|
+
list_id?: string;
|
|
3179
|
+
payload?: Json;
|
|
3180
|
+
};
|
|
3181
|
+
Relationships: [{
|
|
3182
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
3183
|
+
columns: ["execution_id"];
|
|
3184
|
+
isOneToOne: false;
|
|
3185
|
+
referencedRelation: "execution_logs";
|
|
3186
|
+
referencedColumns: ["execution_id"];
|
|
3187
|
+
}, {
|
|
3188
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
3189
|
+
columns: ["list_id"];
|
|
3190
|
+
isOneToOne: false;
|
|
3191
|
+
referencedRelation: "acq_lists";
|
|
3192
|
+
referencedColumns: ["id"];
|
|
3193
|
+
}];
|
|
3194
|
+
};
|
|
2977
3195
|
acq_list_members: {
|
|
2978
3196
|
Row: {
|
|
2979
3197
|
added_at: string;
|
|
@@ -2981,6 +3199,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
2981
3199
|
contact_id: string;
|
|
2982
3200
|
id: string;
|
|
2983
3201
|
list_id: string;
|
|
3202
|
+
source_execution_id: string | null;
|
|
3203
|
+
source_input_hash: string | null;
|
|
3204
|
+
source_resource_id: string | null;
|
|
3205
|
+
stage: string | null;
|
|
3206
|
+
stage_updated_at: string | null;
|
|
2984
3207
|
};
|
|
2985
3208
|
Insert: {
|
|
2986
3209
|
added_at?: string;
|
|
@@ -2988,6 +3211,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
2988
3211
|
contact_id: string;
|
|
2989
3212
|
id?: string;
|
|
2990
3213
|
list_id: string;
|
|
3214
|
+
source_execution_id?: string | null;
|
|
3215
|
+
source_input_hash?: string | null;
|
|
3216
|
+
source_resource_id?: string | null;
|
|
3217
|
+
stage?: string | null;
|
|
3218
|
+
stage_updated_at?: string | null;
|
|
2991
3219
|
};
|
|
2992
3220
|
Update: {
|
|
2993
3221
|
added_at?: string;
|
|
@@ -2995,6 +3223,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
2995
3223
|
contact_id?: string;
|
|
2996
3224
|
id?: string;
|
|
2997
3225
|
list_id?: string;
|
|
3226
|
+
source_execution_id?: string | null;
|
|
3227
|
+
source_input_hash?: string | null;
|
|
3228
|
+
source_resource_id?: string | null;
|
|
3229
|
+
stage?: string | null;
|
|
3230
|
+
stage_updated_at?: string | null;
|
|
2998
3231
|
};
|
|
2999
3232
|
Relationships: [{
|
|
3000
3233
|
foreignKeyName: "acq_list_members_contact_id_fkey";
|
|
@@ -3008,12 +3241,19 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3008
3241
|
isOneToOne: false;
|
|
3009
3242
|
referencedRelation: "acq_lists";
|
|
3010
3243
|
referencedColumns: ["id"];
|
|
3244
|
+
}, {
|
|
3245
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
3246
|
+
columns: ["source_execution_id"];
|
|
3247
|
+
isOneToOne: false;
|
|
3248
|
+
referencedRelation: "execution_logs";
|
|
3249
|
+
referencedColumns: ["execution_id"];
|
|
3011
3250
|
}];
|
|
3012
3251
|
};
|
|
3013
3252
|
acq_lists: {
|
|
3014
3253
|
Row: {
|
|
3015
3254
|
batch_ids: string[];
|
|
3016
3255
|
completed_at: string | null;
|
|
3256
|
+
config: Json;
|
|
3017
3257
|
created_at: string;
|
|
3018
3258
|
description: string | null;
|
|
3019
3259
|
id: string;
|
|
@@ -3028,6 +3268,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3028
3268
|
Insert: {
|
|
3029
3269
|
batch_ids?: string[];
|
|
3030
3270
|
completed_at?: string | null;
|
|
3271
|
+
config?: Json;
|
|
3031
3272
|
created_at?: string;
|
|
3032
3273
|
description?: string | null;
|
|
3033
3274
|
id?: string;
|
|
@@ -3042,6 +3283,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3042
3283
|
Update: {
|
|
3043
3284
|
batch_ids?: string[];
|
|
3044
3285
|
completed_at?: string | null;
|
|
3286
|
+
config?: Json;
|
|
3045
3287
|
created_at?: string;
|
|
3046
3288
|
description?: string | null;
|
|
3047
3289
|
id?: string;
|
package/dist/theme/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { useAvailablePresets } from '../chunk-
|
|
2
|
-
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-
|
|
1
|
+
export { useAvailablePresets } from '../chunk-QTD5HPKD.js';
|
|
2
|
+
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-TXPUIHX2.js';
|
|
3
3
|
import '../chunk-CYXZHBP4.js';
|