File tree Expand file tree Collapse file tree 8 files changed +4
-48
lines changed
Expand file tree Collapse file tree 8 files changed +4
-48
lines changed Original file line number Diff line number Diff line change 11export { useFolderStore , useIsFolderSelected , useIsWorkflowSelected } from './store'
2- export type { FolderTreeNode , Workflow , WorkflowFolder } from './types'
2+ export type { FolderTreeNode , WorkflowFolder } from './types'
Original file line number Diff line number Diff line change @@ -301,6 +301,3 @@ export const useIsWorkflowSelected = (workflowId: string) =>
301301
302302export const useIsFolderSelected = ( folderId : string ) =>
303303 useFolderStore ( ( state ) => state . selectedFolders . has ( folderId ) )
304-
305- export const useIsTaskSelected = ( taskId : string ) =>
306- useFolderStore ( ( state ) => state . selectedTasks . has ( taskId ) )
Original file line number Diff line number Diff line change 1- export interface Workflow {
2- id : string
3- folderId ?: string | null
4- name ?: string
5- description ?: string
6- userId ?: string
7- workspaceId ?: string
8- [ key : string ] : any // For additional properties
9- }
10-
111export interface WorkflowFolder {
122 id : string
133 name : string
Original file line number Diff line number Diff line change 11export { useNotificationStore } from './store'
2- export type {
3- AddNotificationParams ,
4- Notification ,
5- NotificationAction ,
6- } from './types'
2+ export type { Notification , NotificationAction } from './types'
73export { sendMothershipMessage } from './utils'
Original file line number Diff line number Diff line change @@ -7,12 +7,4 @@ export {
77} from './storage'
88export { useConsoleEntry , useTerminalConsoleStore , useWorkflowConsoleEntries } from './store'
99export type { ConsoleEntry , ConsoleStore , ConsoleUpdate } from './types'
10- export {
11- normalizeConsoleError ,
12- normalizeConsoleInput ,
13- normalizeConsoleOutput ,
14- safeConsoleStringify ,
15- TERMINAL_CONSOLE_LIMITS ,
16- trimConsoleEntries ,
17- trimWorkflowConsoleEntries ,
18- } from './utils'
10+ export { safeConsoleStringify } from './utils'
Original file line number Diff line number Diff line change @@ -4,14 +4,8 @@ export {
44 consolePersistence ,
55 type ExecutionPointer ,
66 loadExecutionPointer ,
7- normalizeConsoleError ,
8- normalizeConsoleInput ,
9- normalizeConsoleOutput ,
107 safeConsoleStringify ,
118 saveExecutionPointer ,
12- TERMINAL_CONSOLE_LIMITS ,
13- trimConsoleEntries ,
14- trimWorkflowConsoleEntries ,
159 useConsoleEntry ,
1610 useTerminalConsoleStore ,
1711 useWorkflowConsoleEntries ,
Original file line number Diff line number Diff line change 11export {
2- getDefaultVariablesDimensions ,
32 getVariablesPosition ,
43 MAX_VARIABLES_HEIGHT ,
54 MAX_VARIABLES_WIDTH ,
Original file line number Diff line number Diff line change 11import { create } from 'zustand'
22import { devtools , persist } from 'zustand/middleware'
3- import type {
4- VariablesDimensions ,
5- VariablesModalStore ,
6- VariablesPosition ,
7- } from '@/stores/variables/types'
3+ import type { VariablesModalStore , VariablesPosition } from '@/stores/variables/types'
84
95/**
106 * Floating variables modal default dimensions.
@@ -135,11 +131,3 @@ export const useVariablesModalStore = create<VariablesModalStore>()(
135131 { name : 'variables-modal-store' }
136132 )
137133)
138-
139- /**
140- * Get default floating variables modal dimensions.
141- */
142- export const getDefaultVariablesDimensions = ( ) : VariablesDimensions => ( {
143- width : DEFAULT_WIDTH ,
144- height : DEFAULT_HEIGHT ,
145- } )
You can’t perform that action at this time.
0 commit comments