@pitcher/js-api 1.29.0 → 1.31.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/js-api.esm.js +488 -56
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +32 -11
- package/js-api.umd.min.js.map +1 -1
- package/lib/ai-tasks/__tests__/weekly-focus.spec.d.ts +1 -0
- package/lib/ai-tasks/weekly-focus.d.ts +241 -0
- package/lib/apps/browser/appTypes.d.ts +28 -0
- package/lib/apps/browser/components/ContextMenu/TranslateFileButton.test.d.ts +1 -0
- package/lib/apps/browser/stores/api.d.ts +6 -1
- package/lib/apps/browser/stores/api.filesFoldersDeleter.test.d.ts +1 -0
- package/lib/apps/browser/stores/app.d.ts +5 -0
- package/lib/apps/browser/stores/app.selectionPruneScope.test.d.ts +1 -0
- package/lib/apps/browser/stores/upload.d.ts +26 -1
- package/lib/apps/browser/stores/upload.types.d.ts +9 -0
- package/lib/apps/browser/util/lifecycle.d.ts +57 -0
- package/lib/apps/browser/util/lifecycle.test.d.ts +1 -0
- package/lib/apps/canvas-builder/components/container/PopupApps/PopupAppModal.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/components/container/PresentationTools/PresentationToolsButtons.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/BottomSheetModal/BottomSheetModal.integration.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/BottomSheetModal/BottomSheetModal.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/DynamicContent/section-component-bindings.util.d.ts +32 -0
- package/lib/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.d.ts +6 -0
- package/lib/apps/canvas-builder/components/ui/Link/Link.util.d.ts +8 -1
- package/lib/apps/canvas-builder/components/ui/Link/Link.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.ldAsset.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +286 -10
- package/lib/apps/canvas-builder/composables/useCanvas.saveEcho.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +40 -2
- package/lib/apps/canvas-builder/composables/useCanvasExit.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +38 -2
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +4 -2
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +8 -1
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +27 -0
- package/lib/apps/canvas-builder/composables/useNavigatorDrawer.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +43 -4
- package/lib/apps/canvas-builder/composables/usePopupApps.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/usePresentationTools.d.ts +112 -0
- package/lib/apps/canvas-builder/composables/usePresentationTools.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +66 -3
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +12 -0
- package/lib/apps/canvas-builder/util/completionWizard.util.d.ts +347 -0
- package/lib/apps/canvas-builder/util/completionWizard.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/fullscreenMode.util.d.ts +7 -0
- package/lib/apps/canvas-builder/util/fullscreenMode.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/iframe.util.d.ts +24 -2
- package/lib/apps/canvas-builder/util/iframe.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/lazySections.util.d.ts +35 -0
- package/lib/apps/canvas-builder/util/lazySections.util.test.d.ts +1 -0
- package/lib/apps/canvas-selector/stores/app.d.ts +14 -0
- package/lib/apps/collection-player/components/AppHeader.spec.d.ts +1 -0
- package/lib/apps/collection-player/composables/collection-navigation.util.d.ts +27 -0
- package/lib/apps/collection-player/composables/collection-navigation.util.spec.d.ts +1 -0
- package/lib/apps/collection-player/composables/speaker-notes.use.d.ts +14 -0
- package/lib/apps/collection-player/composables/speaker-notes.use.spec.d.ts +1 -0
- package/lib/apps/collection-player/stores/app.store.d.ts +8 -1
- package/lib/apps/collection-player/stores/showNotesToggle.spec.d.ts +1 -0
- package/lib/apps/content-selector/appTypes.d.ts +16 -0
- package/lib/apps/content-selector/components/Assets.uploaderRefresh.spec.d.ts +1 -0
- package/lib/apps/content-selector/components/Content/AllContent/List/expandFileGuard.spec.d.ts +1 -0
- package/lib/apps/content-selector/stores/app.d.ts +1 -1
- package/lib/apps/notes/NotesApp.accountNotes.spec.d.ts +1 -0
- package/lib/apps/notes/NotesApp.speakerNotes.spec.d.ts +1 -0
- package/lib/apps/notes/composables/useAccountNotes.d.ts +14 -0
- package/lib/apps/notes/composables/useAccountNotes.spec.d.ts +1 -0
- package/lib/apps/notes/composables/useAccountOnlyNotesGate.d.ts +21 -0
- package/lib/apps/notes/composables/useAccountOnlyNotesGate.spec.d.ts +1 -0
- package/lib/apps/notes/composables/useActiveSlideNotes.d.ts +42 -0
- package/lib/apps/notes/composables/useActiveSlideNotes.spec.d.ts +1 -0
- package/lib/components/CFileAccessManagement/collaborationApi.d.ts +2 -0
- package/lib/components/CFilePanel/Details.spec.d.ts +1 -0
- package/lib/components/CFilePanel/KeyMessages.spec.d.ts +1 -0
- package/lib/components/CFilePanel/Summary.spec.d.ts +1 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +5 -1
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.formFields.use.d.ts +8 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.link.use.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.overlayItems.use.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +4 -9
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.util.d.ts +53 -1
- package/lib/components/CFileViewer/pdf/CFileViewerFullscreen.pdf.use.d.ts +1 -1
- package/lib/components/CFileViewer/pdf/__tests__/CFileViewer.pdf.annotations.text.test.d.ts +1 -0
- package/lib/components/CGlobalLoader/CGlobalLoaderMark.spec.d.ts +1 -0
- package/lib/components/CGlobalLoader/globalLoader.paths.d.ts +2 -0
- package/lib/components/CGlobalSearch/globalSearchTarget.util.d.ts +31 -0
- package/lib/components/CGlobalSearch/globalSearchTarget.util.test.d.ts +1 -0
- package/lib/components/CRichTextEditor/extensions/paragraphExtended.d.ts +7 -1
- package/lib/components/CRichTextEditor/extensions/paragraphExtended.test.d.ts +1 -0
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +12 -2
- package/lib/components/masterCanvases/CMasterCanvasesManagement.use.d.ts +86 -0
- package/lib/components/masterCanvases/CMasterCanvasesManagement.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/CMasterCanvasesPendingShareCell.spec.d.ts +1 -0
- package/lib/components/masterCanvases/CMasterCanvasesSharedWithCell.use.d.ts +39 -0
- package/lib/components/masterCanvases/CMasterCanvasesSharedWithCell.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/createFromMaster.use.d.ts +255 -0
- package/lib/components/masterCanvases/createFromMaster.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/masterCanvasDocuments.use.d.ts +56 -0
- package/lib/components/masterCanvases/masterCanvasDocuments.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/masterCanvasShares.use.d.ts +103 -0
- package/lib/components/masterCanvases/masterCanvasShares.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/masterFromCanvas.use.d.ts +122 -0
- package/lib/components/masterCanvases/masterFromCanvas.use.spec.d.ts +1 -0
- package/lib/components/masterCanvases/masterFromTemplate.use.d.ts +50 -0
- package/lib/components/masterCanvases/masterFromTemplate.use.spec.d.ts +1 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +204 -0
- package/lib/components/savedCanvases/savedCanvasDocuments.use.d.ts +111 -0
- package/lib/components/savedCanvases/savedCanvasDocuments.use.spec.d.ts +1 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +4 -0
- package/lib/composables/useCourseOnlyApps.d.ts +1 -1
- package/lib/composables/usePdfInterpolation.d.ts +2 -2
- package/lib/composables/useWindowEvents.d.ts +1 -1
- package/lib/constants/cdp.const.d.ts +2 -0
- package/lib/constants/translationLanguages.const.d.ts +150 -0
- package/lib/constants/translationLanguages.const.spec.d.ts +1 -0
- package/lib/main.lib.d.ts +7 -0
- package/lib/sdk/api/HighLevelApi.d.ts +19 -6
- package/lib/sdk/api/modules/ai.d.ts +43 -1
- package/lib/sdk/api/modules/ai.spec.d.ts +1 -0
- package/lib/sdk/api/modules/appsDb.d.ts +4 -4
- package/lib/sdk/api/modules/canvas.d.ts +20 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +25 -0
- package/lib/sdk/interfaces.d.ts +31 -1
- package/lib/sdk/main.d.ts +46 -0
- package/lib/sdk/payload.types.d.ts +149 -0
- package/lib/sdk/platform.d.ts +27 -0
- package/lib/sdk/platform.spec.d.ts +1 -0
- package/lib/sdk/singleton-scope.spec.d.ts +1 -0
- package/lib/sdk/utils/httpFetch.spec.d.ts +1 -0
- package/lib/theme/canvasUiUnoPreset.test.d.ts +1 -0
- package/lib/types/ai-tasks.const.d.ts +39 -1
- package/lib/types/app.d.ts +55 -1
- package/lib/types/call.d.ts +14 -0
- package/lib/types/canvases.d.ts +15 -0
- package/lib/types/launchDarkly.types.d.ts +8 -3
- package/lib/types/organizationSettings.types.d.ts +39 -0
- package/lib/util/aiSummary.d.ts +30 -0
- package/lib/util/aiSummary.spec.d.ts +1 -0
- package/lib/util/network.d.ts +35 -0
- package/lib/util/user.d.ts +18 -0
- package/lib/util/user.test.d.ts +1 -0
- package/package.json +1 -1
- package/types/openapi/models/Canvas.d.ts +1 -0
- package/types/openapi/models/CanvasCreate.d.ts +1 -0
- package/types/openapi/models/CanvasCreateRequest.d.ts +1 -0
- package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -1
- 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/DeletedCanvas.d.ts +1 -0
- package/types/openapi/models/DeletedEnvironment.d.ts +0 -1
- package/types/openapi/models/Environment.d.ts +0 -1
- package/types/openapi/models/EnvironmentRequest.d.ts +0 -1
- package/types/openapi/models/File.d.ts +3 -1
- package/types/openapi/models/FileRetrieve.d.ts +2 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/PatchedEnvironmentRequest.d.ts +0 -1
- package/types/openapi/models/SharedLink.d.ts +6 -0
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +5 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -21,6 +21,7 @@ export default function useCanvasBlocks(): {
|
|
|
21
21
|
readonly is_template?: boolean | undefined;
|
|
22
22
|
readonly is_section?: boolean | undefined;
|
|
23
23
|
readonly is_block?: boolean | undefined;
|
|
24
|
+
readonly is_master?: boolean | undefined;
|
|
24
25
|
readonly is_editable?: boolean | undefined;
|
|
25
26
|
readonly is_default?: boolean | undefined;
|
|
26
27
|
readonly metadata?: any;
|
|
@@ -100,6 +101,7 @@ export default function useCanvasBlocks(): {
|
|
|
100
101
|
readonly is_template?: boolean | undefined;
|
|
101
102
|
readonly is_section?: boolean | undefined;
|
|
102
103
|
readonly is_block?: boolean | undefined;
|
|
104
|
+
readonly is_master?: boolean | undefined;
|
|
103
105
|
readonly is_editable?: boolean | undefined;
|
|
104
106
|
readonly is_default?: boolean | undefined;
|
|
105
107
|
readonly metadata?: any;
|
|
@@ -284,6 +286,8 @@ export default function useCanvasBlocks(): {
|
|
|
284
286
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
285
287
|
readonly poster_url?: string | undefined;
|
|
286
288
|
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
289
|
+
readonly poster_file_id?: string | undefined;
|
|
290
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
287
291
|
} | {
|
|
288
292
|
readonly asset_type: "pitcher_asset";
|
|
289
293
|
readonly file: {
|
|
@@ -295,6 +299,21 @@ export default function useCanvasBlocks(): {
|
|
|
295
299
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
296
300
|
readonly poster_url?: string | undefined;
|
|
297
301
|
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
302
|
+
readonly poster_file_id?: string | undefined;
|
|
303
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
304
|
+
} | {
|
|
305
|
+
readonly asset_type: "ld_asset";
|
|
306
|
+
readonly file: {
|
|
307
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
308
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
309
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
310
|
+
};
|
|
311
|
+
readonly type: "image" | "video";
|
|
312
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
313
|
+
readonly poster_url?: string | undefined;
|
|
314
|
+
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
315
|
+
readonly poster_file_id?: string | undefined;
|
|
316
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
298
317
|
} | {
|
|
299
318
|
readonly type: "app";
|
|
300
319
|
readonly app_name: string;
|
|
@@ -463,6 +482,7 @@ export default function useCanvasBlocks(): {
|
|
|
463
482
|
readonly original_url?: string | null | undefined;
|
|
464
483
|
readonly thumbnail_url?: string | null | undefined;
|
|
465
484
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
485
|
+
readonly downloaded_at?: string | null | undefined;
|
|
466
486
|
readonly zip_size?: number | null | undefined;
|
|
467
487
|
readonly zip_url?: string | null | undefined;
|
|
468
488
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -509,7 +529,7 @@ export default function useCanvasBlocks(): {
|
|
|
509
529
|
readonly id: number;
|
|
510
530
|
readonly name: string;
|
|
511
531
|
readonly email?: string | undefined;
|
|
512
|
-
} | undefined;
|
|
532
|
+
} | null | undefined;
|
|
513
533
|
readonly page_index?: number | undefined;
|
|
514
534
|
} | null | undefined;
|
|
515
535
|
readonly folder?: {
|
|
@@ -792,6 +812,8 @@ export default function useCanvasBlocks(): {
|
|
|
792
812
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
793
813
|
readonly poster_url?: string | undefined;
|
|
794
814
|
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
815
|
+
readonly poster_file_id?: string | undefined;
|
|
816
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
795
817
|
} | {
|
|
796
818
|
readonly asset_type: "pitcher_asset";
|
|
797
819
|
readonly file: {
|
|
@@ -803,6 +825,21 @@ export default function useCanvasBlocks(): {
|
|
|
803
825
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
804
826
|
readonly poster_url?: string | undefined;
|
|
805
827
|
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
828
|
+
readonly poster_file_id?: string | undefined;
|
|
829
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
830
|
+
} | {
|
|
831
|
+
readonly asset_type: "ld_asset";
|
|
832
|
+
readonly file: {
|
|
833
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
834
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
835
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
836
|
+
};
|
|
837
|
+
readonly type: "image" | "video";
|
|
838
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
839
|
+
readonly poster_url?: string | undefined;
|
|
840
|
+
readonly poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
841
|
+
readonly poster_file_id?: string | undefined;
|
|
842
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
806
843
|
} | {
|
|
807
844
|
readonly type: "app";
|
|
808
845
|
readonly app_name: string;
|
|
@@ -971,6 +1008,7 @@ export default function useCanvasBlocks(): {
|
|
|
971
1008
|
readonly original_url?: string | null | undefined;
|
|
972
1009
|
readonly thumbnail_url?: string | null | undefined;
|
|
973
1010
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1011
|
+
readonly downloaded_at?: string | null | undefined;
|
|
974
1012
|
readonly zip_size?: number | null | undefined;
|
|
975
1013
|
readonly zip_url?: string | null | undefined;
|
|
976
1014
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -1017,7 +1055,7 @@ export default function useCanvasBlocks(): {
|
|
|
1017
1055
|
readonly id: number;
|
|
1018
1056
|
readonly name: string;
|
|
1019
1057
|
readonly email?: string | undefined;
|
|
1020
|
-
} | undefined;
|
|
1058
|
+
} | null | undefined;
|
|
1021
1059
|
readonly page_index?: number | undefined;
|
|
1022
1060
|
} | null | undefined;
|
|
1023
1061
|
readonly folder?: {
|
|
@@ -114,6 +114,8 @@ export default function useCanvasHistory(): {
|
|
|
114
114
|
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
115
115
|
poster_url?: string | undefined;
|
|
116
116
|
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
117
|
+
poster_file_id?: string | undefined;
|
|
118
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
117
119
|
} | {
|
|
118
120
|
asset_type: "pitcher_asset";
|
|
119
121
|
file: {
|
|
@@ -125,6 +127,21 @@ export default function useCanvasHistory(): {
|
|
|
125
127
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
126
128
|
poster_url?: string | undefined;
|
|
127
129
|
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
130
|
+
poster_file_id?: string | undefined;
|
|
131
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
132
|
+
} | {
|
|
133
|
+
asset_type: "ld_asset";
|
|
134
|
+
file: {
|
|
135
|
+
id: import('../../../main.lib').File["id"];
|
|
136
|
+
name: import('../../../main.lib').File["name"];
|
|
137
|
+
content_url?: import('../../../main.lib').File["content_url"] | undefined;
|
|
138
|
+
};
|
|
139
|
+
type: "image" | "video";
|
|
140
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
141
|
+
poster_url?: string | undefined;
|
|
142
|
+
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
143
|
+
poster_file_id?: string | undefined;
|
|
144
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
128
145
|
} | {
|
|
129
146
|
type: "app";
|
|
130
147
|
app_name: string;
|
|
@@ -285,6 +302,7 @@ export default function useCanvasHistory(): {
|
|
|
285
302
|
readonly original_url?: string | null | undefined;
|
|
286
303
|
readonly thumbnail_url?: string | null | undefined;
|
|
287
304
|
download_type?: import('../../../main.lib').DownloadTypeEnum | undefined;
|
|
305
|
+
readonly downloaded_at?: string | null | undefined;
|
|
288
306
|
readonly zip_size?: number | null | undefined;
|
|
289
307
|
readonly zip_url?: string | null | undefined;
|
|
290
308
|
access_type?: import('../../../main.lib').AccessTypeEnum | undefined;
|
|
@@ -327,7 +345,7 @@ export default function useCanvasHistory(): {
|
|
|
327
345
|
readonly id: number;
|
|
328
346
|
readonly name: string;
|
|
329
347
|
email?: string | undefined;
|
|
330
|
-
} | undefined;
|
|
348
|
+
} | null | undefined;
|
|
331
349
|
page_index?: number | undefined;
|
|
332
350
|
} | null | undefined;
|
|
333
351
|
folder?: {
|
|
@@ -588,6 +606,8 @@ export default function useCanvasHistory(): {
|
|
|
588
606
|
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
589
607
|
poster_url?: string | undefined;
|
|
590
608
|
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
609
|
+
poster_file_id?: string | undefined;
|
|
610
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
591
611
|
} | {
|
|
592
612
|
asset_type: "pitcher_asset";
|
|
593
613
|
file: {
|
|
@@ -599,6 +619,21 @@ export default function useCanvasHistory(): {
|
|
|
599
619
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
600
620
|
poster_url?: string | undefined;
|
|
601
621
|
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
622
|
+
poster_file_id?: string | undefined;
|
|
623
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
624
|
+
} | {
|
|
625
|
+
asset_type: "ld_asset";
|
|
626
|
+
file: {
|
|
627
|
+
id: import('../../../main.lib').File["id"];
|
|
628
|
+
name: import('../../../main.lib').File["name"];
|
|
629
|
+
content_url?: import('../../../main.lib').File["content_url"] | undefined;
|
|
630
|
+
};
|
|
631
|
+
type: "image" | "video";
|
|
632
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
633
|
+
poster_url?: string | undefined;
|
|
634
|
+
poster_background_size?: import('../../../types/background').BackgroundSize | undefined;
|
|
635
|
+
poster_file_id?: string | undefined;
|
|
636
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
602
637
|
} | {
|
|
603
638
|
type: "app";
|
|
604
639
|
app_name: string;
|
|
@@ -759,6 +794,7 @@ export default function useCanvasHistory(): {
|
|
|
759
794
|
readonly original_url?: string | null | undefined;
|
|
760
795
|
readonly thumbnail_url?: string | null | undefined;
|
|
761
796
|
download_type?: import('../../../main.lib').DownloadTypeEnum | undefined;
|
|
797
|
+
readonly downloaded_at?: string | null | undefined;
|
|
762
798
|
readonly zip_size?: number | null | undefined;
|
|
763
799
|
readonly zip_url?: string | null | undefined;
|
|
764
800
|
access_type?: import('../../../main.lib').AccessTypeEnum | undefined;
|
|
@@ -801,7 +837,7 @@ export default function useCanvasHistory(): {
|
|
|
801
837
|
readonly id: number;
|
|
802
838
|
readonly name: string;
|
|
803
839
|
email?: string | undefined;
|
|
804
|
-
} | undefined;
|
|
840
|
+
} | null | undefined;
|
|
805
841
|
page_index?: number | undefined;
|
|
806
842
|
} | null | undefined;
|
|
807
843
|
folder?: {
|
|
@@ -325,6 +325,7 @@ export default function useCanvasTheme(): {
|
|
|
325
325
|
readonly original_url: string | null;
|
|
326
326
|
readonly thumbnail_url: string | null;
|
|
327
327
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
328
|
+
readonly downloaded_at?: string | null | undefined;
|
|
328
329
|
readonly zip_size: number | null;
|
|
329
330
|
readonly zip_url: string | null;
|
|
330
331
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -367,7 +368,7 @@ export default function useCanvasTheme(): {
|
|
|
367
368
|
readonly id: number;
|
|
368
369
|
readonly name: string;
|
|
369
370
|
email?: string | undefined;
|
|
370
|
-
};
|
|
371
|
+
} | null;
|
|
371
372
|
}[], File[] | {
|
|
372
373
|
readonly id: string;
|
|
373
374
|
readonly global_id: string;
|
|
@@ -383,6 +384,7 @@ export default function useCanvasTheme(): {
|
|
|
383
384
|
readonly original_url: string | null;
|
|
384
385
|
readonly thumbnail_url: string | null;
|
|
385
386
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
387
|
+
readonly downloaded_at?: string | null | undefined;
|
|
386
388
|
readonly zip_size: number | null;
|
|
387
389
|
readonly zip_url: string | null;
|
|
388
390
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -425,7 +427,7 @@ export default function useCanvasTheme(): {
|
|
|
425
427
|
readonly id: number;
|
|
426
428
|
readonly name: string;
|
|
427
429
|
email?: string | undefined;
|
|
428
|
-
};
|
|
430
|
+
} | null;
|
|
429
431
|
}[]>;
|
|
430
432
|
font: import('vue').Ref<string, string>;
|
|
431
433
|
globalComponentSpacing: import('vue').Ref<number, number>;
|
|
@@ -34,8 +34,15 @@ declare function prepareLinkFolderNodeData({ selectedItems, node, }: {
|
|
|
34
34
|
selectedItems: SelectedFolder[];
|
|
35
35
|
node?: ComponentNode<LinkProps>;
|
|
36
36
|
}): LinkProps;
|
|
37
|
-
declare function prepareMultimediaNodeData({ selectedItems, }: {
|
|
37
|
+
declare function prepareMultimediaNodeData({ selectedItems, assetType, }: {
|
|
38
38
|
selectedItems: (SelectedExternalLink | SelectedAsset)[];
|
|
39
|
+
/**
|
|
40
|
+
* Which asset backend the picked file lives in — from `CanvasBuilderProps.assetType`. Defaults to
|
|
41
|
+
* `'pitcher_asset'` so every existing host is byte-identical; only the L&D course host passes
|
|
42
|
+
* `'ld_asset'` (T1.7b / PIT-7742), which is what makes Multimedia re-resolve the file's short-lived
|
|
43
|
+
* presigned URL at render instead of trusting the stored one.
|
|
44
|
+
*/
|
|
45
|
+
assetType?: 'pitcher_asset' | 'ld_asset';
|
|
39
46
|
}): {
|
|
40
47
|
data: MultimediaProps;
|
|
41
48
|
theme_meta?: Partial<ComponentNode['theme_meta']>;
|
|
@@ -5,7 +5,7 @@ export declare function useInstalledEmbeddables(): {
|
|
|
5
5
|
installedEmbeddablesById: import('vue').Ref<Record<string, AppFile> | null, Record<string, AppFile> | null>;
|
|
6
6
|
refetchedFor: Record<string, boolean>;
|
|
7
7
|
shouldUseDeviceUrl: ComputedRef<boolean | undefined>;
|
|
8
|
-
shortcuts: ComputedRef<Record<"
|
|
8
|
+
shortcuts: ComputedRef<Record<"fullscreen" | "edit" | "presentation", (EmbeddedAppShortcut & {
|
|
9
9
|
appName: string;
|
|
10
10
|
displayName: string;
|
|
11
11
|
})[]>>;
|
|
@@ -1,6 +1,33 @@
|
|
|
1
1
|
declare function toggleNavigatorDrawer(): void;
|
|
2
|
+
declare function defaultOpenNavigatorDrawer(): void;
|
|
3
|
+
/**
|
|
4
|
+
* Entering Focus/Fullscreen closes the ToC, PowerPoint-like (PIT-8025). Only the
|
|
5
|
+
* FIRST entry does anything: a Focus↔Fullscreen mode switch re-enters without
|
|
6
|
+
* exiting, and treating that as a fresh entry would both overwrite the snapshot
|
|
7
|
+
* and re-close a drawer the rep had deliberately opened mid-presentation.
|
|
8
|
+
*/
|
|
9
|
+
declare function suspendNavigatorDrawerForFullscreen(): void;
|
|
10
|
+
/**
|
|
11
|
+
* Exiting Focus/Fullscreen restores the pre-fullscreen state — open before →
|
|
12
|
+
* reopen; closed before → stay closed. A rep who toggled the ToC while IN
|
|
13
|
+
* fullscreen has already cleared the snapshot (see toggleNavigatorDrawer), so
|
|
14
|
+
* this leaves their choice alone; the `||` only guards a drawer opened by some
|
|
15
|
+
* other path mid-fullscreen.
|
|
16
|
+
*/
|
|
17
|
+
declare function restoreNavigatorDrawerAfterFullscreen(): void;
|
|
18
|
+
/**
|
|
19
|
+
* Drops the suspend state without touching the drawer, for a teardown that leaves
|
|
20
|
+
* fullscreen without going through exitFullscreen (useCanvas `cleanup`). Without
|
|
21
|
+
* it the snapshot outlives the canvas and the next exit restores the previous
|
|
22
|
+
* one's state — all of this is module-level, like `isFullscreen` itself.
|
|
23
|
+
*/
|
|
24
|
+
declare function resetNavigatorDrawerFullscreenState(): void;
|
|
2
25
|
export default function (): {
|
|
3
26
|
toggleNavigatorDrawer: typeof toggleNavigatorDrawer;
|
|
27
|
+
defaultOpenNavigatorDrawer: typeof defaultOpenNavigatorDrawer;
|
|
28
|
+
suspendNavigatorDrawerForFullscreen: typeof suspendNavigatorDrawerForFullscreen;
|
|
29
|
+
restoreNavigatorDrawerAfterFullscreen: typeof restoreNavigatorDrawerAfterFullscreen;
|
|
30
|
+
resetNavigatorDrawerFullscreenState: typeof resetNavigatorDrawerFullscreenState;
|
|
4
31
|
isNavigatorDrawerOpen: import('vue').Ref<boolean, boolean>;
|
|
5
32
|
};
|
|
6
33
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -17,6 +17,7 @@ export declare function usePopupApps(): {
|
|
|
17
17
|
readonly original_url: string | null;
|
|
18
18
|
readonly thumbnail_url: string | null;
|
|
19
19
|
download_type?: import('../../../main.lib').DownloadTypeEnum | undefined;
|
|
20
|
+
readonly downloaded_at?: string | null | undefined;
|
|
20
21
|
readonly zip_size: number | null;
|
|
21
22
|
readonly zip_url: string | null;
|
|
22
23
|
access_type?: import('../../../main.lib').AccessTypeEnum | undefined;
|
|
@@ -411,7 +412,7 @@ export declare function usePopupApps(): {
|
|
|
411
412
|
width?: number | string | undefined;
|
|
412
413
|
height?: number | string | undefined;
|
|
413
414
|
} | undefined;
|
|
414
|
-
placement?: "top-left" | "top-center" | "top-right" | "left" | "center" | "right" | "bottom-left" | "bottom-center" | "bottom-right" | undefined;
|
|
415
|
+
placement?: "top-left" | "top-center" | "top-right" | "left" | "center" | "right" | "bottom-left" | "bottom-center" | "bottom-right" | "bottom-sheet" | undefined;
|
|
415
416
|
mode_config?: {
|
|
416
417
|
fullscreen?: {
|
|
417
418
|
show?: boolean | undefined;
|
|
@@ -433,6 +434,24 @@ export declare function usePopupApps(): {
|
|
|
433
434
|
order_override?: number | undefined;
|
|
434
435
|
has_multiple_routes?: boolean | undefined;
|
|
435
436
|
configure_entry?: string | undefined;
|
|
437
|
+
secrets_schema?: import('../../../types/app').FlatSecretsSchema | {
|
|
438
|
+
[x: string]: import('../../../types/app').FlatSecretsSchema | {
|
|
439
|
+
key: string;
|
|
440
|
+
label: string;
|
|
441
|
+
default: string;
|
|
442
|
+
options: Record<string, {
|
|
443
|
+
label: string;
|
|
444
|
+
}>;
|
|
445
|
+
};
|
|
446
|
+
_strategy: {
|
|
447
|
+
key: string;
|
|
448
|
+
label: string;
|
|
449
|
+
default: string;
|
|
450
|
+
options: Record<string, {
|
|
451
|
+
label: string;
|
|
452
|
+
}>;
|
|
453
|
+
};
|
|
454
|
+
} | undefined;
|
|
436
455
|
} | undefined;
|
|
437
456
|
tags?: Array<string> | undefined;
|
|
438
457
|
readonly published_at: string | null;
|
|
@@ -464,7 +483,7 @@ export declare function usePopupApps(): {
|
|
|
464
483
|
readonly id: number;
|
|
465
484
|
readonly name: string;
|
|
466
485
|
email?: string | undefined;
|
|
467
|
-
};
|
|
486
|
+
} | null;
|
|
468
487
|
} | null, AppFile | {
|
|
469
488
|
readonly id: string;
|
|
470
489
|
readonly global_id: string;
|
|
@@ -480,6 +499,7 @@ export declare function usePopupApps(): {
|
|
|
480
499
|
readonly original_url: string | null;
|
|
481
500
|
readonly thumbnail_url: string | null;
|
|
482
501
|
download_type?: import('../../../main.lib').DownloadTypeEnum | undefined;
|
|
502
|
+
readonly downloaded_at?: string | null | undefined;
|
|
483
503
|
readonly zip_size: number | null;
|
|
484
504
|
readonly zip_url: string | null;
|
|
485
505
|
access_type?: import('../../../main.lib').AccessTypeEnum | undefined;
|
|
@@ -874,7 +894,7 @@ export declare function usePopupApps(): {
|
|
|
874
894
|
width?: number | string | undefined;
|
|
875
895
|
height?: number | string | undefined;
|
|
876
896
|
} | undefined;
|
|
877
|
-
placement?: "top-left" | "top-center" | "top-right" | "left" | "center" | "right" | "bottom-left" | "bottom-center" | "bottom-right" | undefined;
|
|
897
|
+
placement?: "top-left" | "top-center" | "top-right" | "left" | "center" | "right" | "bottom-left" | "bottom-center" | "bottom-right" | "bottom-sheet" | undefined;
|
|
878
898
|
mode_config?: {
|
|
879
899
|
fullscreen?: {
|
|
880
900
|
show?: boolean | undefined;
|
|
@@ -896,6 +916,24 @@ export declare function usePopupApps(): {
|
|
|
896
916
|
order_override?: number | undefined;
|
|
897
917
|
has_multiple_routes?: boolean | undefined;
|
|
898
918
|
configure_entry?: string | undefined;
|
|
919
|
+
secrets_schema?: import('../../../types/app').FlatSecretsSchema | {
|
|
920
|
+
[x: string]: import('../../../types/app').FlatSecretsSchema | {
|
|
921
|
+
key: string;
|
|
922
|
+
label: string;
|
|
923
|
+
default: string;
|
|
924
|
+
options: Record<string, {
|
|
925
|
+
label: string;
|
|
926
|
+
}>;
|
|
927
|
+
};
|
|
928
|
+
_strategy: {
|
|
929
|
+
key: string;
|
|
930
|
+
label: string;
|
|
931
|
+
default: string;
|
|
932
|
+
options: Record<string, {
|
|
933
|
+
label: string;
|
|
934
|
+
}>;
|
|
935
|
+
};
|
|
936
|
+
} | undefined;
|
|
899
937
|
} | undefined;
|
|
900
938
|
tags?: Array<string> | undefined;
|
|
901
939
|
readonly published_at: string | null;
|
|
@@ -927,7 +965,7 @@ export declare function usePopupApps(): {
|
|
|
927
965
|
readonly id: number;
|
|
928
966
|
readonly name: string;
|
|
929
967
|
email?: string | undefined;
|
|
930
|
-
};
|
|
968
|
+
} | null;
|
|
931
969
|
} | null>;
|
|
932
970
|
selectedAppUrl: ComputedRef<string>;
|
|
933
971
|
appIframeRef: import('vue').Ref<HTMLIFrameElement | null, HTMLIFrameElement | null>;
|
|
@@ -940,6 +978,7 @@ export declare function usePopupApps(): {
|
|
|
940
978
|
hasSingleApp: ComputedRef<boolean>;
|
|
941
979
|
singleApp: ComputedRef<AppFile | null>;
|
|
942
980
|
getModalStyle: ComputedRef<Record<string, string>>;
|
|
981
|
+
isBottomSheetPlacement: ComputedRef<boolean>;
|
|
943
982
|
onAppClick: (app: AppFile) => Promise<void>;
|
|
944
983
|
closeAppModal: () => void;
|
|
945
984
|
getCurrentModeConfig: (app: AppFile) => {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { ComputedRef, Ref } from 'vue';
|
|
2
|
+
import { CanvasRetrieve } from '../../../../types/openapi';
|
|
3
|
+
/**
|
|
4
|
+
* Presentation tools rail (PIT-8031): the instance's embeddable-only section canvases —
|
|
5
|
+
* the SAME roster the pitchdeck wizard offers (next-core `resolve-embeddable-only-slides`)
|
|
6
|
+
* — openable as a modal OVER the running deck, independent of deck content.
|
|
7
|
+
*
|
|
8
|
+
* This is the decoupled successor to the "hidden section list" workaround: tool
|
|
9
|
+
* availability no longer requires the tool to be a slide in the deck
|
|
10
|
+
* (`useInstalledEmbeddables` filters by deck content; this roster deliberately does not).
|
|
11
|
+
* "Add tool as agenda point" in the wizard stays the way to put a tool INTO the deck/ToC.
|
|
12
|
+
*
|
|
13
|
+
* Opt-in via the `canvas.enable_presentation_tools` org/instance setting (default off),
|
|
14
|
+
* Impact mode only. Both platform surfaces degrade silently: no `coreRestApiAxios` (host
|
|
15
|
+
* without core API — incl. iOS `file://` apps, which are CORS-jailed for direct core
|
|
16
|
+
* fetches) or no `fetchCanvas` → the button never appears.
|
|
17
|
+
*/
|
|
18
|
+
export interface PresentationTool {
|
|
19
|
+
/** The tool's section canvas id. */
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
/**
|
|
23
|
+
* The installed app's `app.json` icon, RAW as stored (`fas fa-building-columns`,
|
|
24
|
+
* `far fa-browser`, `fa-kit fa-…`, or a bare name) — normalise with `getAppIconProps()`
|
|
25
|
+
* before handing it to `CIcon`. `null` when the roster could not resolve the app
|
|
26
|
+
* (uninstalled, or an older endpoint that predates PIT-8274) → render the generic glyph.
|
|
27
|
+
* The tool canvas's `thumbnail_url` is deliberately NOT carried: it is a screenshot of
|
|
28
|
+
* the slide, and the overlay shows app icons like every other app surface (PIT-8274).
|
|
29
|
+
*/
|
|
30
|
+
icon: string | null;
|
|
31
|
+
}
|
|
32
|
+
type CanvasSection = CanvasRetrieve['sections'][number];
|
|
33
|
+
/**
|
|
34
|
+
* Section ids THIS composable injected into `activeCanvas.sections`. Ids already present
|
|
35
|
+
* as real deck slides are never added. The one consumer is `closeTool`, which unregisters
|
|
36
|
+
* them so nothing outlives the modal. (The shortcuts derivation no longer needs the set:
|
|
37
|
+
* `useInstalledEmbeddables` now filters the sections lookup through the deck's OWN
|
|
38
|
+
* SectionList/ContentList refs — PIT-8031 QA Q1 — which excludes injected entries by
|
|
39
|
+
* construction.) Replaced, not mutated, so computeds re-run.
|
|
40
|
+
*/
|
|
41
|
+
export declare const injectedToolSectionIds: Ref<{
|
|
42
|
+
forEach: (callbackfn: (value: string, value2: string, set: ReadonlySet<string>) => void, thisArg?: any) => void;
|
|
43
|
+
has: (value: string) => boolean;
|
|
44
|
+
readonly size: number;
|
|
45
|
+
entries: () => SetIterator<[string, string]>;
|
|
46
|
+
keys: () => SetIterator<string>;
|
|
47
|
+
values: () => SetIterator<string>;
|
|
48
|
+
union: <U>(other: ReadonlySetLike<U>) => Set<string | U>;
|
|
49
|
+
intersection: <U>(other: ReadonlySetLike<U>) => Set<string & U>;
|
|
50
|
+
difference: <U>(other: ReadonlySetLike<U>) => Set<string>;
|
|
51
|
+
symmetricDifference: <U>(other: ReadonlySetLike<U>) => Set<string | U>;
|
|
52
|
+
isSubsetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
53
|
+
isSupersetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
54
|
+
isDisjointFrom: (other: ReadonlySetLike<unknown>) => boolean;
|
|
55
|
+
[Symbol.iterator]: () => SetIterator<string>;
|
|
56
|
+
}, ReadonlySet<string> | {
|
|
57
|
+
forEach: (callbackfn: (value: string, value2: string, set: ReadonlySet<string>) => void, thisArg?: any) => void;
|
|
58
|
+
has: (value: string) => boolean;
|
|
59
|
+
readonly size: number;
|
|
60
|
+
entries: () => SetIterator<[string, string]>;
|
|
61
|
+
keys: () => SetIterator<string>;
|
|
62
|
+
values: () => SetIterator<string>;
|
|
63
|
+
union: <U>(other: ReadonlySetLike<U>) => Set<string | U>;
|
|
64
|
+
intersection: <U>(other: ReadonlySetLike<U>) => Set<string & U>;
|
|
65
|
+
difference: <U>(other: ReadonlySetLike<U>) => Set<string>;
|
|
66
|
+
symmetricDifference: <U>(other: ReadonlySetLike<U>) => Set<string | U>;
|
|
67
|
+
isSubsetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
68
|
+
isSupersetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
69
|
+
isDisjointFrom: (other: ReadonlySetLike<unknown>) => boolean;
|
|
70
|
+
[Symbol.iterator]: () => SetIterator<string>;
|
|
71
|
+
}>;
|
|
72
|
+
/**
|
|
73
|
+
* Reset ALL module-level state — for test isolation (spec `beforeEach`). Without this,
|
|
74
|
+
* `toolSectionCache`/`fetchedForInstance`/`selectedTool` survive between cases, so a test
|
|
75
|
+
* reusing a tool id would silently hit the cache and skip the fetch path it means to cover.
|
|
76
|
+
*/
|
|
77
|
+
export declare function resetPresentationToolsState(): void;
|
|
78
|
+
/**
|
|
79
|
+
* A tool canvas is a full `CanvasRetrieve`; the deck's section machinery wants the
|
|
80
|
+
* `CanvasSection` shape. The content tree sits at `sections[0].content.data` when the tool
|
|
81
|
+
* canvas nests one, else `content.data` (same normalization as DynamicContent's
|
|
82
|
+
* `getSectionComponents`).
|
|
83
|
+
*/
|
|
84
|
+
export declare function toolCanvasToSection(canvas: CanvasRetrieve): CanvasSection;
|
|
85
|
+
export declare function usePresentationTools(): {
|
|
86
|
+
tools: ComputedRef<{
|
|
87
|
+
id: string;
|
|
88
|
+
name: string;
|
|
89
|
+
icon: string | null;
|
|
90
|
+
}[]>;
|
|
91
|
+
hasSingleTool: ComputedRef<boolean>;
|
|
92
|
+
shouldShowTools: ComputedRef<boolean>;
|
|
93
|
+
isFrameless: ComputedRef<boolean>;
|
|
94
|
+
isFetchingToolSection: ComputedRef<boolean>;
|
|
95
|
+
selectedTool: ComputedRef<{
|
|
96
|
+
id: string;
|
|
97
|
+
name: string;
|
|
98
|
+
icon: string | null;
|
|
99
|
+
} | null>;
|
|
100
|
+
selectedToolSection: ComputedRef<{
|
|
101
|
+
readonly id: string;
|
|
102
|
+
name: string;
|
|
103
|
+
content: Record<string, any>;
|
|
104
|
+
theme?: (Record<string, any> | null) | undefined;
|
|
105
|
+
metadata?: Record<string, any> | undefined;
|
|
106
|
+
is_draft: boolean;
|
|
107
|
+
} | null>;
|
|
108
|
+
ensureTools: () => Promise<void>;
|
|
109
|
+
openTool: (tool: PresentationTool) => Promise<void>;
|
|
110
|
+
closeTool: () => void;
|
|
111
|
+
};
|
|
112
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|