@quillsql/admin 1.8.7 → 1.8.8
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/index.cjs +591 -218
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +486 -115
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -158,6 +158,7 @@ type Table = {
|
|
|
158
158
|
isSelectStar: boolean;
|
|
159
159
|
displayName: string;
|
|
160
160
|
name: string;
|
|
161
|
+
description?: string;
|
|
161
162
|
columns: ColumnInternal[];
|
|
162
163
|
viewQuery: string;
|
|
163
164
|
customFieldInfo: any;
|
|
@@ -700,10 +701,19 @@ declare function useAgentChat(): AgentChatState;
|
|
|
700
701
|
|
|
701
702
|
declare function exportChatAsMarkdown(messages: ChatMessage[]): void;
|
|
702
703
|
|
|
704
|
+
declare function useSandboxSession(): {
|
|
705
|
+
sessionId: string | null;
|
|
706
|
+
sandboxClientId: string | null;
|
|
707
|
+
sourceClientId: string | null;
|
|
708
|
+
session: SessionInfo | null;
|
|
709
|
+
};
|
|
710
|
+
|
|
711
|
+
declare function clearQuillSandboxStorage(): void;
|
|
712
|
+
|
|
703
713
|
/**
|
|
704
714
|
* Environment selector plus create / edit environment modals.
|
|
705
715
|
* Used in GlobalHeader and can be mounted in host app nav when managers use hideEnvDropdown.
|
|
706
716
|
*/
|
|
707
717
|
declare function EnvironmentSwitcherWithModals(): react_jsx_runtime.JSX.Element;
|
|
708
718
|
|
|
709
|
-
export { AdminProvider, AgentChat, AgentChatPanel, type AgentChatProps, ButtonPrimitive, ChartQueryBuilder as ChartBuilder, type ChatMessage, CreateEnvironment, CreateEnvironmentModal, DashboardManager, EditEnvironmentModal, EnvSelectPopover, EnvironmentSwitcherWithModals, HeaderPrimitive, ModalPrimitive, QuillSelectComponentWithCombo, SecondaryButtonPrimitive, type SessionInfo, TextInputPrimitive, type ToolCall, VirtualTableManager, exportChatAsMarkdown, useAdmin, useAgentChat };
|
|
719
|
+
export { AdminProvider, AgentChat, AgentChatPanel, type AgentChatProps, ButtonPrimitive, ChartQueryBuilder as ChartBuilder, type ChatMessage, CreateEnvironment, CreateEnvironmentModal, DashboardManager, EditEnvironmentModal, EnvSelectPopover, EnvironmentSwitcherWithModals, HeaderPrimitive, ModalPrimitive, QuillSelectComponentWithCombo, SecondaryButtonPrimitive, type SessionInfo, TextInputPrimitive, type ToolCall, VirtualTableManager, clearQuillSandboxStorage, exportChatAsMarkdown, useAdmin, useAgentChat, useSandboxSession };
|
package/dist/index.d.ts
CHANGED
|
@@ -158,6 +158,7 @@ type Table = {
|
|
|
158
158
|
isSelectStar: boolean;
|
|
159
159
|
displayName: string;
|
|
160
160
|
name: string;
|
|
161
|
+
description?: string;
|
|
161
162
|
columns: ColumnInternal[];
|
|
162
163
|
viewQuery: string;
|
|
163
164
|
customFieldInfo: any;
|
|
@@ -700,10 +701,19 @@ declare function useAgentChat(): AgentChatState;
|
|
|
700
701
|
|
|
701
702
|
declare function exportChatAsMarkdown(messages: ChatMessage[]): void;
|
|
702
703
|
|
|
704
|
+
declare function useSandboxSession(): {
|
|
705
|
+
sessionId: string | null;
|
|
706
|
+
sandboxClientId: string | null;
|
|
707
|
+
sourceClientId: string | null;
|
|
708
|
+
session: SessionInfo | null;
|
|
709
|
+
};
|
|
710
|
+
|
|
711
|
+
declare function clearQuillSandboxStorage(): void;
|
|
712
|
+
|
|
703
713
|
/**
|
|
704
714
|
* Environment selector plus create / edit environment modals.
|
|
705
715
|
* Used in GlobalHeader and can be mounted in host app nav when managers use hideEnvDropdown.
|
|
706
716
|
*/
|
|
707
717
|
declare function EnvironmentSwitcherWithModals(): react_jsx_runtime.JSX.Element;
|
|
708
718
|
|
|
709
|
-
export { AdminProvider, AgentChat, AgentChatPanel, type AgentChatProps, ButtonPrimitive, ChartQueryBuilder as ChartBuilder, type ChatMessage, CreateEnvironment, CreateEnvironmentModal, DashboardManager, EditEnvironmentModal, EnvSelectPopover, EnvironmentSwitcherWithModals, HeaderPrimitive, ModalPrimitive, QuillSelectComponentWithCombo, SecondaryButtonPrimitive, type SessionInfo, TextInputPrimitive, type ToolCall, VirtualTableManager, exportChatAsMarkdown, useAdmin, useAgentChat };
|
|
719
|
+
export { AdminProvider, AgentChat, AgentChatPanel, type AgentChatProps, ButtonPrimitive, ChartQueryBuilder as ChartBuilder, type ChatMessage, CreateEnvironment, CreateEnvironmentModal, DashboardManager, EditEnvironmentModal, EnvSelectPopover, EnvironmentSwitcherWithModals, HeaderPrimitive, ModalPrimitive, QuillSelectComponentWithCombo, SecondaryButtonPrimitive, type SessionInfo, TextInputPrimitive, type ToolCall, VirtualTableManager, clearQuillSandboxStorage, exportChatAsMarkdown, useAdmin, useAgentChat, useSandboxSession };
|