@elevasis/ui 2.39.1 → 2.39.3
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/api/index.js +3 -3
- package/dist/app/index.css +12 -2
- package/dist/app/index.d.ts +18 -0
- package/dist/app/index.js +10 -10
- package/dist/auth/index.js +5 -5
- package/dist/charts/index.js +8 -8
- package/dist/{chunk-N4IO4CQO.js → chunk-4DRI3G36.js} +2 -2
- package/dist/{chunk-D3EWFGLF.js → chunk-7MTWRSUZ.js} +3 -3
- package/dist/{chunk-GTTMOKIB.js → chunk-7PHY5ONQ.js} +1 -1
- package/dist/{chunk-AIP3GC2N.js → chunk-CTJBPF3Z.js} +1 -1
- package/dist/{chunk-MEOXQKW6.js → chunk-EEG6ALQR.js} +270 -213
- package/dist/{chunk-AVQPF7PE.js → chunk-IUQAP4IO.js} +2 -2
- package/dist/{chunk-2XBCYJS3.js → chunk-J3FLIZY4.js} +2 -2
- package/dist/{chunk-FZIPSE3S.js → chunk-K7GKKETO.js} +1 -1
- package/dist/{chunk-MWRFFGOH.js → chunk-LJDYY3XB.js} +1 -1
- package/dist/{chunk-PRMWQA5R.js → chunk-LY3YTQC6.js} +4 -4
- package/dist/{chunk-ZPRCGNZT.js → chunk-NKEXXL4O.js} +5 -5
- package/dist/{chunk-PE3FAAW3.js → chunk-RH5VWWSC.js} +3 -1
- package/dist/{chunk-PFPM654Z.js → chunk-RXH4D6TY.js} +1 -1
- package/dist/{chunk-IOSJHARH.js → chunk-TE4P6OSJ.js} +1 -1
- package/dist/components/index.css +12 -2
- package/dist/components/index.d.ts +18 -0
- package/dist/components/index.js +13 -13
- package/dist/components/navigation/index.js +4 -4
- package/dist/features/auth/index.css +12 -2
- package/dist/features/auth/index.d.ts +18 -0
- package/dist/features/auth/index.js +14 -14
- package/dist/features/clients/index.css +12 -2
- package/dist/features/clients/index.js +13 -13
- package/dist/features/crm/index.css +12 -2
- package/dist/features/crm/index.d.ts +18 -0
- package/dist/features/crm/index.js +13 -13
- package/dist/features/dashboard/index.css +12 -2
- package/dist/features/dashboard/index.js +13 -13
- package/dist/features/delivery/index.css +12 -2
- package/dist/features/delivery/index.d.ts +18 -0
- package/dist/features/delivery/index.js +13 -13
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.css +12 -2
- package/dist/features/lead-gen/index.js +13 -13
- package/dist/features/monitoring/index.css +12 -2
- package/dist/features/monitoring/index.js +13 -13
- package/dist/features/monitoring/requests/index.css +12 -2
- package/dist/features/monitoring/requests/index.js +13 -13
- package/dist/features/operations/index.css +12 -2
- package/dist/features/operations/index.js +13 -13
- package/dist/features/settings/index.css +12 -2
- package/dist/features/settings/index.d.ts +27 -3
- package/dist/features/settings/index.js +13 -13
- package/dist/hooks/access/index.js +4 -4
- package/dist/hooks/delivery/index.css +12 -2
- package/dist/hooks/delivery/index.d.ts +18 -0
- package/dist/hooks/delivery/index.js +13 -13
- package/dist/hooks/index.css +12 -2
- package/dist/hooks/index.d.ts +18 -0
- package/dist/hooks/index.js +13 -13
- package/dist/hooks/published.css +12 -2
- package/dist/hooks/published.d.ts +18 -0
- package/dist/hooks/published.js +13 -13
- package/dist/index.css +12 -2
- package/dist/index.d.ts +18 -0
- package/dist/index.js +13 -13
- package/dist/initialization/index.d.ts +18 -0
- package/dist/knowledge/index.js +5 -5
- package/dist/organization/index.css +12 -2
- package/dist/organization/index.js +13 -13
- package/dist/profile/index.d.ts +18 -0
- package/dist/provider/index.css +12 -2
- package/dist/provider/index.d.ts +18 -0
- package/dist/provider/index.js +10 -10
- package/dist/provider/published.d.ts +18 -0
- package/dist/provider/published.js +9 -9
- package/dist/supabase/index.d.ts +36 -0
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +18 -0
- package/dist/utils/index.js +2 -2
- package/package.json +4 -4
|
@@ -3123,6 +3123,17 @@ type Database = {
|
|
|
3123
3123
|
Args: never;
|
|
3124
3124
|
Returns: undefined;
|
|
3125
3125
|
};
|
|
3126
|
+
repair_membership_role_assignments: {
|
|
3127
|
+
Args: never;
|
|
3128
|
+
Returns: {
|
|
3129
|
+
membership_id: string;
|
|
3130
|
+
organization_id: string;
|
|
3131
|
+
repaired: boolean;
|
|
3132
|
+
role_id: string;
|
|
3133
|
+
role_slug: string;
|
|
3134
|
+
user_id: string;
|
|
3135
|
+
}[];
|
|
3136
|
+
};
|
|
3126
3137
|
sync_all_memberships_with_role: {
|
|
3127
3138
|
Args: {
|
|
3128
3139
|
p_role_id: string;
|
|
@@ -3135,6 +3146,13 @@ type Database = {
|
|
|
3135
3146
|
};
|
|
3136
3147
|
Returns: undefined;
|
|
3137
3148
|
};
|
|
3149
|
+
update_membership_role_assignment: {
|
|
3150
|
+
Args: {
|
|
3151
|
+
p_role_slug: string;
|
|
3152
|
+
p_workos_membership_id: string;
|
|
3153
|
+
};
|
|
3154
|
+
Returns: string;
|
|
3155
|
+
};
|
|
3138
3156
|
upsert_user_profile: {
|
|
3139
3157
|
Args: never;
|
|
3140
3158
|
Returns: {
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
2
|
-
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-
|
|
1
|
+
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-IUQAP4IO.js';
|
|
2
|
+
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-IUQAP4IO.js';
|
|
3
3
|
import { PageContainer } from '../chunk-DA6I5VEY.js';
|
|
4
4
|
import '../chunk-CLDCYJQT.js';
|
|
5
5
|
import '../chunk-X4WBGKJQ.js';
|
|
@@ -12,9 +12,9 @@ import '../chunk-NYBEU5TE.js';
|
|
|
12
12
|
import '../chunk-DT3QYZVU.js';
|
|
13
13
|
import '../chunk-2IFYDILW.js';
|
|
14
14
|
import '../chunk-Q7DJKLEN.js';
|
|
15
|
-
import { SemanticIcon, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema } from '../chunk-
|
|
16
|
-
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-
|
|
17
|
-
import { getSystem, OntologyIdSchema, ontologyGraphNodeId, compileOrganizationOntology, parseOntologyId } from '../chunk-
|
|
15
|
+
import { SemanticIcon, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema } from '../chunk-K7GKKETO.js';
|
|
16
|
+
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-K7GKKETO.js';
|
|
17
|
+
import { getSystem, OntologyIdSchema, ontologyGraphNodeId, compileOrganizationOntology, parseOntologyId } from '../chunk-RH5VWWSC.js';
|
|
18
18
|
import '../chunk-I2KLQ2HA.js';
|
|
19
19
|
import { createContext, Children, isValidElement, cloneElement, useMemo, useContext, useRef, useState, useEffect } from 'react';
|
|
20
20
|
import { Card, Text, SimpleGrid, Group, Stack, Alert, Tabs, Box, Table, CopyButton, Tooltip, ActionIcon, Title, Badge, Divider, Button, Paper, TableOfContents, ThemeIcon, UnstyledButton, List, Code, Progress, Loader } from '@mantine/core';
|
|
@@ -174,11 +174,21 @@
|
|
|
174
174
|
background-color: var(--surface-primary-subtle) !important;
|
|
175
175
|
color: var(--color-text);
|
|
176
176
|
}
|
|
177
|
-
[data-mantine-color-scheme
|
|
177
|
+
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
178
178
|
--tab-border-color: var(--color-border);
|
|
179
|
+
--tab-hover-color: var(--color-surface-hover);
|
|
180
|
+
--tabs-radius: var(--mantine-radius-xs);
|
|
179
181
|
}
|
|
180
|
-
.mantine-Tabs-tab
|
|
182
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab {
|
|
183
|
+
color: var(--color-text);
|
|
184
|
+
}
|
|
185
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab:hover {
|
|
186
|
+
background-color: var(--color-surface-hover);
|
|
187
|
+
}
|
|
188
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab[data-active] {
|
|
181
189
|
background-color: var(--color-surface-hover);
|
|
190
|
+
border-color: var(--color-primary);
|
|
191
|
+
color: var(--color-text);
|
|
182
192
|
}
|
|
183
193
|
.mantine-Pagination-control:not([data-active]) {
|
|
184
194
|
background: var(--color-surface);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-
|
|
1
|
+
export { OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-EEG6ALQR.js';
|
|
2
2
|
import '../chunk-B2DZLPDL.js';
|
|
3
3
|
import '../chunk-SHZT7ULK.js';
|
|
4
4
|
import '../chunk-AUDNF2Q7.js';
|
|
5
5
|
import '../chunk-6M6OLGQY.js';
|
|
6
6
|
import '../chunk-BRXELOHC.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-7PHY5ONQ.js';
|
|
8
8
|
import '../chunk-CXY7FMUM.js';
|
|
9
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-4DRI3G36.js';
|
|
10
10
|
import '../chunk-SJHM4WDG.js';
|
|
11
11
|
import '../chunk-ZTWA5H77.js';
|
|
12
12
|
import '../chunk-5EYJ2GIN.js';
|
|
@@ -18,32 +18,32 @@ import '../chunk-IIMU5YAJ.js';
|
|
|
18
18
|
import '../chunk-HENXLGVD.js';
|
|
19
19
|
import '../chunk-7FPLLSHN.js';
|
|
20
20
|
import '../chunk-RNP5R5I3.js';
|
|
21
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-NKEXXL4O.js';
|
|
22
22
|
import '../chunk-5JYKCULK.js';
|
|
23
23
|
import '../chunk-6D4LCJ52.js';
|
|
24
24
|
import '../chunk-WF7CONXF.js';
|
|
25
25
|
import '../chunk-WLOQ4IBG.js';
|
|
26
|
-
export { OrganizationProvider } from '../chunk-
|
|
27
|
-
import '../chunk-
|
|
26
|
+
export { OrganizationProvider } from '../chunk-LY3YTQC6.js';
|
|
27
|
+
import '../chunk-CTJBPF3Z.js';
|
|
28
28
|
import '../chunk-3KMDHCAR.js';
|
|
29
29
|
import '../chunk-S3XR4II4.js';
|
|
30
30
|
import '../chunk-A7IG36LB.js';
|
|
31
31
|
import '../chunk-NYBEU5TE.js';
|
|
32
|
-
import '../chunk-
|
|
32
|
+
import '../chunk-TE4P6OSJ.js';
|
|
33
33
|
import '../chunk-DT3QYZVU.js';
|
|
34
34
|
import '../chunk-2IFYDILW.js';
|
|
35
35
|
import '../chunk-Q7DJKLEN.js';
|
|
36
|
-
import '../chunk-
|
|
36
|
+
import '../chunk-RXH4D6TY.js';
|
|
37
37
|
import '../chunk-KRWALB24.js';
|
|
38
|
-
import '../chunk-
|
|
39
|
-
import '../chunk-
|
|
40
|
-
import '../chunk-
|
|
38
|
+
import '../chunk-LJDYY3XB.js';
|
|
39
|
+
import '../chunk-7MTWRSUZ.js';
|
|
40
|
+
import '../chunk-J3FLIZY4.js';
|
|
41
41
|
import '../chunk-6DO4PE3O.js';
|
|
42
|
-
import '../chunk-
|
|
42
|
+
import '../chunk-K7GKKETO.js';
|
|
43
43
|
export { OrganizationContext, useOrganization } from '../chunk-DD3CCMCZ.js';
|
|
44
44
|
import '../chunk-W2SFTXMT.js';
|
|
45
45
|
import '../chunk-6ROXVZ3L.js';
|
|
46
|
-
import '../chunk-
|
|
46
|
+
import '../chunk-RH5VWWSC.js';
|
|
47
47
|
import '../chunk-2FTX4WO2.js';
|
|
48
48
|
import '../chunk-MQZE7SUI.js';
|
|
49
49
|
import '../chunk-TVTSASST.js';
|
package/dist/profile/index.d.ts
CHANGED
|
@@ -3123,6 +3123,17 @@ type Database = {
|
|
|
3123
3123
|
Args: never;
|
|
3124
3124
|
Returns: undefined;
|
|
3125
3125
|
};
|
|
3126
|
+
repair_membership_role_assignments: {
|
|
3127
|
+
Args: never;
|
|
3128
|
+
Returns: {
|
|
3129
|
+
membership_id: string;
|
|
3130
|
+
organization_id: string;
|
|
3131
|
+
repaired: boolean;
|
|
3132
|
+
role_id: string;
|
|
3133
|
+
role_slug: string;
|
|
3134
|
+
user_id: string;
|
|
3135
|
+
}[];
|
|
3136
|
+
};
|
|
3126
3137
|
sync_all_memberships_with_role: {
|
|
3127
3138
|
Args: {
|
|
3128
3139
|
p_role_id: string;
|
|
@@ -3135,6 +3146,13 @@ type Database = {
|
|
|
3135
3146
|
};
|
|
3136
3147
|
Returns: undefined;
|
|
3137
3148
|
};
|
|
3149
|
+
update_membership_role_assignment: {
|
|
3150
|
+
Args: {
|
|
3151
|
+
p_role_slug: string;
|
|
3152
|
+
p_workos_membership_id: string;
|
|
3153
|
+
};
|
|
3154
|
+
Returns: string;
|
|
3155
|
+
};
|
|
3138
3156
|
upsert_user_profile: {
|
|
3139
3157
|
Args: never;
|
|
3140
3158
|
Returns: {
|
package/dist/provider/index.css
CHANGED
|
@@ -174,11 +174,21 @@
|
|
|
174
174
|
background-color: var(--surface-primary-subtle) !important;
|
|
175
175
|
color: var(--color-text);
|
|
176
176
|
}
|
|
177
|
-
[data-mantine-color-scheme
|
|
177
|
+
[data-mantine-color-scheme] .mantine-Tabs-root {
|
|
178
178
|
--tab-border-color: var(--color-border);
|
|
179
|
+
--tab-hover-color: var(--color-surface-hover);
|
|
180
|
+
--tabs-radius: var(--mantine-radius-xs);
|
|
179
181
|
}
|
|
180
|
-
.mantine-Tabs-tab
|
|
182
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab {
|
|
183
|
+
color: var(--color-text);
|
|
184
|
+
}
|
|
185
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab:hover {
|
|
186
|
+
background-color: var(--color-surface-hover);
|
|
187
|
+
}
|
|
188
|
+
[data-mantine-color-scheme] .mantine-Tabs-root .mantine-Tabs-tab[data-active] {
|
|
181
189
|
background-color: var(--color-surface-hover);
|
|
190
|
+
border-color: var(--color-primary);
|
|
191
|
+
color: var(--color-text);
|
|
182
192
|
}
|
|
183
193
|
.mantine-Pagination-control:not([data-active]) {
|
|
184
194
|
background: var(--color-surface);
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -3225,6 +3225,17 @@ type Database = {
|
|
|
3225
3225
|
Args: never;
|
|
3226
3226
|
Returns: undefined;
|
|
3227
3227
|
};
|
|
3228
|
+
repair_membership_role_assignments: {
|
|
3229
|
+
Args: never;
|
|
3230
|
+
Returns: {
|
|
3231
|
+
membership_id: string;
|
|
3232
|
+
organization_id: string;
|
|
3233
|
+
repaired: boolean;
|
|
3234
|
+
role_id: string;
|
|
3235
|
+
role_slug: string;
|
|
3236
|
+
user_id: string;
|
|
3237
|
+
}[];
|
|
3238
|
+
};
|
|
3228
3239
|
sync_all_memberships_with_role: {
|
|
3229
3240
|
Args: {
|
|
3230
3241
|
p_role_id: string;
|
|
@@ -3237,6 +3248,13 @@ type Database = {
|
|
|
3237
3248
|
};
|
|
3238
3249
|
Returns: undefined;
|
|
3239
3250
|
};
|
|
3251
|
+
update_membership_role_assignment: {
|
|
3252
|
+
Args: {
|
|
3253
|
+
p_role_slug: string;
|
|
3254
|
+
p_workos_membership_id: string;
|
|
3255
|
+
};
|
|
3256
|
+
Returns: string;
|
|
3257
|
+
};
|
|
3240
3258
|
upsert_user_profile: {
|
|
3241
3259
|
Args: never;
|
|
3242
3260
|
Returns: {
|
package/dist/provider/index.js
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from '../chunk-
|
|
1
|
+
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from '../chunk-NKEXXL4O.js';
|
|
2
2
|
import '../chunk-5JYKCULK.js';
|
|
3
3
|
import '../chunk-6D4LCJ52.js';
|
|
4
4
|
import '../chunk-WF7CONXF.js';
|
|
5
5
|
import '../chunk-WLOQ4IBG.js';
|
|
6
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-LY3YTQC6.js';
|
|
7
|
+
import '../chunk-CTJBPF3Z.js';
|
|
8
8
|
import '../chunk-3KMDHCAR.js';
|
|
9
9
|
import '../chunk-S3XR4II4.js';
|
|
10
10
|
export { AppearanceProvider, useAppearance } from '../chunk-A7IG36LB.js';
|
|
11
11
|
import '../chunk-NYBEU5TE.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-TE4P6OSJ.js';
|
|
13
13
|
import '../chunk-DT3QYZVU.js';
|
|
14
14
|
import '../chunk-2IFYDILW.js';
|
|
15
15
|
import '../chunk-Q7DJKLEN.js';
|
|
16
|
-
import '../chunk-
|
|
16
|
+
import '../chunk-RXH4D6TY.js';
|
|
17
17
|
import '../chunk-KRWALB24.js';
|
|
18
|
-
import '../chunk-
|
|
19
|
-
import '../chunk-
|
|
20
|
-
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-
|
|
18
|
+
import '../chunk-LJDYY3XB.js';
|
|
19
|
+
import '../chunk-7MTWRSUZ.js';
|
|
20
|
+
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-J3FLIZY4.js';
|
|
21
21
|
import '../chunk-6DO4PE3O.js';
|
|
22
|
-
import '../chunk-
|
|
22
|
+
import '../chunk-K7GKKETO.js';
|
|
23
23
|
import '../chunk-DD3CCMCZ.js';
|
|
24
24
|
import '../chunk-W2SFTXMT.js';
|
|
25
25
|
import '../chunk-6ROXVZ3L.js';
|
|
26
|
-
import '../chunk-
|
|
26
|
+
import '../chunk-RH5VWWSC.js';
|
|
27
27
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-2FTX4WO2.js';
|
|
28
28
|
import '../chunk-MQZE7SUI.js';
|
|
29
29
|
import '../chunk-TVTSASST.js';
|
|
@@ -3224,6 +3224,17 @@ type Database = {
|
|
|
3224
3224
|
Args: never;
|
|
3225
3225
|
Returns: undefined;
|
|
3226
3226
|
};
|
|
3227
|
+
repair_membership_role_assignments: {
|
|
3228
|
+
Args: never;
|
|
3229
|
+
Returns: {
|
|
3230
|
+
membership_id: string;
|
|
3231
|
+
organization_id: string;
|
|
3232
|
+
repaired: boolean;
|
|
3233
|
+
role_id: string;
|
|
3234
|
+
role_slug: string;
|
|
3235
|
+
user_id: string;
|
|
3236
|
+
}[];
|
|
3237
|
+
};
|
|
3227
3238
|
sync_all_memberships_with_role: {
|
|
3228
3239
|
Args: {
|
|
3229
3240
|
p_role_id: string;
|
|
@@ -3236,6 +3247,13 @@ type Database = {
|
|
|
3236
3247
|
};
|
|
3237
3248
|
Returns: undefined;
|
|
3238
3249
|
};
|
|
3250
|
+
update_membership_role_assignment: {
|
|
3251
|
+
Args: {
|
|
3252
|
+
p_role_slug: string;
|
|
3253
|
+
p_workos_membership_id: string;
|
|
3254
|
+
};
|
|
3255
|
+
Returns: string;
|
|
3256
|
+
};
|
|
3239
3257
|
upsert_user_profile: {
|
|
3240
3258
|
Args: never;
|
|
3241
3259
|
Returns: {
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
export { ElevasisCoreProvider, NotificationProvider, SystemShell, useNotificationAdapter } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
1
|
+
export { ElevasisCoreProvider, NotificationProvider, SystemShell, useNotificationAdapter } from '../chunk-LY3YTQC6.js';
|
|
2
|
+
import '../chunk-CTJBPF3Z.js';
|
|
3
3
|
import '../chunk-3KMDHCAR.js';
|
|
4
4
|
import '../chunk-S3XR4II4.js';
|
|
5
5
|
export { AppearanceProvider, useAppearance } from '../chunk-A7IG36LB.js';
|
|
6
6
|
import '../chunk-NYBEU5TE.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-TE4P6OSJ.js';
|
|
8
8
|
import '../chunk-DT3QYZVU.js';
|
|
9
9
|
import '../chunk-2IFYDILW.js';
|
|
10
10
|
import '../chunk-Q7DJKLEN.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-RXH4D6TY.js';
|
|
12
12
|
import '../chunk-KRWALB24.js';
|
|
13
|
-
import '../chunk-
|
|
14
|
-
import '../chunk-
|
|
15
|
-
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-
|
|
13
|
+
import '../chunk-LJDYY3XB.js';
|
|
14
|
+
import '../chunk-7MTWRSUZ.js';
|
|
15
|
+
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-J3FLIZY4.js';
|
|
16
16
|
import '../chunk-6DO4PE3O.js';
|
|
17
|
-
import '../chunk-
|
|
17
|
+
import '../chunk-K7GKKETO.js';
|
|
18
18
|
import '../chunk-DD3CCMCZ.js';
|
|
19
19
|
import '../chunk-W2SFTXMT.js';
|
|
20
20
|
import '../chunk-6ROXVZ3L.js';
|
|
21
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-RH5VWWSC.js';
|
|
22
22
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-2FTX4WO2.js';
|
|
23
23
|
import '../chunk-MQZE7SUI.js';
|
|
24
24
|
import '../chunk-TVTSASST.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -3122,6 +3122,17 @@ type Database = {
|
|
|
3122
3122
|
Args: never;
|
|
3123
3123
|
Returns: undefined;
|
|
3124
3124
|
};
|
|
3125
|
+
repair_membership_role_assignments: {
|
|
3126
|
+
Args: never;
|
|
3127
|
+
Returns: {
|
|
3128
|
+
membership_id: string;
|
|
3129
|
+
organization_id: string;
|
|
3130
|
+
repaired: boolean;
|
|
3131
|
+
role_id: string;
|
|
3132
|
+
role_slug: string;
|
|
3133
|
+
user_id: string;
|
|
3134
|
+
}[];
|
|
3135
|
+
};
|
|
3125
3136
|
sync_all_memberships_with_role: {
|
|
3126
3137
|
Args: {
|
|
3127
3138
|
p_role_id: string;
|
|
@@ -3134,6 +3145,13 @@ type Database = {
|
|
|
3134
3145
|
};
|
|
3135
3146
|
Returns: undefined;
|
|
3136
3147
|
};
|
|
3148
|
+
update_membership_role_assignment: {
|
|
3149
|
+
Args: {
|
|
3150
|
+
p_role_slug: string;
|
|
3151
|
+
p_workos_membership_id: string;
|
|
3152
|
+
};
|
|
3153
|
+
Returns: string;
|
|
3154
|
+
};
|
|
3137
3155
|
upsert_user_profile: {
|
|
3138
3156
|
Args: never;
|
|
3139
3157
|
Returns: {
|
|
@@ -6123,6 +6141,17 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
6123
6141
|
Args: never;
|
|
6124
6142
|
Returns: undefined;
|
|
6125
6143
|
};
|
|
6144
|
+
repair_membership_role_assignments: {
|
|
6145
|
+
Args: never;
|
|
6146
|
+
Returns: {
|
|
6147
|
+
membership_id: string;
|
|
6148
|
+
organization_id: string;
|
|
6149
|
+
repaired: boolean;
|
|
6150
|
+
role_id: string;
|
|
6151
|
+
role_slug: string;
|
|
6152
|
+
user_id: string;
|
|
6153
|
+
}[];
|
|
6154
|
+
};
|
|
6126
6155
|
sync_all_memberships_with_role: {
|
|
6127
6156
|
Args: {
|
|
6128
6157
|
p_role_id: string;
|
|
@@ -6135,6 +6164,13 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
6135
6164
|
};
|
|
6136
6165
|
Returns: undefined;
|
|
6137
6166
|
};
|
|
6167
|
+
update_membership_role_assignment: {
|
|
6168
|
+
Args: {
|
|
6169
|
+
p_role_slug: string;
|
|
6170
|
+
p_workos_membership_id: string;
|
|
6171
|
+
};
|
|
6172
|
+
Returns: string;
|
|
6173
|
+
};
|
|
6138
6174
|
upsert_user_profile: {
|
|
6139
6175
|
Args: never;
|
|
6140
6176
|
Returns: {
|
package/dist/test-utils/index.js
CHANGED
|
@@ -3,12 +3,12 @@ export { handlers, server } from '../chunk-7XKCG5CT.js';
|
|
|
3
3
|
import { mockWorkOSUser, mockUseAuth, mockUnauthenticatedUser, mockAuthenticatedUser, mockAuthLoading, createMockUseAuth } from '../chunk-DRQPEMJI.js';
|
|
4
4
|
export { createMockUseAuth, mockAuthLoading, mockAuthenticatedUser, mockUnauthenticatedUser, mockUseAuth, mockWorkOSUser } from '../chunk-DRQPEMJI.js';
|
|
5
5
|
import '../chunk-73EWE2EW.js';
|
|
6
|
-
import { ApiClientProvider } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
import { ApiClientProvider } from '../chunk-TE4P6OSJ.js';
|
|
7
|
+
import '../chunk-RXH4D6TY.js';
|
|
8
8
|
import '../chunk-KRWALB24.js';
|
|
9
9
|
import '../chunk-DD3CCMCZ.js';
|
|
10
10
|
import '../chunk-6ROXVZ3L.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-RH5VWWSC.js';
|
|
12
12
|
import { ElevasisServiceProvider } from '../chunk-2FTX4WO2.js';
|
|
13
13
|
import '../chunk-MQZE7SUI.js';
|
|
14
14
|
import '../chunk-TVTSASST.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3876,6 +3876,17 @@ type Database = {
|
|
|
3876
3876
|
Args: never;
|
|
3877
3877
|
Returns: undefined;
|
|
3878
3878
|
};
|
|
3879
|
+
repair_membership_role_assignments: {
|
|
3880
|
+
Args: never;
|
|
3881
|
+
Returns: {
|
|
3882
|
+
membership_id: string;
|
|
3883
|
+
organization_id: string;
|
|
3884
|
+
repaired: boolean;
|
|
3885
|
+
role_id: string;
|
|
3886
|
+
role_slug: string;
|
|
3887
|
+
user_id: string;
|
|
3888
|
+
}[];
|
|
3889
|
+
};
|
|
3879
3890
|
sync_all_memberships_with_role: {
|
|
3880
3891
|
Args: {
|
|
3881
3892
|
p_role_id: string;
|
|
@@ -3888,6 +3899,13 @@ type Database = {
|
|
|
3888
3899
|
};
|
|
3889
3900
|
Returns: undefined;
|
|
3890
3901
|
};
|
|
3902
|
+
update_membership_role_assignment: {
|
|
3903
|
+
Args: {
|
|
3904
|
+
p_role_slug: string;
|
|
3905
|
+
p_workos_membership_id: string;
|
|
3906
|
+
};
|
|
3907
|
+
Returns: string;
|
|
3908
|
+
};
|
|
3891
3909
|
upsert_user_profile: {
|
|
3892
3910
|
Args: never;
|
|
3893
3911
|
Returns: {
|
package/dist/utils/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from '../chunk-
|
|
1
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from '../chunk-RXH4D6TY.js';
|
|
2
2
|
export { ResourceStatusColors } from '../chunk-KRWALB24.js';
|
|
3
3
|
export { GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING } from '../chunk-6ROXVZ3L.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-RH5VWWSC.js';
|
|
5
5
|
import '../chunk-TVTSASST.js';
|
|
6
6
|
import '../chunk-I2KLQ2HA.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.39.
|
|
3
|
+
"version": "2.39.3",
|
|
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",
|
|
@@ -270,10 +270,10 @@
|
|
|
270
270
|
"vite": "^7.0.0",
|
|
271
271
|
"vitest": "^3.2.4",
|
|
272
272
|
"@elevasis/sdk": "1.28.1",
|
|
273
|
-
"@repo/elevasis-core": "1.0.0",
|
|
274
273
|
"@repo/core": "0.35.1",
|
|
275
|
-
"@repo/
|
|
276
|
-
"@repo/
|
|
274
|
+
"@repo/eslint-config": "0.0.0",
|
|
275
|
+
"@repo/elevasis-core": "1.0.0",
|
|
276
|
+
"@repo/typescript-config": "0.0.0"
|
|
277
277
|
},
|
|
278
278
|
"dependencies": {
|
|
279
279
|
"@dagrejs/dagre": "^1.1.4",
|