@pitcher/js-api 1.26.0-beta.6 → 1.26.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/impact-js-api.spec.json +3 -0
- package/js-api.esm.js +220 -1
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +5 -1
- package/lib/apps/browser/stores/api.d.ts +16 -1
- package/lib/apps/canvas-builder/App.vue.d.ts +14 -1
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +30 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +76 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +21 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +11 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +380 -202
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +26 -0
- package/lib/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +26 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +7 -9
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -6
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +3 -3
- package/lib/apps/canvas-builder/composables/useScribbleChild.d.ts +1 -1
- package/lib/apps/canvas-builder/composables/useTemporaryContext.d.ts +1 -1
- package/lib/apps/canvas-builder/types/canvas.d.ts +20 -2
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +4 -4
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +8 -8
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +1 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +2 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +11 -0
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +3 -0
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +6 -0
- package/lib/main.lib.d.ts +2 -0
- package/lib/sdk/api/HighLevelApi.d.ts +4 -0
- package/lib/sdk/api/modules/files.d.ts +10 -0
- package/lib/sdk/api/modules/query.d.ts +14 -0
- package/lib/sdk/interfaces.d.ts +4 -1
- package/lib/sdk/main.d.ts +13 -0
- package/lib/sdk/peer-connectivity/index.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.constants.d.ts +12 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.d.ts +3 -0
- package/lib/sdk/peer-connectivity/peerConnectivity.types.d.ts +35 -0
- package/lib/types/instanceSettings.types.d.ts +2 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/organizationMetadata.types.d.ts +3 -2
- package/lib/types/organizationSettings.types.d.ts +7 -0
- package/package.json +1 -1
- package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -111
- package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +0 -59
- /package/lib/apps/canvas-builder/components/{ui/SectionList/SectionSearch.vue.d.ts → container/Search/Search.vue.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
import { CanvasBuilderMode, ComponentTypes, CanvasBuilderProps, ComponentNode, ContentGridProps, SectionComponentOverrides, SectionListProps, MultimediaProps } from '../types/canvas';
|
|
3
|
-
import { CanvasRetrieve } from '../../../../types/openapi';
|
|
2
|
+
import { CanvasBuilderMode, ComponentTypes, CanvasBuilderProps, ComponentNode, ContentGridProps, SectionComponentOverrides, SectionListProps, MultimediaProps, ContentListProps } from '../types/canvas';
|
|
3
|
+
import { CanvasRetrieve, FileRetrieve } from '../../../../types/openapi';
|
|
4
4
|
import { EmbedLocation } from '../../../types/app';
|
|
5
5
|
import { LaunchDarklyEnv } from '../../../types/launchDarkly.types';
|
|
6
6
|
import { CanvasMetadataRetrieve } from '../../../types/canvases';
|
|
@@ -60,7 +60,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
60
60
|
};
|
|
61
61
|
readonly slide: {
|
|
62
62
|
readonly index: number;
|
|
63
|
-
readonly url:
|
|
63
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
64
64
|
};
|
|
65
65
|
} | {
|
|
66
66
|
readonly id: string;
|
|
@@ -170,21 +170,21 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
170
170
|
} | undefined;
|
|
171
171
|
} | undefined;
|
|
172
172
|
readonly file: {
|
|
173
|
-
readonly id:
|
|
174
|
-
readonly snapshot_id?:
|
|
175
|
-
readonly name:
|
|
173
|
+
readonly id: FileRetrieve["id"];
|
|
174
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
175
|
+
readonly name: FileRetrieve["name"];
|
|
176
176
|
readonly is_deleted?: boolean | undefined;
|
|
177
177
|
readonly expires_at?: string | null | undefined;
|
|
178
|
-
readonly content_url:
|
|
178
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
179
179
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
180
|
-
readonly content_extension:
|
|
180
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
181
181
|
readonly permissions?: {
|
|
182
182
|
readonly can_download?: boolean | undefined;
|
|
183
183
|
readonly can_share?: boolean | undefined;
|
|
184
184
|
} | undefined;
|
|
185
185
|
readonly tags?: readonly string[] | undefined;
|
|
186
|
-
readonly thumbnail_url?:
|
|
187
|
-
readonly content_length?:
|
|
186
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
187
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
188
188
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
189
189
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
190
190
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -197,14 +197,14 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
197
197
|
} | {
|
|
198
198
|
readonly items: readonly ({
|
|
199
199
|
readonly file: {
|
|
200
|
-
readonly id:
|
|
201
|
-
readonly snapshot_id?:
|
|
202
|
-
readonly name:
|
|
200
|
+
readonly id: FileRetrieve["id"];
|
|
201
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
202
|
+
readonly name: FileRetrieve["name"];
|
|
203
203
|
readonly is_deleted?: boolean | undefined;
|
|
204
204
|
readonly expires_at?: string | null | undefined;
|
|
205
|
-
readonly content_url?:
|
|
205
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
206
206
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
207
|
-
readonly content_extension?:
|
|
207
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
208
208
|
readonly permissions?: {
|
|
209
209
|
readonly can_download?: boolean | undefined;
|
|
210
210
|
readonly can_share?: boolean | undefined;
|
|
@@ -213,26 +213,26 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
213
213
|
};
|
|
214
214
|
readonly slide: {
|
|
215
215
|
readonly index: number;
|
|
216
|
-
readonly url?:
|
|
216
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
217
217
|
};
|
|
218
218
|
readonly type: "slide";
|
|
219
219
|
} | {
|
|
220
220
|
readonly file: {
|
|
221
|
-
readonly id:
|
|
222
|
-
readonly snapshot_id?:
|
|
223
|
-
readonly name:
|
|
221
|
+
readonly id: FileRetrieve["id"];
|
|
222
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
223
|
+
readonly name: FileRetrieve["name"];
|
|
224
224
|
readonly is_deleted?: boolean | undefined;
|
|
225
225
|
readonly expires_at?: string | null | undefined;
|
|
226
|
-
readonly content_url:
|
|
226
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
227
227
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
228
|
-
readonly content_extension:
|
|
228
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
229
229
|
readonly permissions?: {
|
|
230
230
|
readonly can_download?: boolean | undefined;
|
|
231
231
|
readonly can_share?: boolean | undefined;
|
|
232
232
|
} | undefined;
|
|
233
233
|
readonly tags?: readonly string[] | undefined;
|
|
234
|
-
readonly thumbnail_url?:
|
|
235
|
-
readonly content_length?:
|
|
234
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
235
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
236
236
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
237
237
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
238
238
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -257,6 +257,19 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
257
257
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
258
258
|
readonly selection_app_name?: string | undefined;
|
|
259
259
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
260
|
+
} | {
|
|
261
|
+
readonly sections: readonly {
|
|
262
|
+
readonly id: string;
|
|
263
|
+
readonly file_id?: string | undefined;
|
|
264
|
+
readonly sequence?: number | undefined;
|
|
265
|
+
readonly component_id: string;
|
|
266
|
+
readonly page_index?: number | undefined;
|
|
267
|
+
readonly type: "section" | "file";
|
|
268
|
+
}[];
|
|
269
|
+
readonly animation_in?: string | undefined;
|
|
270
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
271
|
+
readonly selection_app_name?: string | undefined;
|
|
272
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
260
273
|
} | {
|
|
261
274
|
readonly html: string;
|
|
262
275
|
} | {
|
|
@@ -520,7 +533,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
520
533
|
};
|
|
521
534
|
readonly slide: {
|
|
522
535
|
readonly index: number;
|
|
523
|
-
readonly url:
|
|
536
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
524
537
|
};
|
|
525
538
|
} | {
|
|
526
539
|
readonly id: string;
|
|
@@ -630,21 +643,21 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
630
643
|
} | undefined;
|
|
631
644
|
} | undefined;
|
|
632
645
|
readonly file: {
|
|
633
|
-
readonly id:
|
|
634
|
-
readonly snapshot_id?:
|
|
635
|
-
readonly name:
|
|
646
|
+
readonly id: FileRetrieve["id"];
|
|
647
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
648
|
+
readonly name: FileRetrieve["name"];
|
|
636
649
|
readonly is_deleted?: boolean | undefined;
|
|
637
650
|
readonly expires_at?: string | null | undefined;
|
|
638
|
-
readonly content_url:
|
|
651
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
639
652
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
640
|
-
readonly content_extension:
|
|
653
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
641
654
|
readonly permissions?: {
|
|
642
655
|
readonly can_download?: boolean | undefined;
|
|
643
656
|
readonly can_share?: boolean | undefined;
|
|
644
657
|
} | undefined;
|
|
645
658
|
readonly tags?: readonly string[] | undefined;
|
|
646
|
-
readonly thumbnail_url?:
|
|
647
|
-
readonly content_length?:
|
|
659
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
660
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
648
661
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
649
662
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
650
663
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -657,14 +670,14 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
657
670
|
} | {
|
|
658
671
|
readonly items: readonly ({
|
|
659
672
|
readonly file: {
|
|
660
|
-
readonly id:
|
|
661
|
-
readonly snapshot_id?:
|
|
662
|
-
readonly name:
|
|
673
|
+
readonly id: FileRetrieve["id"];
|
|
674
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
675
|
+
readonly name: FileRetrieve["name"];
|
|
663
676
|
readonly is_deleted?: boolean | undefined;
|
|
664
677
|
readonly expires_at?: string | null | undefined;
|
|
665
|
-
readonly content_url?:
|
|
678
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
666
679
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
667
|
-
readonly content_extension?:
|
|
680
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
668
681
|
readonly permissions?: {
|
|
669
682
|
readonly can_download?: boolean | undefined;
|
|
670
683
|
readonly can_share?: boolean | undefined;
|
|
@@ -673,26 +686,26 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
673
686
|
};
|
|
674
687
|
readonly slide: {
|
|
675
688
|
readonly index: number;
|
|
676
|
-
readonly url?:
|
|
689
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
677
690
|
};
|
|
678
691
|
readonly type: "slide";
|
|
679
692
|
} | {
|
|
680
693
|
readonly file: {
|
|
681
|
-
readonly id:
|
|
682
|
-
readonly snapshot_id?:
|
|
683
|
-
readonly name:
|
|
694
|
+
readonly id: FileRetrieve["id"];
|
|
695
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
696
|
+
readonly name: FileRetrieve["name"];
|
|
684
697
|
readonly is_deleted?: boolean | undefined;
|
|
685
698
|
readonly expires_at?: string | null | undefined;
|
|
686
|
-
readonly content_url:
|
|
699
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
687
700
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
688
|
-
readonly content_extension:
|
|
701
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
689
702
|
readonly permissions?: {
|
|
690
703
|
readonly can_download?: boolean | undefined;
|
|
691
704
|
readonly can_share?: boolean | undefined;
|
|
692
705
|
} | undefined;
|
|
693
706
|
readonly tags?: readonly string[] | undefined;
|
|
694
|
-
readonly thumbnail_url?:
|
|
695
|
-
readonly content_length?:
|
|
707
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
708
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
696
709
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
697
710
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
698
711
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -717,6 +730,19 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
717
730
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
718
731
|
readonly selection_app_name?: string | undefined;
|
|
719
732
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
733
|
+
} | {
|
|
734
|
+
readonly sections: readonly {
|
|
735
|
+
readonly id: string;
|
|
736
|
+
readonly file_id?: string | undefined;
|
|
737
|
+
readonly sequence?: number | undefined;
|
|
738
|
+
readonly component_id: string;
|
|
739
|
+
readonly page_index?: number | undefined;
|
|
740
|
+
readonly type: "section" | "file";
|
|
741
|
+
}[];
|
|
742
|
+
readonly animation_in?: string | undefined;
|
|
743
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
744
|
+
readonly selection_app_name?: string | undefined;
|
|
745
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
720
746
|
} | {
|
|
721
747
|
readonly html: string;
|
|
722
748
|
} | {
|
|
@@ -946,7 +972,7 @@ declare function saveCanvasContext(context: any, { showToast }?: {
|
|
|
946
972
|
declare function saveCanvasContentWithContext(context: any, { showToast }?: {
|
|
947
973
|
showToast?: boolean;
|
|
948
974
|
}, extraMetadata?: Record<string, any>): Promise<undefined>;
|
|
949
|
-
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings, enableScaleContent?: boolean): string | undefined;
|
|
975
|
+
declare function getMaxWidth(pitcherSettings: OrganizationSettings & InstanceSettings, enableScaleContent?: boolean, enableCanvasPdfDimensions?: boolean): string | undefined;
|
|
950
976
|
export default function useCanvas(): {
|
|
951
977
|
activeCanvas: Ref<{
|
|
952
978
|
readonly id: string;
|
|
@@ -1132,7 +1158,7 @@ export default function useCanvas(): {
|
|
|
1132
1158
|
};
|
|
1133
1159
|
readonly slide: {
|
|
1134
1160
|
readonly index: number;
|
|
1135
|
-
readonly url:
|
|
1161
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
1136
1162
|
};
|
|
1137
1163
|
} | {
|
|
1138
1164
|
readonly id: string;
|
|
@@ -1242,21 +1268,21 @@ export default function useCanvas(): {
|
|
|
1242
1268
|
} | undefined;
|
|
1243
1269
|
} | undefined;
|
|
1244
1270
|
readonly file: {
|
|
1245
|
-
readonly id:
|
|
1246
|
-
readonly snapshot_id?:
|
|
1247
|
-
readonly name:
|
|
1271
|
+
readonly id: FileRetrieve["id"];
|
|
1272
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1273
|
+
readonly name: FileRetrieve["name"];
|
|
1248
1274
|
readonly is_deleted?: boolean | undefined;
|
|
1249
1275
|
readonly expires_at?: string | null | undefined;
|
|
1250
|
-
readonly content_url:
|
|
1276
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1251
1277
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1252
|
-
readonly content_extension:
|
|
1278
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1253
1279
|
readonly permissions?: {
|
|
1254
1280
|
readonly can_download?: boolean | undefined;
|
|
1255
1281
|
readonly can_share?: boolean | undefined;
|
|
1256
1282
|
} | undefined;
|
|
1257
1283
|
readonly tags?: readonly string[] | undefined;
|
|
1258
|
-
readonly thumbnail_url?:
|
|
1259
|
-
readonly content_length?:
|
|
1284
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1285
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1260
1286
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1261
1287
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1262
1288
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1269,14 +1295,14 @@ export default function useCanvas(): {
|
|
|
1269
1295
|
} | {
|
|
1270
1296
|
readonly items: readonly ({
|
|
1271
1297
|
readonly file: {
|
|
1272
|
-
readonly id:
|
|
1273
|
-
readonly snapshot_id?:
|
|
1274
|
-
readonly name:
|
|
1298
|
+
readonly id: FileRetrieve["id"];
|
|
1299
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1300
|
+
readonly name: FileRetrieve["name"];
|
|
1275
1301
|
readonly is_deleted?: boolean | undefined;
|
|
1276
1302
|
readonly expires_at?: string | null | undefined;
|
|
1277
|
-
readonly content_url?:
|
|
1303
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
1278
1304
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
1279
|
-
readonly content_extension?:
|
|
1305
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
1280
1306
|
readonly permissions?: {
|
|
1281
1307
|
readonly can_download?: boolean | undefined;
|
|
1282
1308
|
readonly can_share?: boolean | undefined;
|
|
@@ -1285,26 +1311,26 @@ export default function useCanvas(): {
|
|
|
1285
1311
|
};
|
|
1286
1312
|
readonly slide: {
|
|
1287
1313
|
readonly index: number;
|
|
1288
|
-
readonly url?:
|
|
1314
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
1289
1315
|
};
|
|
1290
1316
|
readonly type: "slide";
|
|
1291
1317
|
} | {
|
|
1292
1318
|
readonly file: {
|
|
1293
|
-
readonly id:
|
|
1294
|
-
readonly snapshot_id?:
|
|
1295
|
-
readonly name:
|
|
1319
|
+
readonly id: FileRetrieve["id"];
|
|
1320
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1321
|
+
readonly name: FileRetrieve["name"];
|
|
1296
1322
|
readonly is_deleted?: boolean | undefined;
|
|
1297
1323
|
readonly expires_at?: string | null | undefined;
|
|
1298
|
-
readonly content_url:
|
|
1324
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1299
1325
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1300
|
-
readonly content_extension:
|
|
1326
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1301
1327
|
readonly permissions?: {
|
|
1302
1328
|
readonly can_download?: boolean | undefined;
|
|
1303
1329
|
readonly can_share?: boolean | undefined;
|
|
1304
1330
|
} | undefined;
|
|
1305
1331
|
readonly tags?: readonly string[] | undefined;
|
|
1306
|
-
readonly thumbnail_url?:
|
|
1307
|
-
readonly content_length?:
|
|
1332
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1333
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1308
1334
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1309
1335
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1310
1336
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1329,6 +1355,19 @@ export default function useCanvas(): {
|
|
|
1329
1355
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1330
1356
|
readonly selection_app_name?: string | undefined;
|
|
1331
1357
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1358
|
+
} | {
|
|
1359
|
+
readonly sections: readonly {
|
|
1360
|
+
readonly id: string;
|
|
1361
|
+
readonly file_id?: string | undefined;
|
|
1362
|
+
readonly sequence?: number | undefined;
|
|
1363
|
+
readonly component_id: string;
|
|
1364
|
+
readonly page_index?: number | undefined;
|
|
1365
|
+
readonly type: "section" | "file";
|
|
1366
|
+
}[];
|
|
1367
|
+
readonly animation_in?: string | undefined;
|
|
1368
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1369
|
+
readonly selection_app_name?: string | undefined;
|
|
1370
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1332
1371
|
} | {
|
|
1333
1372
|
readonly html: string;
|
|
1334
1373
|
} | {
|
|
@@ -1604,7 +1643,7 @@ export default function useCanvas(): {
|
|
|
1604
1643
|
};
|
|
1605
1644
|
readonly slide: {
|
|
1606
1645
|
readonly index: number;
|
|
1607
|
-
readonly url:
|
|
1646
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
1608
1647
|
};
|
|
1609
1648
|
} | {
|
|
1610
1649
|
readonly id: string;
|
|
@@ -1714,21 +1753,21 @@ export default function useCanvas(): {
|
|
|
1714
1753
|
} | undefined;
|
|
1715
1754
|
} | undefined;
|
|
1716
1755
|
readonly file: {
|
|
1717
|
-
readonly id:
|
|
1718
|
-
readonly snapshot_id?:
|
|
1719
|
-
readonly name:
|
|
1756
|
+
readonly id: FileRetrieve["id"];
|
|
1757
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1758
|
+
readonly name: FileRetrieve["name"];
|
|
1720
1759
|
readonly is_deleted?: boolean | undefined;
|
|
1721
1760
|
readonly expires_at?: string | null | undefined;
|
|
1722
|
-
readonly content_url:
|
|
1761
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1723
1762
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1724
|
-
readonly content_extension:
|
|
1763
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1725
1764
|
readonly permissions?: {
|
|
1726
1765
|
readonly can_download?: boolean | undefined;
|
|
1727
1766
|
readonly can_share?: boolean | undefined;
|
|
1728
1767
|
} | undefined;
|
|
1729
1768
|
readonly tags?: readonly string[] | undefined;
|
|
1730
|
-
readonly thumbnail_url?:
|
|
1731
|
-
readonly content_length?:
|
|
1769
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1770
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1732
1771
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1733
1772
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1734
1773
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1741,14 +1780,14 @@ export default function useCanvas(): {
|
|
|
1741
1780
|
} | {
|
|
1742
1781
|
readonly items: readonly ({
|
|
1743
1782
|
readonly file: {
|
|
1744
|
-
readonly id:
|
|
1745
|
-
readonly snapshot_id?:
|
|
1746
|
-
readonly name:
|
|
1783
|
+
readonly id: FileRetrieve["id"];
|
|
1784
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1785
|
+
readonly name: FileRetrieve["name"];
|
|
1747
1786
|
readonly is_deleted?: boolean | undefined;
|
|
1748
1787
|
readonly expires_at?: string | null | undefined;
|
|
1749
|
-
readonly content_url?:
|
|
1788
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
1750
1789
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
1751
|
-
readonly content_extension?:
|
|
1790
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
1752
1791
|
readonly permissions?: {
|
|
1753
1792
|
readonly can_download?: boolean | undefined;
|
|
1754
1793
|
readonly can_share?: boolean | undefined;
|
|
@@ -1757,26 +1796,26 @@ export default function useCanvas(): {
|
|
|
1757
1796
|
};
|
|
1758
1797
|
readonly slide: {
|
|
1759
1798
|
readonly index: number;
|
|
1760
|
-
readonly url?:
|
|
1799
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
1761
1800
|
};
|
|
1762
1801
|
readonly type: "slide";
|
|
1763
1802
|
} | {
|
|
1764
1803
|
readonly file: {
|
|
1765
|
-
readonly id:
|
|
1766
|
-
readonly snapshot_id?:
|
|
1767
|
-
readonly name:
|
|
1804
|
+
readonly id: FileRetrieve["id"];
|
|
1805
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
1806
|
+
readonly name: FileRetrieve["name"];
|
|
1768
1807
|
readonly is_deleted?: boolean | undefined;
|
|
1769
1808
|
readonly expires_at?: string | null | undefined;
|
|
1770
|
-
readonly content_url:
|
|
1809
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
1771
1810
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
1772
|
-
readonly content_extension:
|
|
1811
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
1773
1812
|
readonly permissions?: {
|
|
1774
1813
|
readonly can_download?: boolean | undefined;
|
|
1775
1814
|
readonly can_share?: boolean | undefined;
|
|
1776
1815
|
} | undefined;
|
|
1777
1816
|
readonly tags?: readonly string[] | undefined;
|
|
1778
|
-
readonly thumbnail_url?:
|
|
1779
|
-
readonly content_length?:
|
|
1817
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
1818
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
1780
1819
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
1781
1820
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
1782
1821
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -1801,6 +1840,19 @@ export default function useCanvas(): {
|
|
|
1801
1840
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1802
1841
|
readonly selection_app_name?: string | undefined;
|
|
1803
1842
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1843
|
+
} | {
|
|
1844
|
+
readonly sections: readonly {
|
|
1845
|
+
readonly id: string;
|
|
1846
|
+
readonly file_id?: string | undefined;
|
|
1847
|
+
readonly sequence?: number | undefined;
|
|
1848
|
+
readonly component_id: string;
|
|
1849
|
+
readonly page_index?: number | undefined;
|
|
1850
|
+
readonly type: "section" | "file";
|
|
1851
|
+
}[];
|
|
1852
|
+
readonly animation_in?: string | undefined;
|
|
1853
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
1854
|
+
readonly selection_app_name?: string | undefined;
|
|
1855
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
1804
1856
|
} | {
|
|
1805
1857
|
readonly html: string;
|
|
1806
1858
|
} | {
|
|
@@ -2072,7 +2124,7 @@ export default function useCanvas(): {
|
|
|
2072
2124
|
};
|
|
2073
2125
|
slide: {
|
|
2074
2126
|
index: number;
|
|
2075
|
-
url:
|
|
2127
|
+
url: FileRetrieve["thumbnail_url"];
|
|
2076
2128
|
};
|
|
2077
2129
|
} | {
|
|
2078
2130
|
id: string;
|
|
@@ -2172,22 +2224,22 @@ export default function useCanvas(): {
|
|
|
2172
2224
|
} | undefined;
|
|
2173
2225
|
} | undefined;
|
|
2174
2226
|
file: {
|
|
2175
|
-
id:
|
|
2176
|
-
snapshot_id?:
|
|
2177
|
-
name:
|
|
2227
|
+
id: FileRetrieve["id"];
|
|
2228
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2229
|
+
name: FileRetrieve["name"];
|
|
2178
2230
|
is_deleted?: boolean | undefined;
|
|
2179
2231
|
expires_at?: string | null | undefined;
|
|
2180
|
-
content_url:
|
|
2232
|
+
content_url: FileRetrieve["content_url"];
|
|
2181
2233
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2182
|
-
content_extension:
|
|
2234
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2183
2235
|
permissions?: {
|
|
2184
2236
|
can_download?: boolean | undefined;
|
|
2185
2237
|
can_share?: boolean | undefined;
|
|
2186
2238
|
} | undefined;
|
|
2187
2239
|
tags?: string[] | undefined;
|
|
2188
|
-
thumbnail_url?:
|
|
2189
|
-
readonly content_length?:
|
|
2190
|
-
content_thumbnails?: (
|
|
2240
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2241
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2242
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2191
2243
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2192
2244
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2193
2245
|
} | null;
|
|
@@ -2195,14 +2247,14 @@ export default function useCanvas(): {
|
|
|
2195
2247
|
} | {
|
|
2196
2248
|
items: ({
|
|
2197
2249
|
file: {
|
|
2198
|
-
id:
|
|
2199
|
-
snapshot_id?:
|
|
2200
|
-
name:
|
|
2250
|
+
id: FileRetrieve["id"];
|
|
2251
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2252
|
+
name: FileRetrieve["name"];
|
|
2201
2253
|
is_deleted?: boolean | undefined;
|
|
2202
2254
|
expires_at?: string | null | undefined;
|
|
2203
|
-
content_url?:
|
|
2255
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
2204
2256
|
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
2205
|
-
content_extension?:
|
|
2257
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
2206
2258
|
permissions?: {
|
|
2207
2259
|
can_download?: boolean | undefined;
|
|
2208
2260
|
can_share?: boolean | undefined;
|
|
@@ -2211,27 +2263,27 @@ export default function useCanvas(): {
|
|
|
2211
2263
|
};
|
|
2212
2264
|
slide: {
|
|
2213
2265
|
index: number;
|
|
2214
|
-
url?:
|
|
2266
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
2215
2267
|
};
|
|
2216
2268
|
type: "slide";
|
|
2217
2269
|
} | {
|
|
2218
2270
|
file: {
|
|
2219
|
-
id:
|
|
2220
|
-
snapshot_id?:
|
|
2221
|
-
name:
|
|
2271
|
+
id: FileRetrieve["id"];
|
|
2272
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2273
|
+
name: FileRetrieve["name"];
|
|
2222
2274
|
is_deleted?: boolean | undefined;
|
|
2223
2275
|
expires_at?: string | null | undefined;
|
|
2224
|
-
content_url:
|
|
2276
|
+
content_url: FileRetrieve["content_url"];
|
|
2225
2277
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2226
|
-
content_extension:
|
|
2278
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2227
2279
|
permissions?: {
|
|
2228
2280
|
can_download?: boolean | undefined;
|
|
2229
2281
|
can_share?: boolean | undefined;
|
|
2230
2282
|
} | undefined;
|
|
2231
2283
|
tags?: string[] | undefined;
|
|
2232
|
-
thumbnail_url?:
|
|
2233
|
-
readonly content_length?:
|
|
2234
|
-
content_thumbnails?: (
|
|
2284
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2285
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2286
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2235
2287
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2236
2288
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2237
2289
|
};
|
|
@@ -2251,6 +2303,19 @@ export default function useCanvas(): {
|
|
|
2251
2303
|
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2252
2304
|
selection_app_name?: string | undefined;
|
|
2253
2305
|
is_restricted_to_preselections?: boolean | undefined;
|
|
2306
|
+
} | {
|
|
2307
|
+
sections: {
|
|
2308
|
+
id: string;
|
|
2309
|
+
file_id?: string | undefined;
|
|
2310
|
+
sequence?: number | undefined;
|
|
2311
|
+
component_id: string;
|
|
2312
|
+
page_index?: number | undefined;
|
|
2313
|
+
type: "section" | "file";
|
|
2314
|
+
}[];
|
|
2315
|
+
animation_in?: string | undefined;
|
|
2316
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2317
|
+
selection_app_name?: string | undefined;
|
|
2318
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
2254
2319
|
} | {
|
|
2255
2320
|
html: string;
|
|
2256
2321
|
} | {
|
|
@@ -2442,7 +2507,7 @@ export default function useCanvas(): {
|
|
|
2442
2507
|
bg_color_palette_index?: number | undefined;
|
|
2443
2508
|
} | undefined;
|
|
2444
2509
|
height?: string | undefined;
|
|
2445
|
-
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps>[] | {
|
|
2510
|
+
}[], ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | ContentListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps>[] | {
|
|
2446
2511
|
id: string;
|
|
2447
2512
|
type: ComponentTypes;
|
|
2448
2513
|
tracking_id: string;
|
|
@@ -2487,7 +2552,7 @@ export default function useCanvas(): {
|
|
|
2487
2552
|
};
|
|
2488
2553
|
slide: {
|
|
2489
2554
|
index: number;
|
|
2490
|
-
url:
|
|
2555
|
+
url: FileRetrieve["thumbnail_url"];
|
|
2491
2556
|
};
|
|
2492
2557
|
} | {
|
|
2493
2558
|
id: string;
|
|
@@ -2587,22 +2652,22 @@ export default function useCanvas(): {
|
|
|
2587
2652
|
} | undefined;
|
|
2588
2653
|
} | undefined;
|
|
2589
2654
|
file: {
|
|
2590
|
-
id:
|
|
2591
|
-
snapshot_id?:
|
|
2592
|
-
name:
|
|
2655
|
+
id: FileRetrieve["id"];
|
|
2656
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2657
|
+
name: FileRetrieve["name"];
|
|
2593
2658
|
is_deleted?: boolean | undefined;
|
|
2594
2659
|
expires_at?: string | null | undefined;
|
|
2595
|
-
content_url:
|
|
2660
|
+
content_url: FileRetrieve["content_url"];
|
|
2596
2661
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2597
|
-
content_extension:
|
|
2662
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2598
2663
|
permissions?: {
|
|
2599
2664
|
can_download?: boolean | undefined;
|
|
2600
2665
|
can_share?: boolean | undefined;
|
|
2601
2666
|
} | undefined;
|
|
2602
2667
|
tags?: string[] | undefined;
|
|
2603
|
-
thumbnail_url?:
|
|
2604
|
-
readonly content_length?:
|
|
2605
|
-
content_thumbnails?: (
|
|
2668
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2669
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2670
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2606
2671
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2607
2672
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2608
2673
|
} | null;
|
|
@@ -2610,14 +2675,14 @@ export default function useCanvas(): {
|
|
|
2610
2675
|
} | {
|
|
2611
2676
|
items: ({
|
|
2612
2677
|
file: {
|
|
2613
|
-
id:
|
|
2614
|
-
snapshot_id?:
|
|
2615
|
-
name:
|
|
2678
|
+
id: FileRetrieve["id"];
|
|
2679
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2680
|
+
name: FileRetrieve["name"];
|
|
2616
2681
|
is_deleted?: boolean | undefined;
|
|
2617
2682
|
expires_at?: string | null | undefined;
|
|
2618
|
-
content_url?:
|
|
2683
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
2619
2684
|
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
2620
|
-
content_extension?:
|
|
2685
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
2621
2686
|
permissions?: {
|
|
2622
2687
|
can_download?: boolean | undefined;
|
|
2623
2688
|
can_share?: boolean | undefined;
|
|
@@ -2626,27 +2691,27 @@ export default function useCanvas(): {
|
|
|
2626
2691
|
};
|
|
2627
2692
|
slide: {
|
|
2628
2693
|
index: number;
|
|
2629
|
-
url?:
|
|
2694
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
2630
2695
|
};
|
|
2631
2696
|
type: "slide";
|
|
2632
2697
|
} | {
|
|
2633
2698
|
file: {
|
|
2634
|
-
id:
|
|
2635
|
-
snapshot_id?:
|
|
2636
|
-
name:
|
|
2699
|
+
id: FileRetrieve["id"];
|
|
2700
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
2701
|
+
name: FileRetrieve["name"];
|
|
2637
2702
|
is_deleted?: boolean | undefined;
|
|
2638
2703
|
expires_at?: string | null | undefined;
|
|
2639
|
-
content_url:
|
|
2704
|
+
content_url: FileRetrieve["content_url"];
|
|
2640
2705
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
2641
|
-
content_extension:
|
|
2706
|
+
content_extension: FileRetrieve["content_extension"];
|
|
2642
2707
|
permissions?: {
|
|
2643
2708
|
can_download?: boolean | undefined;
|
|
2644
2709
|
can_share?: boolean | undefined;
|
|
2645
2710
|
} | undefined;
|
|
2646
2711
|
tags?: string[] | undefined;
|
|
2647
|
-
thumbnail_url?:
|
|
2648
|
-
readonly content_length?:
|
|
2649
|
-
content_thumbnails?: (
|
|
2712
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
2713
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
2714
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
2650
2715
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
2651
2716
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
2652
2717
|
};
|
|
@@ -2666,6 +2731,19 @@ export default function useCanvas(): {
|
|
|
2666
2731
|
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2667
2732
|
selection_app_name?: string | undefined;
|
|
2668
2733
|
is_restricted_to_preselections?: boolean | undefined;
|
|
2734
|
+
} | {
|
|
2735
|
+
sections: {
|
|
2736
|
+
id: string;
|
|
2737
|
+
file_id?: string | undefined;
|
|
2738
|
+
sequence?: number | undefined;
|
|
2739
|
+
component_id: string;
|
|
2740
|
+
page_index?: number | undefined;
|
|
2741
|
+
type: "section" | "file";
|
|
2742
|
+
}[];
|
|
2743
|
+
animation_in?: string | undefined;
|
|
2744
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
2745
|
+
selection_app_name?: string | undefined;
|
|
2746
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
2669
2747
|
} | {
|
|
2670
2748
|
html: string;
|
|
2671
2749
|
} | {
|
|
@@ -2944,7 +3022,7 @@ export default function useCanvas(): {
|
|
|
2944
3022
|
};
|
|
2945
3023
|
readonly slide: {
|
|
2946
3024
|
readonly index: number;
|
|
2947
|
-
readonly url:
|
|
3025
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
2948
3026
|
};
|
|
2949
3027
|
} | {
|
|
2950
3028
|
readonly id: string;
|
|
@@ -3054,21 +3132,21 @@ export default function useCanvas(): {
|
|
|
3054
3132
|
} | undefined;
|
|
3055
3133
|
} | undefined;
|
|
3056
3134
|
readonly file: {
|
|
3057
|
-
readonly id:
|
|
3058
|
-
readonly snapshot_id?:
|
|
3059
|
-
readonly name:
|
|
3135
|
+
readonly id: FileRetrieve["id"];
|
|
3136
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3137
|
+
readonly name: FileRetrieve["name"];
|
|
3060
3138
|
readonly is_deleted?: boolean | undefined;
|
|
3061
3139
|
readonly expires_at?: string | null | undefined;
|
|
3062
|
-
readonly content_url:
|
|
3140
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3063
3141
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3064
|
-
readonly content_extension:
|
|
3142
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3065
3143
|
readonly permissions?: {
|
|
3066
3144
|
readonly can_download?: boolean | undefined;
|
|
3067
3145
|
readonly can_share?: boolean | undefined;
|
|
3068
3146
|
} | undefined;
|
|
3069
3147
|
readonly tags?: readonly string[] | undefined;
|
|
3070
|
-
readonly thumbnail_url?:
|
|
3071
|
-
readonly content_length?:
|
|
3148
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3149
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3072
3150
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3073
3151
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3074
3152
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3081,14 +3159,14 @@ export default function useCanvas(): {
|
|
|
3081
3159
|
} | {
|
|
3082
3160
|
readonly items: readonly ({
|
|
3083
3161
|
readonly file: {
|
|
3084
|
-
readonly id:
|
|
3085
|
-
readonly snapshot_id?:
|
|
3086
|
-
readonly name:
|
|
3162
|
+
readonly id: FileRetrieve["id"];
|
|
3163
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3164
|
+
readonly name: FileRetrieve["name"];
|
|
3087
3165
|
readonly is_deleted?: boolean | undefined;
|
|
3088
3166
|
readonly expires_at?: string | null | undefined;
|
|
3089
|
-
readonly content_url?:
|
|
3167
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
3090
3168
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
3091
|
-
readonly content_extension?:
|
|
3169
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
3092
3170
|
readonly permissions?: {
|
|
3093
3171
|
readonly can_download?: boolean | undefined;
|
|
3094
3172
|
readonly can_share?: boolean | undefined;
|
|
@@ -3097,26 +3175,26 @@ export default function useCanvas(): {
|
|
|
3097
3175
|
};
|
|
3098
3176
|
readonly slide: {
|
|
3099
3177
|
readonly index: number;
|
|
3100
|
-
readonly url?:
|
|
3178
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
3101
3179
|
};
|
|
3102
3180
|
readonly type: "slide";
|
|
3103
3181
|
} | {
|
|
3104
3182
|
readonly file: {
|
|
3105
|
-
readonly id:
|
|
3106
|
-
readonly snapshot_id?:
|
|
3107
|
-
readonly name:
|
|
3183
|
+
readonly id: FileRetrieve["id"];
|
|
3184
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3185
|
+
readonly name: FileRetrieve["name"];
|
|
3108
3186
|
readonly is_deleted?: boolean | undefined;
|
|
3109
3187
|
readonly expires_at?: string | null | undefined;
|
|
3110
|
-
readonly content_url:
|
|
3188
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3111
3189
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3112
|
-
readonly content_extension:
|
|
3190
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3113
3191
|
readonly permissions?: {
|
|
3114
3192
|
readonly can_download?: boolean | undefined;
|
|
3115
3193
|
readonly can_share?: boolean | undefined;
|
|
3116
3194
|
} | undefined;
|
|
3117
3195
|
readonly tags?: readonly string[] | undefined;
|
|
3118
|
-
readonly thumbnail_url?:
|
|
3119
|
-
readonly content_length?:
|
|
3196
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3197
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3120
3198
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3121
3199
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3122
3200
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3141,6 +3219,19 @@ export default function useCanvas(): {
|
|
|
3141
3219
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3142
3220
|
readonly selection_app_name?: string | undefined;
|
|
3143
3221
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3222
|
+
} | {
|
|
3223
|
+
readonly sections: readonly {
|
|
3224
|
+
readonly id: string;
|
|
3225
|
+
readonly file_id?: string | undefined;
|
|
3226
|
+
readonly sequence?: number | undefined;
|
|
3227
|
+
readonly component_id: string;
|
|
3228
|
+
readonly page_index?: number | undefined;
|
|
3229
|
+
readonly type: "section" | "file";
|
|
3230
|
+
}[];
|
|
3231
|
+
readonly animation_in?: string | undefined;
|
|
3232
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3233
|
+
readonly selection_app_name?: string | undefined;
|
|
3234
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3144
3235
|
} | {
|
|
3145
3236
|
readonly html: string;
|
|
3146
3237
|
} | {
|
|
@@ -3373,7 +3464,7 @@ export default function useCanvas(): {
|
|
|
3373
3464
|
currentEmbedLocation: import('vue').ComputedRef<"dsr" | "canvas">;
|
|
3374
3465
|
displayMode: Ref<"print" | "default" | undefined, "print" | "default" | undefined>;
|
|
3375
3466
|
endPage: Ref<number | undefined, number | undefined>;
|
|
3376
|
-
fetchFile: Ref<((fileId:
|
|
3467
|
+
fetchFile: Ref<((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((...data: any[]) => void), ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((fileId: FileRetrieve["id"]) => Promise<FileRetrieve>) | ((...data: any[]) => void)>;
|
|
3377
3468
|
getEnv: Ref<(() => Promise<import('../../../main.lib').PitcherEnv>) | (() => Promise<import('../../../main.lib').PitcherEnv>) | ((...data: any[]) => void) | undefined, (() => Promise<import('../../../main.lib').PitcherEnv>) | (() => Promise<import('../../../main.lib').PitcherEnv>) | ((...data: any[]) => void) | undefined>;
|
|
3378
3469
|
inCall: Ref<boolean | undefined, boolean | undefined>;
|
|
3379
3470
|
isAdmin: import('vue').ComputedRef<boolean>;
|
|
@@ -3399,6 +3490,7 @@ export default function useCanvas(): {
|
|
|
3399
3490
|
isViewOnlyMode: import('vue').ComputedRef<boolean>;
|
|
3400
3491
|
justAddedComponentId: Ref<string | null, string | null>;
|
|
3401
3492
|
listFiles: Ref<((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined, ((params?: any) => Promise<import('../../../../types/openapi').File[]>) | ((...data: any[]) => void) | undefined>;
|
|
3493
|
+
isSetListFilesApi: Ref<boolean, boolean>;
|
|
3402
3494
|
listRecommendedFiles: Ref<((params: {
|
|
3403
3495
|
sectionId: CanvasRetrieve["id"];
|
|
3404
3496
|
matchingStrategy: ("tags" | "metadata")[];
|
|
@@ -3423,6 +3515,7 @@ export default function useCanvas(): {
|
|
|
3423
3515
|
uniqueId: string;
|
|
3424
3516
|
metadata?: Record<string, any>;
|
|
3425
3517
|
sectionIndex?: number;
|
|
3518
|
+
pageIndex?: number;
|
|
3426
3519
|
}[]>;
|
|
3427
3520
|
onComponentEnter: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
3428
3521
|
onComponentExit: Ref<((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined, ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((data: ComponentNode | CanvasRetrieve, params: import('../types/canvas').ComponentTrackingParams) => void) | ((c: ComponentNode | CanvasRetrieve) => void) | undefined>;
|
|
@@ -3476,7 +3569,7 @@ export default function useCanvas(): {
|
|
|
3476
3569
|
save: typeof save;
|
|
3477
3570
|
onSave: (canvasId: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[0], canvasData: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[1], showToast?: Parameters<NonNullable<CanvasBuilderProps["onSave"]>>[2]) => Promise<void> | Promise<CanvasRetrieve> | undefined;
|
|
3478
3571
|
temporaryContextKeys: import('vue').ComputedRef<string[]>;
|
|
3479
|
-
setTemporaryContextKeys: (source:
|
|
3572
|
+
setTemporaryContextKeys: (source: "onUpdateFromEmbeddable" | "fetchedAccountData", context: CanvasRetrieve["context"]) => void;
|
|
3480
3573
|
onSfdcAccountSearch: Ref<((searchTerm?: import('vue').MaybeRef<string>) => {
|
|
3481
3574
|
accountsLoading: Ref<boolean>;
|
|
3482
3575
|
accounts: Ref<{
|
|
@@ -3579,7 +3672,7 @@ export default function useCanvas(): {
|
|
|
3579
3672
|
};
|
|
3580
3673
|
readonly slide: {
|
|
3581
3674
|
readonly index: number;
|
|
3582
|
-
readonly url:
|
|
3675
|
+
readonly url: FileRetrieve["thumbnail_url"];
|
|
3583
3676
|
};
|
|
3584
3677
|
} | {
|
|
3585
3678
|
readonly id: string;
|
|
@@ -3689,21 +3782,21 @@ export default function useCanvas(): {
|
|
|
3689
3782
|
} | undefined;
|
|
3690
3783
|
} | undefined;
|
|
3691
3784
|
readonly file: {
|
|
3692
|
-
readonly id:
|
|
3693
|
-
readonly snapshot_id?:
|
|
3694
|
-
readonly name:
|
|
3785
|
+
readonly id: FileRetrieve["id"];
|
|
3786
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3787
|
+
readonly name: FileRetrieve["name"];
|
|
3695
3788
|
readonly is_deleted?: boolean | undefined;
|
|
3696
3789
|
readonly expires_at?: string | null | undefined;
|
|
3697
|
-
readonly content_url:
|
|
3790
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3698
3791
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3699
|
-
readonly content_extension:
|
|
3792
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3700
3793
|
readonly permissions?: {
|
|
3701
3794
|
readonly can_download?: boolean | undefined;
|
|
3702
3795
|
readonly can_share?: boolean | undefined;
|
|
3703
3796
|
} | undefined;
|
|
3704
3797
|
readonly tags?: readonly string[] | undefined;
|
|
3705
|
-
readonly thumbnail_url?:
|
|
3706
|
-
readonly content_length?:
|
|
3798
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3799
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3707
3800
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3708
3801
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3709
3802
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3716,14 +3809,14 @@ export default function useCanvas(): {
|
|
|
3716
3809
|
} | {
|
|
3717
3810
|
readonly items: readonly ({
|
|
3718
3811
|
readonly file: {
|
|
3719
|
-
readonly id:
|
|
3720
|
-
readonly snapshot_id?:
|
|
3721
|
-
readonly name:
|
|
3812
|
+
readonly id: FileRetrieve["id"];
|
|
3813
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3814
|
+
readonly name: FileRetrieve["name"];
|
|
3722
3815
|
readonly is_deleted?: boolean | undefined;
|
|
3723
3816
|
readonly expires_at?: string | null | undefined;
|
|
3724
|
-
readonly content_url?:
|
|
3817
|
+
readonly content_url?: FileRetrieve["content_url"] | undefined;
|
|
3725
3818
|
readonly content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
3726
|
-
readonly content_extension?:
|
|
3819
|
+
readonly content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
3727
3820
|
readonly permissions?: {
|
|
3728
3821
|
readonly can_download?: boolean | undefined;
|
|
3729
3822
|
readonly can_share?: boolean | undefined;
|
|
@@ -3732,26 +3825,26 @@ export default function useCanvas(): {
|
|
|
3732
3825
|
};
|
|
3733
3826
|
readonly slide: {
|
|
3734
3827
|
readonly index: number;
|
|
3735
|
-
readonly url?:
|
|
3828
|
+
readonly url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
3736
3829
|
};
|
|
3737
3830
|
readonly type: "slide";
|
|
3738
3831
|
} | {
|
|
3739
3832
|
readonly file: {
|
|
3740
|
-
readonly id:
|
|
3741
|
-
readonly snapshot_id?:
|
|
3742
|
-
readonly name:
|
|
3833
|
+
readonly id: FileRetrieve["id"];
|
|
3834
|
+
readonly snapshot_id?: FileRetrieve["id"] | undefined;
|
|
3835
|
+
readonly name: FileRetrieve["name"];
|
|
3743
3836
|
readonly is_deleted?: boolean | undefined;
|
|
3744
3837
|
readonly expires_at?: string | null | undefined;
|
|
3745
|
-
readonly content_url:
|
|
3838
|
+
readonly content_url: FileRetrieve["content_url"];
|
|
3746
3839
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
3747
|
-
readonly content_extension:
|
|
3840
|
+
readonly content_extension: FileRetrieve["content_extension"];
|
|
3748
3841
|
readonly permissions?: {
|
|
3749
3842
|
readonly can_download?: boolean | undefined;
|
|
3750
3843
|
readonly can_share?: boolean | undefined;
|
|
3751
3844
|
} | undefined;
|
|
3752
3845
|
readonly tags?: readonly string[] | undefined;
|
|
3753
|
-
readonly thumbnail_url?:
|
|
3754
|
-
readonly content_length?:
|
|
3846
|
+
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
3847
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
3755
3848
|
readonly content_thumbnails?: readonly string[] | null | undefined;
|
|
3756
3849
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
3757
3850
|
readonly pspdfkit_auth_payload?: {
|
|
@@ -3776,6 +3869,19 @@ export default function useCanvas(): {
|
|
|
3776
3869
|
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3777
3870
|
readonly selection_app_name?: string | undefined;
|
|
3778
3871
|
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3872
|
+
} | {
|
|
3873
|
+
readonly sections: readonly {
|
|
3874
|
+
readonly id: string;
|
|
3875
|
+
readonly file_id?: string | undefined;
|
|
3876
|
+
readonly sequence?: number | undefined;
|
|
3877
|
+
readonly component_id: string;
|
|
3878
|
+
readonly page_index?: number | undefined;
|
|
3879
|
+
readonly type: "section" | "file";
|
|
3880
|
+
}[];
|
|
3881
|
+
readonly animation_in?: string | undefined;
|
|
3882
|
+
readonly selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
3883
|
+
readonly selection_app_name?: string | undefined;
|
|
3884
|
+
readonly is_restricted_to_preselections?: boolean | undefined;
|
|
3779
3885
|
} | {
|
|
3780
3886
|
readonly html: string;
|
|
3781
3887
|
} | {
|
|
@@ -4037,7 +4143,7 @@ export default function useCanvas(): {
|
|
|
4037
4143
|
};
|
|
4038
4144
|
slide: {
|
|
4039
4145
|
index: number;
|
|
4040
|
-
url:
|
|
4146
|
+
url: FileRetrieve["thumbnail_url"];
|
|
4041
4147
|
};
|
|
4042
4148
|
} | {
|
|
4043
4149
|
id: string;
|
|
@@ -4137,22 +4243,22 @@ export default function useCanvas(): {
|
|
|
4137
4243
|
} | undefined;
|
|
4138
4244
|
} | undefined;
|
|
4139
4245
|
file: {
|
|
4140
|
-
id:
|
|
4141
|
-
snapshot_id?:
|
|
4142
|
-
name:
|
|
4246
|
+
id: FileRetrieve["id"];
|
|
4247
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4248
|
+
name: FileRetrieve["name"];
|
|
4143
4249
|
is_deleted?: boolean | undefined;
|
|
4144
4250
|
expires_at?: string | null | undefined;
|
|
4145
|
-
content_url:
|
|
4251
|
+
content_url: FileRetrieve["content_url"];
|
|
4146
4252
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
4147
|
-
content_extension:
|
|
4253
|
+
content_extension: FileRetrieve["content_extension"];
|
|
4148
4254
|
permissions?: {
|
|
4149
4255
|
can_download?: boolean | undefined;
|
|
4150
4256
|
can_share?: boolean | undefined;
|
|
4151
4257
|
} | undefined;
|
|
4152
4258
|
tags?: string[] | undefined;
|
|
4153
|
-
thumbnail_url?:
|
|
4154
|
-
readonly content_length?:
|
|
4155
|
-
content_thumbnails?: (
|
|
4259
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
4260
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
4261
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
4156
4262
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
4157
4263
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
4158
4264
|
} | null;
|
|
@@ -4160,14 +4266,14 @@ export default function useCanvas(): {
|
|
|
4160
4266
|
} | {
|
|
4161
4267
|
items: ({
|
|
4162
4268
|
file: {
|
|
4163
|
-
id:
|
|
4164
|
-
snapshot_id?:
|
|
4165
|
-
name:
|
|
4269
|
+
id: FileRetrieve["id"];
|
|
4270
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4271
|
+
name: FileRetrieve["name"];
|
|
4166
4272
|
is_deleted?: boolean | undefined;
|
|
4167
4273
|
expires_at?: string | null | undefined;
|
|
4168
|
-
content_url?:
|
|
4274
|
+
content_url?: FileRetrieve["content_url"] | undefined;
|
|
4169
4275
|
content_type?: (import('../../../../types/openapi').FileContentTypeEnum | null) | undefined;
|
|
4170
|
-
content_extension?:
|
|
4276
|
+
content_extension?: FileRetrieve["content_extension"] | undefined;
|
|
4171
4277
|
permissions?: {
|
|
4172
4278
|
can_download?: boolean | undefined;
|
|
4173
4279
|
can_share?: boolean | undefined;
|
|
@@ -4176,27 +4282,27 @@ export default function useCanvas(): {
|
|
|
4176
4282
|
};
|
|
4177
4283
|
slide: {
|
|
4178
4284
|
index: number;
|
|
4179
|
-
url?:
|
|
4285
|
+
url?: FileRetrieve["content_thumbnails"][number] | undefined;
|
|
4180
4286
|
};
|
|
4181
4287
|
type: "slide";
|
|
4182
4288
|
} | {
|
|
4183
4289
|
file: {
|
|
4184
|
-
id:
|
|
4185
|
-
snapshot_id?:
|
|
4186
|
-
name:
|
|
4290
|
+
id: FileRetrieve["id"];
|
|
4291
|
+
snapshot_id?: FileRetrieve["id"] | undefined;
|
|
4292
|
+
name: FileRetrieve["name"];
|
|
4187
4293
|
is_deleted?: boolean | undefined;
|
|
4188
4294
|
expires_at?: string | null | undefined;
|
|
4189
|
-
content_url:
|
|
4295
|
+
content_url: FileRetrieve["content_url"];
|
|
4190
4296
|
content_type: import('../../../../types/openapi').FileContentTypeEnum | null;
|
|
4191
|
-
content_extension:
|
|
4297
|
+
content_extension: FileRetrieve["content_extension"];
|
|
4192
4298
|
permissions?: {
|
|
4193
4299
|
can_download?: boolean | undefined;
|
|
4194
4300
|
can_share?: boolean | undefined;
|
|
4195
4301
|
} | undefined;
|
|
4196
4302
|
tags?: string[] | undefined;
|
|
4197
|
-
thumbnail_url?:
|
|
4198
|
-
readonly content_length?:
|
|
4199
|
-
content_thumbnails?: (
|
|
4303
|
+
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
4304
|
+
readonly content_length?: FileRetrieve["content_length"] | undefined;
|
|
4305
|
+
content_thumbnails?: (FileRetrieve["content_thumbnails"] | null) | undefined;
|
|
4200
4306
|
readonly pspdfkit_server_url?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_server_url"] | undefined;
|
|
4201
4307
|
readonly pspdfkit_auth_payload?: import('../../../components/CFileViewer/CFileViewer.types').FileModel["pspdfkit_auth_payload"] | undefined;
|
|
4202
4308
|
};
|
|
@@ -4216,6 +4322,19 @@ export default function useCanvas(): {
|
|
|
4216
4322
|
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
4217
4323
|
selection_app_name?: string | undefined;
|
|
4218
4324
|
is_restricted_to_preselections?: boolean | undefined;
|
|
4325
|
+
} | {
|
|
4326
|
+
sections: {
|
|
4327
|
+
id: string;
|
|
4328
|
+
file_id?: string | undefined;
|
|
4329
|
+
sequence?: number | undefined;
|
|
4330
|
+
component_id: string;
|
|
4331
|
+
page_index?: number | undefined;
|
|
4332
|
+
type: "section" | "file";
|
|
4333
|
+
}[];
|
|
4334
|
+
animation_in?: string | undefined;
|
|
4335
|
+
selection_strategy?: "free" | "single" | "at-least-one" | "app" | undefined;
|
|
4336
|
+
selection_app_name?: string | undefined;
|
|
4337
|
+
is_restricted_to_preselections?: boolean | undefined;
|
|
4219
4338
|
} | {
|
|
4220
4339
|
html: string;
|
|
4221
4340
|
} | {
|
|
@@ -4502,6 +4621,7 @@ export default function useCanvas(): {
|
|
|
4502
4621
|
PageBreak: boolean;
|
|
4503
4622
|
Scribble: boolean;
|
|
4504
4623
|
SectionList: boolean;
|
|
4624
|
+
ContentList: boolean;
|
|
4505
4625
|
Text: boolean;
|
|
4506
4626
|
Timeline: boolean;
|
|
4507
4627
|
apps?: Record<string, boolean> | undefined;
|
|
@@ -4575,6 +4695,10 @@ export default function useCanvas(): {
|
|
|
4575
4695
|
admin?: boolean | undefined;
|
|
4576
4696
|
rep?: boolean | undefined;
|
|
4577
4697
|
};
|
|
4698
|
+
ContentList: {
|
|
4699
|
+
admin?: boolean | undefined;
|
|
4700
|
+
rep?: boolean | undefined;
|
|
4701
|
+
};
|
|
4578
4702
|
Text: {
|
|
4579
4703
|
admin?: boolean | undefined;
|
|
4580
4704
|
rep?: boolean | undefined;
|
|
@@ -4696,6 +4820,8 @@ export default function useCanvas(): {
|
|
|
4696
4820
|
use_collection_player_as_default_file_viewer_for_original_extensions?: string[] | undefined;
|
|
4697
4821
|
enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
4698
4822
|
generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
4823
|
+
convert_pptx_to_html?: boolean | undefined;
|
|
4824
|
+
convert_pptx_to_html_default_value?: boolean | undefined;
|
|
4699
4825
|
enable_search_with_suggestions?: boolean | undefined;
|
|
4700
4826
|
enable_search_filter_with_suggestions?: boolean | undefined;
|
|
4701
4827
|
enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
@@ -4718,10 +4844,17 @@ export default function useCanvas(): {
|
|
|
4718
4844
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
4719
4845
|
disable_postcall?: boolean | undefined;
|
|
4720
4846
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
4847
|
+
slotty_ui_route_config?: {
|
|
4848
|
+
name: string;
|
|
4849
|
+
enabled: boolean;
|
|
4850
|
+
type: "base" | "app";
|
|
4851
|
+
}[] | undefined;
|
|
4721
4852
|
custom_event?: string | undefined;
|
|
4722
4853
|
enable_recents?: boolean | undefined;
|
|
4723
4854
|
enable_favorites?: boolean | undefined;
|
|
4724
4855
|
enable_sync_file_filtering?: boolean | undefined;
|
|
4856
|
+
time_format?: string | undefined;
|
|
4857
|
+
date_format?: string | undefined;
|
|
4725
4858
|
}, (OrganizationSettings & {
|
|
4726
4859
|
canvas?: {
|
|
4727
4860
|
hide_page_break_in_toc?: boolean;
|
|
@@ -4761,6 +4894,8 @@ export default function useCanvas(): {
|
|
|
4761
4894
|
enable_multipeer_connectivity?: boolean;
|
|
4762
4895
|
enable_syncbox?: boolean;
|
|
4763
4896
|
enable_sync_file_filtering?: boolean;
|
|
4897
|
+
time_format?: string;
|
|
4898
|
+
date_format?: string;
|
|
4764
4899
|
ios?: InstanceSettings;
|
|
4765
4900
|
}) | {
|
|
4766
4901
|
auto_assignment_rules?: {
|
|
@@ -4811,6 +4946,7 @@ export default function useCanvas(): {
|
|
|
4811
4946
|
PageBreak: boolean;
|
|
4812
4947
|
Scribble: boolean;
|
|
4813
4948
|
SectionList: boolean;
|
|
4949
|
+
ContentList: boolean;
|
|
4814
4950
|
Text: boolean;
|
|
4815
4951
|
Timeline: boolean;
|
|
4816
4952
|
apps?: Record<string, boolean> | undefined;
|
|
@@ -4884,6 +5020,10 @@ export default function useCanvas(): {
|
|
|
4884
5020
|
admin?: boolean | undefined;
|
|
4885
5021
|
rep?: boolean | undefined;
|
|
4886
5022
|
};
|
|
5023
|
+
ContentList: {
|
|
5024
|
+
admin?: boolean | undefined;
|
|
5025
|
+
rep?: boolean | undefined;
|
|
5026
|
+
};
|
|
4887
5027
|
Text: {
|
|
4888
5028
|
admin?: boolean | undefined;
|
|
4889
5029
|
rep?: boolean | undefined;
|
|
@@ -5005,6 +5145,8 @@ export default function useCanvas(): {
|
|
|
5005
5145
|
use_collection_player_as_default_file_viewer_for_original_extensions?: string[] | undefined;
|
|
5006
5146
|
enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
5007
5147
|
generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5148
|
+
convert_pptx_to_html?: boolean | undefined;
|
|
5149
|
+
convert_pptx_to_html_default_value?: boolean | undefined;
|
|
5008
5150
|
enable_search_with_suggestions?: boolean | undefined;
|
|
5009
5151
|
enable_search_filter_with_suggestions?: boolean | undefined;
|
|
5010
5152
|
enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
@@ -5027,10 +5169,17 @@ export default function useCanvas(): {
|
|
|
5027
5169
|
is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5028
5170
|
disable_postcall?: boolean | undefined;
|
|
5029
5171
|
launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5172
|
+
slotty_ui_route_config?: {
|
|
5173
|
+
name: string;
|
|
5174
|
+
enabled: boolean;
|
|
5175
|
+
type: "base" | "app";
|
|
5176
|
+
}[] | undefined;
|
|
5030
5177
|
custom_event?: string | undefined;
|
|
5031
5178
|
enable_recents?: boolean | undefined;
|
|
5032
5179
|
enable_favorites?: boolean | undefined;
|
|
5033
5180
|
enable_sync_file_filtering?: boolean | undefined;
|
|
5181
|
+
time_format?: string | undefined;
|
|
5182
|
+
date_format?: string | undefined;
|
|
5034
5183
|
}>;
|
|
5035
5184
|
pitcherSettings: Readonly<Ref<{
|
|
5036
5185
|
readonly auto_assignment_rules?: readonly {
|
|
@@ -5083,6 +5232,7 @@ export default function useCanvas(): {
|
|
|
5083
5232
|
readonly PageBreak: boolean;
|
|
5084
5233
|
readonly Scribble: boolean;
|
|
5085
5234
|
readonly SectionList: boolean;
|
|
5235
|
+
readonly ContentList: boolean;
|
|
5086
5236
|
readonly Text: boolean;
|
|
5087
5237
|
readonly Timeline: boolean;
|
|
5088
5238
|
readonly apps?: {
|
|
@@ -5158,6 +5308,10 @@ export default function useCanvas(): {
|
|
|
5158
5308
|
readonly admin?: boolean | undefined;
|
|
5159
5309
|
readonly rep?: boolean | undefined;
|
|
5160
5310
|
};
|
|
5311
|
+
readonly ContentList: {
|
|
5312
|
+
readonly admin?: boolean | undefined;
|
|
5313
|
+
readonly rep?: boolean | undefined;
|
|
5314
|
+
};
|
|
5161
5315
|
readonly Text: {
|
|
5162
5316
|
readonly admin?: boolean | undefined;
|
|
5163
5317
|
readonly rep?: boolean | undefined;
|
|
@@ -5309,6 +5463,8 @@ export default function useCanvas(): {
|
|
|
5309
5463
|
readonly use_collection_player_as_default_file_viewer_for_original_extensions?: readonly string[] | undefined;
|
|
5310
5464
|
readonly enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
5311
5465
|
readonly generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5466
|
+
readonly convert_pptx_to_html?: boolean | undefined;
|
|
5467
|
+
readonly convert_pptx_to_html_default_value?: boolean | undefined;
|
|
5312
5468
|
readonly enable_search_with_suggestions?: boolean | undefined;
|
|
5313
5469
|
readonly enable_search_filter_with_suggestions?: boolean | undefined;
|
|
5314
5470
|
readonly enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
@@ -5331,10 +5487,17 @@ export default function useCanvas(): {
|
|
|
5331
5487
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5332
5488
|
readonly disable_postcall?: boolean | undefined;
|
|
5333
5489
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5490
|
+
readonly slotty_ui_route_config?: readonly {
|
|
5491
|
+
readonly name: string;
|
|
5492
|
+
readonly enabled: boolean;
|
|
5493
|
+
readonly type: "base" | "app";
|
|
5494
|
+
}[] | undefined;
|
|
5334
5495
|
readonly custom_event?: string | undefined;
|
|
5335
5496
|
readonly enable_recents?: boolean | undefined;
|
|
5336
5497
|
readonly enable_favorites?: boolean | undefined;
|
|
5337
5498
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5499
|
+
readonly time_format?: string | undefined;
|
|
5500
|
+
readonly date_format?: string | undefined;
|
|
5338
5501
|
}, {
|
|
5339
5502
|
readonly auto_assignment_rules?: readonly {
|
|
5340
5503
|
readonly connection_id: string;
|
|
@@ -5386,6 +5549,7 @@ export default function useCanvas(): {
|
|
|
5386
5549
|
readonly PageBreak: boolean;
|
|
5387
5550
|
readonly Scribble: boolean;
|
|
5388
5551
|
readonly SectionList: boolean;
|
|
5552
|
+
readonly ContentList: boolean;
|
|
5389
5553
|
readonly Text: boolean;
|
|
5390
5554
|
readonly Timeline: boolean;
|
|
5391
5555
|
readonly apps?: {
|
|
@@ -5461,6 +5625,10 @@ export default function useCanvas(): {
|
|
|
5461
5625
|
readonly admin?: boolean | undefined;
|
|
5462
5626
|
readonly rep?: boolean | undefined;
|
|
5463
5627
|
};
|
|
5628
|
+
readonly ContentList: {
|
|
5629
|
+
readonly admin?: boolean | undefined;
|
|
5630
|
+
readonly rep?: boolean | undefined;
|
|
5631
|
+
};
|
|
5464
5632
|
readonly Text: {
|
|
5465
5633
|
readonly admin?: boolean | undefined;
|
|
5466
5634
|
readonly rep?: boolean | undefined;
|
|
@@ -5612,6 +5780,8 @@ export default function useCanvas(): {
|
|
|
5612
5780
|
readonly use_collection_player_as_default_file_viewer_for_original_extensions?: readonly string[] | undefined;
|
|
5613
5781
|
readonly enable_ppt_converter_in_canvas_templates?: boolean | undefined;
|
|
5614
5782
|
readonly generate_only_sections_in_ppt_converter?: boolean | undefined;
|
|
5783
|
+
readonly convert_pptx_to_html?: boolean | undefined;
|
|
5784
|
+
readonly convert_pptx_to_html_default_value?: boolean | undefined;
|
|
5615
5785
|
readonly enable_search_with_suggestions?: boolean | undefined;
|
|
5616
5786
|
readonly enable_search_filter_with_suggestions?: boolean | undefined;
|
|
5617
5787
|
readonly enable_quick_filters_for_search_metadata_filters?: boolean | undefined;
|
|
@@ -5634,10 +5804,17 @@ export default function useCanvas(): {
|
|
|
5634
5804
|
readonly is_meeting_bar_account_selection_disabled?: boolean | undefined;
|
|
5635
5805
|
readonly disable_postcall?: boolean | undefined;
|
|
5636
5806
|
readonly launch_in_present_mode_on_creation?: boolean | undefined;
|
|
5807
|
+
readonly slotty_ui_route_config?: readonly {
|
|
5808
|
+
readonly name: string;
|
|
5809
|
+
readonly enabled: boolean;
|
|
5810
|
+
readonly type: "base" | "app";
|
|
5811
|
+
}[] | undefined;
|
|
5637
5812
|
readonly custom_event?: string | undefined;
|
|
5638
5813
|
readonly enable_recents?: boolean | undefined;
|
|
5639
5814
|
readonly enable_favorites?: boolean | undefined;
|
|
5640
5815
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5816
|
+
readonly time_format?: string | undefined;
|
|
5817
|
+
readonly date_format?: string | undefined;
|
|
5641
5818
|
}>>;
|
|
5642
5819
|
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
5643
5820
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean, index?: number) => void;
|
|
@@ -5671,6 +5848,7 @@ export default function useCanvas(): {
|
|
|
5671
5848
|
setInCall: (value?: boolean | undefined) => void;
|
|
5672
5849
|
setIsEditMode: (value: boolean) => void;
|
|
5673
5850
|
updateActiveCanvasProperties: (newProperties: Partial<CanvasRetrieve>) => void;
|
|
5851
|
+
mergeIntoActiveContext: (contextUpdate: Record<string, any>) => void;
|
|
5674
5852
|
updateHomePageSettings: (homePage: {
|
|
5675
5853
|
component_id: string;
|
|
5676
5854
|
section_id?: string | null;
|
|
@@ -5688,7 +5866,7 @@ export default function useCanvas(): {
|
|
|
5688
5866
|
node: ComponentNode;
|
|
5689
5867
|
section: CanvasRetrieve["sections"][number];
|
|
5690
5868
|
}) => boolean;
|
|
5691
|
-
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps> | null;
|
|
5869
|
+
findNodeInSection: (sectionId: string, nodeId: string) => ComponentNode<import('../../collection-player/export').CollectionPlayer | import('../types/canvas').GridProps | import('../types/canvas').GridItemProps | import('../types/canvas').TextProps | import('../types/canvas').CarouselProps | MultimediaProps | import('../types/canvas').EmbeddableProps | ContentGridProps | SectionListProps | ContentListProps | import('../types/canvas').HtmlProps | import('../types/canvas').IFrameProps | import('../types/canvas').LinkProps | import('../types/canvas').PageBreakProps | import('../types/canvas').PageProps | import('../types/canvas').TimelineProps | import('../types/canvas').DynamicDataTableProps | import('../types/canvas').CustomDataTableProps> | null;
|
|
5692
5870
|
updateNodeInSection: (sectionId: string, nodeId: string, newData: ComponentNode["data"]) => boolean;
|
|
5693
5871
|
getMaxWidth: typeof getMaxWidth;
|
|
5694
5872
|
getParentType: (nodeId: Ref<ComponentNode["id"] | null | undefined>) => import('vue').ComputedRef<ComponentTypes | undefined>;
|