@elevasis/ui 1.15.3 → 1.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/charts/index.d.ts +25 -2
- package/dist/charts/index.js +2 -2
- package/dist/{chunk-FEZ2TGSH.js → chunk-7ATCF6UL.js} +282 -14
- package/dist/{chunk-4NHYV42S.js → chunk-7S5FS7WW.js} +35 -4
- package/dist/chunk-ADSSLKKP.js +10 -0
- package/dist/{chunk-WY2BCL5F.js → chunk-F25DUOWI.js} +2 -2
- package/dist/chunk-MHW43EOH.js +47 -0
- package/dist/{chunk-6YIE72M2.js → chunk-NUULWBAD.js} +1 -1
- package/dist/{chunk-E6Q6A5TU.js → chunk-QCEUL5QG.js} +2 -6
- package/dist/{chunk-4NAZQ7WO.js → chunk-RYSPAQGW.js} +2 -2
- package/dist/{chunk-XY7VKOKI.js → chunk-UEYUPTAD.js} +80 -777
- package/dist/chunk-ZGK6XZVY.js +1208 -0
- package/dist/components/index.d.ts +511 -488
- package/dist/components/index.js +28 -1221
- package/dist/features/operations/index.css +565 -0
- package/dist/features/operations/index.d.ts +90 -0
- package/dist/features/operations/index.js +241 -0
- package/dist/hooks/index.d.ts +509 -488
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +509 -488
- package/dist/hooks/published.js +4 -4
- package/dist/index.d.ts +522 -490
- package/dist/index.js +6 -6
- package/dist/initialization/index.d.ts +508 -487
- package/dist/layout/index.d.ts +196 -6
- package/dist/layout/index.js +5 -4
- package/dist/profile/index.d.ts +508 -487
- package/dist/provider/index.d.ts +1 -1
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.d.ts +1 -1
- package/dist/router/index.d.ts +12 -1
- package/dist/router/index.js +1 -1
- package/dist/supabase/index.d.ts +890 -851
- package/dist/theme/index.d.ts +1 -1
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +509 -488
- package/package.json +5 -1
- package/dist/chunk-LHQTTUL2.js +0 -27
- package/dist/components/layout/backgrounds/CyberParticles.d.ts +0 -30
- package/dist/components/layout/backgrounds/CyberParticles.d.ts.map +0 -1
- package/dist/components/layout/backgrounds/CyberParticles.js +0 -138
package/dist/index.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ interface ThemePreset {
|
|
|
280
280
|
*/
|
|
281
281
|
loader?: ReactNode;
|
|
282
282
|
}
|
|
283
|
-
type PresetName = 'default' | 'tactical' | 'regal' | 'cyber-volt' | 'aurora' | 'rose-gold' | 'midnight' | 'ember' | 'honey' | 'canopy' | 'slate' | 'cyber-strike' | 'cyber-
|
|
283
|
+
type PresetName = 'default' | 'tactical' | 'regal' | 'cyber-volt' | 'aurora' | 'rose-gold' | 'midnight' | 'ember' | 'honey' | 'canopy' | 'slate' | 'cyber-strike' | 'cyber-punk' | 'cyber-void' | 'nirvana' | 'wave';
|
|
284
284
|
|
|
285
285
|
/** 10-shade color tuple (light → dark), compatible with Mantine's color format. */
|
|
286
286
|
type ColorShadesTuple = [string, string, string, string, string, string, string, string, string, string];
|
|
@@ -936,7 +936,7 @@ type Json = string | number | boolean | null | {
|
|
|
936
936
|
} | Json[];
|
|
937
937
|
type Database = {
|
|
938
938
|
__InternalSupabase: {
|
|
939
|
-
PostgrestVersion:
|
|
939
|
+
PostgrestVersion: "12.2.3 (519615d)";
|
|
940
940
|
};
|
|
941
941
|
public: {
|
|
942
942
|
Tables: {
|
|
@@ -1015,11 +1015,11 @@ type Database = {
|
|
|
1015
1015
|
};
|
|
1016
1016
|
Relationships: [
|
|
1017
1017
|
{
|
|
1018
|
-
foreignKeyName:
|
|
1019
|
-
columns: [
|
|
1018
|
+
foreignKeyName: "acq_companies_organization_id_fkey";
|
|
1019
|
+
columns: ["organization_id"];
|
|
1020
1020
|
isOneToOne: false;
|
|
1021
|
-
referencedRelation:
|
|
1022
|
-
referencedColumns: [
|
|
1021
|
+
referencedRelation: "organizations";
|
|
1022
|
+
referencedColumns: ["id"];
|
|
1023
1023
|
}
|
|
1024
1024
|
];
|
|
1025
1025
|
};
|
|
@@ -1104,18 +1104,18 @@ type Database = {
|
|
|
1104
1104
|
};
|
|
1105
1105
|
Relationships: [
|
|
1106
1106
|
{
|
|
1107
|
-
foreignKeyName:
|
|
1108
|
-
columns: [
|
|
1107
|
+
foreignKeyName: "acq_contacts_company_id_fkey";
|
|
1108
|
+
columns: ["company_id"];
|
|
1109
1109
|
isOneToOne: false;
|
|
1110
|
-
referencedRelation:
|
|
1111
|
-
referencedColumns: [
|
|
1110
|
+
referencedRelation: "acq_companies";
|
|
1111
|
+
referencedColumns: ["id"];
|
|
1112
1112
|
},
|
|
1113
1113
|
{
|
|
1114
|
-
foreignKeyName:
|
|
1115
|
-
columns: [
|
|
1114
|
+
foreignKeyName: "acq_contacts_organization_id_fkey";
|
|
1115
|
+
columns: ["organization_id"];
|
|
1116
1116
|
isOneToOne: false;
|
|
1117
|
-
referencedRelation:
|
|
1118
|
-
referencedColumns: [
|
|
1117
|
+
referencedRelation: "organizations";
|
|
1118
|
+
referencedColumns: ["id"];
|
|
1119
1119
|
}
|
|
1120
1120
|
];
|
|
1121
1121
|
};
|
|
@@ -1152,11 +1152,11 @@ type Database = {
|
|
|
1152
1152
|
};
|
|
1153
1153
|
Relationships: [
|
|
1154
1154
|
{
|
|
1155
|
-
foreignKeyName:
|
|
1156
|
-
columns: [
|
|
1155
|
+
foreignKeyName: "acq_content_organization_id_fkey";
|
|
1156
|
+
columns: ["organization_id"];
|
|
1157
1157
|
isOneToOne: false;
|
|
1158
|
-
referencedRelation:
|
|
1159
|
-
referencedColumns: [
|
|
1158
|
+
referencedRelation: "organizations";
|
|
1159
|
+
referencedColumns: ["id"];
|
|
1160
1160
|
}
|
|
1161
1161
|
];
|
|
1162
1162
|
};
|
|
@@ -1220,18 +1220,18 @@ type Database = {
|
|
|
1220
1220
|
};
|
|
1221
1221
|
Relationships: [
|
|
1222
1222
|
{
|
|
1223
|
-
foreignKeyName:
|
|
1224
|
-
columns: [
|
|
1223
|
+
foreignKeyName: "acq_content_distributions_content_id_fkey";
|
|
1224
|
+
columns: ["content_id"];
|
|
1225
1225
|
isOneToOne: false;
|
|
1226
|
-
referencedRelation:
|
|
1227
|
-
referencedColumns: [
|
|
1226
|
+
referencedRelation: "acq_content";
|
|
1227
|
+
referencedColumns: ["id"];
|
|
1228
1228
|
},
|
|
1229
1229
|
{
|
|
1230
|
-
foreignKeyName:
|
|
1231
|
-
columns: [
|
|
1230
|
+
foreignKeyName: "acq_content_distributions_organization_id_fkey";
|
|
1231
|
+
columns: ["organization_id"];
|
|
1232
1232
|
isOneToOne: false;
|
|
1233
|
-
referencedRelation:
|
|
1234
|
-
referencedColumns: [
|
|
1233
|
+
referencedRelation: "organizations";
|
|
1234
|
+
referencedColumns: ["id"];
|
|
1235
1235
|
}
|
|
1236
1236
|
];
|
|
1237
1237
|
};
|
|
@@ -1343,25 +1343,25 @@ type Database = {
|
|
|
1343
1343
|
};
|
|
1344
1344
|
Relationships: [
|
|
1345
1345
|
{
|
|
1346
|
-
foreignKeyName:
|
|
1347
|
-
columns: [
|
|
1346
|
+
foreignKeyName: "acq_deals_contact_id_fkey";
|
|
1347
|
+
columns: ["contact_id"];
|
|
1348
1348
|
isOneToOne: false;
|
|
1349
|
-
referencedRelation:
|
|
1350
|
-
referencedColumns: [
|
|
1349
|
+
referencedRelation: "acq_contacts";
|
|
1350
|
+
referencedColumns: ["id"];
|
|
1351
1351
|
},
|
|
1352
1352
|
{
|
|
1353
|
-
foreignKeyName:
|
|
1354
|
-
columns: [
|
|
1353
|
+
foreignKeyName: "acq_deals_organization_id_fkey";
|
|
1354
|
+
columns: ["organization_id"];
|
|
1355
1355
|
isOneToOne: false;
|
|
1356
|
-
referencedRelation:
|
|
1357
|
-
referencedColumns: [
|
|
1356
|
+
referencedRelation: "organizations";
|
|
1357
|
+
referencedColumns: ["id"];
|
|
1358
1358
|
},
|
|
1359
1359
|
{
|
|
1360
|
-
foreignKeyName:
|
|
1361
|
-
columns: [
|
|
1360
|
+
foreignKeyName: "acq_deals_source_list_id_fkey";
|
|
1361
|
+
columns: ["source_list_id"];
|
|
1362
1362
|
isOneToOne: false;
|
|
1363
|
-
referencedRelation:
|
|
1364
|
-
referencedColumns: [
|
|
1363
|
+
referencedRelation: "acq_lists";
|
|
1364
|
+
referencedColumns: ["id"];
|
|
1365
1365
|
}
|
|
1366
1366
|
];
|
|
1367
1367
|
};
|
|
@@ -1389,18 +1389,18 @@ type Database = {
|
|
|
1389
1389
|
};
|
|
1390
1390
|
Relationships: [
|
|
1391
1391
|
{
|
|
1392
|
-
foreignKeyName:
|
|
1393
|
-
columns: [
|
|
1392
|
+
foreignKeyName: "acq_list_members_contact_id_fkey";
|
|
1393
|
+
columns: ["contact_id"];
|
|
1394
1394
|
isOneToOne: false;
|
|
1395
|
-
referencedRelation:
|
|
1396
|
-
referencedColumns: [
|
|
1395
|
+
referencedRelation: "acq_contacts";
|
|
1396
|
+
referencedColumns: ["id"];
|
|
1397
1397
|
},
|
|
1398
1398
|
{
|
|
1399
|
-
foreignKeyName:
|
|
1400
|
-
columns: [
|
|
1399
|
+
foreignKeyName: "acq_list_members_list_id_fkey";
|
|
1400
|
+
columns: ["list_id"];
|
|
1401
1401
|
isOneToOne: false;
|
|
1402
|
-
referencedRelation:
|
|
1403
|
-
referencedColumns: [
|
|
1402
|
+
referencedRelation: "acq_lists";
|
|
1403
|
+
referencedColumns: ["id"];
|
|
1404
1404
|
}
|
|
1405
1405
|
];
|
|
1406
1406
|
};
|
|
@@ -1449,11 +1449,11 @@ type Database = {
|
|
|
1449
1449
|
};
|
|
1450
1450
|
Relationships: [
|
|
1451
1451
|
{
|
|
1452
|
-
foreignKeyName:
|
|
1453
|
-
columns: [
|
|
1452
|
+
foreignKeyName: "acq_lists_organization_id_fkey";
|
|
1453
|
+
columns: ["organization_id"];
|
|
1454
1454
|
isOneToOne: false;
|
|
1455
|
-
referencedRelation:
|
|
1456
|
-
referencedColumns: [
|
|
1455
|
+
referencedRelation: "organizations";
|
|
1456
|
+
referencedColumns: ["id"];
|
|
1457
1457
|
}
|
|
1458
1458
|
];
|
|
1459
1459
|
};
|
|
@@ -1529,18 +1529,18 @@ type Database = {
|
|
|
1529
1529
|
};
|
|
1530
1530
|
Relationships: [
|
|
1531
1531
|
{
|
|
1532
|
-
foreignKeyName:
|
|
1533
|
-
columns: [
|
|
1532
|
+
foreignKeyName: "acq_seo_metrics_organization_id_fkey";
|
|
1533
|
+
columns: ["organization_id"];
|
|
1534
1534
|
isOneToOne: false;
|
|
1535
|
-
referencedRelation:
|
|
1536
|
-
referencedColumns: [
|
|
1535
|
+
referencedRelation: "organizations";
|
|
1536
|
+
referencedColumns: ["id"];
|
|
1537
1537
|
},
|
|
1538
1538
|
{
|
|
1539
|
-
foreignKeyName:
|
|
1540
|
-
columns: [
|
|
1539
|
+
foreignKeyName: "acq_seo_metrics_seo_page_id_fkey";
|
|
1540
|
+
columns: ["seo_page_id"];
|
|
1541
1541
|
isOneToOne: false;
|
|
1542
|
-
referencedRelation:
|
|
1543
|
-
referencedColumns: [
|
|
1542
|
+
referencedRelation: "acq_seo_pages";
|
|
1543
|
+
referencedColumns: ["id"];
|
|
1544
1544
|
}
|
|
1545
1545
|
];
|
|
1546
1546
|
};
|
|
@@ -1616,11 +1616,11 @@ type Database = {
|
|
|
1616
1616
|
};
|
|
1617
1617
|
Relationships: [
|
|
1618
1618
|
{
|
|
1619
|
-
foreignKeyName:
|
|
1620
|
-
columns: [
|
|
1619
|
+
foreignKeyName: "acq_seo_pages_organization_id_fkey";
|
|
1620
|
+
columns: ["organization_id"];
|
|
1621
1621
|
isOneToOne: false;
|
|
1622
|
-
referencedRelation:
|
|
1623
|
-
referencedColumns: [
|
|
1622
|
+
referencedRelation: "organizations";
|
|
1623
|
+
referencedColumns: ["id"];
|
|
1624
1624
|
}
|
|
1625
1625
|
];
|
|
1626
1626
|
};
|
|
@@ -1717,11 +1717,11 @@ type Database = {
|
|
|
1717
1717
|
};
|
|
1718
1718
|
Relationships: [
|
|
1719
1719
|
{
|
|
1720
|
-
foreignKeyName:
|
|
1721
|
-
columns: [
|
|
1720
|
+
foreignKeyName: "acq_social_posts_organization_id_fkey";
|
|
1721
|
+
columns: ["organization_id"];
|
|
1722
1722
|
isOneToOne: false;
|
|
1723
|
-
referencedRelation:
|
|
1724
|
-
referencedColumns: [
|
|
1723
|
+
referencedRelation: "organizations";
|
|
1724
|
+
referencedColumns: ["id"];
|
|
1725
1725
|
}
|
|
1726
1726
|
];
|
|
1727
1727
|
};
|
|
@@ -1776,11 +1776,11 @@ type Database = {
|
|
|
1776
1776
|
};
|
|
1777
1777
|
Relationships: [
|
|
1778
1778
|
{
|
|
1779
|
-
foreignKeyName:
|
|
1780
|
-
columns: [
|
|
1779
|
+
foreignKeyName: "activities_organization_id_fkey";
|
|
1780
|
+
columns: ["organization_id"];
|
|
1781
1781
|
isOneToOne: false;
|
|
1782
|
-
referencedRelation:
|
|
1783
|
-
referencedColumns: [
|
|
1782
|
+
referencedRelation: "organizations";
|
|
1783
|
+
referencedColumns: ["id"];
|
|
1784
1784
|
}
|
|
1785
1785
|
];
|
|
1786
1786
|
};
|
|
@@ -1811,11 +1811,11 @@ type Database = {
|
|
|
1811
1811
|
};
|
|
1812
1812
|
Relationships: [
|
|
1813
1813
|
{
|
|
1814
|
-
foreignKeyName:
|
|
1815
|
-
columns: [
|
|
1814
|
+
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1815
|
+
columns: ["organization_id"];
|
|
1816
1816
|
isOneToOne: false;
|
|
1817
|
-
referencedRelation:
|
|
1818
|
-
referencedColumns: [
|
|
1817
|
+
referencedRelation: "organizations";
|
|
1818
|
+
referencedColumns: ["id"];
|
|
1819
1819
|
}
|
|
1820
1820
|
];
|
|
1821
1821
|
};
|
|
@@ -1852,11 +1852,11 @@ type Database = {
|
|
|
1852
1852
|
};
|
|
1853
1853
|
Relationships: [
|
|
1854
1854
|
{
|
|
1855
|
-
foreignKeyName:
|
|
1856
|
-
columns: [
|
|
1855
|
+
foreignKeyName: "calibration_projects_organization_id_fkey";
|
|
1856
|
+
columns: ["organization_id"];
|
|
1857
1857
|
isOneToOne: false;
|
|
1858
|
-
referencedRelation:
|
|
1859
|
-
referencedColumns: [
|
|
1858
|
+
referencedRelation: "organizations";
|
|
1859
|
+
referencedColumns: ["id"];
|
|
1860
1860
|
}
|
|
1861
1861
|
];
|
|
1862
1862
|
};
|
|
@@ -1911,18 +1911,18 @@ type Database = {
|
|
|
1911
1911
|
};
|
|
1912
1912
|
Relationships: [
|
|
1913
1913
|
{
|
|
1914
|
-
foreignKeyName:
|
|
1915
|
-
columns: [
|
|
1914
|
+
foreignKeyName: "calibration_runs_organization_id_fkey";
|
|
1915
|
+
columns: ["organization_id"];
|
|
1916
1916
|
isOneToOne: false;
|
|
1917
|
-
referencedRelation:
|
|
1918
|
-
referencedColumns: [
|
|
1917
|
+
referencedRelation: "organizations";
|
|
1918
|
+
referencedColumns: ["id"];
|
|
1919
1919
|
},
|
|
1920
1920
|
{
|
|
1921
|
-
foreignKeyName:
|
|
1922
|
-
columns: [
|
|
1921
|
+
foreignKeyName: "calibration_runs_project_id_fkey";
|
|
1922
|
+
columns: ["project_id"];
|
|
1923
1923
|
isOneToOne: false;
|
|
1924
|
-
referencedRelation:
|
|
1925
|
-
referencedColumns: [
|
|
1924
|
+
referencedRelation: "calibration_projects";
|
|
1925
|
+
referencedColumns: ["id"];
|
|
1926
1926
|
}
|
|
1927
1927
|
];
|
|
1928
1928
|
};
|
|
@@ -2001,25 +2001,25 @@ type Database = {
|
|
|
2001
2001
|
};
|
|
2002
2002
|
Relationships: [
|
|
2003
2003
|
{
|
|
2004
|
-
foreignKeyName:
|
|
2005
|
-
columns: [
|
|
2004
|
+
foreignKeyName: "command_queue_completed_by_fkey";
|
|
2005
|
+
columns: ["completed_by"];
|
|
2006
2006
|
isOneToOne: false;
|
|
2007
|
-
referencedRelation:
|
|
2008
|
-
referencedColumns: [
|
|
2007
|
+
referencedRelation: "users";
|
|
2008
|
+
referencedColumns: ["id"];
|
|
2009
2009
|
},
|
|
2010
2010
|
{
|
|
2011
|
-
foreignKeyName:
|
|
2012
|
-
columns: [
|
|
2011
|
+
foreignKeyName: "command_queue_organization_id_fkey";
|
|
2012
|
+
columns: ["organization_id"];
|
|
2013
2013
|
isOneToOne: false;
|
|
2014
|
-
referencedRelation:
|
|
2015
|
-
referencedColumns: [
|
|
2014
|
+
referencedRelation: "organizations";
|
|
2015
|
+
referencedColumns: ["id"];
|
|
2016
2016
|
},
|
|
2017
2017
|
{
|
|
2018
|
-
foreignKeyName:
|
|
2019
|
-
columns: [
|
|
2018
|
+
foreignKeyName: "command_queue_target_execution_id_fkey";
|
|
2019
|
+
columns: ["target_execution_id"];
|
|
2020
2020
|
isOneToOne: false;
|
|
2021
|
-
referencedRelation:
|
|
2022
|
-
referencedColumns: [
|
|
2021
|
+
referencedRelation: "execution_logs";
|
|
2022
|
+
referencedColumns: ["execution_id"];
|
|
2023
2023
|
}
|
|
2024
2024
|
];
|
|
2025
2025
|
};
|
|
@@ -2059,306 +2059,18 @@ type Database = {
|
|
|
2059
2059
|
};
|
|
2060
2060
|
Relationships: [
|
|
2061
2061
|
{
|
|
2062
|
-
foreignKeyName:
|
|
2063
|
-
columns: [
|
|
2062
|
+
foreignKeyName: "credentials_created_by_fkey";
|
|
2063
|
+
columns: ["created_by"];
|
|
2064
2064
|
isOneToOne: false;
|
|
2065
|
-
referencedRelation:
|
|
2066
|
-
referencedColumns: [
|
|
2065
|
+
referencedRelation: "users";
|
|
2066
|
+
referencedColumns: ["id"];
|
|
2067
2067
|
},
|
|
2068
2068
|
{
|
|
2069
|
-
foreignKeyName:
|
|
2070
|
-
columns: [
|
|
2069
|
+
foreignKeyName: "credentials_organization_id_fkey";
|
|
2070
|
+
columns: ["organization_id"];
|
|
2071
2071
|
isOneToOne: false;
|
|
2072
|
-
referencedRelation:
|
|
2073
|
-
referencedColumns: [
|
|
2074
|
-
}
|
|
2075
|
-
];
|
|
2076
|
-
};
|
|
2077
|
-
prj_tasks: {
|
|
2078
|
-
Row: {
|
|
2079
|
-
checklist: Json | null;
|
|
2080
|
-
completed_at: string | null;
|
|
2081
|
-
created_at: string;
|
|
2082
|
-
description: string | null;
|
|
2083
|
-
due_date: string | null;
|
|
2084
|
-
file_url: string | null;
|
|
2085
|
-
id: string;
|
|
2086
|
-
metadata: Json | null;
|
|
2087
|
-
milestone_id: string | null;
|
|
2088
|
-
name: string;
|
|
2089
|
-
organization_id: string;
|
|
2090
|
-
parent_task_id: string | null;
|
|
2091
|
-
project_id: string;
|
|
2092
|
-
resume_context: Json | null;
|
|
2093
|
-
status: string;
|
|
2094
|
-
type: string;
|
|
2095
|
-
updated_at: string;
|
|
2096
|
-
};
|
|
2097
|
-
Insert: {
|
|
2098
|
-
checklist?: Json | null;
|
|
2099
|
-
completed_at?: string | null;
|
|
2100
|
-
created_at?: string;
|
|
2101
|
-
description?: string | null;
|
|
2102
|
-
due_date?: string | null;
|
|
2103
|
-
file_url?: string | null;
|
|
2104
|
-
id?: string;
|
|
2105
|
-
metadata?: Json | null;
|
|
2106
|
-
milestone_id?: string | null;
|
|
2107
|
-
name: string;
|
|
2108
|
-
organization_id: string;
|
|
2109
|
-
parent_task_id?: string | null;
|
|
2110
|
-
project_id: string;
|
|
2111
|
-
resume_context?: Json | null;
|
|
2112
|
-
status?: string;
|
|
2113
|
-
type?: string;
|
|
2114
|
-
updated_at?: string;
|
|
2115
|
-
};
|
|
2116
|
-
Update: {
|
|
2117
|
-
checklist?: Json | null;
|
|
2118
|
-
completed_at?: string | null;
|
|
2119
|
-
created_at?: string;
|
|
2120
|
-
description?: string | null;
|
|
2121
|
-
due_date?: string | null;
|
|
2122
|
-
file_url?: string | null;
|
|
2123
|
-
id?: string;
|
|
2124
|
-
metadata?: Json | null;
|
|
2125
|
-
milestone_id?: string | null;
|
|
2126
|
-
name?: string;
|
|
2127
|
-
organization_id?: string;
|
|
2128
|
-
parent_task_id?: string | null;
|
|
2129
|
-
project_id?: string;
|
|
2130
|
-
resume_context?: Json | null;
|
|
2131
|
-
status?: string;
|
|
2132
|
-
type?: string;
|
|
2133
|
-
updated_at?: string;
|
|
2134
|
-
};
|
|
2135
|
-
Relationships: [
|
|
2136
|
-
{
|
|
2137
|
-
foreignKeyName: 'prj_tasks_project_id_fkey';
|
|
2138
|
-
columns: ['project_id'];
|
|
2139
|
-
isOneToOne: false;
|
|
2140
|
-
referencedRelation: 'prj_projects';
|
|
2141
|
-
referencedColumns: ['id'];
|
|
2142
|
-
},
|
|
2143
|
-
{
|
|
2144
|
-
foreignKeyName: 'prj_tasks_milestone_id_fkey';
|
|
2145
|
-
columns: ['milestone_id'];
|
|
2146
|
-
isOneToOne: false;
|
|
2147
|
-
referencedRelation: 'prj_milestones';
|
|
2148
|
-
referencedColumns: ['id'];
|
|
2149
|
-
},
|
|
2150
|
-
{
|
|
2151
|
-
foreignKeyName: 'prj_tasks_organization_id_fkey';
|
|
2152
|
-
columns: ['organization_id'];
|
|
2153
|
-
isOneToOne: false;
|
|
2154
|
-
referencedRelation: 'organizations';
|
|
2155
|
-
referencedColumns: ['id'];
|
|
2156
|
-
}
|
|
2157
|
-
];
|
|
2158
|
-
};
|
|
2159
|
-
prj_projects: {
|
|
2160
|
-
Row: {
|
|
2161
|
-
actual_end_date: string | null;
|
|
2162
|
-
client_company_id: string | null;
|
|
2163
|
-
contract_value: number | null;
|
|
2164
|
-
created_at: string;
|
|
2165
|
-
deal_id: string | null;
|
|
2166
|
-
description: string | null;
|
|
2167
|
-
id: string;
|
|
2168
|
-
kind: string;
|
|
2169
|
-
metadata: Json | null;
|
|
2170
|
-
name: string;
|
|
2171
|
-
organization_id: string;
|
|
2172
|
-
start_date: string | null;
|
|
2173
|
-
status: string;
|
|
2174
|
-
target_end_date: string | null;
|
|
2175
|
-
updated_at: string;
|
|
2176
|
-
};
|
|
2177
|
-
Insert: {
|
|
2178
|
-
actual_end_date?: string | null;
|
|
2179
|
-
client_company_id?: string | null;
|
|
2180
|
-
contract_value?: number | null;
|
|
2181
|
-
created_at?: string;
|
|
2182
|
-
deal_id?: string | null;
|
|
2183
|
-
description?: string | null;
|
|
2184
|
-
id?: string;
|
|
2185
|
-
kind?: string;
|
|
2186
|
-
metadata?: Json | null;
|
|
2187
|
-
name: string;
|
|
2188
|
-
organization_id: string;
|
|
2189
|
-
start_date?: string | null;
|
|
2190
|
-
status?: string;
|
|
2191
|
-
target_end_date?: string | null;
|
|
2192
|
-
updated_at?: string;
|
|
2193
|
-
};
|
|
2194
|
-
Update: {
|
|
2195
|
-
actual_end_date?: string | null;
|
|
2196
|
-
client_company_id?: string | null;
|
|
2197
|
-
contract_value?: number | null;
|
|
2198
|
-
created_at?: string;
|
|
2199
|
-
deal_id?: string | null;
|
|
2200
|
-
description?: string | null;
|
|
2201
|
-
id?: string;
|
|
2202
|
-
kind?: string;
|
|
2203
|
-
metadata?: Json | null;
|
|
2204
|
-
name?: string;
|
|
2205
|
-
organization_id?: string;
|
|
2206
|
-
start_date?: string | null;
|
|
2207
|
-
status?: string;
|
|
2208
|
-
target_end_date?: string | null;
|
|
2209
|
-
updated_at?: string;
|
|
2210
|
-
};
|
|
2211
|
-
Relationships: [
|
|
2212
|
-
{
|
|
2213
|
-
foreignKeyName: 'prj_projects_client_company_id_fkey';
|
|
2214
|
-
columns: ['client_company_id'];
|
|
2215
|
-
isOneToOne: false;
|
|
2216
|
-
referencedRelation: 'acq_companies';
|
|
2217
|
-
referencedColumns: ['id'];
|
|
2218
|
-
},
|
|
2219
|
-
{
|
|
2220
|
-
foreignKeyName: 'prj_projects_deal_id_fkey';
|
|
2221
|
-
columns: ['deal_id'];
|
|
2222
|
-
isOneToOne: false;
|
|
2223
|
-
referencedRelation: 'acq_deals';
|
|
2224
|
-
referencedColumns: ['id'];
|
|
2225
|
-
},
|
|
2226
|
-
{
|
|
2227
|
-
foreignKeyName: 'prj_projects_organization_id_fkey';
|
|
2228
|
-
columns: ['organization_id'];
|
|
2229
|
-
isOneToOne: false;
|
|
2230
|
-
referencedRelation: 'organizations';
|
|
2231
|
-
referencedColumns: ['id'];
|
|
2232
|
-
}
|
|
2233
|
-
];
|
|
2234
|
-
};
|
|
2235
|
-
prj_milestones: {
|
|
2236
|
-
Row: {
|
|
2237
|
-
checklist: Json | null;
|
|
2238
|
-
completed_at: string | null;
|
|
2239
|
-
created_at: string;
|
|
2240
|
-
description: string | null;
|
|
2241
|
-
due_date: string | null;
|
|
2242
|
-
id: string;
|
|
2243
|
-
metadata: Json | null;
|
|
2244
|
-
name: string;
|
|
2245
|
-
organization_id: string;
|
|
2246
|
-
project_id: string;
|
|
2247
|
-
sequence: number;
|
|
2248
|
-
status: string;
|
|
2249
|
-
updated_at: string;
|
|
2250
|
-
};
|
|
2251
|
-
Insert: {
|
|
2252
|
-
checklist?: Json | null;
|
|
2253
|
-
completed_at?: string | null;
|
|
2254
|
-
created_at?: string;
|
|
2255
|
-
description?: string | null;
|
|
2256
|
-
due_date?: string | null;
|
|
2257
|
-
id?: string;
|
|
2258
|
-
metadata?: Json | null;
|
|
2259
|
-
name: string;
|
|
2260
|
-
organization_id: string;
|
|
2261
|
-
project_id: string;
|
|
2262
|
-
sequence?: number;
|
|
2263
|
-
status?: string;
|
|
2264
|
-
updated_at?: string;
|
|
2265
|
-
};
|
|
2266
|
-
Update: {
|
|
2267
|
-
checklist?: Json | null;
|
|
2268
|
-
completed_at?: string | null;
|
|
2269
|
-
created_at?: string;
|
|
2270
|
-
description?: string | null;
|
|
2271
|
-
due_date?: string | null;
|
|
2272
|
-
id?: string;
|
|
2273
|
-
metadata?: Json | null;
|
|
2274
|
-
name?: string;
|
|
2275
|
-
organization_id?: string;
|
|
2276
|
-
project_id?: string;
|
|
2277
|
-
sequence?: number;
|
|
2278
|
-
status?: string;
|
|
2279
|
-
updated_at?: string;
|
|
2280
|
-
};
|
|
2281
|
-
Relationships: [
|
|
2282
|
-
{
|
|
2283
|
-
foreignKeyName: 'prj_milestones_project_id_fkey';
|
|
2284
|
-
columns: ['project_id'];
|
|
2285
|
-
isOneToOne: false;
|
|
2286
|
-
referencedRelation: 'prj_projects';
|
|
2287
|
-
referencedColumns: ['id'];
|
|
2288
|
-
},
|
|
2289
|
-
{
|
|
2290
|
-
foreignKeyName: 'prj_milestones_organization_id_fkey';
|
|
2291
|
-
columns: ['organization_id'];
|
|
2292
|
-
isOneToOne: false;
|
|
2293
|
-
referencedRelation: 'organizations';
|
|
2294
|
-
referencedColumns: ['id'];
|
|
2295
|
-
}
|
|
2296
|
-
];
|
|
2297
|
-
};
|
|
2298
|
-
prj_notes: {
|
|
2299
|
-
Row: {
|
|
2300
|
-
content: string;
|
|
2301
|
-
created_at: string;
|
|
2302
|
-
created_by: string | null;
|
|
2303
|
-
id: string;
|
|
2304
|
-
metadata: Json | null;
|
|
2305
|
-
milestone_id: string | null;
|
|
2306
|
-
occurred_at: string;
|
|
2307
|
-
organization_id: string;
|
|
2308
|
-
project_id: string;
|
|
2309
|
-
summary: string | null;
|
|
2310
|
-
task_id: string | null;
|
|
2311
|
-
type: string;
|
|
2312
|
-
};
|
|
2313
|
-
Insert: {
|
|
2314
|
-
content: string;
|
|
2315
|
-
created_at?: string;
|
|
2316
|
-
created_by?: string | null;
|
|
2317
|
-
id?: string;
|
|
2318
|
-
metadata?: Json | null;
|
|
2319
|
-
milestone_id?: string | null;
|
|
2320
|
-
occurred_at?: string;
|
|
2321
|
-
organization_id: string;
|
|
2322
|
-
project_id: string;
|
|
2323
|
-
summary?: string | null;
|
|
2324
|
-
task_id?: string | null;
|
|
2325
|
-
type?: string;
|
|
2326
|
-
};
|
|
2327
|
-
Update: {
|
|
2328
|
-
content?: string;
|
|
2329
|
-
created_at?: string;
|
|
2330
|
-
created_by?: string | null;
|
|
2331
|
-
id?: string;
|
|
2332
|
-
metadata?: Json | null;
|
|
2333
|
-
milestone_id?: string | null;
|
|
2334
|
-
occurred_at?: string;
|
|
2335
|
-
organization_id?: string;
|
|
2336
|
-
project_id?: string;
|
|
2337
|
-
summary?: string | null;
|
|
2338
|
-
task_id?: string | null;
|
|
2339
|
-
type?: string;
|
|
2340
|
-
};
|
|
2341
|
-
Relationships: [
|
|
2342
|
-
{
|
|
2343
|
-
foreignKeyName: 'prj_notes_created_by_fkey';
|
|
2344
|
-
columns: ['created_by'];
|
|
2345
|
-
isOneToOne: false;
|
|
2346
|
-
referencedRelation: 'users';
|
|
2347
|
-
referencedColumns: ['id'];
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
foreignKeyName: 'prj_notes_project_id_fkey';
|
|
2351
|
-
columns: ['project_id'];
|
|
2352
|
-
isOneToOne: false;
|
|
2353
|
-
referencedRelation: 'prj_projects';
|
|
2354
|
-
referencedColumns: ['id'];
|
|
2355
|
-
},
|
|
2356
|
-
{
|
|
2357
|
-
foreignKeyName: 'prj_notes_organization_id_fkey';
|
|
2358
|
-
columns: ['organization_id'];
|
|
2359
|
-
isOneToOne: false;
|
|
2360
|
-
referencedRelation: 'organizations';
|
|
2361
|
-
referencedColumns: ['id'];
|
|
2072
|
+
referencedRelation: "organizations";
|
|
2073
|
+
referencedColumns: ["id"];
|
|
2362
2074
|
}
|
|
2363
2075
|
];
|
|
2364
2076
|
};
|
|
@@ -2410,11 +2122,11 @@ type Database = {
|
|
|
2410
2122
|
};
|
|
2411
2123
|
Relationships: [
|
|
2412
2124
|
{
|
|
2413
|
-
foreignKeyName:
|
|
2414
|
-
columns: [
|
|
2125
|
+
foreignKeyName: "deployments_organization_id_fkey";
|
|
2126
|
+
columns: ["organization_id"];
|
|
2415
2127
|
isOneToOne: false;
|
|
2416
|
-
referencedRelation:
|
|
2417
|
-
referencedColumns: [
|
|
2128
|
+
referencedRelation: "organizations";
|
|
2129
|
+
referencedColumns: ["id"];
|
|
2418
2130
|
}
|
|
2419
2131
|
];
|
|
2420
2132
|
};
|
|
@@ -2469,25 +2181,25 @@ type Database = {
|
|
|
2469
2181
|
};
|
|
2470
2182
|
Relationships: [
|
|
2471
2183
|
{
|
|
2472
|
-
foreignKeyName:
|
|
2473
|
-
columns: [
|
|
2184
|
+
foreignKeyName: "execution_errors_execution_id_fkey";
|
|
2185
|
+
columns: ["execution_id"];
|
|
2474
2186
|
isOneToOne: false;
|
|
2475
|
-
referencedRelation:
|
|
2476
|
-
referencedColumns: [
|
|
2187
|
+
referencedRelation: "execution_logs";
|
|
2188
|
+
referencedColumns: ["execution_id"];
|
|
2477
2189
|
},
|
|
2478
2190
|
{
|
|
2479
|
-
foreignKeyName:
|
|
2480
|
-
columns: [
|
|
2191
|
+
foreignKeyName: "execution_errors_organization_id_fkey";
|
|
2192
|
+
columns: ["organization_id"];
|
|
2481
2193
|
isOneToOne: false;
|
|
2482
|
-
referencedRelation:
|
|
2483
|
-
referencedColumns: [
|
|
2194
|
+
referencedRelation: "organizations";
|
|
2195
|
+
referencedColumns: ["id"];
|
|
2484
2196
|
},
|
|
2485
2197
|
{
|
|
2486
|
-
foreignKeyName:
|
|
2487
|
-
columns: [
|
|
2198
|
+
foreignKeyName: "execution_errors_resolved_by_fkey";
|
|
2199
|
+
columns: ["resolved_by"];
|
|
2488
2200
|
isOneToOne: false;
|
|
2489
|
-
referencedRelation:
|
|
2490
|
-
referencedColumns: [
|
|
2201
|
+
referencedRelation: "users";
|
|
2202
|
+
referencedColumns: ["id"];
|
|
2491
2203
|
}
|
|
2492
2204
|
];
|
|
2493
2205
|
};
|
|
@@ -2569,32 +2281,32 @@ type Database = {
|
|
|
2569
2281
|
};
|
|
2570
2282
|
Relationships: [
|
|
2571
2283
|
{
|
|
2572
|
-
foreignKeyName:
|
|
2573
|
-
columns: [
|
|
2284
|
+
foreignKeyName: "execution_history_organization_id_fkey";
|
|
2285
|
+
columns: ["organization_id"];
|
|
2574
2286
|
isOneToOne: false;
|
|
2575
|
-
referencedRelation:
|
|
2576
|
-
referencedColumns: [
|
|
2287
|
+
referencedRelation: "organizations";
|
|
2288
|
+
referencedColumns: ["id"];
|
|
2577
2289
|
},
|
|
2578
2290
|
{
|
|
2579
|
-
foreignKeyName:
|
|
2580
|
-
columns: [
|
|
2291
|
+
foreignKeyName: "execution_logs_origin_execution_id_fkey";
|
|
2292
|
+
columns: ["origin_execution_id"];
|
|
2581
2293
|
isOneToOne: false;
|
|
2582
|
-
referencedRelation:
|
|
2583
|
-
referencedColumns: [
|
|
2294
|
+
referencedRelation: "execution_logs";
|
|
2295
|
+
referencedColumns: ["execution_id"];
|
|
2584
2296
|
},
|
|
2585
2297
|
{
|
|
2586
|
-
foreignKeyName:
|
|
2587
|
-
columns: [
|
|
2298
|
+
foreignKeyName: "execution_logs_session_id_fkey";
|
|
2299
|
+
columns: ["session_id"];
|
|
2588
2300
|
isOneToOne: false;
|
|
2589
|
-
referencedRelation:
|
|
2590
|
-
referencedColumns: [
|
|
2301
|
+
referencedRelation: "sessions";
|
|
2302
|
+
referencedColumns: ["session_id"];
|
|
2591
2303
|
},
|
|
2592
2304
|
{
|
|
2593
|
-
foreignKeyName:
|
|
2594
|
-
columns: [
|
|
2305
|
+
foreignKeyName: "execution_logs_user_id_fkey";
|
|
2306
|
+
columns: ["user_id"];
|
|
2595
2307
|
isOneToOne: false;
|
|
2596
|
-
referencedRelation:
|
|
2597
|
-
referencedColumns: [
|
|
2308
|
+
referencedRelation: "users";
|
|
2309
|
+
referencedColumns: ["id"];
|
|
2598
2310
|
}
|
|
2599
2311
|
];
|
|
2600
2312
|
};
|
|
@@ -2640,18 +2352,18 @@ type Database = {
|
|
|
2640
2352
|
};
|
|
2641
2353
|
Relationships: [
|
|
2642
2354
|
{
|
|
2643
|
-
foreignKeyName:
|
|
2644
|
-
columns: [
|
|
2355
|
+
foreignKeyName: "execution_metrics_execution_id_fkey";
|
|
2356
|
+
columns: ["execution_id"];
|
|
2645
2357
|
isOneToOne: true;
|
|
2646
|
-
referencedRelation:
|
|
2647
|
-
referencedColumns: [
|
|
2358
|
+
referencedRelation: "execution_logs";
|
|
2359
|
+
referencedColumns: ["execution_id"];
|
|
2648
2360
|
},
|
|
2649
2361
|
{
|
|
2650
|
-
foreignKeyName:
|
|
2651
|
-
columns: [
|
|
2362
|
+
foreignKeyName: "execution_metrics_organization_id_fkey";
|
|
2363
|
+
columns: ["organization_id"];
|
|
2652
2364
|
isOneToOne: false;
|
|
2653
|
-
referencedRelation:
|
|
2654
|
-
referencedColumns: [
|
|
2365
|
+
referencedRelation: "organizations";
|
|
2366
|
+
referencedColumns: ["id"];
|
|
2655
2367
|
}
|
|
2656
2368
|
];
|
|
2657
2369
|
};
|
|
@@ -2694,18 +2406,18 @@ type Database = {
|
|
|
2694
2406
|
};
|
|
2695
2407
|
Relationships: [
|
|
2696
2408
|
{
|
|
2697
|
-
foreignKeyName:
|
|
2698
|
-
columns: [
|
|
2409
|
+
foreignKeyName: "notifications_organization_id_fkey";
|
|
2410
|
+
columns: ["organization_id"];
|
|
2699
2411
|
isOneToOne: false;
|
|
2700
|
-
referencedRelation:
|
|
2701
|
-
referencedColumns: [
|
|
2412
|
+
referencedRelation: "organizations";
|
|
2413
|
+
referencedColumns: ["id"];
|
|
2702
2414
|
},
|
|
2703
2415
|
{
|
|
2704
|
-
foreignKeyName:
|
|
2705
|
-
columns: [
|
|
2416
|
+
foreignKeyName: "notifications_user_id_fkey";
|
|
2417
|
+
columns: ["user_id"];
|
|
2706
2418
|
isOneToOne: false;
|
|
2707
|
-
referencedRelation:
|
|
2708
|
-
referencedColumns: [
|
|
2419
|
+
referencedRelation: "users";
|
|
2420
|
+
referencedColumns: ["id"];
|
|
2709
2421
|
}
|
|
2710
2422
|
];
|
|
2711
2423
|
};
|
|
@@ -2760,18 +2472,18 @@ type Database = {
|
|
|
2760
2472
|
};
|
|
2761
2473
|
Relationships: [
|
|
2762
2474
|
{
|
|
2763
|
-
foreignKeyName:
|
|
2764
|
-
columns: [
|
|
2475
|
+
foreignKeyName: "org_invitations_inviter_user_id_fkey";
|
|
2476
|
+
columns: ["inviter_user_id"];
|
|
2765
2477
|
isOneToOne: false;
|
|
2766
|
-
referencedRelation:
|
|
2767
|
-
referencedColumns: [
|
|
2478
|
+
referencedRelation: "users";
|
|
2479
|
+
referencedColumns: ["id"];
|
|
2768
2480
|
},
|
|
2769
2481
|
{
|
|
2770
|
-
foreignKeyName:
|
|
2771
|
-
columns: [
|
|
2482
|
+
foreignKeyName: "org_invitations_organization_id_fkey";
|
|
2483
|
+
columns: ["organization_id"];
|
|
2772
2484
|
isOneToOne: false;
|
|
2773
|
-
referencedRelation:
|
|
2774
|
-
referencedColumns: [
|
|
2485
|
+
referencedRelation: "organizations";
|
|
2486
|
+
referencedColumns: ["id"];
|
|
2775
2487
|
}
|
|
2776
2488
|
];
|
|
2777
2489
|
};
|
|
@@ -2811,18 +2523,18 @@ type Database = {
|
|
|
2811
2523
|
};
|
|
2812
2524
|
Relationships: [
|
|
2813
2525
|
{
|
|
2814
|
-
foreignKeyName:
|
|
2815
|
-
columns: [
|
|
2526
|
+
foreignKeyName: "org_memberships_organization_id_fkey";
|
|
2527
|
+
columns: ["organization_id"];
|
|
2816
2528
|
isOneToOne: false;
|
|
2817
|
-
referencedRelation:
|
|
2818
|
-
referencedColumns: [
|
|
2529
|
+
referencedRelation: "organizations";
|
|
2530
|
+
referencedColumns: ["id"];
|
|
2819
2531
|
},
|
|
2820
2532
|
{
|
|
2821
|
-
foreignKeyName:
|
|
2822
|
-
columns: [
|
|
2533
|
+
foreignKeyName: "org_memberships_user_id_fkey";
|
|
2534
|
+
columns: ["user_id"];
|
|
2823
2535
|
isOneToOne: false;
|
|
2824
|
-
referencedRelation:
|
|
2825
|
-
referencedColumns: [
|
|
2536
|
+
referencedRelation: "users";
|
|
2537
|
+
referencedColumns: ["id"];
|
|
2826
2538
|
}
|
|
2827
2539
|
];
|
|
2828
2540
|
};
|
|
@@ -2862,6 +2574,315 @@ type Database = {
|
|
|
2862
2574
|
};
|
|
2863
2575
|
Relationships: [];
|
|
2864
2576
|
};
|
|
2577
|
+
prj_milestones: {
|
|
2578
|
+
Row: {
|
|
2579
|
+
checklist: Json | null;
|
|
2580
|
+
completed_at: string | null;
|
|
2581
|
+
created_at: string;
|
|
2582
|
+
description: string | null;
|
|
2583
|
+
due_date: string | null;
|
|
2584
|
+
id: string;
|
|
2585
|
+
metadata: Json | null;
|
|
2586
|
+
name: string;
|
|
2587
|
+
organization_id: string;
|
|
2588
|
+
project_id: string;
|
|
2589
|
+
sequence: number;
|
|
2590
|
+
status: string;
|
|
2591
|
+
updated_at: string;
|
|
2592
|
+
};
|
|
2593
|
+
Insert: {
|
|
2594
|
+
checklist?: Json | null;
|
|
2595
|
+
completed_at?: string | null;
|
|
2596
|
+
created_at?: string;
|
|
2597
|
+
description?: string | null;
|
|
2598
|
+
due_date?: string | null;
|
|
2599
|
+
id?: string;
|
|
2600
|
+
metadata?: Json | null;
|
|
2601
|
+
name: string;
|
|
2602
|
+
organization_id: string;
|
|
2603
|
+
project_id: string;
|
|
2604
|
+
sequence?: number;
|
|
2605
|
+
status?: string;
|
|
2606
|
+
updated_at?: string;
|
|
2607
|
+
};
|
|
2608
|
+
Update: {
|
|
2609
|
+
checklist?: Json | null;
|
|
2610
|
+
completed_at?: string | null;
|
|
2611
|
+
created_at?: string;
|
|
2612
|
+
description?: string | null;
|
|
2613
|
+
due_date?: string | null;
|
|
2614
|
+
id?: string;
|
|
2615
|
+
metadata?: Json | null;
|
|
2616
|
+
name?: string;
|
|
2617
|
+
organization_id?: string;
|
|
2618
|
+
project_id?: string;
|
|
2619
|
+
sequence?: number;
|
|
2620
|
+
status?: string;
|
|
2621
|
+
updated_at?: string;
|
|
2622
|
+
};
|
|
2623
|
+
Relationships: [
|
|
2624
|
+
{
|
|
2625
|
+
foreignKeyName: "prj_milestones_organization_id_fkey";
|
|
2626
|
+
columns: ["organization_id"];
|
|
2627
|
+
isOneToOne: false;
|
|
2628
|
+
referencedRelation: "organizations";
|
|
2629
|
+
referencedColumns: ["id"];
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
foreignKeyName: "prj_milestones_project_id_fkey";
|
|
2633
|
+
columns: ["project_id"];
|
|
2634
|
+
isOneToOne: false;
|
|
2635
|
+
referencedRelation: "prj_projects";
|
|
2636
|
+
referencedColumns: ["id"];
|
|
2637
|
+
}
|
|
2638
|
+
];
|
|
2639
|
+
};
|
|
2640
|
+
prj_notes: {
|
|
2641
|
+
Row: {
|
|
2642
|
+
content: string;
|
|
2643
|
+
created_at: string;
|
|
2644
|
+
created_by: string | null;
|
|
2645
|
+
id: string;
|
|
2646
|
+
metadata: Json | null;
|
|
2647
|
+
milestone_id: string | null;
|
|
2648
|
+
occurred_at: string;
|
|
2649
|
+
organization_id: string;
|
|
2650
|
+
project_id: string;
|
|
2651
|
+
summary: string | null;
|
|
2652
|
+
task_id: string | null;
|
|
2653
|
+
type: string;
|
|
2654
|
+
};
|
|
2655
|
+
Insert: {
|
|
2656
|
+
content: string;
|
|
2657
|
+
created_at?: string;
|
|
2658
|
+
created_by?: string | null;
|
|
2659
|
+
id?: string;
|
|
2660
|
+
metadata?: Json | null;
|
|
2661
|
+
milestone_id?: string | null;
|
|
2662
|
+
occurred_at?: string;
|
|
2663
|
+
organization_id: string;
|
|
2664
|
+
project_id: string;
|
|
2665
|
+
summary?: string | null;
|
|
2666
|
+
task_id?: string | null;
|
|
2667
|
+
type?: string;
|
|
2668
|
+
};
|
|
2669
|
+
Update: {
|
|
2670
|
+
content?: string;
|
|
2671
|
+
created_at?: string;
|
|
2672
|
+
created_by?: string | null;
|
|
2673
|
+
id?: string;
|
|
2674
|
+
metadata?: Json | null;
|
|
2675
|
+
milestone_id?: string | null;
|
|
2676
|
+
occurred_at?: string;
|
|
2677
|
+
organization_id?: string;
|
|
2678
|
+
project_id?: string;
|
|
2679
|
+
summary?: string | null;
|
|
2680
|
+
task_id?: string | null;
|
|
2681
|
+
type?: string;
|
|
2682
|
+
};
|
|
2683
|
+
Relationships: [
|
|
2684
|
+
{
|
|
2685
|
+
foreignKeyName: "prj_notes_created_by_fkey";
|
|
2686
|
+
columns: ["created_by"];
|
|
2687
|
+
isOneToOne: false;
|
|
2688
|
+
referencedRelation: "users";
|
|
2689
|
+
referencedColumns: ["id"];
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
foreignKeyName: "prj_notes_milestone_id_fkey";
|
|
2693
|
+
columns: ["milestone_id"];
|
|
2694
|
+
isOneToOne: false;
|
|
2695
|
+
referencedRelation: "prj_milestones";
|
|
2696
|
+
referencedColumns: ["id"];
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
foreignKeyName: "prj_notes_organization_id_fkey";
|
|
2700
|
+
columns: ["organization_id"];
|
|
2701
|
+
isOneToOne: false;
|
|
2702
|
+
referencedRelation: "organizations";
|
|
2703
|
+
referencedColumns: ["id"];
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
foreignKeyName: "prj_notes_project_id_fkey";
|
|
2707
|
+
columns: ["project_id"];
|
|
2708
|
+
isOneToOne: false;
|
|
2709
|
+
referencedRelation: "prj_projects";
|
|
2710
|
+
referencedColumns: ["id"];
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
foreignKeyName: "prj_notes_task_id_fkey";
|
|
2714
|
+
columns: ["task_id"];
|
|
2715
|
+
isOneToOne: false;
|
|
2716
|
+
referencedRelation: "prj_tasks";
|
|
2717
|
+
referencedColumns: ["id"];
|
|
2718
|
+
}
|
|
2719
|
+
];
|
|
2720
|
+
};
|
|
2721
|
+
prj_projects: {
|
|
2722
|
+
Row: {
|
|
2723
|
+
actual_end_date: string | null;
|
|
2724
|
+
client_company_id: string | null;
|
|
2725
|
+
contract_value: number | null;
|
|
2726
|
+
created_at: string;
|
|
2727
|
+
deal_id: string | null;
|
|
2728
|
+
description: string | null;
|
|
2729
|
+
id: string;
|
|
2730
|
+
kind: string;
|
|
2731
|
+
metadata: Json | null;
|
|
2732
|
+
name: string;
|
|
2733
|
+
organization_id: string;
|
|
2734
|
+
start_date: string | null;
|
|
2735
|
+
status: string;
|
|
2736
|
+
target_end_date: string | null;
|
|
2737
|
+
updated_at: string;
|
|
2738
|
+
};
|
|
2739
|
+
Insert: {
|
|
2740
|
+
actual_end_date?: string | null;
|
|
2741
|
+
client_company_id?: string | null;
|
|
2742
|
+
contract_value?: number | null;
|
|
2743
|
+
created_at?: string;
|
|
2744
|
+
deal_id?: string | null;
|
|
2745
|
+
description?: string | null;
|
|
2746
|
+
id?: string;
|
|
2747
|
+
kind?: string;
|
|
2748
|
+
metadata?: Json | null;
|
|
2749
|
+
name: string;
|
|
2750
|
+
organization_id: string;
|
|
2751
|
+
start_date?: string | null;
|
|
2752
|
+
status?: string;
|
|
2753
|
+
target_end_date?: string | null;
|
|
2754
|
+
updated_at?: string;
|
|
2755
|
+
};
|
|
2756
|
+
Update: {
|
|
2757
|
+
actual_end_date?: string | null;
|
|
2758
|
+
client_company_id?: string | null;
|
|
2759
|
+
contract_value?: number | null;
|
|
2760
|
+
created_at?: string;
|
|
2761
|
+
deal_id?: string | null;
|
|
2762
|
+
description?: string | null;
|
|
2763
|
+
id?: string;
|
|
2764
|
+
kind?: string;
|
|
2765
|
+
metadata?: Json | null;
|
|
2766
|
+
name?: string;
|
|
2767
|
+
organization_id?: string;
|
|
2768
|
+
start_date?: string | null;
|
|
2769
|
+
status?: string;
|
|
2770
|
+
target_end_date?: string | null;
|
|
2771
|
+
updated_at?: string;
|
|
2772
|
+
};
|
|
2773
|
+
Relationships: [
|
|
2774
|
+
{
|
|
2775
|
+
foreignKeyName: "prj_projects_client_company_id_fkey";
|
|
2776
|
+
columns: ["client_company_id"];
|
|
2777
|
+
isOneToOne: false;
|
|
2778
|
+
referencedRelation: "acq_companies";
|
|
2779
|
+
referencedColumns: ["id"];
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
foreignKeyName: "prj_projects_deal_id_fkey";
|
|
2783
|
+
columns: ["deal_id"];
|
|
2784
|
+
isOneToOne: false;
|
|
2785
|
+
referencedRelation: "acq_deals";
|
|
2786
|
+
referencedColumns: ["id"];
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
foreignKeyName: "prj_projects_organization_id_fkey";
|
|
2790
|
+
columns: ["organization_id"];
|
|
2791
|
+
isOneToOne: false;
|
|
2792
|
+
referencedRelation: "organizations";
|
|
2793
|
+
referencedColumns: ["id"];
|
|
2794
|
+
}
|
|
2795
|
+
];
|
|
2796
|
+
};
|
|
2797
|
+
prj_tasks: {
|
|
2798
|
+
Row: {
|
|
2799
|
+
checklist: Json;
|
|
2800
|
+
completed_at: string | null;
|
|
2801
|
+
created_at: string;
|
|
2802
|
+
description: string | null;
|
|
2803
|
+
due_date: string | null;
|
|
2804
|
+
file_url: string | null;
|
|
2805
|
+
id: string;
|
|
2806
|
+
metadata: Json | null;
|
|
2807
|
+
milestone_id: string | null;
|
|
2808
|
+
name: string;
|
|
2809
|
+
organization_id: string;
|
|
2810
|
+
parent_task_id: string | null;
|
|
2811
|
+
project_id: string;
|
|
2812
|
+
resume_context: Json | null;
|
|
2813
|
+
status: string;
|
|
2814
|
+
type: string;
|
|
2815
|
+
updated_at: string;
|
|
2816
|
+
};
|
|
2817
|
+
Insert: {
|
|
2818
|
+
checklist?: Json;
|
|
2819
|
+
completed_at?: string | null;
|
|
2820
|
+
created_at?: string;
|
|
2821
|
+
description?: string | null;
|
|
2822
|
+
due_date?: string | null;
|
|
2823
|
+
file_url?: string | null;
|
|
2824
|
+
id?: string;
|
|
2825
|
+
metadata?: Json | null;
|
|
2826
|
+
milestone_id?: string | null;
|
|
2827
|
+
name: string;
|
|
2828
|
+
organization_id: string;
|
|
2829
|
+
parent_task_id?: string | null;
|
|
2830
|
+
project_id: string;
|
|
2831
|
+
resume_context?: Json | null;
|
|
2832
|
+
status?: string;
|
|
2833
|
+
type?: string;
|
|
2834
|
+
updated_at?: string;
|
|
2835
|
+
};
|
|
2836
|
+
Update: {
|
|
2837
|
+
checklist?: Json;
|
|
2838
|
+
completed_at?: string | null;
|
|
2839
|
+
created_at?: string;
|
|
2840
|
+
description?: string | null;
|
|
2841
|
+
due_date?: string | null;
|
|
2842
|
+
file_url?: string | null;
|
|
2843
|
+
id?: string;
|
|
2844
|
+
metadata?: Json | null;
|
|
2845
|
+
milestone_id?: string | null;
|
|
2846
|
+
name?: string;
|
|
2847
|
+
organization_id?: string;
|
|
2848
|
+
parent_task_id?: string | null;
|
|
2849
|
+
project_id?: string;
|
|
2850
|
+
resume_context?: Json | null;
|
|
2851
|
+
status?: string;
|
|
2852
|
+
type?: string;
|
|
2853
|
+
updated_at?: string;
|
|
2854
|
+
};
|
|
2855
|
+
Relationships: [
|
|
2856
|
+
{
|
|
2857
|
+
foreignKeyName: "prj_tasks_milestone_id_fkey";
|
|
2858
|
+
columns: ["milestone_id"];
|
|
2859
|
+
isOneToOne: false;
|
|
2860
|
+
referencedRelation: "prj_milestones";
|
|
2861
|
+
referencedColumns: ["id"];
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
foreignKeyName: "prj_tasks_organization_id_fkey";
|
|
2865
|
+
columns: ["organization_id"];
|
|
2866
|
+
isOneToOne: false;
|
|
2867
|
+
referencedRelation: "organizations";
|
|
2868
|
+
referencedColumns: ["id"];
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
foreignKeyName: "prj_tasks_parent_task_id_fkey";
|
|
2872
|
+
columns: ["parent_task_id"];
|
|
2873
|
+
isOneToOne: false;
|
|
2874
|
+
referencedRelation: "prj_tasks";
|
|
2875
|
+
referencedColumns: ["id"];
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
foreignKeyName: "prj_tasks_project_id_fkey";
|
|
2879
|
+
columns: ["project_id"];
|
|
2880
|
+
isOneToOne: false;
|
|
2881
|
+
referencedRelation: "prj_projects";
|
|
2882
|
+
referencedColumns: ["id"];
|
|
2883
|
+
}
|
|
2884
|
+
];
|
|
2885
|
+
};
|
|
2865
2886
|
session_messages: {
|
|
2866
2887
|
Row: {
|
|
2867
2888
|
created_at: string | null;
|
|
@@ -2898,11 +2919,11 @@ type Database = {
|
|
|
2898
2919
|
};
|
|
2899
2920
|
Relationships: [
|
|
2900
2921
|
{
|
|
2901
|
-
foreignKeyName:
|
|
2902
|
-
columns: [
|
|
2922
|
+
foreignKeyName: "session_messages_session_id_fkey";
|
|
2923
|
+
columns: ["session_id"];
|
|
2903
2924
|
isOneToOne: false;
|
|
2904
|
-
referencedRelation:
|
|
2905
|
-
referencedColumns: [
|
|
2925
|
+
referencedRelation: "sessions";
|
|
2926
|
+
referencedColumns: ["session_id"];
|
|
2906
2927
|
}
|
|
2907
2928
|
];
|
|
2908
2929
|
};
|
|
@@ -2957,18 +2978,18 @@ type Database = {
|
|
|
2957
2978
|
};
|
|
2958
2979
|
Relationships: [
|
|
2959
2980
|
{
|
|
2960
|
-
foreignKeyName:
|
|
2961
|
-
columns: [
|
|
2981
|
+
foreignKeyName: "fk_organization";
|
|
2982
|
+
columns: ["organization_id"];
|
|
2962
2983
|
isOneToOne: false;
|
|
2963
|
-
referencedRelation:
|
|
2964
|
-
referencedColumns: [
|
|
2984
|
+
referencedRelation: "organizations";
|
|
2985
|
+
referencedColumns: ["id"];
|
|
2965
2986
|
},
|
|
2966
2987
|
{
|
|
2967
|
-
foreignKeyName:
|
|
2968
|
-
columns: [
|
|
2988
|
+
foreignKeyName: "fk_user";
|
|
2989
|
+
columns: ["user_id"];
|
|
2969
2990
|
isOneToOne: false;
|
|
2970
|
-
referencedRelation:
|
|
2971
|
-
referencedColumns: [
|
|
2991
|
+
referencedRelation: "users";
|
|
2992
|
+
referencedColumns: ["id"];
|
|
2972
2993
|
}
|
|
2973
2994
|
];
|
|
2974
2995
|
};
|
|
@@ -3044,11 +3065,11 @@ type Database = {
|
|
|
3044
3065
|
};
|
|
3045
3066
|
Relationships: [
|
|
3046
3067
|
{
|
|
3047
|
-
foreignKeyName:
|
|
3048
|
-
columns: [
|
|
3068
|
+
foreignKeyName: "task_schedules_organization_id_fkey";
|
|
3069
|
+
columns: ["organization_id"];
|
|
3049
3070
|
isOneToOne: false;
|
|
3050
|
-
referencedRelation:
|
|
3051
|
-
referencedColumns: [
|
|
3071
|
+
referencedRelation: "organizations";
|
|
3072
|
+
referencedColumns: ["id"];
|
|
3052
3073
|
}
|
|
3053
3074
|
];
|
|
3054
3075
|
};
|
|
@@ -3103,11 +3124,11 @@ type Database = {
|
|
|
3103
3124
|
};
|
|
3104
3125
|
Relationships: [
|
|
3105
3126
|
{
|
|
3106
|
-
foreignKeyName:
|
|
3107
|
-
columns: [
|
|
3127
|
+
foreignKeyName: "user_profiles_last_visited_org_fkey";
|
|
3128
|
+
columns: ["last_visited_org"];
|
|
3108
3129
|
isOneToOne: false;
|
|
3109
|
-
referencedRelation:
|
|
3110
|
-
referencedColumns: [
|
|
3130
|
+
referencedRelation: "organizations";
|
|
3131
|
+
referencedColumns: ["id"];
|
|
3111
3132
|
}
|
|
3112
3133
|
];
|
|
3113
3134
|
};
|
|
@@ -3153,11 +3174,11 @@ type Database = {
|
|
|
3153
3174
|
};
|
|
3154
3175
|
Relationships: [
|
|
3155
3176
|
{
|
|
3156
|
-
foreignKeyName:
|
|
3157
|
-
columns: [
|
|
3177
|
+
foreignKeyName: "webhook_endpoints_organization_id_fkey";
|
|
3178
|
+
columns: ["organization_id"];
|
|
3158
3179
|
isOneToOne: false;
|
|
3159
|
-
referencedRelation:
|
|
3160
|
-
referencedColumns: [
|
|
3180
|
+
referencedRelation: "organizations";
|
|
3181
|
+
referencedColumns: ["id"];
|
|
3161
3182
|
}
|
|
3162
3183
|
];
|
|
3163
3184
|
};
|
|
@@ -3277,17 +3298,17 @@ type Database = {
|
|
|
3277
3298
|
};
|
|
3278
3299
|
};
|
|
3279
3300
|
};
|
|
3280
|
-
type DatabaseWithoutInternals = Omit<Database,
|
|
3281
|
-
type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database,
|
|
3282
|
-
type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema[
|
|
3301
|
+
type DatabaseWithoutInternals = Omit<Database, "__InternalSupabase">;
|
|
3302
|
+
type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, "public">];
|
|
3303
|
+
type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) | {
|
|
3283
3304
|
schema: keyof DatabaseWithoutInternals;
|
|
3284
3305
|
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3285
3306
|
schema: keyof DatabaseWithoutInternals;
|
|
3286
|
-
} ? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions[
|
|
3307
|
+
} ? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"]) : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3287
3308
|
schema: keyof DatabaseWithoutInternals;
|
|
3288
|
-
} ? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions[
|
|
3309
|
+
} ? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
3289
3310
|
Row: infer R;
|
|
3290
|
-
} ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema[
|
|
3311
|
+
} ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) ? (DefaultSchema["Tables"] & DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
|
|
3291
3312
|
Row: infer R;
|
|
3292
3313
|
} ? R : never : never;
|
|
3293
3314
|
|
|
@@ -3671,7 +3692,7 @@ interface MembershipFeatureConfig {
|
|
|
3671
3692
|
*/
|
|
3672
3693
|
interface UserConfig {
|
|
3673
3694
|
theme?: {
|
|
3674
|
-
preset?: 'default' | 'tactical' | 'regal' | 'cyber-volt' | 'aurora' | 'rose-gold' | 'midnight' | 'ember' | 'obsidian' | 'honey' | 'abyss' | 'canopy' | 'slate' | 'cyber-strike' | 'cyber-
|
|
3695
|
+
preset?: 'default' | 'tactical' | 'regal' | 'cyber-volt' | 'aurora' | 'rose-gold' | 'midnight' | 'ember' | 'obsidian' | 'honey' | 'abyss' | 'canopy' | 'slate' | 'cyber-strike' | 'cyber-punk' | 'cyber-void' | 'nirvana' | 'wave';
|
|
3675
3696
|
colorScheme?: 'light' | 'dark' | 'auto';
|
|
3676
3697
|
};
|
|
3677
3698
|
onboarding?: {
|
|
@@ -5388,6 +5409,17 @@ declare function TanStackRouterBridge({ children }: {
|
|
|
5388
5409
|
children: ReactNode;
|
|
5389
5410
|
}): react_jsx_runtime.JSX.Element;
|
|
5390
5411
|
|
|
5412
|
+
/**
|
|
5413
|
+
* Resets scroll position to the top of the nearest scrollable ancestor on every
|
|
5414
|
+
* route change. Needed because the `@repo/ui` AppShell wraps content in an inner
|
|
5415
|
+
* scroll container (`AppShellRightSideOuterContainer`), so TanStack Router's
|
|
5416
|
+
* window-level `scrollRestoration` option has no effect.
|
|
5417
|
+
*
|
|
5418
|
+
* Place this component directly inside the app shell's content area, above
|
|
5419
|
+
* `<Outlet />`.
|
|
5420
|
+
*/
|
|
5421
|
+
declare function ScrollToTop(): react_jsx_runtime.JSX.Element;
|
|
5422
|
+
|
|
5391
5423
|
/**
|
|
5392
5424
|
* Headless root provider for Elevasis-powered applications.
|
|
5393
5425
|
*
|
|
@@ -8458,5 +8490,5 @@ declare function InitializationProvider({ children }: {
|
|
|
8458
8490
|
children: ReactNode;
|
|
8459
8491
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
8460
8492
|
|
|
8461
|
-
export { AGENT_CONSTANTS, APIClientError, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisServiceProvider, ElevasisUIProvider, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calculateBarPosition, calculateGraphHeight, componentThemes, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, observabilityKeys, operationsKeys, PRESETS as presets, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useNodeSelection, useNotificationAdapter, useNotificationCount, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
8493
|
+
export { AGENT_CONSTANTS, APIClientError, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisServiceProvider, ElevasisUIProvider, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calculateBarPosition, calculateGraphHeight, componentThemes, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, observabilityKeys, operationsKeys, PRESETS as presets, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useNodeSelection, useNotificationAdapter, useNotificationCount, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
8462
8494
|
export type { ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CostBreakdownItem, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|