@elevasis/ui 2.14.1 → 2.15.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.
Files changed (35) hide show
  1. package/dist/{chunk-IO75JNQE.js → chunk-32NXXCQU.js} +1 -1
  2. package/dist/{chunk-F2GI5TQT.js → chunk-5SXYCICG.js} +1 -1
  3. package/dist/{chunk-JL7RHMV2.js → chunk-D7HBX5US.js} +2 -2
  4. package/dist/{chunk-C56A2MAS.js → chunk-FFXHKADZ.js} +12 -5
  5. package/dist/{chunk-NPWJYY4B.js → chunk-SFW573HS.js} +1 -1
  6. package/dist/{chunk-JAUU6TZU.js → chunk-U2RXVZGY.js} +2 -41
  7. package/dist/{chunk-A7346I7H.js → chunk-X75JEGHS.js} +1 -1
  8. package/dist/{chunk-TAUPDLQ7.js → chunk-XJ7KC54A.js} +1 -1
  9. package/dist/{chunk-ETQRV5A6.js → chunk-YNPVQDNB.js} +1 -1
  10. package/dist/components/index.d.ts +141 -49
  11. package/dist/components/index.js +20 -394
  12. package/dist/features/auth/index.d.ts +70 -6
  13. package/dist/features/crm/index.d.ts +70 -6
  14. package/dist/features/crm/index.js +2 -2
  15. package/dist/features/dashboard/index.js +2 -2
  16. package/dist/features/delivery/index.d.ts +70 -6
  17. package/dist/features/delivery/index.js +2 -2
  18. package/dist/features/lead-gen/index.js +5 -5
  19. package/dist/features/monitoring/index.js +3 -3
  20. package/dist/features/monitoring/requests/index.js +1 -1
  21. package/dist/features/operations/index.js +4 -4
  22. package/dist/features/settings/index.d.ts +70 -6
  23. package/dist/features/settings/index.js +2 -2
  24. package/dist/hooks/index.d.ts +142 -40
  25. package/dist/hooks/index.js +1 -1
  26. package/dist/hooks/published.d.ts +142 -40
  27. package/dist/hooks/published.js +1 -1
  28. package/dist/index.d.ts +142 -40
  29. package/dist/index.js +1 -1
  30. package/dist/initialization/index.d.ts +70 -6
  31. package/dist/profile/index.d.ts +70 -6
  32. package/dist/supabase/index.d.ts +130 -12
  33. package/dist/types/index.d.ts +70 -6
  34. package/package.json +2 -2
  35. package/src/hooks/README.md +1 -2
@@ -1311,10 +1311,8 @@ type Database = {
1311
1311
  };
1312
1312
  deployments: {
1313
1313
  Row: {
1314
- compiled_docs: Json | null;
1315
1314
  created_at: string;
1316
1315
  deployment_version: string | null;
1317
- documentation: Json | null;
1318
1316
  error_message: string | null;
1319
1317
  id: string;
1320
1318
  organization_id: string;
@@ -1326,10 +1324,8 @@ type Database = {
1326
1324
  updated_at: string;
1327
1325
  };
1328
1326
  Insert: {
1329
- compiled_docs?: Json | null;
1330
1327
  created_at?: string;
1331
1328
  deployment_version?: string | null;
1332
- documentation?: Json | null;
1333
1329
  error_message?: string | null;
1334
1330
  id?: string;
1335
1331
  organization_id: string;
@@ -1341,10 +1337,8 @@ type Database = {
1341
1337
  updated_at?: string;
1342
1338
  };
1343
1339
  Update: {
1344
- compiled_docs?: Json | null;
1345
1340
  created_at?: string;
1346
1341
  deployment_version?: string | null;
1347
- documentation?: Json | null;
1348
1342
  error_message?: string | null;
1349
1343
  id?: string;
1350
1344
  organization_id?: string;
@@ -1856,6 +1850,13 @@ type Database = {
1856
1850
  updated_at?: string;
1857
1851
  };
1858
1852
  Relationships: [
1853
+ {
1854
+ foreignKeyName: "fk_milestones_project";
1855
+ columns: ["project_id"];
1856
+ isOneToOne: false;
1857
+ referencedRelation: "prj_projects";
1858
+ referencedColumns: ["id"];
1859
+ },
1859
1860
  {
1860
1861
  foreignKeyName: "prj_milestones_organization_id_fkey";
1861
1862
  columns: ["organization_id"];
@@ -1916,6 +1917,34 @@ type Database = {
1916
1917
  type?: string;
1917
1918
  };
1918
1919
  Relationships: [
1920
+ {
1921
+ foreignKeyName: "fk_notes_created_by";
1922
+ columns: ["created_by"];
1923
+ isOneToOne: false;
1924
+ referencedRelation: "users";
1925
+ referencedColumns: ["id"];
1926
+ },
1927
+ {
1928
+ foreignKeyName: "fk_notes_milestone";
1929
+ columns: ["milestone_id"];
1930
+ isOneToOne: false;
1931
+ referencedRelation: "prj_milestones";
1932
+ referencedColumns: ["id"];
1933
+ },
1934
+ {
1935
+ foreignKeyName: "fk_notes_project";
1936
+ columns: ["project_id"];
1937
+ isOneToOne: false;
1938
+ referencedRelation: "prj_projects";
1939
+ referencedColumns: ["id"];
1940
+ },
1941
+ {
1942
+ foreignKeyName: "fk_notes_task";
1943
+ columns: ["task_id"];
1944
+ isOneToOne: false;
1945
+ referencedRelation: "prj_tasks";
1946
+ referencedColumns: ["id"];
1947
+ },
1919
1948
  {
1920
1949
  foreignKeyName: "prj_notes_created_by_fkey";
1921
1950
  columns: ["created_by"];
@@ -2006,6 +2035,20 @@ type Database = {
2006
2035
  updated_at?: string;
2007
2036
  };
2008
2037
  Relationships: [
2038
+ {
2039
+ foreignKeyName: "fk_projects_company";
2040
+ columns: ["client_company_id"];
2041
+ isOneToOne: false;
2042
+ referencedRelation: "acq_companies";
2043
+ referencedColumns: ["id"];
2044
+ },
2045
+ {
2046
+ foreignKeyName: "fk_projects_deal";
2047
+ columns: ["deal_id"];
2048
+ isOneToOne: false;
2049
+ referencedRelation: "acq_deals";
2050
+ referencedColumns: ["id"];
2051
+ },
2009
2052
  {
2010
2053
  foreignKeyName: "prj_projects_client_company_id_fkey";
2011
2054
  columns: ["client_company_id"];
@@ -2088,6 +2131,27 @@ type Database = {
2088
2131
  updated_at?: string;
2089
2132
  };
2090
2133
  Relationships: [
2134
+ {
2135
+ foreignKeyName: "fk_tasks_milestone";
2136
+ columns: ["milestone_id"];
2137
+ isOneToOne: false;
2138
+ referencedRelation: "prj_milestones";
2139
+ referencedColumns: ["id"];
2140
+ },
2141
+ {
2142
+ foreignKeyName: "fk_tasks_parent";
2143
+ columns: ["parent_task_id"];
2144
+ isOneToOne: false;
2145
+ referencedRelation: "prj_tasks";
2146
+ referencedColumns: ["id"];
2147
+ },
2148
+ {
2149
+ foreignKeyName: "fk_tasks_project";
2150
+ columns: ["project_id"];
2151
+ isOneToOne: false;
2152
+ referencedRelation: "prj_projects";
2153
+ referencedColumns: ["id"];
2154
+ },
2091
2155
  {
2092
2156
  foreignKeyName: "prj_tasks_milestone_id_fkey";
2093
2157
  columns: ["milestone_id"];
@@ -1,4 +1,4 @@
1
- export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-NPWJYY4B.js';
1
+ export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-SFW573HS.js';
2
2
  import '../../chunk-BZZCNLT6.js';
3
3
  import '../../chunk-TUMSNGTX.js';
4
4
  import '../../chunk-CEWTOKE7.js';
@@ -6,7 +6,7 @@ import '../../chunk-IIMU5YAJ.js';
6
6
  import '../../chunk-PDHTXPSF.js';
7
7
  import '../../chunk-GBMNCNHX.js';
8
8
  import '../../chunk-7M2VOCYN.js';
9
- import '../../chunk-JAUU6TZU.js';
9
+ import '../../chunk-U2RXVZGY.js';
10
10
  import '../../chunk-LXHZYSMQ.js';
11
11
  import '../../chunk-BRXELOHC.js';
12
12
  import '../../chunk-22UVE3RA.js';
@@ -1,10 +1,10 @@
1
- export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-TAUPDLQ7.js';
1
+ export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-XJ7KC54A.js';
2
2
  import '../../chunk-LGKLC5MG.js';
3
3
  import '../../chunk-STZJ7SY5.js';
4
4
  import '../../chunk-M25JL54Z.js';
5
5
  import '../../chunk-GHIPBT5V.js';
6
6
  import '../../chunk-7M2VOCYN.js';
7
- import '../../chunk-JAUU6TZU.js';
7
+ import '../../chunk-U2RXVZGY.js';
8
8
  import '../../chunk-LXHZYSMQ.js';
9
9
  import '../../chunk-BRXELOHC.js';
10
10
  import '../../chunk-22UVE3RA.js';
@@ -1270,10 +1270,8 @@ type Database = {
1270
1270
  }
1271
1271
  deployments: {
1272
1272
  Row: {
1273
- compiled_docs: Json | null
1274
1273
  created_at: string
1275
1274
  deployment_version: string | null
1276
- documentation: Json | null
1277
1275
  error_message: string | null
1278
1276
  id: string
1279
1277
  organization_id: string
@@ -1285,10 +1283,8 @@ type Database = {
1285
1283
  updated_at: string
1286
1284
  }
1287
1285
  Insert: {
1288
- compiled_docs?: Json | null
1289
1286
  created_at?: string
1290
1287
  deployment_version?: string | null
1291
- documentation?: Json | null
1292
1288
  error_message?: string | null
1293
1289
  id?: string
1294
1290
  organization_id: string
@@ -1300,10 +1296,8 @@ type Database = {
1300
1296
  updated_at?: string
1301
1297
  }
1302
1298
  Update: {
1303
- compiled_docs?: Json | null
1304
1299
  created_at?: string
1305
1300
  deployment_version?: string | null
1306
- documentation?: Json | null
1307
1301
  error_message?: string | null
1308
1302
  id?: string
1309
1303
  organization_id?: string
@@ -1815,6 +1809,13 @@ type Database = {
1815
1809
  updated_at?: string
1816
1810
  }
1817
1811
  Relationships: [
1812
+ {
1813
+ foreignKeyName: "fk_milestones_project"
1814
+ columns: ["project_id"]
1815
+ isOneToOne: false
1816
+ referencedRelation: "prj_projects"
1817
+ referencedColumns: ["id"]
1818
+ },
1818
1819
  {
1819
1820
  foreignKeyName: "prj_milestones_organization_id_fkey"
1820
1821
  columns: ["organization_id"]
@@ -1875,6 +1876,34 @@ type Database = {
1875
1876
  type?: string
1876
1877
  }
1877
1878
  Relationships: [
1879
+ {
1880
+ foreignKeyName: "fk_notes_created_by"
1881
+ columns: ["created_by"]
1882
+ isOneToOne: false
1883
+ referencedRelation: "users"
1884
+ referencedColumns: ["id"]
1885
+ },
1886
+ {
1887
+ foreignKeyName: "fk_notes_milestone"
1888
+ columns: ["milestone_id"]
1889
+ isOneToOne: false
1890
+ referencedRelation: "prj_milestones"
1891
+ referencedColumns: ["id"]
1892
+ },
1893
+ {
1894
+ foreignKeyName: "fk_notes_project"
1895
+ columns: ["project_id"]
1896
+ isOneToOne: false
1897
+ referencedRelation: "prj_projects"
1898
+ referencedColumns: ["id"]
1899
+ },
1900
+ {
1901
+ foreignKeyName: "fk_notes_task"
1902
+ columns: ["task_id"]
1903
+ isOneToOne: false
1904
+ referencedRelation: "prj_tasks"
1905
+ referencedColumns: ["id"]
1906
+ },
1878
1907
  {
1879
1908
  foreignKeyName: "prj_notes_created_by_fkey"
1880
1909
  columns: ["created_by"]
@@ -1965,6 +1994,20 @@ type Database = {
1965
1994
  updated_at?: string
1966
1995
  }
1967
1996
  Relationships: [
1997
+ {
1998
+ foreignKeyName: "fk_projects_company"
1999
+ columns: ["client_company_id"]
2000
+ isOneToOne: false
2001
+ referencedRelation: "acq_companies"
2002
+ referencedColumns: ["id"]
2003
+ },
2004
+ {
2005
+ foreignKeyName: "fk_projects_deal"
2006
+ columns: ["deal_id"]
2007
+ isOneToOne: false
2008
+ referencedRelation: "acq_deals"
2009
+ referencedColumns: ["id"]
2010
+ },
1968
2011
  {
1969
2012
  foreignKeyName: "prj_projects_client_company_id_fkey"
1970
2013
  columns: ["client_company_id"]
@@ -2047,6 +2090,27 @@ type Database = {
2047
2090
  updated_at?: string
2048
2091
  }
2049
2092
  Relationships: [
2093
+ {
2094
+ foreignKeyName: "fk_tasks_milestone"
2095
+ columns: ["milestone_id"]
2096
+ isOneToOne: false
2097
+ referencedRelation: "prj_milestones"
2098
+ referencedColumns: ["id"]
2099
+ },
2100
+ {
2101
+ foreignKeyName: "fk_tasks_parent"
2102
+ columns: ["parent_task_id"]
2103
+ isOneToOne: false
2104
+ referencedRelation: "prj_tasks"
2105
+ referencedColumns: ["id"]
2106
+ },
2107
+ {
2108
+ foreignKeyName: "fk_tasks_project"
2109
+ columns: ["project_id"]
2110
+ isOneToOne: false
2111
+ referencedRelation: "prj_projects"
2112
+ referencedColumns: ["id"]
2113
+ },
2050
2114
  {
2051
2115
  foreignKeyName: "prj_tasks_milestone_id_fkey"
2052
2116
  columns: ["milestone_id"]
@@ -1,4 +1,4 @@
1
- export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-F2GI5TQT.js';
1
+ export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-5SXYCICG.js';
2
2
  import '../../chunk-442LZPIR.js';
3
3
  import '../../chunk-BZZCNLT6.js';
4
4
  import '../../chunk-TUMSNGTX.js';
@@ -7,7 +7,7 @@ import '../../chunk-IIMU5YAJ.js';
7
7
  import '../../chunk-PDHTXPSF.js';
8
8
  import '../../chunk-GBMNCNHX.js';
9
9
  import '../../chunk-7M2VOCYN.js';
10
- import '../../chunk-JAUU6TZU.js';
10
+ import '../../chunk-U2RXVZGY.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-BRXELOHC.js';
13
13
  import '../../chunk-22UVE3RA.js';
@@ -1,22 +1,22 @@
1
- export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-JL7RHMV2.js';
2
- import '../../chunk-C56A2MAS.js';
1
+ export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-D7HBX5US.js';
2
+ import '../../chunk-FFXHKADZ.js';
3
3
  import '../../chunk-ROSMICXG.js';
4
4
  import '../../chunk-ADSSLKKP.js';
5
5
  import '../../chunk-442LZPIR.js';
6
- import '../../chunk-ETQRV5A6.js';
6
+ import '../../chunk-YNPVQDNB.js';
7
7
  import '../../chunk-BZZCNLT6.js';
8
8
  import '../../chunk-TUMSNGTX.js';
9
9
  import '../../chunk-CEWTOKE7.js';
10
10
  import '../../chunk-IIMU5YAJ.js';
11
11
  import '../../chunk-PDHTXPSF.js';
12
12
  import '../../chunk-GBMNCNHX.js';
13
- import '../../chunk-TAUPDLQ7.js';
13
+ import '../../chunk-XJ7KC54A.js';
14
14
  import '../../chunk-LGKLC5MG.js';
15
15
  import '../../chunk-STZJ7SY5.js';
16
16
  import '../../chunk-M25JL54Z.js';
17
17
  import '../../chunk-GHIPBT5V.js';
18
18
  import '../../chunk-7M2VOCYN.js';
19
- export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-JAUU6TZU.js';
19
+ export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-U2RXVZGY.js';
20
20
  import '../../chunk-LXHZYSMQ.js';
21
21
  import '../../chunk-BRXELOHC.js';
22
22
  import '../../chunk-22UVE3RA.js';
@@ -1,5 +1,5 @@
1
- export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-IO75JNQE.js';
2
- import '../../chunk-ETQRV5A6.js';
1
+ export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-32NXXCQU.js';
2
+ import '../../chunk-YNPVQDNB.js';
3
3
  import '../../chunk-PDHTXPSF.js';
4
4
  import '../../chunk-GBMNCNHX.js';
5
5
  import '../../chunk-LGKLC5MG.js';
@@ -7,7 +7,7 @@ import '../../chunk-STZJ7SY5.js';
7
7
  import '../../chunk-M25JL54Z.js';
8
8
  import '../../chunk-GHIPBT5V.js';
9
9
  import '../../chunk-7M2VOCYN.js';
10
- import '../../chunk-JAUU6TZU.js';
10
+ import '../../chunk-U2RXVZGY.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-BRXELOHC.js';
13
13
  import '../../chunk-22UVE3RA.js';
@@ -2,7 +2,7 @@ import '../../../chunk-TUMSNGTX.js';
2
2
  import { FilterBar } from '../../../chunk-PDHTXPSF.js';
3
3
  import { ConfirmationModal } from '../../../chunk-GBMNCNHX.js';
4
4
  import '../../../chunk-7M2VOCYN.js';
5
- import { usePaginationState, useRequestsList, useUpdateRequestStatus, useRequest } from '../../../chunk-JAUU6TZU.js';
5
+ import { usePaginationState, useRequestsList, useUpdateRequestStatus, useRequest } from '../../../chunk-U2RXVZGY.js';
6
6
  import '../../../chunk-LXHZYSMQ.js';
7
7
  import '../../../chunk-BRXELOHC.js';
8
8
  import '../../../chunk-22UVE3RA.js';
@@ -1,18 +1,18 @@
1
- export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-C56A2MAS.js';
1
+ export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-FFXHKADZ.js';
2
2
  import '../../chunk-ROSMICXG.js';
3
3
  import '../../chunk-ADSSLKKP.js';
4
4
  import '../../chunk-442LZPIR.js';
5
- import '../../chunk-ETQRV5A6.js';
5
+ import '../../chunk-YNPVQDNB.js';
6
6
  import '../../chunk-BZZCNLT6.js';
7
7
  import '../../chunk-IIMU5YAJ.js';
8
8
  import '../../chunk-GBMNCNHX.js';
9
- export { OperationsOverview } from '../../chunk-TAUPDLQ7.js';
9
+ export { OperationsOverview } from '../../chunk-XJ7KC54A.js';
10
10
  import '../../chunk-LGKLC5MG.js';
11
11
  import '../../chunk-STZJ7SY5.js';
12
12
  import '../../chunk-M25JL54Z.js';
13
13
  import '../../chunk-GHIPBT5V.js';
14
14
  import '../../chunk-7M2VOCYN.js';
15
- import '../../chunk-JAUU6TZU.js';
15
+ import '../../chunk-U2RXVZGY.js';
16
16
  import '../../chunk-LXHZYSMQ.js';
17
17
  import '../../chunk-BRXELOHC.js';
18
18
  import '../../chunk-22UVE3RA.js';
@@ -1264,10 +1264,8 @@ type Database = {
1264
1264
  };
1265
1265
  deployments: {
1266
1266
  Row: {
1267
- compiled_docs: Json | null;
1268
1267
  created_at: string;
1269
1268
  deployment_version: string | null;
1270
- documentation: Json | null;
1271
1269
  error_message: string | null;
1272
1270
  id: string;
1273
1271
  organization_id: string;
@@ -1279,10 +1277,8 @@ type Database = {
1279
1277
  updated_at: string;
1280
1278
  };
1281
1279
  Insert: {
1282
- compiled_docs?: Json | null;
1283
1280
  created_at?: string;
1284
1281
  deployment_version?: string | null;
1285
- documentation?: Json | null;
1286
1282
  error_message?: string | null;
1287
1283
  id?: string;
1288
1284
  organization_id: string;
@@ -1294,10 +1290,8 @@ type Database = {
1294
1290
  updated_at?: string;
1295
1291
  };
1296
1292
  Update: {
1297
- compiled_docs?: Json | null;
1298
1293
  created_at?: string;
1299
1294
  deployment_version?: string | null;
1300
- documentation?: Json | null;
1301
1295
  error_message?: string | null;
1302
1296
  id?: string;
1303
1297
  organization_id?: string;
@@ -1809,6 +1803,13 @@ type Database = {
1809
1803
  updated_at?: string;
1810
1804
  };
1811
1805
  Relationships: [
1806
+ {
1807
+ foreignKeyName: "fk_milestones_project";
1808
+ columns: ["project_id"];
1809
+ isOneToOne: false;
1810
+ referencedRelation: "prj_projects";
1811
+ referencedColumns: ["id"];
1812
+ },
1812
1813
  {
1813
1814
  foreignKeyName: "prj_milestones_organization_id_fkey";
1814
1815
  columns: ["organization_id"];
@@ -1869,6 +1870,34 @@ type Database = {
1869
1870
  type?: string;
1870
1871
  };
1871
1872
  Relationships: [
1873
+ {
1874
+ foreignKeyName: "fk_notes_created_by";
1875
+ columns: ["created_by"];
1876
+ isOneToOne: false;
1877
+ referencedRelation: "users";
1878
+ referencedColumns: ["id"];
1879
+ },
1880
+ {
1881
+ foreignKeyName: "fk_notes_milestone";
1882
+ columns: ["milestone_id"];
1883
+ isOneToOne: false;
1884
+ referencedRelation: "prj_milestones";
1885
+ referencedColumns: ["id"];
1886
+ },
1887
+ {
1888
+ foreignKeyName: "fk_notes_project";
1889
+ columns: ["project_id"];
1890
+ isOneToOne: false;
1891
+ referencedRelation: "prj_projects";
1892
+ referencedColumns: ["id"];
1893
+ },
1894
+ {
1895
+ foreignKeyName: "fk_notes_task";
1896
+ columns: ["task_id"];
1897
+ isOneToOne: false;
1898
+ referencedRelation: "prj_tasks";
1899
+ referencedColumns: ["id"];
1900
+ },
1872
1901
  {
1873
1902
  foreignKeyName: "prj_notes_created_by_fkey";
1874
1903
  columns: ["created_by"];
@@ -1959,6 +1988,20 @@ type Database = {
1959
1988
  updated_at?: string;
1960
1989
  };
1961
1990
  Relationships: [
1991
+ {
1992
+ foreignKeyName: "fk_projects_company";
1993
+ columns: ["client_company_id"];
1994
+ isOneToOne: false;
1995
+ referencedRelation: "acq_companies";
1996
+ referencedColumns: ["id"];
1997
+ },
1998
+ {
1999
+ foreignKeyName: "fk_projects_deal";
2000
+ columns: ["deal_id"];
2001
+ isOneToOne: false;
2002
+ referencedRelation: "acq_deals";
2003
+ referencedColumns: ["id"];
2004
+ },
1962
2005
  {
1963
2006
  foreignKeyName: "prj_projects_client_company_id_fkey";
1964
2007
  columns: ["client_company_id"];
@@ -2041,6 +2084,27 @@ type Database = {
2041
2084
  updated_at?: string;
2042
2085
  };
2043
2086
  Relationships: [
2087
+ {
2088
+ foreignKeyName: "fk_tasks_milestone";
2089
+ columns: ["milestone_id"];
2090
+ isOneToOne: false;
2091
+ referencedRelation: "prj_milestones";
2092
+ referencedColumns: ["id"];
2093
+ },
2094
+ {
2095
+ foreignKeyName: "fk_tasks_parent";
2096
+ columns: ["parent_task_id"];
2097
+ isOneToOne: false;
2098
+ referencedRelation: "prj_tasks";
2099
+ referencedColumns: ["id"];
2100
+ },
2101
+ {
2102
+ foreignKeyName: "fk_tasks_project";
2103
+ columns: ["project_id"];
2104
+ isOneToOne: false;
2105
+ referencedRelation: "prj_projects";
2106
+ referencedColumns: ["id"];
2107
+ },
2044
2108
  {
2045
2109
  foreignKeyName: "prj_tasks_milestone_id_fkey";
2046
2110
  columns: ["milestone_id"];
@@ -1,10 +1,10 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-A7346I7H.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-X75JEGHS.js';
2
2
  import '../../chunk-PDHTXPSF.js';
3
3
  import '../../chunk-GBMNCNHX.js';
4
4
  import '../../chunk-M25JL54Z.js';
5
5
  import '../../chunk-6RWMRQN5.js';
6
6
  import '../../chunk-7M2VOCYN.js';
7
- import '../../chunk-JAUU6TZU.js';
7
+ import '../../chunk-U2RXVZGY.js';
8
8
  import '../../chunk-LXHZYSMQ.js';
9
9
  import '../../chunk-BRXELOHC.js';
10
10
  import '../../chunk-22UVE3RA.js';