@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
|
@@ -6,7 +6,7 @@ import { LaunchDarklyEnv } from '../../../types/launchDarkly.types';
|
|
|
6
6
|
import { CanvasMetadataRetrieve } from '../../../types/canvases';
|
|
7
7
|
import { BackgroundSize } from '../../../types/background';
|
|
8
8
|
import { ActionCallback } from '../../collection-player/composables/keyboard-bindings.use.ts';
|
|
9
|
-
import { OrganizationSettings } from '../../../types/organizationSettings.types.ts';
|
|
9
|
+
import { OrganizationSettings, FullscreenMode } from '../../../types/organizationSettings.types.ts';
|
|
10
10
|
import { InstanceSettings } from '../../../types/instanceSettings.types.ts';
|
|
11
11
|
declare function cleanup(): void;
|
|
12
12
|
export type ComponentNodesById = typeof componentNodesById;
|
|
@@ -133,6 +133,8 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
133
133
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
134
134
|
readonly poster_url?: string | undefined;
|
|
135
135
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
136
|
+
readonly poster_file_id?: string | undefined;
|
|
137
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
136
138
|
} | {
|
|
137
139
|
readonly asset_type: "pitcher_asset";
|
|
138
140
|
readonly file: {
|
|
@@ -144,6 +146,21 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
144
146
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
145
147
|
readonly poster_url?: string | undefined;
|
|
146
148
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
149
|
+
readonly poster_file_id?: string | undefined;
|
|
150
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
151
|
+
} | {
|
|
152
|
+
readonly asset_type: "ld_asset";
|
|
153
|
+
readonly file: {
|
|
154
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
155
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
156
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
157
|
+
};
|
|
158
|
+
readonly type: "image" | "video";
|
|
159
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
160
|
+
readonly poster_url?: string | undefined;
|
|
161
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
162
|
+
readonly poster_file_id?: string | undefined;
|
|
163
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
147
164
|
} | {
|
|
148
165
|
readonly type: "app";
|
|
149
166
|
readonly app_name: string;
|
|
@@ -312,6 +329,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
312
329
|
readonly original_url?: string | null | undefined;
|
|
313
330
|
readonly thumbnail_url?: string | null | undefined;
|
|
314
331
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
332
|
+
readonly downloaded_at?: string | null | undefined;
|
|
315
333
|
readonly zip_size?: number | null | undefined;
|
|
316
334
|
readonly zip_url?: string | null | undefined;
|
|
317
335
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -358,7 +376,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
358
376
|
readonly id: number;
|
|
359
377
|
readonly name: string;
|
|
360
378
|
readonly email?: string | undefined;
|
|
361
|
-
} | undefined;
|
|
379
|
+
} | null | undefined;
|
|
362
380
|
readonly page_index?: number | undefined;
|
|
363
381
|
} | null | undefined;
|
|
364
382
|
readonly folder?: {
|
|
@@ -644,6 +662,8 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
644
662
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
645
663
|
readonly poster_url?: string | undefined;
|
|
646
664
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
665
|
+
readonly poster_file_id?: string | undefined;
|
|
666
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
647
667
|
} | {
|
|
648
668
|
readonly asset_type: "pitcher_asset";
|
|
649
669
|
readonly file: {
|
|
@@ -655,6 +675,21 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
655
675
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
656
676
|
readonly poster_url?: string | undefined;
|
|
657
677
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
678
|
+
readonly poster_file_id?: string | undefined;
|
|
679
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
680
|
+
} | {
|
|
681
|
+
readonly asset_type: "ld_asset";
|
|
682
|
+
readonly file: {
|
|
683
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
684
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
685
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
686
|
+
};
|
|
687
|
+
readonly type: "image" | "video";
|
|
688
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
689
|
+
readonly poster_url?: string | undefined;
|
|
690
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
691
|
+
readonly poster_file_id?: string | undefined;
|
|
692
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
658
693
|
} | {
|
|
659
694
|
readonly type: "app";
|
|
660
695
|
readonly app_name: string;
|
|
@@ -823,6 +858,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
823
858
|
readonly original_url?: string | null | undefined;
|
|
824
859
|
readonly thumbnail_url?: string | null | undefined;
|
|
825
860
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
861
|
+
readonly downloaded_at?: string | null | undefined;
|
|
826
862
|
readonly zip_size?: number | null | undefined;
|
|
827
863
|
readonly zip_url?: string | null | undefined;
|
|
828
864
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -869,7 +905,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
869
905
|
readonly id: number;
|
|
870
906
|
readonly name: string;
|
|
871
907
|
readonly email?: string | undefined;
|
|
872
|
-
} | undefined;
|
|
908
|
+
} | null | undefined;
|
|
873
909
|
readonly page_index?: number | undefined;
|
|
874
910
|
} | null | undefined;
|
|
875
911
|
readonly folder?: {
|
|
@@ -1038,6 +1074,7 @@ declare function exitFullscreen(options?: {
|
|
|
1038
1074
|
}): void;
|
|
1039
1075
|
declare function enterFullscreen(options?: {
|
|
1040
1076
|
skipJsApiEvent?: boolean;
|
|
1077
|
+
mode?: FullscreenMode;
|
|
1041
1078
|
}): void;
|
|
1042
1079
|
declare function saveCanvasContent({ showToast }?: {
|
|
1043
1080
|
showToast: boolean;
|
|
@@ -1062,6 +1099,7 @@ export default function useCanvas(): {
|
|
|
1062
1099
|
is_template?: boolean | undefined;
|
|
1063
1100
|
is_section?: boolean | undefined;
|
|
1064
1101
|
is_block?: boolean | undefined;
|
|
1102
|
+
is_master?: boolean | undefined;
|
|
1065
1103
|
is_editable?: boolean | undefined;
|
|
1066
1104
|
is_default?: boolean | undefined;
|
|
1067
1105
|
metadata?: any;
|
|
@@ -1127,6 +1165,7 @@ export default function useCanvas(): {
|
|
|
1127
1165
|
is_template?: boolean | undefined;
|
|
1128
1166
|
is_section?: boolean | undefined;
|
|
1129
1167
|
is_block?: boolean | undefined;
|
|
1168
|
+
is_master?: boolean | undefined;
|
|
1130
1169
|
is_editable?: boolean | undefined;
|
|
1131
1170
|
is_default?: boolean | undefined;
|
|
1132
1171
|
metadata?: any;
|
|
@@ -1311,6 +1350,8 @@ export default function useCanvas(): {
|
|
|
1311
1350
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1312
1351
|
readonly poster_url?: string | undefined;
|
|
1313
1352
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1353
|
+
readonly poster_file_id?: string | undefined;
|
|
1354
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1314
1355
|
} | {
|
|
1315
1356
|
readonly asset_type: "pitcher_asset";
|
|
1316
1357
|
readonly file: {
|
|
@@ -1322,6 +1363,21 @@ export default function useCanvas(): {
|
|
|
1322
1363
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1323
1364
|
readonly poster_url?: string | undefined;
|
|
1324
1365
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1366
|
+
readonly poster_file_id?: string | undefined;
|
|
1367
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1368
|
+
} | {
|
|
1369
|
+
readonly asset_type: "ld_asset";
|
|
1370
|
+
readonly file: {
|
|
1371
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
1372
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
1373
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
1374
|
+
};
|
|
1375
|
+
readonly type: "image" | "video";
|
|
1376
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1377
|
+
readonly poster_url?: string | undefined;
|
|
1378
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1379
|
+
readonly poster_file_id?: string | undefined;
|
|
1380
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1325
1381
|
} | {
|
|
1326
1382
|
readonly type: "app";
|
|
1327
1383
|
readonly app_name: string;
|
|
@@ -1490,6 +1546,7 @@ export default function useCanvas(): {
|
|
|
1490
1546
|
readonly original_url?: string | null | undefined;
|
|
1491
1547
|
readonly thumbnail_url?: string | null | undefined;
|
|
1492
1548
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1549
|
+
readonly downloaded_at?: string | null | undefined;
|
|
1493
1550
|
readonly zip_size?: number | null | undefined;
|
|
1494
1551
|
readonly zip_url?: string | null | undefined;
|
|
1495
1552
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -1536,7 +1593,7 @@ export default function useCanvas(): {
|
|
|
1536
1593
|
readonly id: number;
|
|
1537
1594
|
readonly name: string;
|
|
1538
1595
|
readonly email?: string | undefined;
|
|
1539
|
-
} | undefined;
|
|
1596
|
+
} | null | undefined;
|
|
1540
1597
|
readonly page_index?: number | undefined;
|
|
1541
1598
|
} | null | undefined;
|
|
1542
1599
|
readonly folder?: {
|
|
@@ -1834,6 +1891,8 @@ export default function useCanvas(): {
|
|
|
1834
1891
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
1835
1892
|
readonly poster_url?: string | undefined;
|
|
1836
1893
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1894
|
+
readonly poster_file_id?: string | undefined;
|
|
1895
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1837
1896
|
} | {
|
|
1838
1897
|
readonly asset_type: "pitcher_asset";
|
|
1839
1898
|
readonly file: {
|
|
@@ -1845,6 +1904,21 @@ export default function useCanvas(): {
|
|
|
1845
1904
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1846
1905
|
readonly poster_url?: string | undefined;
|
|
1847
1906
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1907
|
+
readonly poster_file_id?: string | undefined;
|
|
1908
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1909
|
+
} | {
|
|
1910
|
+
readonly asset_type: "ld_asset";
|
|
1911
|
+
readonly file: {
|
|
1912
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
1913
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
1914
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
1915
|
+
};
|
|
1916
|
+
readonly type: "image" | "video";
|
|
1917
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1918
|
+
readonly poster_url?: string | undefined;
|
|
1919
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
1920
|
+
readonly poster_file_id?: string | undefined;
|
|
1921
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
1848
1922
|
} | {
|
|
1849
1923
|
readonly type: "app";
|
|
1850
1924
|
readonly app_name: string;
|
|
@@ -2013,6 +2087,7 @@ export default function useCanvas(): {
|
|
|
2013
2087
|
readonly original_url?: string | null | undefined;
|
|
2014
2088
|
readonly thumbnail_url?: string | null | undefined;
|
|
2015
2089
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2090
|
+
readonly downloaded_at?: string | null | undefined;
|
|
2016
2091
|
readonly zip_size?: number | null | undefined;
|
|
2017
2092
|
readonly zip_url?: string | null | undefined;
|
|
2018
2093
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -2059,7 +2134,7 @@ export default function useCanvas(): {
|
|
|
2059
2134
|
readonly id: number;
|
|
2060
2135
|
readonly name: string;
|
|
2061
2136
|
readonly email?: string | undefined;
|
|
2062
|
-
} | undefined;
|
|
2137
|
+
} | null | undefined;
|
|
2063
2138
|
readonly page_index?: number | undefined;
|
|
2064
2139
|
} | null | undefined;
|
|
2065
2140
|
readonly folder?: {
|
|
@@ -2343,6 +2418,8 @@ export default function useCanvas(): {
|
|
|
2343
2418
|
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2344
2419
|
poster_url?: string | undefined;
|
|
2345
2420
|
poster_background_size?: BackgroundSize | undefined;
|
|
2421
|
+
poster_file_id?: string | undefined;
|
|
2422
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2346
2423
|
} | {
|
|
2347
2424
|
asset_type: "pitcher_asset";
|
|
2348
2425
|
file: {
|
|
@@ -2354,6 +2431,21 @@ export default function useCanvas(): {
|
|
|
2354
2431
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2355
2432
|
poster_url?: string | undefined;
|
|
2356
2433
|
poster_background_size?: BackgroundSize | undefined;
|
|
2434
|
+
poster_file_id?: string | undefined;
|
|
2435
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2436
|
+
} | {
|
|
2437
|
+
asset_type: "ld_asset";
|
|
2438
|
+
file: {
|
|
2439
|
+
id: import('../../../../types/openapi').File["id"];
|
|
2440
|
+
name: import('../../../../types/openapi').File["name"];
|
|
2441
|
+
content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
2442
|
+
};
|
|
2443
|
+
type: "image" | "video";
|
|
2444
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2445
|
+
poster_url?: string | undefined;
|
|
2446
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
2447
|
+
poster_file_id?: string | undefined;
|
|
2448
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2357
2449
|
} | {
|
|
2358
2450
|
type: "app";
|
|
2359
2451
|
app_name: string;
|
|
@@ -2514,6 +2606,7 @@ export default function useCanvas(): {
|
|
|
2514
2606
|
readonly original_url?: string | null | undefined;
|
|
2515
2607
|
readonly thumbnail_url?: string | null | undefined;
|
|
2516
2608
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2609
|
+
readonly downloaded_at?: string | null | undefined;
|
|
2517
2610
|
readonly zip_size?: number | null | undefined;
|
|
2518
2611
|
readonly zip_url?: string | null | undefined;
|
|
2519
2612
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -2556,7 +2649,7 @@ export default function useCanvas(): {
|
|
|
2556
2649
|
readonly id: number;
|
|
2557
2650
|
readonly name: string;
|
|
2558
2651
|
email?: string | undefined;
|
|
2559
|
-
} | undefined;
|
|
2652
|
+
} | null | undefined;
|
|
2560
2653
|
page_index?: number | undefined;
|
|
2561
2654
|
} | null | undefined;
|
|
2562
2655
|
folder?: {
|
|
@@ -2809,6 +2902,8 @@ export default function useCanvas(): {
|
|
|
2809
2902
|
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
2810
2903
|
poster_url?: string | undefined;
|
|
2811
2904
|
poster_background_size?: BackgroundSize | undefined;
|
|
2905
|
+
poster_file_id?: string | undefined;
|
|
2906
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2812
2907
|
} | {
|
|
2813
2908
|
asset_type: "pitcher_asset";
|
|
2814
2909
|
file: {
|
|
@@ -2820,6 +2915,21 @@ export default function useCanvas(): {
|
|
|
2820
2915
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2821
2916
|
poster_url?: string | undefined;
|
|
2822
2917
|
poster_background_size?: BackgroundSize | undefined;
|
|
2918
|
+
poster_file_id?: string | undefined;
|
|
2919
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2920
|
+
} | {
|
|
2921
|
+
asset_type: "ld_asset";
|
|
2922
|
+
file: {
|
|
2923
|
+
id: import('../../../../types/openapi').File["id"];
|
|
2924
|
+
name: import('../../../../types/openapi').File["name"];
|
|
2925
|
+
content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
2926
|
+
};
|
|
2927
|
+
type: "image" | "video";
|
|
2928
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2929
|
+
poster_url?: string | undefined;
|
|
2930
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
2931
|
+
poster_file_id?: string | undefined;
|
|
2932
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
2823
2933
|
} | {
|
|
2824
2934
|
type: "app";
|
|
2825
2935
|
app_name: string;
|
|
@@ -2980,6 +3090,7 @@ export default function useCanvas(): {
|
|
|
2980
3090
|
readonly original_url?: string | null | undefined;
|
|
2981
3091
|
readonly thumbnail_url?: string | null | undefined;
|
|
2982
3092
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
3093
|
+
readonly downloaded_at?: string | null | undefined;
|
|
2983
3094
|
readonly zip_size?: number | null | undefined;
|
|
2984
3095
|
readonly zip_url?: string | null | undefined;
|
|
2985
3096
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -3022,7 +3133,7 @@ export default function useCanvas(): {
|
|
|
3022
3133
|
readonly id: number;
|
|
3023
3134
|
readonly name: string;
|
|
3024
3135
|
email?: string | undefined;
|
|
3025
|
-
} | undefined;
|
|
3136
|
+
} | null | undefined;
|
|
3026
3137
|
page_index?: number | undefined;
|
|
3027
3138
|
} | null | undefined;
|
|
3028
3139
|
folder?: {
|
|
@@ -3327,6 +3438,8 @@ export default function useCanvas(): {
|
|
|
3327
3438
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
3328
3439
|
readonly poster_url?: string | undefined;
|
|
3329
3440
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
3441
|
+
readonly poster_file_id?: string | undefined;
|
|
3442
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
3330
3443
|
} | {
|
|
3331
3444
|
readonly asset_type: "pitcher_asset";
|
|
3332
3445
|
readonly file: {
|
|
@@ -3338,6 +3451,21 @@ export default function useCanvas(): {
|
|
|
3338
3451
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
3339
3452
|
readonly poster_url?: string | undefined;
|
|
3340
3453
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
3454
|
+
readonly poster_file_id?: string | undefined;
|
|
3455
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
3456
|
+
} | {
|
|
3457
|
+
readonly asset_type: "ld_asset";
|
|
3458
|
+
readonly file: {
|
|
3459
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
3460
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
3461
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
3462
|
+
};
|
|
3463
|
+
readonly type: "image" | "video";
|
|
3464
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
3465
|
+
readonly poster_url?: string | undefined;
|
|
3466
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
3467
|
+
readonly poster_file_id?: string | undefined;
|
|
3468
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
3341
3469
|
} | {
|
|
3342
3470
|
readonly type: "app";
|
|
3343
3471
|
readonly app_name: string;
|
|
@@ -3506,6 +3634,7 @@ export default function useCanvas(): {
|
|
|
3506
3634
|
readonly original_url?: string | null | undefined;
|
|
3507
3635
|
readonly thumbnail_url?: string | null | undefined;
|
|
3508
3636
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
3637
|
+
readonly downloaded_at?: string | null | undefined;
|
|
3509
3638
|
readonly zip_size?: number | null | undefined;
|
|
3510
3639
|
readonly zip_url?: string | null | undefined;
|
|
3511
3640
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -3552,7 +3681,7 @@ export default function useCanvas(): {
|
|
|
3552
3681
|
readonly id: number;
|
|
3553
3682
|
readonly name: string;
|
|
3554
3683
|
readonly email?: string | undefined;
|
|
3555
|
-
} | undefined;
|
|
3684
|
+
} | null | undefined;
|
|
3556
3685
|
readonly page_index?: number | undefined;
|
|
3557
3686
|
} | null | undefined;
|
|
3558
3687
|
readonly folder?: {
|
|
@@ -3724,6 +3853,7 @@ export default function useCanvas(): {
|
|
|
3724
3853
|
id: ComponentNode["id"];
|
|
3725
3854
|
navigatorItemIndex?: number | undefined;
|
|
3726
3855
|
}>;
|
|
3856
|
+
assetType: Ref<"pitcher_asset" | "ld_asset", "pitcher_asset" | "ld_asset">;
|
|
3727
3857
|
componentSettingsMode: Ref<string | false, string | false>;
|
|
3728
3858
|
contentRef: Ref<{
|
|
3729
3859
|
$el: HTMLElement;
|
|
@@ -3748,6 +3878,7 @@ export default function useCanvas(): {
|
|
|
3748
3878
|
isHostWrappedReadOnlyMode: import('vue').ComputedRef<boolean>;
|
|
3749
3879
|
isEditMode: Ref<boolean, boolean>;
|
|
3750
3880
|
isFullscreen: Ref<boolean, boolean>;
|
|
3881
|
+
fullscreenMode: import('vue').ComputedRef<FullscreenMode>;
|
|
3751
3882
|
isHomeMode: import('vue').ComputedRef<boolean>;
|
|
3752
3883
|
isImpact: import('vue').ComputedRef<boolean>;
|
|
3753
3884
|
isCanvasPreviewMode: Ref<boolean, boolean>;
|
|
@@ -3831,6 +3962,7 @@ export default function useCanvas(): {
|
|
|
3831
3962
|
onDownloadCanvas: Ref<((canvas: CanvasRetrieve, fileFormat?: "pdf" | "pptx") => Promise<void>) | ((canvas: CanvasRetrieve, fileFormat?: "pdf" | "pptx") => Promise<void>) | ((...data: any[]) => void) | undefined, ((canvas: CanvasRetrieve, fileFormat?: "pdf" | "pptx") => Promise<void>) | ((canvas: CanvasRetrieve, fileFormat?: "pdf" | "pptx") => Promise<void>) | ((...data: any[]) => void) | undefined>;
|
|
3832
3963
|
onDownloadFile: Ref<((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((...data: any[]) => void) | undefined, ((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((file: import('../../../../types/openapi').File | import('../types/canvas').ContentGridFileProps | import('../types/canvas').ContentGridCommonFileProps) => Promise<void>) | ((...data: any[]) => void) | undefined>;
|
|
3833
3964
|
onExit: Ref<(() => void) | (() => void) | (() => void), (() => void) | (() => void) | (() => void)>;
|
|
3965
|
+
onEndCall: Ref<(() => void | Promise<void>) | (() => void | Promise<void>) | (() => void | Promise<void>) | undefined, (() => void | Promise<void>) | (() => void | Promise<void>) | (() => void | Promise<void>) | undefined>;
|
|
3834
3966
|
onFileOpen: Ref<((file: import('../types/canvas').FileOpenParams) => void) | ((file: import('../types/canvas').FileOpenParams) => void) | ((file: import('../types/canvas').FileOpenParams) => void), ((file: import('../types/canvas').FileOpenParams) => void) | ((file: import('../types/canvas').FileOpenParams) => void) | ((file: import('../types/canvas').FileOpenParams) => void)>;
|
|
3835
3967
|
onFileEnter: Ref<((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | undefined, ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | undefined>;
|
|
3836
3968
|
onFileExit: Ref<((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | undefined, ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity) => void) | undefined>;
|
|
@@ -4043,6 +4175,8 @@ export default function useCanvas(): {
|
|
|
4043
4175
|
readonly from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
4044
4176
|
readonly poster_url?: string | undefined;
|
|
4045
4177
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
4178
|
+
readonly poster_file_id?: string | undefined;
|
|
4179
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4046
4180
|
} | {
|
|
4047
4181
|
readonly asset_type: "pitcher_asset";
|
|
4048
4182
|
readonly file: {
|
|
@@ -4054,6 +4188,21 @@ export default function useCanvas(): {
|
|
|
4054
4188
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4055
4189
|
readonly poster_url?: string | undefined;
|
|
4056
4190
|
readonly poster_background_size?: BackgroundSize | undefined;
|
|
4191
|
+
readonly poster_file_id?: string | undefined;
|
|
4192
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4193
|
+
} | {
|
|
4194
|
+
readonly asset_type: "ld_asset";
|
|
4195
|
+
readonly file: {
|
|
4196
|
+
readonly id: import('../../../../types/openapi').File["id"];
|
|
4197
|
+
readonly name: import('../../../../types/openapi').File["name"];
|
|
4198
|
+
readonly content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
4199
|
+
};
|
|
4200
|
+
readonly type: "image" | "video";
|
|
4201
|
+
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4202
|
+
readonly poster_url?: string | undefined;
|
|
4203
|
+
readonly poster_background_size?: BackgroundSize | undefined;
|
|
4204
|
+
readonly poster_file_id?: string | undefined;
|
|
4205
|
+
readonly poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4057
4206
|
} | {
|
|
4058
4207
|
readonly type: "app";
|
|
4059
4208
|
readonly app_name: string;
|
|
@@ -4222,6 +4371,7 @@ export default function useCanvas(): {
|
|
|
4222
4371
|
readonly original_url?: string | null | undefined;
|
|
4223
4372
|
readonly thumbnail_url?: string | null | undefined;
|
|
4224
4373
|
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
4374
|
+
readonly downloaded_at?: string | null | undefined;
|
|
4225
4375
|
readonly zip_size?: number | null | undefined;
|
|
4226
4376
|
readonly zip_url?: string | null | undefined;
|
|
4227
4377
|
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -4268,7 +4418,7 @@ export default function useCanvas(): {
|
|
|
4268
4418
|
readonly id: number;
|
|
4269
4419
|
readonly name: string;
|
|
4270
4420
|
readonly email?: string | undefined;
|
|
4271
|
-
} | undefined;
|
|
4421
|
+
} | null | undefined;
|
|
4272
4422
|
readonly page_index?: number | undefined;
|
|
4273
4423
|
} | null | undefined;
|
|
4274
4424
|
readonly folder?: {
|
|
@@ -4542,6 +4692,8 @@ export default function useCanvas(): {
|
|
|
4542
4692
|
from?: "custom" | "pexels" | "unsplash" | "ai" | undefined;
|
|
4543
4693
|
poster_url?: string | undefined;
|
|
4544
4694
|
poster_background_size?: BackgroundSize | undefined;
|
|
4695
|
+
poster_file_id?: string | undefined;
|
|
4696
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4545
4697
|
} | {
|
|
4546
4698
|
asset_type: "pitcher_asset";
|
|
4547
4699
|
file: {
|
|
@@ -4553,6 +4705,21 @@ export default function useCanvas(): {
|
|
|
4553
4705
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4554
4706
|
poster_url?: string | undefined;
|
|
4555
4707
|
poster_background_size?: BackgroundSize | undefined;
|
|
4708
|
+
poster_file_id?: string | undefined;
|
|
4709
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4710
|
+
} | {
|
|
4711
|
+
asset_type: "ld_asset";
|
|
4712
|
+
file: {
|
|
4713
|
+
id: import('../../../../types/openapi').File["id"];
|
|
4714
|
+
name: import('../../../../types/openapi').File["name"];
|
|
4715
|
+
content_url?: import('../../../../types/openapi').File["content_url"] | undefined;
|
|
4716
|
+
};
|
|
4717
|
+
type: "image" | "video";
|
|
4718
|
+
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
4719
|
+
poster_url?: string | undefined;
|
|
4720
|
+
poster_background_size?: BackgroundSize | undefined;
|
|
4721
|
+
poster_file_id?: string | undefined;
|
|
4722
|
+
poster_asset_type?: "pitcher_asset" | "ld_asset" | undefined;
|
|
4556
4723
|
} | {
|
|
4557
4724
|
type: "app";
|
|
4558
4725
|
app_name: string;
|
|
@@ -4713,6 +4880,7 @@ export default function useCanvas(): {
|
|
|
4713
4880
|
readonly original_url?: string | null | undefined;
|
|
4714
4881
|
readonly thumbnail_url?: string | null | undefined;
|
|
4715
4882
|
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
4883
|
+
readonly downloaded_at?: string | null | undefined;
|
|
4716
4884
|
readonly zip_size?: number | null | undefined;
|
|
4717
4885
|
readonly zip_url?: string | null | undefined;
|
|
4718
4886
|
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
@@ -4755,7 +4923,7 @@ export default function useCanvas(): {
|
|
|
4755
4923
|
readonly id: number;
|
|
4756
4924
|
readonly name: string;
|
|
4757
4925
|
email?: string | undefined;
|
|
4758
|
-
} | undefined;
|
|
4926
|
+
} | null | undefined;
|
|
4759
4927
|
page_index?: number | undefined;
|
|
4760
4928
|
} | null | undefined;
|
|
4761
4929
|
folder?: {
|
|
@@ -4959,6 +5127,14 @@ export default function useCanvas(): {
|
|
|
4959
5127
|
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
4960
5128
|
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
4961
5129
|
enable_wizard_preview_button?: boolean | undefined;
|
|
5130
|
+
enable_edit_opens_completion_wizard?: boolean | undefined;
|
|
5131
|
+
enable_react_completion_wizard?: boolean | undefined;
|
|
5132
|
+
enable_wizard_add_group?: boolean | undefined;
|
|
5133
|
+
enable_presentation_tools?: boolean | undefined;
|
|
5134
|
+
enable_hub_bottom_sheet?: boolean | undefined;
|
|
5135
|
+
presentation_tools_frameless?: boolean | undefined;
|
|
5136
|
+
enable_toc_open_by_default?: boolean | undefined;
|
|
5137
|
+
use_canvas_exit_confirmation?: boolean | undefined;
|
|
4962
5138
|
locks_polling_interval?: number | undefined;
|
|
4963
5139
|
shared_link?: {
|
|
4964
5140
|
title?: string | undefined;
|
|
@@ -5117,6 +5293,13 @@ export default function useCanvas(): {
|
|
|
5117
5293
|
dynamic_content_date_created_field?: string | undefined;
|
|
5118
5294
|
dynamic_content_date_modified_field?: string | undefined;
|
|
5119
5295
|
} | undefined;
|
|
5296
|
+
shared_link_brands?: {
|
|
5297
|
+
id: string;
|
|
5298
|
+
name?: string | undefined;
|
|
5299
|
+
subdomain?: string | undefined;
|
|
5300
|
+
slug?: string | undefined;
|
|
5301
|
+
is_default?: boolean | undefined;
|
|
5302
|
+
}[] | undefined;
|
|
5120
5303
|
allow_dsr_forwarding?: boolean | undefined;
|
|
5121
5304
|
allow_revoke_shared_link?: boolean | undefined;
|
|
5122
5305
|
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
@@ -5153,6 +5336,7 @@ export default function useCanvas(): {
|
|
|
5153
5336
|
minimum_event_duration_in_call?: number | undefined;
|
|
5154
5337
|
enable_content_rating_in_call?: boolean | undefined;
|
|
5155
5338
|
enable_speaker_notes?: boolean | undefined;
|
|
5339
|
+
enable_account_only_meeting_notes?: boolean | undefined;
|
|
5156
5340
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
5157
5341
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
5158
5342
|
metadata_highlight_properties?: {
|
|
@@ -5229,15 +5413,24 @@ export default function useCanvas(): {
|
|
|
5229
5413
|
location_prompt_message?: string | undefined;
|
|
5230
5414
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
5231
5415
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
5416
|
+
enable_account_widgets?: boolean | undefined;
|
|
5232
5417
|
enable_folder_description_via_name?: boolean | undefined;
|
|
5233
5418
|
enable_download_original_file_in_impact?: boolean | undefined;
|
|
5234
5419
|
alternative_canvas_fullscreen?: boolean | undefined;
|
|
5420
|
+
enable_impact_web_presentation_browser_fullscreen?: boolean | undefined;
|
|
5421
|
+
default_presentation_fullscreen_mode?: FullscreenMode | undefined;
|
|
5235
5422
|
enable_presentation_annotations?: boolean | undefined;
|
|
5236
5423
|
max_files_limit?: number | undefined;
|
|
5237
5424
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5238
5425
|
meeting_bar_show_account_context?: "off" | "no-call-only" | "always" | undefined;
|
|
5239
5426
|
meeting_bar_allow_attendee_edit_on_existing_events?: boolean | undefined;
|
|
5240
5427
|
disable_postcall?: boolean | undefined;
|
|
5428
|
+
preserve_account_after_call_stop?: boolean | undefined;
|
|
5429
|
+
meeting_bar_show_meetings?: boolean | undefined;
|
|
5430
|
+
postcall_event_hooks?: {
|
|
5431
|
+
on_submit?: Record<string, string | number | boolean | null> | undefined;
|
|
5432
|
+
on_cancel?: Record<string, string | number | boolean | null> | undefined;
|
|
5433
|
+
} | undefined;
|
|
5241
5434
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5242
5435
|
slotty_ui_route_config?: {
|
|
5243
5436
|
name: string;
|
|
@@ -5325,6 +5518,14 @@ export default function useCanvas(): {
|
|
|
5325
5518
|
enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
5326
5519
|
scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
5327
5520
|
enable_wizard_preview_button?: boolean | undefined;
|
|
5521
|
+
enable_edit_opens_completion_wizard?: boolean | undefined;
|
|
5522
|
+
enable_react_completion_wizard?: boolean | undefined;
|
|
5523
|
+
enable_wizard_add_group?: boolean | undefined;
|
|
5524
|
+
enable_presentation_tools?: boolean | undefined;
|
|
5525
|
+
enable_hub_bottom_sheet?: boolean | undefined;
|
|
5526
|
+
presentation_tools_frameless?: boolean | undefined;
|
|
5527
|
+
enable_toc_open_by_default?: boolean | undefined;
|
|
5528
|
+
use_canvas_exit_confirmation?: boolean | undefined;
|
|
5328
5529
|
locks_polling_interval?: number | undefined;
|
|
5329
5530
|
shared_link?: {
|
|
5330
5531
|
title?: string | undefined;
|
|
@@ -5483,6 +5684,13 @@ export default function useCanvas(): {
|
|
|
5483
5684
|
dynamic_content_date_created_field?: string | undefined;
|
|
5484
5685
|
dynamic_content_date_modified_field?: string | undefined;
|
|
5485
5686
|
} | undefined;
|
|
5687
|
+
shared_link_brands?: {
|
|
5688
|
+
id: string;
|
|
5689
|
+
name?: string | undefined;
|
|
5690
|
+
subdomain?: string | undefined;
|
|
5691
|
+
slug?: string | undefined;
|
|
5692
|
+
is_default?: boolean | undefined;
|
|
5693
|
+
}[] | undefined;
|
|
5486
5694
|
allow_dsr_forwarding?: boolean | undefined;
|
|
5487
5695
|
allow_revoke_shared_link?: boolean | undefined;
|
|
5488
5696
|
enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
@@ -5519,6 +5727,7 @@ export default function useCanvas(): {
|
|
|
5519
5727
|
minimum_event_duration_in_call?: number | undefined;
|
|
5520
5728
|
enable_content_rating_in_call?: boolean | undefined;
|
|
5521
5729
|
enable_speaker_notes?: boolean | undefined;
|
|
5730
|
+
enable_account_only_meeting_notes?: boolean | undefined;
|
|
5522
5731
|
display_metadata_filters_in_modal?: boolean | undefined;
|
|
5523
5732
|
enable_js_api_recommended_files?: boolean | undefined;
|
|
5524
5733
|
metadata_highlight_properties?: {
|
|
@@ -5595,15 +5804,24 @@ export default function useCanvas(): {
|
|
|
5595
5804
|
location_prompt_message?: string | undefined;
|
|
5596
5805
|
use_collection_player_with_annotations?: boolean | undefined;
|
|
5597
5806
|
disable_core_canvas_metadata?: boolean | undefined;
|
|
5807
|
+
enable_account_widgets?: boolean | undefined;
|
|
5598
5808
|
enable_folder_description_via_name?: boolean | undefined;
|
|
5599
5809
|
enable_download_original_file_in_impact?: boolean | undefined;
|
|
5600
5810
|
alternative_canvas_fullscreen?: boolean | undefined;
|
|
5811
|
+
enable_impact_web_presentation_browser_fullscreen?: boolean | undefined;
|
|
5812
|
+
default_presentation_fullscreen_mode?: FullscreenMode | undefined;
|
|
5601
5813
|
enable_presentation_annotations?: boolean | undefined;
|
|
5602
5814
|
max_files_limit?: number | undefined;
|
|
5603
5815
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5604
5816
|
meeting_bar_show_account_context?: "off" | "no-call-only" | "always" | undefined;
|
|
5605
5817
|
meeting_bar_allow_attendee_edit_on_existing_events?: boolean | undefined;
|
|
5606
5818
|
disable_postcall?: boolean | undefined;
|
|
5819
|
+
preserve_account_after_call_stop?: boolean | undefined;
|
|
5820
|
+
meeting_bar_show_meetings?: boolean | undefined;
|
|
5821
|
+
postcall_event_hooks?: {
|
|
5822
|
+
on_submit?: Record<string, string | number | boolean | null> | undefined;
|
|
5823
|
+
on_cancel?: Record<string, string | number | boolean | null> | undefined;
|
|
5824
|
+
} | undefined;
|
|
5607
5825
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5608
5826
|
slotty_ui_route_config?: {
|
|
5609
5827
|
name: string;
|
|
@@ -5646,6 +5864,14 @@ export default function useCanvas(): {
|
|
|
5646
5864
|
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
5647
5865
|
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
5648
5866
|
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
5867
|
+
readonly enable_edit_opens_completion_wizard?: boolean | undefined;
|
|
5868
|
+
readonly enable_react_completion_wizard?: boolean | undefined;
|
|
5869
|
+
readonly enable_wizard_add_group?: boolean | undefined;
|
|
5870
|
+
readonly enable_presentation_tools?: boolean | undefined;
|
|
5871
|
+
readonly enable_hub_bottom_sheet?: boolean | undefined;
|
|
5872
|
+
readonly presentation_tools_frameless?: boolean | undefined;
|
|
5873
|
+
readonly enable_toc_open_by_default?: boolean | undefined;
|
|
5874
|
+
readonly use_canvas_exit_confirmation?: boolean | undefined;
|
|
5649
5875
|
readonly locks_polling_interval?: number | undefined;
|
|
5650
5876
|
readonly shared_link?: {
|
|
5651
5877
|
readonly title?: string | undefined;
|
|
@@ -5812,6 +6038,13 @@ export default function useCanvas(): {
|
|
|
5812
6038
|
readonly dynamic_content_date_created_field?: string | undefined;
|
|
5813
6039
|
readonly dynamic_content_date_modified_field?: string | undefined;
|
|
5814
6040
|
} | undefined;
|
|
6041
|
+
readonly shared_link_brands?: readonly {
|
|
6042
|
+
readonly id: string;
|
|
6043
|
+
readonly name?: string | undefined;
|
|
6044
|
+
readonly subdomain?: string | undefined;
|
|
6045
|
+
readonly slug?: string | undefined;
|
|
6046
|
+
readonly is_default?: boolean | undefined;
|
|
6047
|
+
}[] | undefined;
|
|
5815
6048
|
readonly allow_dsr_forwarding?: boolean | undefined;
|
|
5816
6049
|
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
5817
6050
|
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
@@ -5876,6 +6109,7 @@ export default function useCanvas(): {
|
|
|
5876
6109
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
5877
6110
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
5878
6111
|
readonly enable_speaker_notes?: boolean | undefined;
|
|
6112
|
+
readonly enable_account_only_meeting_notes?: boolean | undefined;
|
|
5879
6113
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
5880
6114
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
5881
6115
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -5952,15 +6186,28 @@ export default function useCanvas(): {
|
|
|
5952
6186
|
readonly location_prompt_message?: string | undefined;
|
|
5953
6187
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
5954
6188
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
6189
|
+
readonly enable_account_widgets?: boolean | undefined;
|
|
5955
6190
|
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
5956
6191
|
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
5957
6192
|
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
6193
|
+
readonly enable_impact_web_presentation_browser_fullscreen?: boolean | undefined;
|
|
6194
|
+
readonly default_presentation_fullscreen_mode?: FullscreenMode | undefined;
|
|
5958
6195
|
readonly enable_presentation_annotations?: boolean | undefined;
|
|
5959
6196
|
readonly max_files_limit?: number | undefined;
|
|
5960
6197
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5961
6198
|
readonly meeting_bar_show_account_context?: "off" | "no-call-only" | "always" | undefined;
|
|
5962
6199
|
readonly meeting_bar_allow_attendee_edit_on_existing_events?: boolean | undefined;
|
|
5963
6200
|
readonly disable_postcall?: boolean | undefined;
|
|
6201
|
+
readonly preserve_account_after_call_stop?: boolean | undefined;
|
|
6202
|
+
readonly meeting_bar_show_meetings?: boolean | undefined;
|
|
6203
|
+
readonly postcall_event_hooks?: {
|
|
6204
|
+
readonly on_submit?: {
|
|
6205
|
+
readonly [x: string]: string | number | boolean | null;
|
|
6206
|
+
} | undefined;
|
|
6207
|
+
readonly on_cancel?: {
|
|
6208
|
+
readonly [x: string]: string | number | boolean | null;
|
|
6209
|
+
} | undefined;
|
|
6210
|
+
} | undefined;
|
|
5964
6211
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5965
6212
|
readonly slotty_ui_route_config?: readonly {
|
|
5966
6213
|
readonly name: string;
|
|
@@ -6002,6 +6249,14 @@ export default function useCanvas(): {
|
|
|
6002
6249
|
readonly enable_read_only_canvas_creation_account?: boolean | undefined;
|
|
6003
6250
|
readonly scribble_file_renderer?: "image" | "pdfjs" | "pspdfkit" | undefined;
|
|
6004
6251
|
readonly enable_wizard_preview_button?: boolean | undefined;
|
|
6252
|
+
readonly enable_edit_opens_completion_wizard?: boolean | undefined;
|
|
6253
|
+
readonly enable_react_completion_wizard?: boolean | undefined;
|
|
6254
|
+
readonly enable_wizard_add_group?: boolean | undefined;
|
|
6255
|
+
readonly enable_presentation_tools?: boolean | undefined;
|
|
6256
|
+
readonly enable_hub_bottom_sheet?: boolean | undefined;
|
|
6257
|
+
readonly presentation_tools_frameless?: boolean | undefined;
|
|
6258
|
+
readonly enable_toc_open_by_default?: boolean | undefined;
|
|
6259
|
+
readonly use_canvas_exit_confirmation?: boolean | undefined;
|
|
6005
6260
|
readonly locks_polling_interval?: number | undefined;
|
|
6006
6261
|
readonly shared_link?: {
|
|
6007
6262
|
readonly title?: string | undefined;
|
|
@@ -6168,6 +6423,13 @@ export default function useCanvas(): {
|
|
|
6168
6423
|
readonly dynamic_content_date_created_field?: string | undefined;
|
|
6169
6424
|
readonly dynamic_content_date_modified_field?: string | undefined;
|
|
6170
6425
|
} | undefined;
|
|
6426
|
+
readonly shared_link_brands?: readonly {
|
|
6427
|
+
readonly id: string;
|
|
6428
|
+
readonly name?: string | undefined;
|
|
6429
|
+
readonly subdomain?: string | undefined;
|
|
6430
|
+
readonly slug?: string | undefined;
|
|
6431
|
+
readonly is_default?: boolean | undefined;
|
|
6432
|
+
}[] | undefined;
|
|
6171
6433
|
readonly allow_dsr_forwarding?: boolean | undefined;
|
|
6172
6434
|
readonly allow_revoke_shared_link?: boolean | undefined;
|
|
6173
6435
|
readonly enable_slotty_ui_asset_manager?: boolean | undefined;
|
|
@@ -6232,6 +6494,7 @@ export default function useCanvas(): {
|
|
|
6232
6494
|
readonly minimum_event_duration_in_call?: number | undefined;
|
|
6233
6495
|
readonly enable_content_rating_in_call?: boolean | undefined;
|
|
6234
6496
|
readonly enable_speaker_notes?: boolean | undefined;
|
|
6497
|
+
readonly enable_account_only_meeting_notes?: boolean | undefined;
|
|
6235
6498
|
readonly display_metadata_filters_in_modal?: boolean | undefined;
|
|
6236
6499
|
readonly enable_js_api_recommended_files?: boolean | undefined;
|
|
6237
6500
|
readonly metadata_highlight_properties?: readonly {
|
|
@@ -6308,15 +6571,28 @@ export default function useCanvas(): {
|
|
|
6308
6571
|
readonly location_prompt_message?: string | undefined;
|
|
6309
6572
|
readonly use_collection_player_with_annotations?: boolean | undefined;
|
|
6310
6573
|
readonly disable_core_canvas_metadata?: boolean | undefined;
|
|
6574
|
+
readonly enable_account_widgets?: boolean | undefined;
|
|
6311
6575
|
readonly enable_folder_description_via_name?: boolean | undefined;
|
|
6312
6576
|
readonly enable_download_original_file_in_impact?: boolean | undefined;
|
|
6313
6577
|
readonly alternative_canvas_fullscreen?: boolean | undefined;
|
|
6578
|
+
readonly enable_impact_web_presentation_browser_fullscreen?: boolean | undefined;
|
|
6579
|
+
readonly default_presentation_fullscreen_mode?: FullscreenMode | undefined;
|
|
6314
6580
|
readonly enable_presentation_annotations?: boolean | undefined;
|
|
6315
6581
|
readonly max_files_limit?: number | undefined;
|
|
6316
6582
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
6317
6583
|
readonly meeting_bar_show_account_context?: "off" | "no-call-only" | "always" | undefined;
|
|
6318
6584
|
readonly meeting_bar_allow_attendee_edit_on_existing_events?: boolean | undefined;
|
|
6319
6585
|
readonly disable_postcall?: boolean | undefined;
|
|
6586
|
+
readonly preserve_account_after_call_stop?: boolean | undefined;
|
|
6587
|
+
readonly meeting_bar_show_meetings?: boolean | undefined;
|
|
6588
|
+
readonly postcall_event_hooks?: {
|
|
6589
|
+
readonly on_submit?: {
|
|
6590
|
+
readonly [x: string]: string | number | boolean | null;
|
|
6591
|
+
} | undefined;
|
|
6592
|
+
readonly on_cancel?: {
|
|
6593
|
+
readonly [x: string]: string | number | boolean | null;
|
|
6594
|
+
} | undefined;
|
|
6595
|
+
} | undefined;
|
|
6320
6596
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
6321
6597
|
readonly slotty_ui_route_config?: readonly {
|
|
6322
6598
|
readonly name: string;
|