@pitcher/js-api 1.22.0 → 1.23.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 +52 -43
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +9 -9
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/browser/stores/api.d.ts +0 -12
- package/lib/apps/canvas-builder/App.vue.d.ts +256 -177
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/composables/tracking.use.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/utils/type.util.d.ts +4 -4
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +3 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +570 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +837 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +126 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +9 -5
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +23 -4
- package/lib/apps/canvas-builder/types/canvas.d.ts +40 -4
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +6 -2
- package/lib/apps/canvas-selector/stores/app.d.ts +14 -0
- package/lib/apps/content-selector/appTypes.d.ts +2 -0
- package/lib/apps/content-selector/stores/app.d.ts +1 -0
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +7 -3
- package/lib/components/CConfigEditor/CConfigEditor.validators.d.ts +3 -1
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +3 -0
- package/lib/components/{CCreateTemplateOrSectionModal/CCreateTemplateOrSectionModal.vue.d.ts → CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts} +2 -1
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +4 -0
- package/lib/components/CFilePanel/CFilePanel.use.d.ts +12 -0
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +14 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +196 -6
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +6 -4
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbMetadata.pdf.use.d.ts +8 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +2 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +4 -2
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +5 -4
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +13 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +26 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +15 -0
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -2
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +5 -1
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +10 -0
- package/lib/components/CRichTextEditor/components/CInsertDropdown.vue.d.ts +2 -0
- package/lib/components/CRichTextEditor/extensions/contentLink.d.ts +22 -0
- package/lib/components/CSearch/CSearch.vue.d.ts +2 -0
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +28 -0
- package/lib/components/CTableInput/CTableInput.vue.d.ts +2 -0
- package/lib/components/CTags/CTags.vue.d.ts +1 -0
- package/lib/components/CVideo/CVideo.types.d.ts +7 -0
- package/lib/components/CVideo/CVideo.vue.d.ts +3 -7
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +253 -0
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +32 -0
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +60 -0
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +7 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +9 -12
- package/lib/constants/cdp.const.d.ts +1 -0
- package/lib/main.lib.d.ts +4 -1
- package/lib/sdk/api/HighLevelApi.d.ts +5 -0
- package/lib/sdk/api/modules/canvas.d.ts +26 -1
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +10 -0
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/post-call.ui.d.ts +1 -1
- package/lib/sdk/api/modules/ui/types.ui.d.ts +1 -0
- package/lib/sdk/main.d.ts +18 -0
- package/lib/types/app.d.ts +1 -1
- package/lib/types/canvases.d.ts +10 -1
- package/lib/types/file.types.d.ts +15 -0
- package/lib/types/launchDarkly.types.d.ts +3 -1
- package/lib/types/organizationSettings.types.d.ts +8 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +1 -0
- 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/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/PatchedCanvasIndicatorsRequest.d.ts +3 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +1 -0
- package/lib/apps/browser/components/Content/Panel/FilePanel/FilePanel.vue.d.ts +0 -2
- /package/lib/apps/canvas-builder/components/ui/CollectionPlayer/components/{PreviewImage.vue.d.ts → MainImage.vue.d.ts} +0 -0
- /package/lib/apps/canvas-builder/components/ui/CollectionPlayer/composables/{cache.use.d.ts → image-cache.use.d.ts} +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/BasicInfo.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Details.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Metadata.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Tags.vue.d.ts +0 -0
- /package/lib/components/CFileViewer/pdf/{CFileViewer.pageFavorite.pdf.use.d.ts → CFileViewer.pageThumbFavorite.pdf.use.d.ts} +0 -0
|
@@ -48,6 +48,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
48
48
|
readonly type: "image" | "video";
|
|
49
49
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
50
50
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
51
|
+
readonly poster_url?: string | undefined;
|
|
51
52
|
} | {
|
|
52
53
|
readonly asset_type: "pitcher_asset";
|
|
53
54
|
readonly file: {
|
|
@@ -57,6 +58,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
57
58
|
};
|
|
58
59
|
readonly type: "image" | "video";
|
|
59
60
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
61
|
+
readonly poster_url?: string | undefined;
|
|
60
62
|
} | {
|
|
61
63
|
readonly type: "app";
|
|
62
64
|
readonly app_name: string;
|
|
@@ -81,6 +83,9 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
81
83
|
readonly overlay_app?: {
|
|
82
84
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
83
85
|
} | undefined;
|
|
86
|
+
readonly canvas_section_execution?: {
|
|
87
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
88
|
+
} | undefined;
|
|
84
89
|
} | undefined;
|
|
85
90
|
readonly file: {
|
|
86
91
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -173,6 +178,62 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
173
178
|
readonly canvas_anchor?: string | undefined;
|
|
174
179
|
readonly color?: string | undefined;
|
|
175
180
|
readonly display_text?: string | undefined;
|
|
181
|
+
readonly file?: {
|
|
182
|
+
readonly id?: string | undefined;
|
|
183
|
+
readonly global_id?: string | undefined;
|
|
184
|
+
readonly name?: string | undefined;
|
|
185
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
186
|
+
readonly size?: number | null | undefined;
|
|
187
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
188
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
189
|
+
readonly content_extension?: string | null | undefined;
|
|
190
|
+
readonly content_length?: number | null | undefined;
|
|
191
|
+
readonly content_url?: string | null | undefined;
|
|
192
|
+
readonly original_extension?: string | null | undefined;
|
|
193
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
194
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
195
|
+
readonly zip_size?: number | null | undefined;
|
|
196
|
+
readonly zip_url?: string | null | undefined;
|
|
197
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
198
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
199
|
+
readonly permissions?: {
|
|
200
|
+
readonly can_download?: boolean | undefined;
|
|
201
|
+
readonly can_share?: boolean | undefined;
|
|
202
|
+
} | undefined;
|
|
203
|
+
readonly metadata?: {
|
|
204
|
+
readonly [x: string]: any;
|
|
205
|
+
} | undefined;
|
|
206
|
+
readonly app_metadata?: {
|
|
207
|
+
readonly [x: string]: any;
|
|
208
|
+
} | undefined;
|
|
209
|
+
readonly tags?: readonly string[] | undefined;
|
|
210
|
+
readonly published_at?: string | null | undefined;
|
|
211
|
+
readonly expires_at?: (string | null) | undefined;
|
|
212
|
+
readonly instance_id?: string | undefined;
|
|
213
|
+
readonly folder_id?: string | undefined;
|
|
214
|
+
readonly shared_link?: {
|
|
215
|
+
readonly url: string;
|
|
216
|
+
readonly short_url?: (string | null) | undefined;
|
|
217
|
+
} | undefined;
|
|
218
|
+
readonly owned_by?: {
|
|
219
|
+
readonly id: number;
|
|
220
|
+
readonly name: string;
|
|
221
|
+
readonly email?: string | undefined;
|
|
222
|
+
} | undefined;
|
|
223
|
+
readonly created_at?: string | undefined;
|
|
224
|
+
readonly created_by?: {
|
|
225
|
+
readonly id: number;
|
|
226
|
+
readonly name: string;
|
|
227
|
+
readonly email?: string | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
readonly modified_at?: string | undefined;
|
|
230
|
+
readonly modified_by?: {
|
|
231
|
+
readonly id: number;
|
|
232
|
+
readonly name: string;
|
|
233
|
+
readonly email?: string | undefined;
|
|
234
|
+
} | undefined;
|
|
235
|
+
readonly page_index?: number | undefined;
|
|
236
|
+
} | null | undefined;
|
|
176
237
|
readonly font_family?: string | undefined;
|
|
177
238
|
readonly font_size?: number | undefined;
|
|
178
239
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -217,7 +278,12 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
217
278
|
readonly id: string;
|
|
218
279
|
readonly type: "slide";
|
|
219
280
|
readonly file: {
|
|
281
|
+
readonly metadata?: {
|
|
282
|
+
readonly [x: string]: any;
|
|
283
|
+
} | undefined;
|
|
220
284
|
readonly id: string;
|
|
285
|
+
readonly name?: string | undefined;
|
|
286
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
221
287
|
readonly content_url: string | null;
|
|
222
288
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
223
289
|
readonly thumbnail_url: string | null;
|
|
@@ -239,7 +305,12 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
239
305
|
readonly id: string;
|
|
240
306
|
readonly type: "file";
|
|
241
307
|
readonly file: {
|
|
308
|
+
readonly metadata?: {
|
|
309
|
+
readonly [x: string]: any;
|
|
310
|
+
} | undefined;
|
|
242
311
|
readonly id: string;
|
|
312
|
+
readonly name?: string | undefined;
|
|
313
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
243
314
|
readonly content_url: string | null;
|
|
244
315
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
245
316
|
readonly thumbnail_url: string | null;
|
|
@@ -314,6 +385,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
314
385
|
readonly type: "image" | "video";
|
|
315
386
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
316
387
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
388
|
+
readonly poster_url?: string | undefined;
|
|
317
389
|
} | {
|
|
318
390
|
readonly asset_type: "pitcher_asset";
|
|
319
391
|
readonly file: {
|
|
@@ -323,6 +395,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
323
395
|
};
|
|
324
396
|
readonly type: "image" | "video";
|
|
325
397
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
398
|
+
readonly poster_url?: string | undefined;
|
|
326
399
|
} | {
|
|
327
400
|
readonly type: "app";
|
|
328
401
|
readonly app_name: string;
|
|
@@ -347,6 +420,9 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
347
420
|
readonly overlay_app?: {
|
|
348
421
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
349
422
|
} | undefined;
|
|
423
|
+
readonly canvas_section_execution?: {
|
|
424
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
425
|
+
} | undefined;
|
|
350
426
|
} | undefined;
|
|
351
427
|
readonly file: {
|
|
352
428
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -439,6 +515,62 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
439
515
|
readonly canvas_anchor?: string | undefined;
|
|
440
516
|
readonly color?: string | undefined;
|
|
441
517
|
readonly display_text?: string | undefined;
|
|
518
|
+
readonly file?: {
|
|
519
|
+
readonly id?: string | undefined;
|
|
520
|
+
readonly global_id?: string | undefined;
|
|
521
|
+
readonly name?: string | undefined;
|
|
522
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
523
|
+
readonly size?: number | null | undefined;
|
|
524
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
525
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
526
|
+
readonly content_extension?: string | null | undefined;
|
|
527
|
+
readonly content_length?: number | null | undefined;
|
|
528
|
+
readonly content_url?: string | null | undefined;
|
|
529
|
+
readonly original_extension?: string | null | undefined;
|
|
530
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
531
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
532
|
+
readonly zip_size?: number | null | undefined;
|
|
533
|
+
readonly zip_url?: string | null | undefined;
|
|
534
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
535
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
536
|
+
readonly permissions?: {
|
|
537
|
+
readonly can_download?: boolean | undefined;
|
|
538
|
+
readonly can_share?: boolean | undefined;
|
|
539
|
+
} | undefined;
|
|
540
|
+
readonly metadata?: {
|
|
541
|
+
readonly [x: string]: any;
|
|
542
|
+
} | undefined;
|
|
543
|
+
readonly app_metadata?: {
|
|
544
|
+
readonly [x: string]: any;
|
|
545
|
+
} | undefined;
|
|
546
|
+
readonly tags?: readonly string[] | undefined;
|
|
547
|
+
readonly published_at?: string | null | undefined;
|
|
548
|
+
readonly expires_at?: (string | null) | undefined;
|
|
549
|
+
readonly instance_id?: string | undefined;
|
|
550
|
+
readonly folder_id?: string | undefined;
|
|
551
|
+
readonly shared_link?: {
|
|
552
|
+
readonly url: string;
|
|
553
|
+
readonly short_url?: (string | null) | undefined;
|
|
554
|
+
} | undefined;
|
|
555
|
+
readonly owned_by?: {
|
|
556
|
+
readonly id: number;
|
|
557
|
+
readonly name: string;
|
|
558
|
+
readonly email?: string | undefined;
|
|
559
|
+
} | undefined;
|
|
560
|
+
readonly created_at?: string | undefined;
|
|
561
|
+
readonly created_by?: {
|
|
562
|
+
readonly id: number;
|
|
563
|
+
readonly name: string;
|
|
564
|
+
readonly email?: string | undefined;
|
|
565
|
+
} | undefined;
|
|
566
|
+
readonly modified_at?: string | undefined;
|
|
567
|
+
readonly modified_by?: {
|
|
568
|
+
readonly id: number;
|
|
569
|
+
readonly name: string;
|
|
570
|
+
readonly email?: string | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
readonly page_index?: number | undefined;
|
|
573
|
+
} | null | undefined;
|
|
442
574
|
readonly font_family?: string | undefined;
|
|
443
575
|
readonly font_size?: number | undefined;
|
|
444
576
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -483,7 +615,12 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
483
615
|
readonly id: string;
|
|
484
616
|
readonly type: "slide";
|
|
485
617
|
readonly file: {
|
|
618
|
+
readonly metadata?: {
|
|
619
|
+
readonly [x: string]: any;
|
|
620
|
+
} | undefined;
|
|
486
621
|
readonly id: string;
|
|
622
|
+
readonly name?: string | undefined;
|
|
623
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
487
624
|
readonly content_url: string | null;
|
|
488
625
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
489
626
|
readonly thumbnail_url: string | null;
|
|
@@ -505,7 +642,12 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
505
642
|
readonly id: string;
|
|
506
643
|
readonly type: "file";
|
|
507
644
|
readonly file: {
|
|
645
|
+
readonly metadata?: {
|
|
646
|
+
readonly [x: string]: any;
|
|
647
|
+
} | undefined;
|
|
508
648
|
readonly id: string;
|
|
649
|
+
readonly name?: string | undefined;
|
|
650
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
509
651
|
readonly content_url: string | null;
|
|
510
652
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
511
653
|
readonly thumbnail_url: string | null;
|
|
@@ -551,6 +693,7 @@ export default function useCanvas(): {
|
|
|
551
693
|
is_draft?: boolean | undefined;
|
|
552
694
|
is_template?: boolean | undefined;
|
|
553
695
|
is_section?: boolean | undefined;
|
|
696
|
+
is_block?: boolean | undefined;
|
|
554
697
|
is_editable?: boolean | undefined;
|
|
555
698
|
is_default?: boolean | undefined;
|
|
556
699
|
metadata?: Record<string, any> | undefined;
|
|
@@ -611,6 +754,7 @@ export default function useCanvas(): {
|
|
|
611
754
|
is_draft?: boolean | undefined;
|
|
612
755
|
is_template?: boolean | undefined;
|
|
613
756
|
is_section?: boolean | undefined;
|
|
757
|
+
is_block?: boolean | undefined;
|
|
614
758
|
is_editable?: boolean | undefined;
|
|
615
759
|
is_default?: boolean | undefined;
|
|
616
760
|
metadata?: Record<string, any> | undefined;
|
|
@@ -712,6 +856,7 @@ export default function useCanvas(): {
|
|
|
712
856
|
readonly type: "image" | "video";
|
|
713
857
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
714
858
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
859
|
+
readonly poster_url?: string | undefined;
|
|
715
860
|
} | {
|
|
716
861
|
readonly asset_type: "pitcher_asset";
|
|
717
862
|
readonly file: {
|
|
@@ -721,6 +866,7 @@ export default function useCanvas(): {
|
|
|
721
866
|
};
|
|
722
867
|
readonly type: "image" | "video";
|
|
723
868
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
869
|
+
readonly poster_url?: string | undefined;
|
|
724
870
|
} | {
|
|
725
871
|
readonly type: "app";
|
|
726
872
|
readonly app_name: string;
|
|
@@ -745,6 +891,9 @@ export default function useCanvas(): {
|
|
|
745
891
|
readonly overlay_app?: {
|
|
746
892
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
747
893
|
} | undefined;
|
|
894
|
+
readonly canvas_section_execution?: {
|
|
895
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
896
|
+
} | undefined;
|
|
748
897
|
} | undefined;
|
|
749
898
|
readonly file: {
|
|
750
899
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -837,6 +986,62 @@ export default function useCanvas(): {
|
|
|
837
986
|
readonly canvas_anchor?: string | undefined;
|
|
838
987
|
readonly color?: string | undefined;
|
|
839
988
|
readonly display_text?: string | undefined;
|
|
989
|
+
readonly file?: {
|
|
990
|
+
readonly id?: string | undefined;
|
|
991
|
+
readonly global_id?: string | undefined;
|
|
992
|
+
readonly name?: string | undefined;
|
|
993
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
994
|
+
readonly size?: number | null | undefined;
|
|
995
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
996
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
997
|
+
readonly content_extension?: string | null | undefined;
|
|
998
|
+
readonly content_length?: number | null | undefined;
|
|
999
|
+
readonly content_url?: string | null | undefined;
|
|
1000
|
+
readonly original_extension?: string | null | undefined;
|
|
1001
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
1002
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1003
|
+
readonly zip_size?: number | null | undefined;
|
|
1004
|
+
readonly zip_url?: string | null | undefined;
|
|
1005
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
1006
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
1007
|
+
readonly permissions?: {
|
|
1008
|
+
readonly can_download?: boolean | undefined;
|
|
1009
|
+
readonly can_share?: boolean | undefined;
|
|
1010
|
+
} | undefined;
|
|
1011
|
+
readonly metadata?: {
|
|
1012
|
+
readonly [x: string]: any;
|
|
1013
|
+
} | undefined;
|
|
1014
|
+
readonly app_metadata?: {
|
|
1015
|
+
readonly [x: string]: any;
|
|
1016
|
+
} | undefined;
|
|
1017
|
+
readonly tags?: readonly string[] | undefined;
|
|
1018
|
+
readonly published_at?: string | null | undefined;
|
|
1019
|
+
readonly expires_at?: (string | null) | undefined;
|
|
1020
|
+
readonly instance_id?: string | undefined;
|
|
1021
|
+
readonly folder_id?: string | undefined;
|
|
1022
|
+
readonly shared_link?: {
|
|
1023
|
+
readonly url: string;
|
|
1024
|
+
readonly short_url?: (string | null) | undefined;
|
|
1025
|
+
} | undefined;
|
|
1026
|
+
readonly owned_by?: {
|
|
1027
|
+
readonly id: number;
|
|
1028
|
+
readonly name: string;
|
|
1029
|
+
readonly email?: string | undefined;
|
|
1030
|
+
} | undefined;
|
|
1031
|
+
readonly created_at?: string | undefined;
|
|
1032
|
+
readonly created_by?: {
|
|
1033
|
+
readonly id: number;
|
|
1034
|
+
readonly name: string;
|
|
1035
|
+
readonly email?: string | undefined;
|
|
1036
|
+
} | undefined;
|
|
1037
|
+
readonly modified_at?: string | undefined;
|
|
1038
|
+
readonly modified_by?: {
|
|
1039
|
+
readonly id: number;
|
|
1040
|
+
readonly name: string;
|
|
1041
|
+
readonly email?: string | undefined;
|
|
1042
|
+
} | undefined;
|
|
1043
|
+
readonly page_index?: number | undefined;
|
|
1044
|
+
} | null | undefined;
|
|
840
1045
|
readonly font_family?: string | undefined;
|
|
841
1046
|
readonly font_size?: number | undefined;
|
|
842
1047
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -881,7 +1086,12 @@ export default function useCanvas(): {
|
|
|
881
1086
|
readonly id: string;
|
|
882
1087
|
readonly type: "slide";
|
|
883
1088
|
readonly file: {
|
|
1089
|
+
readonly metadata?: {
|
|
1090
|
+
readonly [x: string]: any;
|
|
1091
|
+
} | undefined;
|
|
884
1092
|
readonly id: string;
|
|
1093
|
+
readonly name?: string | undefined;
|
|
1094
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
885
1095
|
readonly content_url: string | null;
|
|
886
1096
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
887
1097
|
readonly thumbnail_url: string | null;
|
|
@@ -903,7 +1113,12 @@ export default function useCanvas(): {
|
|
|
903
1113
|
readonly id: string;
|
|
904
1114
|
readonly type: "file";
|
|
905
1115
|
readonly file: {
|
|
1116
|
+
readonly metadata?: {
|
|
1117
|
+
readonly [x: string]: any;
|
|
1118
|
+
} | undefined;
|
|
906
1119
|
readonly id: string;
|
|
1120
|
+
readonly name?: string | undefined;
|
|
1121
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
907
1122
|
readonly content_url: string | null;
|
|
908
1123
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
909
1124
|
readonly thumbnail_url: string | null;
|
|
@@ -987,6 +1202,7 @@ export default function useCanvas(): {
|
|
|
987
1202
|
readonly type: "image" | "video";
|
|
988
1203
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
989
1204
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
1205
|
+
readonly poster_url?: string | undefined;
|
|
990
1206
|
} | {
|
|
991
1207
|
readonly asset_type: "pitcher_asset";
|
|
992
1208
|
readonly file: {
|
|
@@ -996,6 +1212,7 @@ export default function useCanvas(): {
|
|
|
996
1212
|
};
|
|
997
1213
|
readonly type: "image" | "video";
|
|
998
1214
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1215
|
+
readonly poster_url?: string | undefined;
|
|
999
1216
|
} | {
|
|
1000
1217
|
readonly type: "app";
|
|
1001
1218
|
readonly app_name: string;
|
|
@@ -1020,6 +1237,9 @@ export default function useCanvas(): {
|
|
|
1020
1237
|
readonly overlay_app?: {
|
|
1021
1238
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1022
1239
|
} | undefined;
|
|
1240
|
+
readonly canvas_section_execution?: {
|
|
1241
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
1242
|
+
} | undefined;
|
|
1023
1243
|
} | undefined;
|
|
1024
1244
|
readonly file: {
|
|
1025
1245
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -1112,6 +1332,62 @@ export default function useCanvas(): {
|
|
|
1112
1332
|
readonly canvas_anchor?: string | undefined;
|
|
1113
1333
|
readonly color?: string | undefined;
|
|
1114
1334
|
readonly display_text?: string | undefined;
|
|
1335
|
+
readonly file?: {
|
|
1336
|
+
readonly id?: string | undefined;
|
|
1337
|
+
readonly global_id?: string | undefined;
|
|
1338
|
+
readonly name?: string | undefined;
|
|
1339
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
1340
|
+
readonly size?: number | null | undefined;
|
|
1341
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
1342
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
1343
|
+
readonly content_extension?: string | null | undefined;
|
|
1344
|
+
readonly content_length?: number | null | undefined;
|
|
1345
|
+
readonly content_url?: string | null | undefined;
|
|
1346
|
+
readonly original_extension?: string | null | undefined;
|
|
1347
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
1348
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1349
|
+
readonly zip_size?: number | null | undefined;
|
|
1350
|
+
readonly zip_url?: string | null | undefined;
|
|
1351
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
1352
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
1353
|
+
readonly permissions?: {
|
|
1354
|
+
readonly can_download?: boolean | undefined;
|
|
1355
|
+
readonly can_share?: boolean | undefined;
|
|
1356
|
+
} | undefined;
|
|
1357
|
+
readonly metadata?: {
|
|
1358
|
+
readonly [x: string]: any;
|
|
1359
|
+
} | undefined;
|
|
1360
|
+
readonly app_metadata?: {
|
|
1361
|
+
readonly [x: string]: any;
|
|
1362
|
+
} | undefined;
|
|
1363
|
+
readonly tags?: readonly string[] | undefined;
|
|
1364
|
+
readonly published_at?: string | null | undefined;
|
|
1365
|
+
readonly expires_at?: (string | null) | undefined;
|
|
1366
|
+
readonly instance_id?: string | undefined;
|
|
1367
|
+
readonly folder_id?: string | undefined;
|
|
1368
|
+
readonly shared_link?: {
|
|
1369
|
+
readonly url: string;
|
|
1370
|
+
readonly short_url?: (string | null) | undefined;
|
|
1371
|
+
} | undefined;
|
|
1372
|
+
readonly owned_by?: {
|
|
1373
|
+
readonly id: number;
|
|
1374
|
+
readonly name: string;
|
|
1375
|
+
readonly email?: string | undefined;
|
|
1376
|
+
} | undefined;
|
|
1377
|
+
readonly created_at?: string | undefined;
|
|
1378
|
+
readonly created_by?: {
|
|
1379
|
+
readonly id: number;
|
|
1380
|
+
readonly name: string;
|
|
1381
|
+
readonly email?: string | undefined;
|
|
1382
|
+
} | undefined;
|
|
1383
|
+
readonly modified_at?: string | undefined;
|
|
1384
|
+
readonly modified_by?: {
|
|
1385
|
+
readonly id: number;
|
|
1386
|
+
readonly name: string;
|
|
1387
|
+
readonly email?: string | undefined;
|
|
1388
|
+
} | undefined;
|
|
1389
|
+
readonly page_index?: number | undefined;
|
|
1390
|
+
} | null | undefined;
|
|
1115
1391
|
readonly font_family?: string | undefined;
|
|
1116
1392
|
readonly font_size?: number | undefined;
|
|
1117
1393
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -1156,7 +1432,12 @@ export default function useCanvas(): {
|
|
|
1156
1432
|
readonly id: string;
|
|
1157
1433
|
readonly type: "slide";
|
|
1158
1434
|
readonly file: {
|
|
1435
|
+
readonly metadata?: {
|
|
1436
|
+
readonly [x: string]: any;
|
|
1437
|
+
} | undefined;
|
|
1159
1438
|
readonly id: string;
|
|
1439
|
+
readonly name?: string | undefined;
|
|
1440
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1160
1441
|
readonly content_url: string | null;
|
|
1161
1442
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1162
1443
|
readonly thumbnail_url: string | null;
|
|
@@ -1178,7 +1459,12 @@ export default function useCanvas(): {
|
|
|
1178
1459
|
readonly id: string;
|
|
1179
1460
|
readonly type: "file";
|
|
1180
1461
|
readonly file: {
|
|
1462
|
+
readonly metadata?: {
|
|
1463
|
+
readonly [x: string]: any;
|
|
1464
|
+
} | undefined;
|
|
1181
1465
|
readonly id: string;
|
|
1466
|
+
readonly name?: string | undefined;
|
|
1467
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1182
1468
|
readonly content_url: string | null;
|
|
1183
1469
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1184
1470
|
readonly thumbnail_url: string | null;
|
|
@@ -1258,6 +1544,7 @@ export default function useCanvas(): {
|
|
|
1258
1544
|
type: "image" | "video";
|
|
1259
1545
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1260
1546
|
from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
1547
|
+
poster_url?: string | undefined;
|
|
1261
1548
|
} | {
|
|
1262
1549
|
asset_type: "pitcher_asset";
|
|
1263
1550
|
file: {
|
|
@@ -1267,6 +1554,7 @@ export default function useCanvas(): {
|
|
|
1267
1554
|
};
|
|
1268
1555
|
type: "image" | "video";
|
|
1269
1556
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1557
|
+
poster_url?: string | undefined;
|
|
1270
1558
|
} | {
|
|
1271
1559
|
type: "app";
|
|
1272
1560
|
app_name: string;
|
|
@@ -1291,6 +1579,9 @@ export default function useCanvas(): {
|
|
|
1291
1579
|
overlay_app?: {
|
|
1292
1580
|
start_in_loading_mode?: boolean | undefined;
|
|
1293
1581
|
} | undefined;
|
|
1582
|
+
canvas_section_execution?: {
|
|
1583
|
+
start_in_loading_mode?: boolean | undefined;
|
|
1584
|
+
} | undefined;
|
|
1294
1585
|
} | undefined;
|
|
1295
1586
|
file: {
|
|
1296
1587
|
id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -1375,6 +1666,58 @@ export default function useCanvas(): {
|
|
|
1375
1666
|
canvas_anchor?: string | undefined;
|
|
1376
1667
|
color?: string | undefined;
|
|
1377
1668
|
display_text?: string | undefined;
|
|
1669
|
+
file?: {
|
|
1670
|
+
readonly id?: string | undefined;
|
|
1671
|
+
readonly global_id?: string | undefined;
|
|
1672
|
+
name?: string | undefined;
|
|
1673
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
1674
|
+
readonly size?: number | null | undefined;
|
|
1675
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
1676
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
1677
|
+
readonly content_extension?: string | null | undefined;
|
|
1678
|
+
readonly content_length?: number | null | undefined;
|
|
1679
|
+
readonly content_url?: string | null | undefined;
|
|
1680
|
+
readonly original_extension?: string | null | undefined;
|
|
1681
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
1682
|
+
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1683
|
+
readonly zip_size?: number | null | undefined;
|
|
1684
|
+
readonly zip_url?: string | null | undefined;
|
|
1685
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
1686
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
1687
|
+
permissions?: {
|
|
1688
|
+
can_download?: boolean | undefined;
|
|
1689
|
+
can_share?: boolean | undefined;
|
|
1690
|
+
} | undefined;
|
|
1691
|
+
metadata?: Record<string, any> | undefined;
|
|
1692
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1693
|
+
tags?: Array<string> | undefined;
|
|
1694
|
+
readonly published_at?: string | null | undefined;
|
|
1695
|
+
expires_at?: (string | null) | undefined;
|
|
1696
|
+
readonly instance_id?: string | undefined;
|
|
1697
|
+
folder_id?: string | undefined;
|
|
1698
|
+
readonly shared_link?: {
|
|
1699
|
+
readonly url: string;
|
|
1700
|
+
short_url?: (string | null) | undefined;
|
|
1701
|
+
} | undefined;
|
|
1702
|
+
readonly owned_by?: {
|
|
1703
|
+
readonly id: number;
|
|
1704
|
+
readonly name: string;
|
|
1705
|
+
email?: string | undefined;
|
|
1706
|
+
} | undefined;
|
|
1707
|
+
readonly created_at?: string | undefined;
|
|
1708
|
+
readonly created_by?: {
|
|
1709
|
+
readonly id: number;
|
|
1710
|
+
readonly name: string;
|
|
1711
|
+
email?: string | undefined;
|
|
1712
|
+
} | undefined;
|
|
1713
|
+
readonly modified_at?: string | undefined;
|
|
1714
|
+
readonly modified_by?: {
|
|
1715
|
+
readonly id: number;
|
|
1716
|
+
readonly name: string;
|
|
1717
|
+
email?: string | undefined;
|
|
1718
|
+
} | undefined;
|
|
1719
|
+
page_index?: number | undefined;
|
|
1720
|
+
} | null | undefined;
|
|
1378
1721
|
font_family?: string | undefined;
|
|
1379
1722
|
font_size?: number | undefined;
|
|
1380
1723
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -1407,7 +1750,10 @@ export default function useCanvas(): {
|
|
|
1407
1750
|
id: string;
|
|
1408
1751
|
type: "slide";
|
|
1409
1752
|
file: {
|
|
1753
|
+
metadata?: Record<string, any> | undefined;
|
|
1410
1754
|
readonly id: string;
|
|
1755
|
+
name?: string | undefined;
|
|
1756
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1411
1757
|
readonly content_url: string | null;
|
|
1412
1758
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1413
1759
|
readonly thumbnail_url: string | null;
|
|
@@ -1427,7 +1773,10 @@ export default function useCanvas(): {
|
|
|
1427
1773
|
id: string;
|
|
1428
1774
|
type: "file";
|
|
1429
1775
|
file: {
|
|
1776
|
+
metadata?: Record<string, any> | undefined;
|
|
1430
1777
|
readonly id: string;
|
|
1778
|
+
name?: string | undefined;
|
|
1779
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1431
1780
|
readonly content_url: string | null;
|
|
1432
1781
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1433
1782
|
readonly thumbnail_url: string | null;
|
|
@@ -1489,6 +1838,7 @@ export default function useCanvas(): {
|
|
|
1489
1838
|
type: "image" | "video";
|
|
1490
1839
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1491
1840
|
from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
1841
|
+
poster_url?: string | undefined;
|
|
1492
1842
|
} | {
|
|
1493
1843
|
asset_type: "pitcher_asset";
|
|
1494
1844
|
file: {
|
|
@@ -1498,6 +1848,7 @@ export default function useCanvas(): {
|
|
|
1498
1848
|
};
|
|
1499
1849
|
type: "image" | "video";
|
|
1500
1850
|
horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1851
|
+
poster_url?: string | undefined;
|
|
1501
1852
|
} | {
|
|
1502
1853
|
type: "app";
|
|
1503
1854
|
app_name: string;
|
|
@@ -1522,6 +1873,9 @@ export default function useCanvas(): {
|
|
|
1522
1873
|
overlay_app?: {
|
|
1523
1874
|
start_in_loading_mode?: boolean | undefined;
|
|
1524
1875
|
} | undefined;
|
|
1876
|
+
canvas_section_execution?: {
|
|
1877
|
+
start_in_loading_mode?: boolean | undefined;
|
|
1878
|
+
} | undefined;
|
|
1525
1879
|
} | undefined;
|
|
1526
1880
|
file: {
|
|
1527
1881
|
id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -1606,6 +1960,58 @@ export default function useCanvas(): {
|
|
|
1606
1960
|
canvas_anchor?: string | undefined;
|
|
1607
1961
|
color?: string | undefined;
|
|
1608
1962
|
display_text?: string | undefined;
|
|
1963
|
+
file?: {
|
|
1964
|
+
readonly id?: string | undefined;
|
|
1965
|
+
readonly global_id?: string | undefined;
|
|
1966
|
+
name?: string | undefined;
|
|
1967
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
1968
|
+
readonly size?: number | null | undefined;
|
|
1969
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
1970
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
1971
|
+
readonly content_extension?: string | null | undefined;
|
|
1972
|
+
readonly content_length?: number | null | undefined;
|
|
1973
|
+
readonly content_url?: string | null | undefined;
|
|
1974
|
+
readonly original_extension?: string | null | undefined;
|
|
1975
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
1976
|
+
download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
1977
|
+
readonly zip_size?: number | null | undefined;
|
|
1978
|
+
readonly zip_url?: string | null | undefined;
|
|
1979
|
+
access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
1980
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
1981
|
+
permissions?: {
|
|
1982
|
+
can_download?: boolean | undefined;
|
|
1983
|
+
can_share?: boolean | undefined;
|
|
1984
|
+
} | undefined;
|
|
1985
|
+
metadata?: Record<string, any> | undefined;
|
|
1986
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1987
|
+
tags?: Array<string> | undefined;
|
|
1988
|
+
readonly published_at?: string | null | undefined;
|
|
1989
|
+
expires_at?: (string | null) | undefined;
|
|
1990
|
+
readonly instance_id?: string | undefined;
|
|
1991
|
+
folder_id?: string | undefined;
|
|
1992
|
+
readonly shared_link?: {
|
|
1993
|
+
readonly url: string;
|
|
1994
|
+
short_url?: (string | null) | undefined;
|
|
1995
|
+
} | undefined;
|
|
1996
|
+
readonly owned_by?: {
|
|
1997
|
+
readonly id: number;
|
|
1998
|
+
readonly name: string;
|
|
1999
|
+
email?: string | undefined;
|
|
2000
|
+
} | undefined;
|
|
2001
|
+
readonly created_at?: string | undefined;
|
|
2002
|
+
readonly created_by?: {
|
|
2003
|
+
readonly id: number;
|
|
2004
|
+
readonly name: string;
|
|
2005
|
+
email?: string | undefined;
|
|
2006
|
+
} | undefined;
|
|
2007
|
+
readonly modified_at?: string | undefined;
|
|
2008
|
+
readonly modified_by?: {
|
|
2009
|
+
readonly id: number;
|
|
2010
|
+
readonly name: string;
|
|
2011
|
+
email?: string | undefined;
|
|
2012
|
+
} | undefined;
|
|
2013
|
+
page_index?: number | undefined;
|
|
2014
|
+
} | null | undefined;
|
|
1609
2015
|
font_family?: string | undefined;
|
|
1610
2016
|
font_size?: number | undefined;
|
|
1611
2017
|
link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -1638,7 +2044,10 @@ export default function useCanvas(): {
|
|
|
1638
2044
|
id: string;
|
|
1639
2045
|
type: "slide";
|
|
1640
2046
|
file: {
|
|
2047
|
+
metadata?: Record<string, any> | undefined;
|
|
1641
2048
|
readonly id: string;
|
|
2049
|
+
name?: string | undefined;
|
|
2050
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1642
2051
|
readonly content_url: string | null;
|
|
1643
2052
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1644
2053
|
readonly thumbnail_url: string | null;
|
|
@@ -1658,7 +2067,10 @@ export default function useCanvas(): {
|
|
|
1658
2067
|
id: string;
|
|
1659
2068
|
type: "file";
|
|
1660
2069
|
file: {
|
|
2070
|
+
metadata?: Record<string, any> | undefined;
|
|
1661
2071
|
readonly id: string;
|
|
2072
|
+
name?: string | undefined;
|
|
2073
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1662
2074
|
readonly content_url: string | null;
|
|
1663
2075
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1664
2076
|
readonly thumbnail_url: string | null;
|
|
@@ -1742,6 +2154,7 @@ export default function useCanvas(): {
|
|
|
1742
2154
|
readonly type: "image" | "video";
|
|
1743
2155
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
1744
2156
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
2157
|
+
readonly poster_url?: string | undefined;
|
|
1745
2158
|
} | {
|
|
1746
2159
|
readonly asset_type: "pitcher_asset";
|
|
1747
2160
|
readonly file: {
|
|
@@ -1751,6 +2164,7 @@ export default function useCanvas(): {
|
|
|
1751
2164
|
};
|
|
1752
2165
|
readonly type: "image" | "video";
|
|
1753
2166
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2167
|
+
readonly poster_url?: string | undefined;
|
|
1754
2168
|
} | {
|
|
1755
2169
|
readonly type: "app";
|
|
1756
2170
|
readonly app_name: string;
|
|
@@ -1775,6 +2189,9 @@ export default function useCanvas(): {
|
|
|
1775
2189
|
readonly overlay_app?: {
|
|
1776
2190
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
1777
2191
|
} | undefined;
|
|
2192
|
+
readonly canvas_section_execution?: {
|
|
2193
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
2194
|
+
} | undefined;
|
|
1778
2195
|
} | undefined;
|
|
1779
2196
|
readonly file: {
|
|
1780
2197
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -1867,6 +2284,62 @@ export default function useCanvas(): {
|
|
|
1867
2284
|
readonly canvas_anchor?: string | undefined;
|
|
1868
2285
|
readonly color?: string | undefined;
|
|
1869
2286
|
readonly display_text?: string | undefined;
|
|
2287
|
+
readonly file?: {
|
|
2288
|
+
readonly id?: string | undefined;
|
|
2289
|
+
readonly global_id?: string | undefined;
|
|
2290
|
+
readonly name?: string | undefined;
|
|
2291
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
2292
|
+
readonly size?: number | null | undefined;
|
|
2293
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
2294
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
2295
|
+
readonly content_extension?: string | null | undefined;
|
|
2296
|
+
readonly content_length?: number | null | undefined;
|
|
2297
|
+
readonly content_url?: string | null | undefined;
|
|
2298
|
+
readonly original_extension?: string | null | undefined;
|
|
2299
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
2300
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2301
|
+
readonly zip_size?: number | null | undefined;
|
|
2302
|
+
readonly zip_url?: string | null | undefined;
|
|
2303
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
2304
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
2305
|
+
readonly permissions?: {
|
|
2306
|
+
readonly can_download?: boolean | undefined;
|
|
2307
|
+
readonly can_share?: boolean | undefined;
|
|
2308
|
+
} | undefined;
|
|
2309
|
+
readonly metadata?: {
|
|
2310
|
+
readonly [x: string]: any;
|
|
2311
|
+
} | undefined;
|
|
2312
|
+
readonly app_metadata?: {
|
|
2313
|
+
readonly [x: string]: any;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
readonly tags?: readonly string[] | undefined;
|
|
2316
|
+
readonly published_at?: string | null | undefined;
|
|
2317
|
+
readonly expires_at?: (string | null) | undefined;
|
|
2318
|
+
readonly instance_id?: string | undefined;
|
|
2319
|
+
readonly folder_id?: string | undefined;
|
|
2320
|
+
readonly shared_link?: {
|
|
2321
|
+
readonly url: string;
|
|
2322
|
+
readonly short_url?: (string | null) | undefined;
|
|
2323
|
+
} | undefined;
|
|
2324
|
+
readonly owned_by?: {
|
|
2325
|
+
readonly id: number;
|
|
2326
|
+
readonly name: string;
|
|
2327
|
+
readonly email?: string | undefined;
|
|
2328
|
+
} | undefined;
|
|
2329
|
+
readonly created_at?: string | undefined;
|
|
2330
|
+
readonly created_by?: {
|
|
2331
|
+
readonly id: number;
|
|
2332
|
+
readonly name: string;
|
|
2333
|
+
readonly email?: string | undefined;
|
|
2334
|
+
} | undefined;
|
|
2335
|
+
readonly modified_at?: string | undefined;
|
|
2336
|
+
readonly modified_by?: {
|
|
2337
|
+
readonly id: number;
|
|
2338
|
+
readonly name: string;
|
|
2339
|
+
readonly email?: string | undefined;
|
|
2340
|
+
} | undefined;
|
|
2341
|
+
readonly page_index?: number | undefined;
|
|
2342
|
+
} | null | undefined;
|
|
1870
2343
|
readonly font_family?: string | undefined;
|
|
1871
2344
|
readonly font_size?: number | undefined;
|
|
1872
2345
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -1911,7 +2384,12 @@ export default function useCanvas(): {
|
|
|
1911
2384
|
readonly id: string;
|
|
1912
2385
|
readonly type: "slide";
|
|
1913
2386
|
readonly file: {
|
|
2387
|
+
readonly metadata?: {
|
|
2388
|
+
readonly [x: string]: any;
|
|
2389
|
+
} | undefined;
|
|
1914
2390
|
readonly id: string;
|
|
2391
|
+
readonly name?: string | undefined;
|
|
2392
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1915
2393
|
readonly content_url: string | null;
|
|
1916
2394
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1917
2395
|
readonly thumbnail_url: string | null;
|
|
@@ -1933,7 +2411,12 @@ export default function useCanvas(): {
|
|
|
1933
2411
|
readonly id: string;
|
|
1934
2412
|
readonly type: "file";
|
|
1935
2413
|
readonly file: {
|
|
2414
|
+
readonly metadata?: {
|
|
2415
|
+
readonly [x: string]: any;
|
|
2416
|
+
} | undefined;
|
|
1936
2417
|
readonly id: string;
|
|
2418
|
+
readonly name?: string | undefined;
|
|
2419
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
1937
2420
|
readonly content_url: string | null;
|
|
1938
2421
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
1939
2422
|
readonly thumbnail_url: string | null;
|
|
@@ -1994,6 +2477,7 @@ export default function useCanvas(): {
|
|
|
1994
2477
|
isSameAsSaved: import('vue').ComputedRef<any>;
|
|
1995
2478
|
isSection: import('vue').ComputedRef<boolean | undefined>;
|
|
1996
2479
|
isTemplate: import('vue').ComputedRef<boolean | undefined>;
|
|
2480
|
+
isBlock: import('vue').ComputedRef<boolean | undefined>;
|
|
1997
2481
|
isViewOnlyMode: import('vue').ComputedRef<boolean | undefined>;
|
|
1998
2482
|
justAddedComponentId: Ref<string | null, string | null>;
|
|
1999
2483
|
listFiles: Ref<((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined, ((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined>;
|
|
@@ -2023,6 +2507,21 @@ export default function useCanvas(): {
|
|
|
2023
2507
|
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>) | ((...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>) | ((...data: any[]) => void) | undefined>;
|
|
2024
2508
|
onExit: Ref<(() => void) | (() => void), (() => void) | (() => void)>;
|
|
2025
2509
|
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)>;
|
|
2510
|
+
onFileEnter: Ref<((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) | undefined>;
|
|
2511
|
+
onFileExit: Ref<((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) | undefined>;
|
|
2512
|
+
onFilePageEnter: Ref<((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | undefined, ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | undefined>;
|
|
2513
|
+
onFilePageExit: Ref<((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | undefined, ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | ((node: import('../types/canvas').NodeInfo, file: import('../types/canvas').CollectionFileEntity, pageIndex: number) => void) | undefined>;
|
|
2514
|
+
onCollectionPlayerContentChange: Ref<((payload: {
|
|
2515
|
+
componentId: string;
|
|
2516
|
+
uniqueFilesCount: number;
|
|
2517
|
+
groupsCount: number;
|
|
2518
|
+
slidesCount: number;
|
|
2519
|
+
}) => void) | undefined, ((payload: {
|
|
2520
|
+
componentId: string;
|
|
2521
|
+
uniqueFilesCount: number;
|
|
2522
|
+
groupsCount: number;
|
|
2523
|
+
slidesCount: number;
|
|
2524
|
+
}) => void) | undefined>;
|
|
2026
2525
|
onSave: Ref<((canvasId: CanvasRetrieve["id"], canvas: import('../../../../types/openapi').PatchedCanvasUpdateRequest & {
|
|
2027
2526
|
fields?: string;
|
|
2028
2527
|
}, showToast?: boolean) => Promise<CanvasRetrieve>) | ((...data: any[]) => Promise<void>) | undefined, ((canvasId: CanvasRetrieve["id"], canvas: import('../../../../types/openapi').PatchedCanvasUpdateRequest & {
|
|
@@ -2124,6 +2623,7 @@ export default function useCanvas(): {
|
|
|
2124
2623
|
readonly type: "image" | "video";
|
|
2125
2624
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2126
2625
|
readonly from?: ("custom" | "pexels" | "unsplash" | "ai") | undefined;
|
|
2626
|
+
readonly poster_url?: string | undefined;
|
|
2127
2627
|
} | {
|
|
2128
2628
|
readonly asset_type: "pitcher_asset";
|
|
2129
2629
|
readonly file: {
|
|
@@ -2133,6 +2633,7 @@ export default function useCanvas(): {
|
|
|
2133
2633
|
};
|
|
2134
2634
|
readonly type: "image" | "video";
|
|
2135
2635
|
readonly horizontal_alignment?: import('../types/canvas').MultimediaHorizontalAlignmentOptions | undefined;
|
|
2636
|
+
readonly poster_url?: string | undefined;
|
|
2136
2637
|
} | {
|
|
2137
2638
|
readonly type: "app";
|
|
2138
2639
|
readonly app_name: string;
|
|
@@ -2157,6 +2658,9 @@ export default function useCanvas(): {
|
|
|
2157
2658
|
readonly overlay_app?: {
|
|
2158
2659
|
readonly start_in_loading_mode?: boolean | undefined;
|
|
2159
2660
|
} | undefined;
|
|
2661
|
+
readonly canvas_section_execution?: {
|
|
2662
|
+
readonly start_in_loading_mode?: boolean | undefined;
|
|
2663
|
+
} | undefined;
|
|
2160
2664
|
} | undefined;
|
|
2161
2665
|
readonly file: {
|
|
2162
2666
|
readonly id: import('../../../../types/openapi').FileRetrieve["id"];
|
|
@@ -2249,6 +2753,62 @@ export default function useCanvas(): {
|
|
|
2249
2753
|
readonly canvas_anchor?: string | undefined;
|
|
2250
2754
|
readonly color?: string | undefined;
|
|
2251
2755
|
readonly display_text?: string | undefined;
|
|
2756
|
+
readonly file?: {
|
|
2757
|
+
readonly id?: string | undefined;
|
|
2758
|
+
readonly global_id?: string | undefined;
|
|
2759
|
+
readonly name?: string | undefined;
|
|
2760
|
+
readonly type?: import('../../../../types/openapi').FileTypeEnum | undefined;
|
|
2761
|
+
readonly size?: number | null | undefined;
|
|
2762
|
+
readonly status?: import('../../../../types/openapi').FileStatusEnum | undefined;
|
|
2763
|
+
readonly content_type?: import('../../../../types/openapi').FileContentTypeEnum | undefined;
|
|
2764
|
+
readonly content_extension?: string | null | undefined;
|
|
2765
|
+
readonly content_length?: number | null | undefined;
|
|
2766
|
+
readonly content_url?: string | null | undefined;
|
|
2767
|
+
readonly original_extension?: string | null | undefined;
|
|
2768
|
+
readonly thumbnail_url?: string | null | undefined;
|
|
2769
|
+
readonly download_type?: import('../../../../types/openapi').DownloadTypeEnum | undefined;
|
|
2770
|
+
readonly zip_size?: number | null | undefined;
|
|
2771
|
+
readonly zip_url?: string | null | undefined;
|
|
2772
|
+
readonly access_type?: import('../../../../types/openapi').AccessTypeEnum | undefined;
|
|
2773
|
+
readonly role?: import('../../../../types/openapi').CollaborationRoleEnum | undefined;
|
|
2774
|
+
readonly permissions?: {
|
|
2775
|
+
readonly can_download?: boolean | undefined;
|
|
2776
|
+
readonly can_share?: boolean | undefined;
|
|
2777
|
+
} | undefined;
|
|
2778
|
+
readonly metadata?: {
|
|
2779
|
+
readonly [x: string]: any;
|
|
2780
|
+
} | undefined;
|
|
2781
|
+
readonly app_metadata?: {
|
|
2782
|
+
readonly [x: string]: any;
|
|
2783
|
+
} | undefined;
|
|
2784
|
+
readonly tags?: readonly string[] | undefined;
|
|
2785
|
+
readonly published_at?: string | null | undefined;
|
|
2786
|
+
readonly expires_at?: (string | null) | undefined;
|
|
2787
|
+
readonly instance_id?: string | undefined;
|
|
2788
|
+
readonly folder_id?: string | undefined;
|
|
2789
|
+
readonly shared_link?: {
|
|
2790
|
+
readonly url: string;
|
|
2791
|
+
readonly short_url?: (string | null) | undefined;
|
|
2792
|
+
} | undefined;
|
|
2793
|
+
readonly owned_by?: {
|
|
2794
|
+
readonly id: number;
|
|
2795
|
+
readonly name: string;
|
|
2796
|
+
readonly email?: string | undefined;
|
|
2797
|
+
} | undefined;
|
|
2798
|
+
readonly created_at?: string | undefined;
|
|
2799
|
+
readonly created_by?: {
|
|
2800
|
+
readonly id: number;
|
|
2801
|
+
readonly name: string;
|
|
2802
|
+
readonly email?: string | undefined;
|
|
2803
|
+
} | undefined;
|
|
2804
|
+
readonly modified_at?: string | undefined;
|
|
2805
|
+
readonly modified_by?: {
|
|
2806
|
+
readonly id: number;
|
|
2807
|
+
readonly name: string;
|
|
2808
|
+
readonly email?: string | undefined;
|
|
2809
|
+
} | undefined;
|
|
2810
|
+
readonly page_index?: number | undefined;
|
|
2811
|
+
} | null | undefined;
|
|
2252
2812
|
readonly font_family?: string | undefined;
|
|
2253
2813
|
readonly font_size?: number | undefined;
|
|
2254
2814
|
readonly link_type?: import('../types/canvas').LinkAnchorTypes | undefined;
|
|
@@ -2293,7 +2853,12 @@ export default function useCanvas(): {
|
|
|
2293
2853
|
readonly id: string;
|
|
2294
2854
|
readonly type: "slide";
|
|
2295
2855
|
readonly file: {
|
|
2856
|
+
readonly metadata?: {
|
|
2857
|
+
readonly [x: string]: any;
|
|
2858
|
+
} | undefined;
|
|
2296
2859
|
readonly id: string;
|
|
2860
|
+
readonly name?: string | undefined;
|
|
2861
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2297
2862
|
readonly content_url: string | null;
|
|
2298
2863
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2299
2864
|
readonly thumbnail_url: string | null;
|
|
@@ -2315,7 +2880,12 @@ export default function useCanvas(): {
|
|
|
2315
2880
|
readonly id: string;
|
|
2316
2881
|
readonly type: "file";
|
|
2317
2882
|
readonly file: {
|
|
2883
|
+
readonly metadata?: {
|
|
2884
|
+
readonly [x: string]: any;
|
|
2885
|
+
} | undefined;
|
|
2318
2886
|
readonly id: string;
|
|
2887
|
+
readonly name?: string | undefined;
|
|
2888
|
+
readonly type: import('../../../../types/openapi').FileTypeEnum;
|
|
2319
2889
|
readonly content_url: string | null;
|
|
2320
2890
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2321
2891
|
readonly thumbnail_url: string | null;
|