@pitcher/js-api 1.25.0-beta.2 → 1.25.0
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/impact-js-api.spec.json +7 -1
- package/js-api.esm.js +25 -4
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/browser/App.vue.d.ts +10 -9
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +195 -132
- package/lib/apps/browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts +96 -0
- package/lib/apps/browser/components/Content/Panel/DetailsDrawer/DetailsDrawer.vue.d.ts +17 -0
- package/lib/apps/browser/components/FileSmartFolders.vue.d.ts +209 -0
- package/lib/apps/browser/stores/api.d.ts +6 -0
- package/lib/apps/browser/stores/app.d.ts +7 -2
- package/lib/apps/browser/stores/upload.d.ts +4 -4
- package/lib/apps/browser/stores/upload.types.d.ts +0 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +356 -11
- package/lib/apps/canvas-builder/components/container/CanvasDrawerTheme/CanvasDrawerTheme.vue.d.ts +5 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/AppGrid.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -1
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +1 -1
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +1230 -0
- package/lib/apps/canvas-builder/components/container/SectionInfoProvider/SectionInfoProvider.vue.d.ts +22 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +3 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridList.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridListItem.vue.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +7 -2
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +9 -1
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +6 -2
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +2 -1
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +6 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +31 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +1 -6
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +12 -6
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +111 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +206 -31
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +46 -6
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +44 -6
- package/lib/apps/canvas-builder/composables/useCanvasHooks.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useCanvasNodes.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +120 -3
- package/lib/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +31 -0
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +4 -1
- package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useDataTablePrint.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +4 -0
- package/lib/apps/canvas-builder/composables/useSectionNavigation.d.ts +3 -2
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +1 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +45 -11
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +4 -1
- package/lib/apps/canvas-builder/util/print.util.d.ts +1 -1
- package/lib/apps/canvas-builder/util/tiptap-table.util.d.ts +20 -0
- package/lib/apps/collection-player/App.vue.d.ts +1 -0
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +56 -1
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +15 -0
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -1
- package/lib/apps/collection-player/composables/annotation-layer.use.d.ts +13 -0
- package/lib/apps/collection-player/composables/laser-pointer-marker.use.d.ts +166 -0
- package/lib/apps/collection-player/composables/markerjs.use.d.ts +8 -0
- package/lib/apps/collection-player/composables/new-zoom.use.d.ts +12 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +4 -1
- package/lib/apps/collection-selector/App.vue.d.ts +33 -0
- package/lib/apps/content-selector/appTypes.d.ts +1 -0
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +195 -132
- package/lib/apps/content-selector/components/MultimediaSelectorApp.vue.d.ts +12 -0
- package/lib/apps/content-selector/components/ThemeImages.vue.d.ts +2 -0
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +4 -0
- package/lib/apps/content-selector/composables/useMultimediaSelectorApps.d.ts +21 -0
- package/lib/apps/content-selector/composables/useStore.d.ts +4 -0
- package/lib/apps/content-selector/stores/api.d.ts +19 -228
- package/lib/apps/content-selector/stores/app.d.ts +45 -66
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +2 -0
- package/lib/canvas-comments/components/CommentButton.vue.d.ts +6 -0
- package/lib/canvas-comments/components/CommentableComponent.vue.d.ts +21 -0
- package/lib/canvas-comments/components/SimpleComments.vue.d.ts +14 -0
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +1 -1
- package/lib/components/CButton/CButton.vue.d.ts +3 -3
- package/lib/components/CCreateThemeModal/steps/CThemeAssetsStep.vue.d.ts +19 -0
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +1 -1
- package/lib/components/CFileViewer/CFileViewer.types.d.ts +8 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +18 -0
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +3 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +5 -0
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +69 -0
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +2 -0
- package/lib/components/CInput/CInput.vue.d.ts +3 -3
- package/lib/components/CList/CList.vue.d.ts +1 -1
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +4 -4
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +90 -1
- package/lib/components/CTable/CTable.vue.d.ts +3 -1
- package/lib/components/CTableTag/CTableTag.vue.d.ts +4687 -0
- package/lib/components/CTags/CTags.vue.d.ts +3 -3
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +1 -1
- package/lib/components/CThumbnail/CThumbnail.vue.d.ts +43 -0
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +7 -9
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +6 -2
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +582 -266
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +195 -132
- package/lib/components/filters/CSearchFilter.vue.d.ts +2 -0
- package/lib/components/savedCanvases/CCanvasAccountModal.vue.d.ts +23 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +20 -5
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +21 -2
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +4 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +3 -1
- package/lib/components/sections/CSectionManagement.vue.d.ts +6 -2
- package/lib/components/themes/CThemeManagement.vue.d.ts +6 -2
- package/lib/composables/useCanvasLocks.d.ts +3 -4
- package/lib/composables/useCommentTracking.d.ts +25 -0
- package/lib/composables/useCommentsStorage.d.ts +70 -0
- package/lib/composables/useFileDisplayHelpers.d.ts +2 -0
- package/lib/composables/useInstalledApps.d.ts +1 -0
- package/lib/composables/useMetadataFilters.d.ts +2 -2
- package/lib/composables/useMetadataSearch.d.ts +2 -1
- package/lib/composables/useSharedCommentsStorage.d.ts +32 -0
- package/lib/constants/cdp.const.d.ts +6 -0
- package/lib/constants/roles.const.d.ts +16 -0
- package/lib/directives/element-mounted.d.ts +4 -0
- package/lib/main.lib.d.ts +6 -0
- package/lib/sdk/api/HighLevelApi.d.ts +2 -0
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +1 -0
- package/lib/sdk/api/modules/admin/users.admin.d.ts +14 -0
- package/lib/sdk/api/modules/env.d.ts +1 -0
- package/lib/sdk/api/modules/query.d.ts +2 -1
- package/lib/sdk/api/modules/ui/types.ui.d.ts +4 -0
- package/lib/sdk/interfaces.d.ts +1 -0
- package/lib/sdk/main.d.ts +8 -0
- package/lib/sdk/payload.types.d.ts +14 -0
- package/lib/types/app.d.ts +12 -1
- package/lib/types/call.d.ts +1 -2
- package/lib/types/canvasTheme.d.ts +12 -0
- package/lib/types/core/MetadataFilter.d.ts +1 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/instanceSettings.types.d.ts +2 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/organizationSettings.types.d.ts +19 -0
- package/lib/util/image.d.ts +4 -0
- package/lib/util/style.util.d.ts +1 -0
- package/lib/util/userAgents.d.ts +1 -0
- package/package.json +1 -1
- package/types/openapi/models/App.d.ts +1 -0
- package/types/openapi/models/CanvasCreate.d.ts +1 -0
- package/types/openapi/models/CanvasRecommendedFile.d.ts +2 -0
- package/types/openapi/models/CanvasRetrieve.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +1 -0
- package/types/openapi/models/CanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/DeletedFile.d.ts +2 -0
- package/types/openapi/models/File.d.ts +2 -0
- package/types/openapi/models/FileCreate.d.ts +2 -0
- package/types/openapi/models/FileCreateRequest.d.ts +1 -0
- package/types/openapi/models/FileRetrieve.d.ts +2 -0
- package/types/openapi/models/FileUpdate.d.ts +2 -0
- package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +2 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { nextTick } from 'vue';
|
|
2
|
+
declare function onSmartFoldersConfigure(): void;
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
'single-file-details'?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {
|
|
9
|
+
listRef: ({
|
|
10
|
+
$: import('vue').ComponentInternalInstance;
|
|
11
|
+
$data: {};
|
|
12
|
+
$props: {
|
|
13
|
+
readonly data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
14
|
+
readonly selectedIds?: (number | string)[] | undefined;
|
|
15
|
+
readonly maxRowHeight: number;
|
|
16
|
+
readonly height?: number | undefined;
|
|
17
|
+
readonly movable?: boolean | undefined;
|
|
18
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
readonly "onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
21
|
+
$attrs: {
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
$refs: {
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
} & {
|
|
27
|
+
virtualizerContainerRef: HTMLDivElement;
|
|
28
|
+
};
|
|
29
|
+
$slots: Readonly<{
|
|
30
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
31
|
+
}>;
|
|
32
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
33
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
34
|
+
$host: Element | null;
|
|
35
|
+
$emit: ((event: "move", ...args: any[]) => void) & ((event: "item:click", ...args: any[]) => void);
|
|
36
|
+
$el: HTMLDivElement;
|
|
37
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
38
|
+
data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
39
|
+
selectedIds?: (number | string)[];
|
|
40
|
+
maxRowHeight: number;
|
|
41
|
+
height?: number;
|
|
42
|
+
movable?: boolean;
|
|
43
|
+
}> & Readonly<{
|
|
44
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
46
|
+
}>, {
|
|
47
|
+
updateContextMenuItem: (item: import('../../../components/CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
48
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
|
+
move: (...args: any[]) => void;
|
|
50
|
+
"item:click": (...args: any[]) => void;
|
|
51
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
52
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
53
|
+
created?: (() => void) | (() => void)[];
|
|
54
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
55
|
+
mounted?: (() => void) | (() => void)[];
|
|
56
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
57
|
+
updated?: (() => void) | (() => void)[];
|
|
58
|
+
activated?: (() => void) | (() => void)[];
|
|
59
|
+
deactivated?: (() => void) | (() => void)[];
|
|
60
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
61
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
62
|
+
destroyed?: (() => void) | (() => void)[];
|
|
63
|
+
unmounted?: (() => void) | (() => void)[];
|
|
64
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
65
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
66
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
67
|
+
};
|
|
68
|
+
$forceUpdate: () => void;
|
|
69
|
+
$nextTick: typeof nextTick;
|
|
70
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
71
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
72
|
+
data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
73
|
+
selectedIds?: (number | string)[];
|
|
74
|
+
maxRowHeight: number;
|
|
75
|
+
height?: number;
|
|
76
|
+
movable?: boolean;
|
|
77
|
+
}> & Readonly<{
|
|
78
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
80
|
+
}>, "updateContextMenuItem"> & import('vue').ShallowUnwrapRef<{
|
|
81
|
+
updateContextMenuItem: (item: import('../../../components/CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
82
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
83
|
+
$slots: {
|
|
84
|
+
item?(_: {
|
|
85
|
+
index: number;
|
|
86
|
+
isContextMenuOpen: boolean;
|
|
87
|
+
isDraggedOver: boolean;
|
|
88
|
+
isSelected: boolean;
|
|
89
|
+
item: {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
id: number | string;
|
|
92
|
+
};
|
|
93
|
+
}): any;
|
|
94
|
+
'item:context-menu'?(_: {
|
|
95
|
+
item: {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
id: number | string;
|
|
98
|
+
};
|
|
99
|
+
}): any;
|
|
100
|
+
};
|
|
101
|
+
}) | null;
|
|
102
|
+
};
|
|
103
|
+
rootEl: HTMLDivElement;
|
|
104
|
+
};
|
|
105
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
106
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
107
|
+
showConfigurationModal: typeof onSmartFoldersConfigure;
|
|
108
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
109
|
+
listRef: ({
|
|
110
|
+
$: import('vue').ComponentInternalInstance;
|
|
111
|
+
$data: {};
|
|
112
|
+
$props: {
|
|
113
|
+
readonly data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
114
|
+
readonly selectedIds?: (number | string)[] | undefined;
|
|
115
|
+
readonly maxRowHeight: number;
|
|
116
|
+
readonly height?: number | undefined;
|
|
117
|
+
readonly movable?: boolean | undefined;
|
|
118
|
+
readonly onMove?: ((...args: any[]) => any) | undefined;
|
|
119
|
+
readonly "onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
120
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
121
|
+
$attrs: {
|
|
122
|
+
[x: string]: unknown;
|
|
123
|
+
};
|
|
124
|
+
$refs: {
|
|
125
|
+
[x: string]: unknown;
|
|
126
|
+
} & {
|
|
127
|
+
virtualizerContainerRef: HTMLDivElement;
|
|
128
|
+
};
|
|
129
|
+
$slots: Readonly<{
|
|
130
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
131
|
+
}>;
|
|
132
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
133
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
134
|
+
$host: Element | null;
|
|
135
|
+
$emit: ((event: "move", ...args: any[]) => void) & ((event: "item:click", ...args: any[]) => void);
|
|
136
|
+
$el: HTMLDivElement;
|
|
137
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
138
|
+
data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
139
|
+
selectedIds?: (number | string)[];
|
|
140
|
+
maxRowHeight: number;
|
|
141
|
+
height?: number;
|
|
142
|
+
movable?: boolean;
|
|
143
|
+
}> & Readonly<{
|
|
144
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
145
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
146
|
+
}>, {
|
|
147
|
+
updateContextMenuItem: (item: import('../../../components/CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
148
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
149
|
+
move: (...args: any[]) => void;
|
|
150
|
+
"item:click": (...args: any[]) => void;
|
|
151
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
152
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
153
|
+
created?: (() => void) | (() => void)[];
|
|
154
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
155
|
+
mounted?: (() => void) | (() => void)[];
|
|
156
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
157
|
+
updated?: (() => void) | (() => void)[];
|
|
158
|
+
activated?: (() => void) | (() => void)[];
|
|
159
|
+
deactivated?: (() => void) | (() => void)[];
|
|
160
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
161
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
162
|
+
destroyed?: (() => void) | (() => void)[];
|
|
163
|
+
unmounted?: (() => void) | (() => void)[];
|
|
164
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
165
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
166
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
167
|
+
};
|
|
168
|
+
$forceUpdate: () => void;
|
|
169
|
+
$nextTick: typeof nextTick;
|
|
170
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
171
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
172
|
+
data: import('../../../components/CList/CList.vue').ListDataItem[];
|
|
173
|
+
selectedIds?: (number | string)[];
|
|
174
|
+
maxRowHeight: number;
|
|
175
|
+
height?: number;
|
|
176
|
+
movable?: boolean;
|
|
177
|
+
}> & Readonly<{
|
|
178
|
+
onMove?: ((...args: any[]) => any) | undefined;
|
|
179
|
+
"onItem:click"?: ((...args: any[]) => any) | undefined;
|
|
180
|
+
}>, "updateContextMenuItem"> & import('vue').ShallowUnwrapRef<{
|
|
181
|
+
updateContextMenuItem: (item: import('../../../components/CList/CList.vue').ListDataItem, isOpen: boolean, e?: MouseEvent) => void;
|
|
182
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
183
|
+
$slots: {
|
|
184
|
+
item?(_: {
|
|
185
|
+
index: number;
|
|
186
|
+
isContextMenuOpen: boolean;
|
|
187
|
+
isDraggedOver: boolean;
|
|
188
|
+
isSelected: boolean;
|
|
189
|
+
item: {
|
|
190
|
+
[key: string]: any;
|
|
191
|
+
id: number | string;
|
|
192
|
+
};
|
|
193
|
+
}): any;
|
|
194
|
+
'item:context-menu'?(_: {
|
|
195
|
+
item: {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
id: number | string;
|
|
198
|
+
};
|
|
199
|
+
}): any;
|
|
200
|
+
};
|
|
201
|
+
}) | null;
|
|
202
|
+
}, HTMLDivElement>;
|
|
203
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
204
|
+
export default _default;
|
|
205
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
206
|
+
new (): {
|
|
207
|
+
$slots: S;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
@@ -208,6 +208,8 @@ declare const _default: () => {
|
|
|
208
208
|
readonly [x: string]: any;
|
|
209
209
|
} | undefined;
|
|
210
210
|
readonly tags?: readonly string[] | undefined;
|
|
211
|
+
readonly transcript?: string | undefined;
|
|
212
|
+
readonly search: string | null;
|
|
211
213
|
readonly published_at: string | null;
|
|
212
214
|
readonly expires_at?: string | null | undefined;
|
|
213
215
|
readonly instance_id: string;
|
|
@@ -447,6 +449,8 @@ declare const _default: () => {
|
|
|
447
449
|
};
|
|
448
450
|
readonly modified_at: string;
|
|
449
451
|
}[];
|
|
452
|
+
readonly hasMetadataFilters: boolean;
|
|
453
|
+
readonly isLoading: boolean;
|
|
450
454
|
};
|
|
451
455
|
actions: {
|
|
452
456
|
init: typeof init;
|
|
@@ -622,6 +626,8 @@ declare const _default: () => {
|
|
|
622
626
|
metadata?: Record<string, any> | undefined;
|
|
623
627
|
app_metadata?: Record<string, any> | undefined;
|
|
624
628
|
tags?: Array<string> | undefined;
|
|
629
|
+
transcript?: string | undefined;
|
|
630
|
+
readonly search: string | null;
|
|
625
631
|
readonly published_at: string | null;
|
|
626
632
|
expires_at?: string | null | undefined;
|
|
627
633
|
readonly instance_id: string;
|
|
@@ -2,6 +2,8 @@ import { Ref, ComputedRef } from 'vue';
|
|
|
2
2
|
import { File, Folder, Favorite, MiniFolder } from '../../../../types/openapi';
|
|
3
3
|
import { RecentFile } from '../../../types/recentFiles.types';
|
|
4
4
|
import { ViewCompactFile, ViewCompactFileFolder, ViewCompactFolder } from '../../../types/files';
|
|
5
|
+
import { OrganizationSettings } from '../../../types/organizationSettings.types';
|
|
6
|
+
import { InstanceSettings } from '../../../types/instanceSettings.types';
|
|
5
7
|
export type AppName = 'admin' | 'impact';
|
|
6
8
|
export type AppCurrentState = 'browse' | 'create-folder' | 'upload-files' | 'update-folder' | 'update-file' | 'batch-move';
|
|
7
9
|
export type BrowserSectionType = 'all' | 'favorites' | 'recent' | 'trash';
|
|
@@ -69,8 +71,11 @@ export default function (): {
|
|
|
69
71
|
} | null>;
|
|
70
72
|
showFilteredResults: ComputedRef<boolean>;
|
|
71
73
|
isAdmin: ComputedRef<boolean>;
|
|
72
|
-
enabledFavorites:
|
|
73
|
-
enabledRecents:
|
|
74
|
+
enabledFavorites: ComputedRef<boolean>;
|
|
75
|
+
enabledRecents: ComputedRef<boolean>;
|
|
76
|
+
disabledSearchContext: ComputedRef<boolean>;
|
|
74
77
|
isLocalSearch: Ref<boolean>;
|
|
78
|
+
isMobileView: Ref<boolean>;
|
|
79
|
+
pitcherSettings: Ref<OrganizationSettings & InstanceSettings>;
|
|
75
80
|
};
|
|
76
81
|
export {};
|
|
@@ -5,7 +5,6 @@ export default function (): {
|
|
|
5
5
|
state: {
|
|
6
6
|
queue: import('vue').Ref<({
|
|
7
7
|
id: string;
|
|
8
|
-
isSupported: boolean;
|
|
9
8
|
isInLimits: boolean;
|
|
10
9
|
uploadStatus: import('./upload.types').UploadStatus;
|
|
11
10
|
error: string | null;
|
|
@@ -29,6 +28,7 @@ export default function (): {
|
|
|
29
28
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
30
29
|
access_type?: AccessTypeEnum | undefined;
|
|
31
30
|
app_metadata?: Record<string, any> | undefined;
|
|
31
|
+
transcript?: string | undefined;
|
|
32
32
|
expires_at?: string | null | undefined;
|
|
33
33
|
folder_id?: string | undefined;
|
|
34
34
|
url?: string | undefined;
|
|
@@ -47,7 +47,6 @@ export default function (): {
|
|
|
47
47
|
thumbnail_upload_id?: string | undefined;
|
|
48
48
|
} | {
|
|
49
49
|
id: string;
|
|
50
|
-
isSupported: boolean;
|
|
51
50
|
isInLimits: boolean;
|
|
52
51
|
uploadStatus: import('./upload.types').UploadStatus;
|
|
53
52
|
error: string | null;
|
|
@@ -73,6 +72,7 @@ export default function (): {
|
|
|
73
72
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
74
73
|
access_type?: AccessTypeEnum | undefined;
|
|
75
74
|
app_metadata?: Record<string, any> | undefined;
|
|
75
|
+
transcript?: string | undefined;
|
|
76
76
|
expires_at?: string | null | undefined;
|
|
77
77
|
folder_id?: string | undefined;
|
|
78
78
|
url?: string | undefined;
|
|
@@ -91,7 +91,6 @@ export default function (): {
|
|
|
91
91
|
thumbnail_upload_id?: string | undefined;
|
|
92
92
|
})[], Upload[] | ({
|
|
93
93
|
id: string;
|
|
94
|
-
isSupported: boolean;
|
|
95
94
|
isInLimits: boolean;
|
|
96
95
|
uploadStatus: import('./upload.types').UploadStatus;
|
|
97
96
|
error: string | null;
|
|
@@ -115,6 +114,7 @@ export default function (): {
|
|
|
115
114
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
116
115
|
access_type?: AccessTypeEnum | undefined;
|
|
117
116
|
app_metadata?: Record<string, any> | undefined;
|
|
117
|
+
transcript?: string | undefined;
|
|
118
118
|
expires_at?: string | null | undefined;
|
|
119
119
|
folder_id?: string | undefined;
|
|
120
120
|
url?: string | undefined;
|
|
@@ -133,7 +133,6 @@ export default function (): {
|
|
|
133
133
|
thumbnail_upload_id?: string | undefined;
|
|
134
134
|
} | {
|
|
135
135
|
id: string;
|
|
136
|
-
isSupported: boolean;
|
|
137
136
|
isInLimits: boolean;
|
|
138
137
|
uploadStatus: import('./upload.types').UploadStatus;
|
|
139
138
|
error: string | null;
|
|
@@ -159,6 +158,7 @@ export default function (): {
|
|
|
159
158
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
160
159
|
access_type?: AccessTypeEnum | undefined;
|
|
161
160
|
app_metadata?: Record<string, any> | undefined;
|
|
161
|
+
transcript?: string | undefined;
|
|
162
162
|
expires_at?: string | null | undefined;
|
|
163
163
|
folder_id?: string | undefined;
|
|
164
164
|
url?: string | undefined;
|