@elevasis/ui 2.14.1 → 2.16.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/{chunk-A7346I7H.js → chunk-5UQKR27N.js} +1 -1
- package/dist/{chunk-F2GI5TQT.js → chunk-6SHOLCSV.js} +4 -3
- package/dist/{chunk-TAUPDLQ7.js → chunk-7MBONWZZ.js} +1 -1
- package/dist/{chunk-DKQQK3WX.js → chunk-BKSSVQM6.js} +1 -1
- package/dist/{chunk-ETQRV5A6.js → chunk-C3INGWGK.js} +1 -1
- package/dist/{chunk-C7BX547M.js → chunk-DT7ETYBT.js} +6 -0
- package/dist/{chunk-JAUU6TZU.js → chunk-F4VHHW4O.js} +109 -143
- package/dist/{chunk-JL7RHMV2.js → chunk-LKU4JCPR.js} +2 -2
- package/dist/{chunk-NPWJYY4B.js → chunk-M2RM3CC4.js} +1 -1
- package/dist/{chunk-IO75JNQE.js → chunk-RWFT46RK.js} +1 -1
- package/dist/{chunk-C56A2MAS.js → chunk-XNEYUG4B.js} +13 -6
- package/dist/components/index.d.ts +141 -49
- package/dist/components/index.js +22 -396
- package/dist/features/auth/index.d.ts +70 -6
- package/dist/features/crm/index.d.ts +70 -6
- package/dist/features/crm/index.js +4 -4
- package/dist/features/dashboard/index.js +4 -4
- package/dist/features/delivery/index.d.ts +70 -6
- package/dist/features/delivery/index.js +4 -4
- package/dist/features/lead-gen/index.js +7 -7
- package/dist/features/monitoring/index.js +5 -5
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.js +6 -6
- package/dist/features/settings/index.d.ts +70 -6
- package/dist/features/settings/index.js +4 -4
- package/dist/hooks/index.d.ts +150 -65
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.d.ts +150 -65
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +155 -66
- package/dist/index.js +3 -3
- package/dist/initialization/index.d.ts +70 -6
- package/dist/profile/index.d.ts +70 -6
- package/dist/provider/index.d.ts +5 -1
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +5 -1
- package/dist/provider/published.js +1 -1
- package/dist/supabase/index.d.ts +130 -12
- package/dist/types/index.d.ts +70 -6
- package/package.json +2 -2
- package/src/hooks/README.md +1 -2
package/dist/profile/index.d.ts
CHANGED
|
@@ -1263,10 +1263,8 @@ type Database = {
|
|
|
1263
1263
|
};
|
|
1264
1264
|
deployments: {
|
|
1265
1265
|
Row: {
|
|
1266
|
-
compiled_docs: Json | null;
|
|
1267
1266
|
created_at: string;
|
|
1268
1267
|
deployment_version: string | null;
|
|
1269
|
-
documentation: Json | null;
|
|
1270
1268
|
error_message: string | null;
|
|
1271
1269
|
id: string;
|
|
1272
1270
|
organization_id: string;
|
|
@@ -1278,10 +1276,8 @@ type Database = {
|
|
|
1278
1276
|
updated_at: string;
|
|
1279
1277
|
};
|
|
1280
1278
|
Insert: {
|
|
1281
|
-
compiled_docs?: Json | null;
|
|
1282
1279
|
created_at?: string;
|
|
1283
1280
|
deployment_version?: string | null;
|
|
1284
|
-
documentation?: Json | null;
|
|
1285
1281
|
error_message?: string | null;
|
|
1286
1282
|
id?: string;
|
|
1287
1283
|
organization_id: string;
|
|
@@ -1293,10 +1289,8 @@ type Database = {
|
|
|
1293
1289
|
updated_at?: string;
|
|
1294
1290
|
};
|
|
1295
1291
|
Update: {
|
|
1296
|
-
compiled_docs?: Json | null;
|
|
1297
1292
|
created_at?: string;
|
|
1298
1293
|
deployment_version?: string | null;
|
|
1299
|
-
documentation?: Json | null;
|
|
1300
1294
|
error_message?: string | null;
|
|
1301
1295
|
id?: string;
|
|
1302
1296
|
organization_id?: string;
|
|
@@ -1808,6 +1802,13 @@ type Database = {
|
|
|
1808
1802
|
updated_at?: string;
|
|
1809
1803
|
};
|
|
1810
1804
|
Relationships: [
|
|
1805
|
+
{
|
|
1806
|
+
foreignKeyName: "fk_milestones_project";
|
|
1807
|
+
columns: ["project_id"];
|
|
1808
|
+
isOneToOne: false;
|
|
1809
|
+
referencedRelation: "prj_projects";
|
|
1810
|
+
referencedColumns: ["id"];
|
|
1811
|
+
},
|
|
1811
1812
|
{
|
|
1812
1813
|
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
1813
1814
|
columns: ["organization_id"];
|
|
@@ -1868,6 +1869,34 @@ type Database = {
|
|
|
1868
1869
|
type?: string;
|
|
1869
1870
|
};
|
|
1870
1871
|
Relationships: [
|
|
1872
|
+
{
|
|
1873
|
+
foreignKeyName: "fk_notes_created_by";
|
|
1874
|
+
columns: ["created_by"];
|
|
1875
|
+
isOneToOne: false;
|
|
1876
|
+
referencedRelation: "users";
|
|
1877
|
+
referencedColumns: ["id"];
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
foreignKeyName: "fk_notes_milestone";
|
|
1881
|
+
columns: ["milestone_id"];
|
|
1882
|
+
isOneToOne: false;
|
|
1883
|
+
referencedRelation: "prj_milestones";
|
|
1884
|
+
referencedColumns: ["id"];
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
foreignKeyName: "fk_notes_project";
|
|
1888
|
+
columns: ["project_id"];
|
|
1889
|
+
isOneToOne: false;
|
|
1890
|
+
referencedRelation: "prj_projects";
|
|
1891
|
+
referencedColumns: ["id"];
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
foreignKeyName: "fk_notes_task";
|
|
1895
|
+
columns: ["task_id"];
|
|
1896
|
+
isOneToOne: false;
|
|
1897
|
+
referencedRelation: "prj_tasks";
|
|
1898
|
+
referencedColumns: ["id"];
|
|
1899
|
+
},
|
|
1871
1900
|
{
|
|
1872
1901
|
foreignKeyName: "prj_notes_created_by_fkey";
|
|
1873
1902
|
columns: ["created_by"];
|
|
@@ -1958,6 +1987,20 @@ type Database = {
|
|
|
1958
1987
|
updated_at?: string;
|
|
1959
1988
|
};
|
|
1960
1989
|
Relationships: [
|
|
1990
|
+
{
|
|
1991
|
+
foreignKeyName: "fk_projects_company";
|
|
1992
|
+
columns: ["client_company_id"];
|
|
1993
|
+
isOneToOne: false;
|
|
1994
|
+
referencedRelation: "acq_companies";
|
|
1995
|
+
referencedColumns: ["id"];
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
foreignKeyName: "fk_projects_deal";
|
|
1999
|
+
columns: ["deal_id"];
|
|
2000
|
+
isOneToOne: false;
|
|
2001
|
+
referencedRelation: "acq_deals";
|
|
2002
|
+
referencedColumns: ["id"];
|
|
2003
|
+
},
|
|
1961
2004
|
{
|
|
1962
2005
|
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
1963
2006
|
columns: ["client_company_id"];
|
|
@@ -2040,6 +2083,27 @@ type Database = {
|
|
|
2040
2083
|
updated_at?: string;
|
|
2041
2084
|
};
|
|
2042
2085
|
Relationships: [
|
|
2086
|
+
{
|
|
2087
|
+
foreignKeyName: "fk_tasks_milestone";
|
|
2088
|
+
columns: ["milestone_id"];
|
|
2089
|
+
isOneToOne: false;
|
|
2090
|
+
referencedRelation: "prj_milestones";
|
|
2091
|
+
referencedColumns: ["id"];
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
foreignKeyName: "fk_tasks_parent";
|
|
2095
|
+
columns: ["parent_task_id"];
|
|
2096
|
+
isOneToOne: false;
|
|
2097
|
+
referencedRelation: "prj_tasks";
|
|
2098
|
+
referencedColumns: ["id"];
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
foreignKeyName: "fk_tasks_project";
|
|
2102
|
+
columns: ["project_id"];
|
|
2103
|
+
isOneToOne: false;
|
|
2104
|
+
referencedRelation: "prj_projects";
|
|
2105
|
+
referencedColumns: ["id"];
|
|
2106
|
+
},
|
|
2043
2107
|
{
|
|
2044
2108
|
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
2045
2109
|
columns: ["milestone_id"];
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -649,6 +649,8 @@ interface ElevasisFeaturesProviderProps {
|
|
|
649
649
|
timeRange?: TimeRange;
|
|
650
650
|
operationsApiUrl?: string;
|
|
651
651
|
operationsSSEManager?: SSEConnectionManagerLike;
|
|
652
|
+
deliveryApiUrl?: string;
|
|
653
|
+
deliverySSEManager?: SSEConnectionManagerLike;
|
|
652
654
|
disabledSubsectionPaths?: string[];
|
|
653
655
|
children: ReactNode;
|
|
654
656
|
}
|
|
@@ -662,6 +664,8 @@ interface ElevasisFeaturesContextValue {
|
|
|
662
664
|
timeRange?: TimeRange;
|
|
663
665
|
operationsApiUrl?: string;
|
|
664
666
|
operationsSSEManager?: SSEConnectionManagerLike;
|
|
667
|
+
deliveryApiUrl?: string;
|
|
668
|
+
deliverySSEManager?: SSEConnectionManagerLike;
|
|
665
669
|
disabledSubsectionPaths: string[];
|
|
666
670
|
isFeatureEnabled: (key: string) => boolean;
|
|
667
671
|
getResolvedFeature: (key: string) => ResolvedFeatureModule | undefined;
|
|
@@ -669,7 +673,7 @@ interface ElevasisFeaturesContextValue {
|
|
|
669
673
|
|
|
670
674
|
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
671
675
|
declare function useOptionalElevasisFeatures(): ElevasisFeaturesContextValue | null;
|
|
672
|
-
declare function ElevasisFeaturesProvider({ features, organizationModel, appShellOverrides, timeRange, operationsApiUrl, operationsSSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
676
|
+
declare function ElevasisFeaturesProvider({ features, organizationModel, appShellOverrides, timeRange, operationsApiUrl, operationsSSEManager, deliveryApiUrl, deliverySSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
673
677
|
|
|
674
678
|
declare function FeatureShell({ children }: {
|
|
675
679
|
children: ReactNode;
|
package/dist/provider/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { createTestFeaturesProvider } from '../chunk-
|
|
1
|
+
export { createTestFeaturesProvider } from '../chunk-BKSSVQM6.js';
|
|
2
2
|
export { ElevasisUIProvider } from '../chunk-5IBTTMWX.js';
|
|
3
3
|
import '../chunk-R73EHHPN.js';
|
|
4
4
|
import '../chunk-WLOQ4IBG.js';
|
|
5
|
-
export { ElevasisFeaturesProvider, FeatureShell, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-
|
|
5
|
+
export { ElevasisFeaturesProvider, FeatureShell, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-DT7ETYBT.js';
|
|
6
6
|
import '../chunk-RX4UWZZR.js';
|
|
7
7
|
import '../chunk-SQQGLGHW.js';
|
|
8
8
|
import '../chunk-3KMDHCAR.js';
|
|
@@ -648,6 +648,8 @@ interface ElevasisFeaturesProviderProps {
|
|
|
648
648
|
timeRange?: TimeRange;
|
|
649
649
|
operationsApiUrl?: string;
|
|
650
650
|
operationsSSEManager?: SSEConnectionManagerLike;
|
|
651
|
+
deliveryApiUrl?: string;
|
|
652
|
+
deliverySSEManager?: SSEConnectionManagerLike;
|
|
651
653
|
disabledSubsectionPaths?: string[];
|
|
652
654
|
children: ReactNode;
|
|
653
655
|
}
|
|
@@ -661,6 +663,8 @@ interface ElevasisFeaturesContextValue {
|
|
|
661
663
|
timeRange?: TimeRange;
|
|
662
664
|
operationsApiUrl?: string;
|
|
663
665
|
operationsSSEManager?: SSEConnectionManagerLike;
|
|
666
|
+
deliveryApiUrl?: string;
|
|
667
|
+
deliverySSEManager?: SSEConnectionManagerLike;
|
|
664
668
|
disabledSubsectionPaths: string[];
|
|
665
669
|
isFeatureEnabled: (key: string) => boolean;
|
|
666
670
|
getResolvedFeature: (key: string) => ResolvedFeatureModule | undefined;
|
|
@@ -668,7 +672,7 @@ interface ElevasisFeaturesContextValue {
|
|
|
668
672
|
|
|
669
673
|
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
670
674
|
declare function useOptionalElevasisFeatures(): ElevasisFeaturesContextValue | null;
|
|
671
|
-
declare function ElevasisFeaturesProvider({ features, organizationModel, appShellOverrides, timeRange, operationsApiUrl, operationsSSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
675
|
+
declare function ElevasisFeaturesProvider({ features, organizationModel, appShellOverrides, timeRange, operationsApiUrl, operationsSSEManager, deliveryApiUrl, deliverySSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
672
676
|
|
|
673
677
|
declare function FeatureShell({ children }: {
|
|
674
678
|
children: ReactNode;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ElevasisFeaturesProvider, FeatureShell, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-
|
|
1
|
+
export { ElevasisFeaturesProvider, FeatureShell, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-DT7ETYBT.js';
|
|
2
2
|
import '../chunk-RX4UWZZR.js';
|
|
3
3
|
import '../chunk-SQQGLGHW.js';
|
|
4
4
|
import '../chunk-3KMDHCAR.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -1262,10 +1262,8 @@ type Database = {
|
|
|
1262
1262
|
};
|
|
1263
1263
|
deployments: {
|
|
1264
1264
|
Row: {
|
|
1265
|
-
compiled_docs: Json | null;
|
|
1266
1265
|
created_at: string;
|
|
1267
1266
|
deployment_version: string | null;
|
|
1268
|
-
documentation: Json | null;
|
|
1269
1267
|
error_message: string | null;
|
|
1270
1268
|
id: string;
|
|
1271
1269
|
organization_id: string;
|
|
@@ -1277,10 +1275,8 @@ type Database = {
|
|
|
1277
1275
|
updated_at: string;
|
|
1278
1276
|
};
|
|
1279
1277
|
Insert: {
|
|
1280
|
-
compiled_docs?: Json | null;
|
|
1281
1278
|
created_at?: string;
|
|
1282
1279
|
deployment_version?: string | null;
|
|
1283
|
-
documentation?: Json | null;
|
|
1284
1280
|
error_message?: string | null;
|
|
1285
1281
|
id?: string;
|
|
1286
1282
|
organization_id: string;
|
|
@@ -1292,10 +1288,8 @@ type Database = {
|
|
|
1292
1288
|
updated_at?: string;
|
|
1293
1289
|
};
|
|
1294
1290
|
Update: {
|
|
1295
|
-
compiled_docs?: Json | null;
|
|
1296
1291
|
created_at?: string;
|
|
1297
1292
|
deployment_version?: string | null;
|
|
1298
|
-
documentation?: Json | null;
|
|
1299
1293
|
error_message?: string | null;
|
|
1300
1294
|
id?: string;
|
|
1301
1295
|
organization_id?: string;
|
|
@@ -1807,6 +1801,13 @@ type Database = {
|
|
|
1807
1801
|
updated_at?: string;
|
|
1808
1802
|
};
|
|
1809
1803
|
Relationships: [
|
|
1804
|
+
{
|
|
1805
|
+
foreignKeyName: "fk_milestones_project";
|
|
1806
|
+
columns: ["project_id"];
|
|
1807
|
+
isOneToOne: false;
|
|
1808
|
+
referencedRelation: "prj_projects";
|
|
1809
|
+
referencedColumns: ["id"];
|
|
1810
|
+
},
|
|
1810
1811
|
{
|
|
1811
1812
|
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
1812
1813
|
columns: ["organization_id"];
|
|
@@ -1867,6 +1868,34 @@ type Database = {
|
|
|
1867
1868
|
type?: string;
|
|
1868
1869
|
};
|
|
1869
1870
|
Relationships: [
|
|
1871
|
+
{
|
|
1872
|
+
foreignKeyName: "fk_notes_created_by";
|
|
1873
|
+
columns: ["created_by"];
|
|
1874
|
+
isOneToOne: false;
|
|
1875
|
+
referencedRelation: "users";
|
|
1876
|
+
referencedColumns: ["id"];
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
foreignKeyName: "fk_notes_milestone";
|
|
1880
|
+
columns: ["milestone_id"];
|
|
1881
|
+
isOneToOne: false;
|
|
1882
|
+
referencedRelation: "prj_milestones";
|
|
1883
|
+
referencedColumns: ["id"];
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
foreignKeyName: "fk_notes_project";
|
|
1887
|
+
columns: ["project_id"];
|
|
1888
|
+
isOneToOne: false;
|
|
1889
|
+
referencedRelation: "prj_projects";
|
|
1890
|
+
referencedColumns: ["id"];
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
foreignKeyName: "fk_notes_task";
|
|
1894
|
+
columns: ["task_id"];
|
|
1895
|
+
isOneToOne: false;
|
|
1896
|
+
referencedRelation: "prj_tasks";
|
|
1897
|
+
referencedColumns: ["id"];
|
|
1898
|
+
},
|
|
1870
1899
|
{
|
|
1871
1900
|
foreignKeyName: "prj_notes_created_by_fkey";
|
|
1872
1901
|
columns: ["created_by"];
|
|
@@ -1957,6 +1986,20 @@ type Database = {
|
|
|
1957
1986
|
updated_at?: string;
|
|
1958
1987
|
};
|
|
1959
1988
|
Relationships: [
|
|
1989
|
+
{
|
|
1990
|
+
foreignKeyName: "fk_projects_company";
|
|
1991
|
+
columns: ["client_company_id"];
|
|
1992
|
+
isOneToOne: false;
|
|
1993
|
+
referencedRelation: "acq_companies";
|
|
1994
|
+
referencedColumns: ["id"];
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
foreignKeyName: "fk_projects_deal";
|
|
1998
|
+
columns: ["deal_id"];
|
|
1999
|
+
isOneToOne: false;
|
|
2000
|
+
referencedRelation: "acq_deals";
|
|
2001
|
+
referencedColumns: ["id"];
|
|
2002
|
+
},
|
|
1960
2003
|
{
|
|
1961
2004
|
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
1962
2005
|
columns: ["client_company_id"];
|
|
@@ -2039,6 +2082,27 @@ type Database = {
|
|
|
2039
2082
|
updated_at?: string;
|
|
2040
2083
|
};
|
|
2041
2084
|
Relationships: [
|
|
2085
|
+
{
|
|
2086
|
+
foreignKeyName: "fk_tasks_milestone";
|
|
2087
|
+
columns: ["milestone_id"];
|
|
2088
|
+
isOneToOne: false;
|
|
2089
|
+
referencedRelation: "prj_milestones";
|
|
2090
|
+
referencedColumns: ["id"];
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
foreignKeyName: "fk_tasks_parent";
|
|
2094
|
+
columns: ["parent_task_id"];
|
|
2095
|
+
isOneToOne: false;
|
|
2096
|
+
referencedRelation: "prj_tasks";
|
|
2097
|
+
referencedColumns: ["id"];
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
foreignKeyName: "fk_tasks_project";
|
|
2101
|
+
columns: ["project_id"];
|
|
2102
|
+
isOneToOne: false;
|
|
2103
|
+
referencedRelation: "prj_projects";
|
|
2104
|
+
referencedColumns: ["id"];
|
|
2105
|
+
},
|
|
2042
2106
|
{
|
|
2043
2107
|
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
2044
2108
|
columns: ["milestone_id"];
|
|
@@ -3778,10 +3842,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3778
3842
|
};
|
|
3779
3843
|
deployments: {
|
|
3780
3844
|
Row: {
|
|
3781
|
-
compiled_docs: Json | null;
|
|
3782
3845
|
created_at: string;
|
|
3783
3846
|
deployment_version: string | null;
|
|
3784
|
-
documentation: Json | null;
|
|
3785
3847
|
error_message: string | null;
|
|
3786
3848
|
id: string;
|
|
3787
3849
|
organization_id: string;
|
|
@@ -3793,10 +3855,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3793
3855
|
updated_at: string;
|
|
3794
3856
|
};
|
|
3795
3857
|
Insert: {
|
|
3796
|
-
compiled_docs?: Json | null;
|
|
3797
3858
|
created_at?: string;
|
|
3798
3859
|
deployment_version?: string | null;
|
|
3799
|
-
documentation?: Json | null;
|
|
3800
3860
|
error_message?: string | null;
|
|
3801
3861
|
id?: string;
|
|
3802
3862
|
organization_id: string;
|
|
@@ -3808,10 +3868,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
3808
3868
|
updated_at?: string;
|
|
3809
3869
|
};
|
|
3810
3870
|
Update: {
|
|
3811
|
-
compiled_docs?: Json | null;
|
|
3812
3871
|
created_at?: string;
|
|
3813
3872
|
deployment_version?: string | null;
|
|
3814
|
-
documentation?: Json | null;
|
|
3815
3873
|
error_message?: string | null;
|
|
3816
3874
|
id?: string;
|
|
3817
3875
|
organization_id?: string;
|
|
@@ -4300,6 +4358,12 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4300
4358
|
updated_at?: string;
|
|
4301
4359
|
};
|
|
4302
4360
|
Relationships: [{
|
|
4361
|
+
foreignKeyName: "fk_milestones_project";
|
|
4362
|
+
columns: ["project_id"];
|
|
4363
|
+
isOneToOne: false;
|
|
4364
|
+
referencedRelation: "prj_projects";
|
|
4365
|
+
referencedColumns: ["id"];
|
|
4366
|
+
}, {
|
|
4303
4367
|
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
4304
4368
|
columns: ["organization_id"];
|
|
4305
4369
|
isOneToOne: false;
|
|
@@ -4357,6 +4421,30 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4357
4421
|
type?: string;
|
|
4358
4422
|
};
|
|
4359
4423
|
Relationships: [{
|
|
4424
|
+
foreignKeyName: "fk_notes_created_by";
|
|
4425
|
+
columns: ["created_by"];
|
|
4426
|
+
isOneToOne: false;
|
|
4427
|
+
referencedRelation: "users";
|
|
4428
|
+
referencedColumns: ["id"];
|
|
4429
|
+
}, {
|
|
4430
|
+
foreignKeyName: "fk_notes_milestone";
|
|
4431
|
+
columns: ["milestone_id"];
|
|
4432
|
+
isOneToOne: false;
|
|
4433
|
+
referencedRelation: "prj_milestones";
|
|
4434
|
+
referencedColumns: ["id"];
|
|
4435
|
+
}, {
|
|
4436
|
+
foreignKeyName: "fk_notes_project";
|
|
4437
|
+
columns: ["project_id"];
|
|
4438
|
+
isOneToOne: false;
|
|
4439
|
+
referencedRelation: "prj_projects";
|
|
4440
|
+
referencedColumns: ["id"];
|
|
4441
|
+
}, {
|
|
4442
|
+
foreignKeyName: "fk_notes_task";
|
|
4443
|
+
columns: ["task_id"];
|
|
4444
|
+
isOneToOne: false;
|
|
4445
|
+
referencedRelation: "prj_tasks";
|
|
4446
|
+
referencedColumns: ["id"];
|
|
4447
|
+
}, {
|
|
4360
4448
|
foreignKeyName: "prj_notes_created_by_fkey";
|
|
4361
4449
|
columns: ["created_by"];
|
|
4362
4450
|
isOneToOne: false;
|
|
@@ -4441,6 +4529,18 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4441
4529
|
updated_at?: string;
|
|
4442
4530
|
};
|
|
4443
4531
|
Relationships: [{
|
|
4532
|
+
foreignKeyName: "fk_projects_company";
|
|
4533
|
+
columns: ["client_company_id"];
|
|
4534
|
+
isOneToOne: false;
|
|
4535
|
+
referencedRelation: "acq_companies";
|
|
4536
|
+
referencedColumns: ["id"];
|
|
4537
|
+
}, {
|
|
4538
|
+
foreignKeyName: "fk_projects_deal";
|
|
4539
|
+
columns: ["deal_id"];
|
|
4540
|
+
isOneToOne: false;
|
|
4541
|
+
referencedRelation: "acq_deals";
|
|
4542
|
+
referencedColumns: ["id"];
|
|
4543
|
+
}, {
|
|
4444
4544
|
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
4445
4545
|
columns: ["client_company_id"];
|
|
4446
4546
|
isOneToOne: false;
|
|
@@ -4519,6 +4619,24 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4519
4619
|
updated_at?: string;
|
|
4520
4620
|
};
|
|
4521
4621
|
Relationships: [{
|
|
4622
|
+
foreignKeyName: "fk_tasks_milestone";
|
|
4623
|
+
columns: ["milestone_id"];
|
|
4624
|
+
isOneToOne: false;
|
|
4625
|
+
referencedRelation: "prj_milestones";
|
|
4626
|
+
referencedColumns: ["id"];
|
|
4627
|
+
}, {
|
|
4628
|
+
foreignKeyName: "fk_tasks_parent";
|
|
4629
|
+
columns: ["parent_task_id"];
|
|
4630
|
+
isOneToOne: false;
|
|
4631
|
+
referencedRelation: "prj_tasks";
|
|
4632
|
+
referencedColumns: ["id"];
|
|
4633
|
+
}, {
|
|
4634
|
+
foreignKeyName: "fk_tasks_project";
|
|
4635
|
+
columns: ["project_id"];
|
|
4636
|
+
isOneToOne: false;
|
|
4637
|
+
referencedRelation: "prj_projects";
|
|
4638
|
+
referencedColumns: ["id"];
|
|
4639
|
+
}, {
|
|
4522
4640
|
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
4523
4641
|
columns: ["milestone_id"];
|
|
4524
4642
|
isOneToOne: false;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1704,10 +1704,8 @@ type Database = {
|
|
|
1704
1704
|
};
|
|
1705
1705
|
deployments: {
|
|
1706
1706
|
Row: {
|
|
1707
|
-
compiled_docs: Json | null;
|
|
1708
1707
|
created_at: string;
|
|
1709
1708
|
deployment_version: string | null;
|
|
1710
|
-
documentation: Json | null;
|
|
1711
1709
|
error_message: string | null;
|
|
1712
1710
|
id: string;
|
|
1713
1711
|
organization_id: string;
|
|
@@ -1719,10 +1717,8 @@ type Database = {
|
|
|
1719
1717
|
updated_at: string;
|
|
1720
1718
|
};
|
|
1721
1719
|
Insert: {
|
|
1722
|
-
compiled_docs?: Json | null;
|
|
1723
1720
|
created_at?: string;
|
|
1724
1721
|
deployment_version?: string | null;
|
|
1725
|
-
documentation?: Json | null;
|
|
1726
1722
|
error_message?: string | null;
|
|
1727
1723
|
id?: string;
|
|
1728
1724
|
organization_id: string;
|
|
@@ -1734,10 +1730,8 @@ type Database = {
|
|
|
1734
1730
|
updated_at?: string;
|
|
1735
1731
|
};
|
|
1736
1732
|
Update: {
|
|
1737
|
-
compiled_docs?: Json | null;
|
|
1738
1733
|
created_at?: string;
|
|
1739
1734
|
deployment_version?: string | null;
|
|
1740
|
-
documentation?: Json | null;
|
|
1741
1735
|
error_message?: string | null;
|
|
1742
1736
|
id?: string;
|
|
1743
1737
|
organization_id?: string;
|
|
@@ -2249,6 +2243,13 @@ type Database = {
|
|
|
2249
2243
|
updated_at?: string;
|
|
2250
2244
|
};
|
|
2251
2245
|
Relationships: [
|
|
2246
|
+
{
|
|
2247
|
+
foreignKeyName: "fk_milestones_project";
|
|
2248
|
+
columns: ["project_id"];
|
|
2249
|
+
isOneToOne: false;
|
|
2250
|
+
referencedRelation: "prj_projects";
|
|
2251
|
+
referencedColumns: ["id"];
|
|
2252
|
+
},
|
|
2252
2253
|
{
|
|
2253
2254
|
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
2254
2255
|
columns: ["organization_id"];
|
|
@@ -2309,6 +2310,34 @@ type Database = {
|
|
|
2309
2310
|
type?: string;
|
|
2310
2311
|
};
|
|
2311
2312
|
Relationships: [
|
|
2313
|
+
{
|
|
2314
|
+
foreignKeyName: "fk_notes_created_by";
|
|
2315
|
+
columns: ["created_by"];
|
|
2316
|
+
isOneToOne: false;
|
|
2317
|
+
referencedRelation: "users";
|
|
2318
|
+
referencedColumns: ["id"];
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
foreignKeyName: "fk_notes_milestone";
|
|
2322
|
+
columns: ["milestone_id"];
|
|
2323
|
+
isOneToOne: false;
|
|
2324
|
+
referencedRelation: "prj_milestones";
|
|
2325
|
+
referencedColumns: ["id"];
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
foreignKeyName: "fk_notes_project";
|
|
2329
|
+
columns: ["project_id"];
|
|
2330
|
+
isOneToOne: false;
|
|
2331
|
+
referencedRelation: "prj_projects";
|
|
2332
|
+
referencedColumns: ["id"];
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
foreignKeyName: "fk_notes_task";
|
|
2336
|
+
columns: ["task_id"];
|
|
2337
|
+
isOneToOne: false;
|
|
2338
|
+
referencedRelation: "prj_tasks";
|
|
2339
|
+
referencedColumns: ["id"];
|
|
2340
|
+
},
|
|
2312
2341
|
{
|
|
2313
2342
|
foreignKeyName: "prj_notes_created_by_fkey";
|
|
2314
2343
|
columns: ["created_by"];
|
|
@@ -2399,6 +2428,20 @@ type Database = {
|
|
|
2399
2428
|
updated_at?: string;
|
|
2400
2429
|
};
|
|
2401
2430
|
Relationships: [
|
|
2431
|
+
{
|
|
2432
|
+
foreignKeyName: "fk_projects_company";
|
|
2433
|
+
columns: ["client_company_id"];
|
|
2434
|
+
isOneToOne: false;
|
|
2435
|
+
referencedRelation: "acq_companies";
|
|
2436
|
+
referencedColumns: ["id"];
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
foreignKeyName: "fk_projects_deal";
|
|
2440
|
+
columns: ["deal_id"];
|
|
2441
|
+
isOneToOne: false;
|
|
2442
|
+
referencedRelation: "acq_deals";
|
|
2443
|
+
referencedColumns: ["id"];
|
|
2444
|
+
},
|
|
2402
2445
|
{
|
|
2403
2446
|
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
2404
2447
|
columns: ["client_company_id"];
|
|
@@ -2481,6 +2524,27 @@ type Database = {
|
|
|
2481
2524
|
updated_at?: string;
|
|
2482
2525
|
};
|
|
2483
2526
|
Relationships: [
|
|
2527
|
+
{
|
|
2528
|
+
foreignKeyName: "fk_tasks_milestone";
|
|
2529
|
+
columns: ["milestone_id"];
|
|
2530
|
+
isOneToOne: false;
|
|
2531
|
+
referencedRelation: "prj_milestones";
|
|
2532
|
+
referencedColumns: ["id"];
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
foreignKeyName: "fk_tasks_parent";
|
|
2536
|
+
columns: ["parent_task_id"];
|
|
2537
|
+
isOneToOne: false;
|
|
2538
|
+
referencedRelation: "prj_tasks";
|
|
2539
|
+
referencedColumns: ["id"];
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
foreignKeyName: "fk_tasks_project";
|
|
2543
|
+
columns: ["project_id"];
|
|
2544
|
+
isOneToOne: false;
|
|
2545
|
+
referencedRelation: "prj_projects";
|
|
2546
|
+
referencedColumns: ["id"];
|
|
2547
|
+
},
|
|
2484
2548
|
{
|
|
2485
2549
|
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
2486
2550
|
columns: ["milestone_id"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"tsup": "^8.0.0",
|
|
207
207
|
"typescript": "5.9.2",
|
|
208
208
|
"vite": "^7.0.0",
|
|
209
|
-
"@repo/core": "0.
|
|
209
|
+
"@repo/core": "0.7.1",
|
|
210
210
|
"@repo/typescript-config": "0.0.0",
|
|
211
211
|
"@repo/eslint-config": "0.0.0"
|
|
212
212
|
},
|
package/src/hooks/README.md
CHANGED
|
@@ -8,7 +8,7 @@ The hooks barrel is the published headless hook surface for the UI package.
|
|
|
8
8
|
- Scheduling hooks
|
|
9
9
|
- Monitoring, observability, and notification hooks
|
|
10
10
|
- Session and SSE hooks
|
|
11
|
-
- Operations hooks, including command-view
|
|
11
|
+
- Operations hooks, including command-view helpers
|
|
12
12
|
- Feature access, table state, and service helpers
|
|
13
13
|
- Acquisition and delivery hooks
|
|
14
14
|
|
|
@@ -21,4 +21,3 @@ The hooks barrel is the published headless hook surface for the UI package.
|
|
|
21
21
|
## Notes
|
|
22
22
|
|
|
23
23
|
- This barrel is intentionally headless. It should not pull in the visual component layer.
|
|
24
|
-
|