@pitcher/js-api 1.26.0-beta.15 → 1.26.0-beta.17
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 +4 -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/agenda-selector/composables/move-item-modal.use.d.ts +8 -0
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +1 -0
- package/lib/apps/browser/stores/api.d.ts +9 -0
- package/lib/apps/browser/stores/upload.d.ts +8 -4
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +15 -1
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +1 -0
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +108 -5
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +24 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +24 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -1
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +4 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +5 -1
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +6 -6
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +8 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +4 -0
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +7 -0
- package/lib/composables/useSmartStore.d.ts +1 -1
- package/lib/sdk/api/modules/query.d.ts +3 -3
- package/lib/sdk/payload.types.d.ts +4 -0
- package/lib/types/instanceSettings.types.d.ts +0 -1
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/lib/types/sfdc.d.ts +1 -0
- package/package.json +2 -2
- package/types/openapi/models/FilePermission.d.ts +1 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
|
@@ -50,6 +50,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
50
50
|
readonly can_download?: boolean | undefined;
|
|
51
51
|
readonly can_share?: boolean | undefined;
|
|
52
52
|
readonly can_be_divided?: boolean | undefined;
|
|
53
|
+
readonly can_print?: boolean | undefined;
|
|
53
54
|
} | undefined;
|
|
54
55
|
readonly content_url: string | null;
|
|
55
56
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -58,6 +59,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
58
59
|
} | null;
|
|
59
60
|
readonly pspdfkit_document_id: string | null;
|
|
60
61
|
readonly pspdfkit_server_url: string | null;
|
|
62
|
+
readonly expires_at?: string | null | undefined;
|
|
61
63
|
};
|
|
62
64
|
readonly slide: {
|
|
63
65
|
readonly index: number;
|
|
@@ -79,6 +81,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
79
81
|
readonly can_download?: boolean | undefined;
|
|
80
82
|
readonly can_share?: boolean | undefined;
|
|
81
83
|
readonly can_be_divided?: boolean | undefined;
|
|
84
|
+
readonly can_print?: boolean | undefined;
|
|
82
85
|
} | undefined;
|
|
83
86
|
readonly content_url: string | null;
|
|
84
87
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -87,6 +90,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
87
90
|
} | null;
|
|
88
91
|
readonly pspdfkit_document_id: string | null;
|
|
89
92
|
readonly pspdfkit_server_url: string | null;
|
|
93
|
+
readonly expires_at?: string | null | undefined;
|
|
90
94
|
};
|
|
91
95
|
})[];
|
|
92
96
|
}[];
|
|
@@ -184,6 +188,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
184
188
|
readonly can_download?: boolean | undefined;
|
|
185
189
|
readonly can_share?: boolean | undefined;
|
|
186
190
|
readonly can_be_divided?: boolean | undefined;
|
|
191
|
+
readonly can_print?: boolean | undefined;
|
|
187
192
|
} | undefined;
|
|
188
193
|
readonly tags?: readonly string[] | undefined;
|
|
189
194
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -212,6 +217,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
212
217
|
readonly can_download?: boolean | undefined;
|
|
213
218
|
readonly can_share?: boolean | undefined;
|
|
214
219
|
readonly can_be_divided?: boolean | undefined;
|
|
220
|
+
readonly can_print?: boolean | undefined;
|
|
215
221
|
} | undefined;
|
|
216
222
|
readonly tags?: readonly string[] | undefined;
|
|
217
223
|
};
|
|
@@ -234,6 +240,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
234
240
|
readonly can_download?: boolean | undefined;
|
|
235
241
|
readonly can_share?: boolean | undefined;
|
|
236
242
|
readonly can_be_divided?: boolean | undefined;
|
|
243
|
+
readonly can_print?: boolean | undefined;
|
|
237
244
|
} | undefined;
|
|
238
245
|
readonly tags?: readonly string[] | undefined;
|
|
239
246
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -312,6 +319,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
312
319
|
readonly can_download?: boolean | undefined;
|
|
313
320
|
readonly can_share?: boolean | undefined;
|
|
314
321
|
readonly can_be_divided?: boolean | undefined;
|
|
322
|
+
readonly can_print?: boolean | undefined;
|
|
315
323
|
} | undefined;
|
|
316
324
|
readonly metadata?: {
|
|
317
325
|
readonly [x: string]: any;
|
|
@@ -469,6 +477,10 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
469
477
|
readonly is_editable: boolean;
|
|
470
478
|
readonly is_removable: boolean;
|
|
471
479
|
} | undefined;
|
|
480
|
+
readonly template_permissions?: {
|
|
481
|
+
readonly is_editable: boolean;
|
|
482
|
+
readonly is_removable: boolean;
|
|
483
|
+
} | undefined;
|
|
472
484
|
readonly style?: {
|
|
473
485
|
readonly [x: string]: any;
|
|
474
486
|
} | undefined;
|
|
@@ -530,6 +542,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
530
542
|
readonly can_download?: boolean | undefined;
|
|
531
543
|
readonly can_share?: boolean | undefined;
|
|
532
544
|
readonly can_be_divided?: boolean | undefined;
|
|
545
|
+
readonly can_print?: boolean | undefined;
|
|
533
546
|
} | undefined;
|
|
534
547
|
readonly content_url: string | null;
|
|
535
548
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -538,6 +551,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
538
551
|
} | null;
|
|
539
552
|
readonly pspdfkit_document_id: string | null;
|
|
540
553
|
readonly pspdfkit_server_url: string | null;
|
|
554
|
+
readonly expires_at?: string | null | undefined;
|
|
541
555
|
};
|
|
542
556
|
readonly slide: {
|
|
543
557
|
readonly index: number;
|
|
@@ -559,6 +573,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
559
573
|
readonly can_download?: boolean | undefined;
|
|
560
574
|
readonly can_share?: boolean | undefined;
|
|
561
575
|
readonly can_be_divided?: boolean | undefined;
|
|
576
|
+
readonly can_print?: boolean | undefined;
|
|
562
577
|
} | undefined;
|
|
563
578
|
readonly content_url: string | null;
|
|
564
579
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -567,6 +582,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
567
582
|
} | null;
|
|
568
583
|
readonly pspdfkit_document_id: string | null;
|
|
569
584
|
readonly pspdfkit_server_url: string | null;
|
|
585
|
+
readonly expires_at?: string | null | undefined;
|
|
570
586
|
};
|
|
571
587
|
})[];
|
|
572
588
|
}[];
|
|
@@ -664,6 +680,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
664
680
|
readonly can_download?: boolean | undefined;
|
|
665
681
|
readonly can_share?: boolean | undefined;
|
|
666
682
|
readonly can_be_divided?: boolean | undefined;
|
|
683
|
+
readonly can_print?: boolean | undefined;
|
|
667
684
|
} | undefined;
|
|
668
685
|
readonly tags?: readonly string[] | undefined;
|
|
669
686
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -692,6 +709,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
692
709
|
readonly can_download?: boolean | undefined;
|
|
693
710
|
readonly can_share?: boolean | undefined;
|
|
694
711
|
readonly can_be_divided?: boolean | undefined;
|
|
712
|
+
readonly can_print?: boolean | undefined;
|
|
695
713
|
} | undefined;
|
|
696
714
|
readonly tags?: readonly string[] | undefined;
|
|
697
715
|
};
|
|
@@ -714,6 +732,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
714
732
|
readonly can_download?: boolean | undefined;
|
|
715
733
|
readonly can_share?: boolean | undefined;
|
|
716
734
|
readonly can_be_divided?: boolean | undefined;
|
|
735
|
+
readonly can_print?: boolean | undefined;
|
|
717
736
|
} | undefined;
|
|
718
737
|
readonly tags?: readonly string[] | undefined;
|
|
719
738
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -792,6 +811,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
792
811
|
readonly can_download?: boolean | undefined;
|
|
793
812
|
readonly can_share?: boolean | undefined;
|
|
794
813
|
readonly can_be_divided?: boolean | undefined;
|
|
814
|
+
readonly can_print?: boolean | undefined;
|
|
795
815
|
} | undefined;
|
|
796
816
|
readonly metadata?: {
|
|
797
817
|
readonly [x: string]: any;
|
|
@@ -949,6 +969,10 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
949
969
|
readonly is_editable: boolean;
|
|
950
970
|
readonly is_removable: boolean;
|
|
951
971
|
} | undefined;
|
|
972
|
+
readonly template_permissions?: {
|
|
973
|
+
readonly is_editable: boolean;
|
|
974
|
+
readonly is_removable: boolean;
|
|
975
|
+
} | undefined;
|
|
952
976
|
readonly style?: {
|
|
953
977
|
readonly [x: string]: any;
|
|
954
978
|
} | undefined;
|
|
@@ -1162,6 +1186,7 @@ export default function useCanvas(): {
|
|
|
1162
1186
|
readonly can_download?: boolean | undefined;
|
|
1163
1187
|
readonly can_share?: boolean | undefined;
|
|
1164
1188
|
readonly can_be_divided?: boolean | undefined;
|
|
1189
|
+
readonly can_print?: boolean | undefined;
|
|
1165
1190
|
} | undefined;
|
|
1166
1191
|
readonly content_url: string | null;
|
|
1167
1192
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -1170,6 +1195,7 @@ export default function useCanvas(): {
|
|
|
1170
1195
|
} | null;
|
|
1171
1196
|
readonly pspdfkit_document_id: string | null;
|
|
1172
1197
|
readonly pspdfkit_server_url: string | null;
|
|
1198
|
+
readonly expires_at?: string | null | undefined;
|
|
1173
1199
|
};
|
|
1174
1200
|
readonly slide: {
|
|
1175
1201
|
readonly index: number;
|
|
@@ -1191,6 +1217,7 @@ export default function useCanvas(): {
|
|
|
1191
1217
|
readonly can_download?: boolean | undefined;
|
|
1192
1218
|
readonly can_share?: boolean | undefined;
|
|
1193
1219
|
readonly can_be_divided?: boolean | undefined;
|
|
1220
|
+
readonly can_print?: boolean | undefined;
|
|
1194
1221
|
} | undefined;
|
|
1195
1222
|
readonly content_url: string | null;
|
|
1196
1223
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -1199,6 +1226,7 @@ export default function useCanvas(): {
|
|
|
1199
1226
|
} | null;
|
|
1200
1227
|
readonly pspdfkit_document_id: string | null;
|
|
1201
1228
|
readonly pspdfkit_server_url: string | null;
|
|
1229
|
+
readonly expires_at?: string | null | undefined;
|
|
1202
1230
|
};
|
|
1203
1231
|
})[];
|
|
1204
1232
|
}[];
|
|
@@ -1296,6 +1324,7 @@ export default function useCanvas(): {
|
|
|
1296
1324
|
readonly can_download?: boolean | undefined;
|
|
1297
1325
|
readonly can_share?: boolean | undefined;
|
|
1298
1326
|
readonly can_be_divided?: boolean | undefined;
|
|
1327
|
+
readonly can_print?: boolean | undefined;
|
|
1299
1328
|
} | undefined;
|
|
1300
1329
|
readonly tags?: readonly string[] | undefined;
|
|
1301
1330
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1324,6 +1353,7 @@ export default function useCanvas(): {
|
|
|
1324
1353
|
readonly can_download?: boolean | undefined;
|
|
1325
1354
|
readonly can_share?: boolean | undefined;
|
|
1326
1355
|
readonly can_be_divided?: boolean | undefined;
|
|
1356
|
+
readonly can_print?: boolean | undefined;
|
|
1327
1357
|
} | undefined;
|
|
1328
1358
|
readonly tags?: readonly string[] | undefined;
|
|
1329
1359
|
};
|
|
@@ -1346,6 +1376,7 @@ export default function useCanvas(): {
|
|
|
1346
1376
|
readonly can_download?: boolean | undefined;
|
|
1347
1377
|
readonly can_share?: boolean | undefined;
|
|
1348
1378
|
readonly can_be_divided?: boolean | undefined;
|
|
1379
|
+
readonly can_print?: boolean | undefined;
|
|
1349
1380
|
} | undefined;
|
|
1350
1381
|
readonly tags?: readonly string[] | undefined;
|
|
1351
1382
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1424,6 +1455,7 @@ export default function useCanvas(): {
|
|
|
1424
1455
|
readonly can_download?: boolean | undefined;
|
|
1425
1456
|
readonly can_share?: boolean | undefined;
|
|
1426
1457
|
readonly can_be_divided?: boolean | undefined;
|
|
1458
|
+
readonly can_print?: boolean | undefined;
|
|
1427
1459
|
} | undefined;
|
|
1428
1460
|
readonly metadata?: {
|
|
1429
1461
|
readonly [x: string]: any;
|
|
@@ -1581,6 +1613,10 @@ export default function useCanvas(): {
|
|
|
1581
1613
|
readonly is_editable: boolean;
|
|
1582
1614
|
readonly is_removable: boolean;
|
|
1583
1615
|
} | undefined;
|
|
1616
|
+
readonly template_permissions?: {
|
|
1617
|
+
readonly is_editable: boolean;
|
|
1618
|
+
readonly is_removable: boolean;
|
|
1619
|
+
} | undefined;
|
|
1584
1620
|
readonly style?: {
|
|
1585
1621
|
readonly [x: string]: any;
|
|
1586
1622
|
} | undefined;
|
|
@@ -1654,6 +1690,7 @@ export default function useCanvas(): {
|
|
|
1654
1690
|
readonly can_download?: boolean | undefined;
|
|
1655
1691
|
readonly can_share?: boolean | undefined;
|
|
1656
1692
|
readonly can_be_divided?: boolean | undefined;
|
|
1693
|
+
readonly can_print?: boolean | undefined;
|
|
1657
1694
|
} | undefined;
|
|
1658
1695
|
readonly content_url: string | null;
|
|
1659
1696
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -1662,6 +1699,7 @@ export default function useCanvas(): {
|
|
|
1662
1699
|
} | null;
|
|
1663
1700
|
readonly pspdfkit_document_id: string | null;
|
|
1664
1701
|
readonly pspdfkit_server_url: string | null;
|
|
1702
|
+
readonly expires_at?: string | null | undefined;
|
|
1665
1703
|
};
|
|
1666
1704
|
readonly slide: {
|
|
1667
1705
|
readonly index: number;
|
|
@@ -1683,6 +1721,7 @@ export default function useCanvas(): {
|
|
|
1683
1721
|
readonly can_download?: boolean | undefined;
|
|
1684
1722
|
readonly can_share?: boolean | undefined;
|
|
1685
1723
|
readonly can_be_divided?: boolean | undefined;
|
|
1724
|
+
readonly can_print?: boolean | undefined;
|
|
1686
1725
|
} | undefined;
|
|
1687
1726
|
readonly content_url: string | null;
|
|
1688
1727
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -1691,6 +1730,7 @@ export default function useCanvas(): {
|
|
|
1691
1730
|
} | null;
|
|
1692
1731
|
readonly pspdfkit_document_id: string | null;
|
|
1693
1732
|
readonly pspdfkit_server_url: string | null;
|
|
1733
|
+
readonly expires_at?: string | null | undefined;
|
|
1694
1734
|
};
|
|
1695
1735
|
})[];
|
|
1696
1736
|
}[];
|
|
@@ -1788,6 +1828,7 @@ export default function useCanvas(): {
|
|
|
1788
1828
|
readonly can_download?: boolean | undefined;
|
|
1789
1829
|
readonly can_share?: boolean | undefined;
|
|
1790
1830
|
readonly can_be_divided?: boolean | undefined;
|
|
1831
|
+
readonly can_print?: boolean | undefined;
|
|
1791
1832
|
} | undefined;
|
|
1792
1833
|
readonly tags?: readonly string[] | undefined;
|
|
1793
1834
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1816,6 +1857,7 @@ export default function useCanvas(): {
|
|
|
1816
1857
|
readonly can_download?: boolean | undefined;
|
|
1817
1858
|
readonly can_share?: boolean | undefined;
|
|
1818
1859
|
readonly can_be_divided?: boolean | undefined;
|
|
1860
|
+
readonly can_print?: boolean | undefined;
|
|
1819
1861
|
} | undefined;
|
|
1820
1862
|
readonly tags?: readonly string[] | undefined;
|
|
1821
1863
|
};
|
|
@@ -1838,6 +1880,7 @@ export default function useCanvas(): {
|
|
|
1838
1880
|
readonly can_download?: boolean | undefined;
|
|
1839
1881
|
readonly can_share?: boolean | undefined;
|
|
1840
1882
|
readonly can_be_divided?: boolean | undefined;
|
|
1883
|
+
readonly can_print?: boolean | undefined;
|
|
1841
1884
|
} | undefined;
|
|
1842
1885
|
readonly tags?: readonly string[] | undefined;
|
|
1843
1886
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1916,6 +1959,7 @@ export default function useCanvas(): {
|
|
|
1916
1959
|
readonly can_download?: boolean | undefined;
|
|
1917
1960
|
readonly can_share?: boolean | undefined;
|
|
1918
1961
|
readonly can_be_divided?: boolean | undefined;
|
|
1962
|
+
readonly can_print?: boolean | undefined;
|
|
1919
1963
|
} | undefined;
|
|
1920
1964
|
readonly metadata?: {
|
|
1921
1965
|
readonly [x: string]: any;
|
|
@@ -2073,6 +2117,10 @@ export default function useCanvas(): {
|
|
|
2073
2117
|
readonly is_editable: boolean;
|
|
2074
2118
|
readonly is_removable: boolean;
|
|
2075
2119
|
} | undefined;
|
|
2120
|
+
readonly template_permissions?: {
|
|
2121
|
+
readonly is_editable: boolean;
|
|
2122
|
+
readonly is_removable: boolean;
|
|
2123
|
+
} | undefined;
|
|
2076
2124
|
readonly style?: {
|
|
2077
2125
|
readonly [x: string]: any;
|
|
2078
2126
|
} | undefined;
|
|
@@ -2144,12 +2192,14 @@ export default function useCanvas(): {
|
|
|
2144
2192
|
can_download?: boolean | undefined;
|
|
2145
2193
|
can_share?: boolean | undefined;
|
|
2146
2194
|
can_be_divided?: boolean | undefined;
|
|
2195
|
+
can_print?: boolean | undefined;
|
|
2147
2196
|
} | undefined;
|
|
2148
2197
|
readonly content_url: string | null;
|
|
2149
2198
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2150
2199
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
2151
2200
|
readonly pspdfkit_document_id: string | null;
|
|
2152
2201
|
readonly pspdfkit_server_url: string | null;
|
|
2202
|
+
expires_at?: string | null | undefined;
|
|
2153
2203
|
};
|
|
2154
2204
|
slide: {
|
|
2155
2205
|
index: number;
|
|
@@ -2169,12 +2219,14 @@ export default function useCanvas(): {
|
|
|
2169
2219
|
can_download?: boolean | undefined;
|
|
2170
2220
|
can_share?: boolean | undefined;
|
|
2171
2221
|
can_be_divided?: boolean | undefined;
|
|
2222
|
+
can_print?: boolean | undefined;
|
|
2172
2223
|
} | undefined;
|
|
2173
2224
|
readonly content_url: string | null;
|
|
2174
2225
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2175
2226
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
2176
2227
|
readonly pspdfkit_document_id: string | null;
|
|
2177
2228
|
readonly pspdfkit_server_url: string | null;
|
|
2229
|
+
expires_at?: string | null | undefined;
|
|
2178
2230
|
};
|
|
2179
2231
|
})[];
|
|
2180
2232
|
}[];
|
|
@@ -2266,6 +2318,7 @@ export default function useCanvas(): {
|
|
|
2266
2318
|
can_download?: boolean | undefined;
|
|
2267
2319
|
can_share?: boolean | undefined;
|
|
2268
2320
|
can_be_divided?: boolean | undefined;
|
|
2321
|
+
can_print?: boolean | undefined;
|
|
2269
2322
|
} | undefined;
|
|
2270
2323
|
tags?: string[] | undefined;
|
|
2271
2324
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2290,6 +2343,7 @@ export default function useCanvas(): {
|
|
|
2290
2343
|
can_download?: boolean | undefined;
|
|
2291
2344
|
can_share?: boolean | undefined;
|
|
2292
2345
|
can_be_divided?: boolean | undefined;
|
|
2346
|
+
can_print?: boolean | undefined;
|
|
2293
2347
|
} | undefined;
|
|
2294
2348
|
tags?: string[] | undefined;
|
|
2295
2349
|
};
|
|
@@ -2312,6 +2366,7 @@ export default function useCanvas(): {
|
|
|
2312
2366
|
can_download?: boolean | undefined;
|
|
2313
2367
|
can_share?: boolean | undefined;
|
|
2314
2368
|
can_be_divided?: boolean | undefined;
|
|
2369
|
+
can_print?: boolean | undefined;
|
|
2315
2370
|
} | undefined;
|
|
2316
2371
|
tags?: string[] | undefined;
|
|
2317
2372
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2386,6 +2441,7 @@ export default function useCanvas(): {
|
|
|
2386
2441
|
can_download?: boolean | undefined;
|
|
2387
2442
|
can_share?: boolean | undefined;
|
|
2388
2443
|
can_be_divided?: boolean | undefined;
|
|
2444
|
+
can_print?: boolean | undefined;
|
|
2389
2445
|
} | undefined;
|
|
2390
2446
|
metadata?: Record<string, any> | undefined;
|
|
2391
2447
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -2527,6 +2583,10 @@ export default function useCanvas(): {
|
|
|
2527
2583
|
is_editable: boolean;
|
|
2528
2584
|
is_removable: boolean;
|
|
2529
2585
|
} | undefined;
|
|
2586
|
+
template_permissions?: {
|
|
2587
|
+
is_editable: boolean;
|
|
2588
|
+
is_removable: boolean;
|
|
2589
|
+
} | undefined;
|
|
2530
2590
|
style?: Record<string, any> | undefined;
|
|
2531
2591
|
tags?: string[] | undefined;
|
|
2532
2592
|
theme_meta?: {
|
|
@@ -2579,12 +2639,14 @@ export default function useCanvas(): {
|
|
|
2579
2639
|
can_download?: boolean | undefined;
|
|
2580
2640
|
can_share?: boolean | undefined;
|
|
2581
2641
|
can_be_divided?: boolean | undefined;
|
|
2642
|
+
can_print?: boolean | undefined;
|
|
2582
2643
|
} | undefined;
|
|
2583
2644
|
readonly content_url: string | null;
|
|
2584
2645
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2585
2646
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
2586
2647
|
readonly pspdfkit_document_id: string | null;
|
|
2587
2648
|
readonly pspdfkit_server_url: string | null;
|
|
2649
|
+
expires_at?: string | null | undefined;
|
|
2588
2650
|
};
|
|
2589
2651
|
slide: {
|
|
2590
2652
|
index: number;
|
|
@@ -2604,12 +2666,14 @@ export default function useCanvas(): {
|
|
|
2604
2666
|
can_download?: boolean | undefined;
|
|
2605
2667
|
can_share?: boolean | undefined;
|
|
2606
2668
|
can_be_divided?: boolean | undefined;
|
|
2669
|
+
can_print?: boolean | undefined;
|
|
2607
2670
|
} | undefined;
|
|
2608
2671
|
readonly content_url: string | null;
|
|
2609
2672
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
2610
2673
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
2611
2674
|
readonly pspdfkit_document_id: string | null;
|
|
2612
2675
|
readonly pspdfkit_server_url: string | null;
|
|
2676
|
+
expires_at?: string | null | undefined;
|
|
2613
2677
|
};
|
|
2614
2678
|
})[];
|
|
2615
2679
|
}[];
|
|
@@ -2701,6 +2765,7 @@ export default function useCanvas(): {
|
|
|
2701
2765
|
can_download?: boolean | undefined;
|
|
2702
2766
|
can_share?: boolean | undefined;
|
|
2703
2767
|
can_be_divided?: boolean | undefined;
|
|
2768
|
+
can_print?: boolean | undefined;
|
|
2704
2769
|
} | undefined;
|
|
2705
2770
|
tags?: string[] | undefined;
|
|
2706
2771
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2725,6 +2790,7 @@ export default function useCanvas(): {
|
|
|
2725
2790
|
can_download?: boolean | undefined;
|
|
2726
2791
|
can_share?: boolean | undefined;
|
|
2727
2792
|
can_be_divided?: boolean | undefined;
|
|
2793
|
+
can_print?: boolean | undefined;
|
|
2728
2794
|
} | undefined;
|
|
2729
2795
|
tags?: string[] | undefined;
|
|
2730
2796
|
};
|
|
@@ -2747,6 +2813,7 @@ export default function useCanvas(): {
|
|
|
2747
2813
|
can_download?: boolean | undefined;
|
|
2748
2814
|
can_share?: boolean | undefined;
|
|
2749
2815
|
can_be_divided?: boolean | undefined;
|
|
2816
|
+
can_print?: boolean | undefined;
|
|
2750
2817
|
} | undefined;
|
|
2751
2818
|
tags?: string[] | undefined;
|
|
2752
2819
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2821,6 +2888,7 @@ export default function useCanvas(): {
|
|
|
2821
2888
|
can_download?: boolean | undefined;
|
|
2822
2889
|
can_share?: boolean | undefined;
|
|
2823
2890
|
can_be_divided?: boolean | undefined;
|
|
2891
|
+
can_print?: boolean | undefined;
|
|
2824
2892
|
} | undefined;
|
|
2825
2893
|
metadata?: Record<string, any> | undefined;
|
|
2826
2894
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -2962,6 +3030,10 @@ export default function useCanvas(): {
|
|
|
2962
3030
|
is_editable: boolean;
|
|
2963
3031
|
is_removable: boolean;
|
|
2964
3032
|
} | undefined;
|
|
3033
|
+
template_permissions?: {
|
|
3034
|
+
is_editable: boolean;
|
|
3035
|
+
is_removable: boolean;
|
|
3036
|
+
} | undefined;
|
|
2965
3037
|
style?: Record<string, any> | undefined;
|
|
2966
3038
|
tags?: string[] | undefined;
|
|
2967
3039
|
theme_meta?: {
|
|
@@ -3054,6 +3126,7 @@ export default function useCanvas(): {
|
|
|
3054
3126
|
readonly can_download?: boolean | undefined;
|
|
3055
3127
|
readonly can_share?: boolean | undefined;
|
|
3056
3128
|
readonly can_be_divided?: boolean | undefined;
|
|
3129
|
+
readonly can_print?: boolean | undefined;
|
|
3057
3130
|
} | undefined;
|
|
3058
3131
|
readonly content_url: string | null;
|
|
3059
3132
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -3062,6 +3135,7 @@ export default function useCanvas(): {
|
|
|
3062
3135
|
} | null;
|
|
3063
3136
|
readonly pspdfkit_document_id: string | null;
|
|
3064
3137
|
readonly pspdfkit_server_url: string | null;
|
|
3138
|
+
readonly expires_at?: string | null | undefined;
|
|
3065
3139
|
};
|
|
3066
3140
|
readonly slide: {
|
|
3067
3141
|
readonly index: number;
|
|
@@ -3083,6 +3157,7 @@ export default function useCanvas(): {
|
|
|
3083
3157
|
readonly can_download?: boolean | undefined;
|
|
3084
3158
|
readonly can_share?: boolean | undefined;
|
|
3085
3159
|
readonly can_be_divided?: boolean | undefined;
|
|
3160
|
+
readonly can_print?: boolean | undefined;
|
|
3086
3161
|
} | undefined;
|
|
3087
3162
|
readonly content_url: string | null;
|
|
3088
3163
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -3091,6 +3166,7 @@ export default function useCanvas(): {
|
|
|
3091
3166
|
} | null;
|
|
3092
3167
|
readonly pspdfkit_document_id: string | null;
|
|
3093
3168
|
readonly pspdfkit_server_url: string | null;
|
|
3169
|
+
readonly expires_at?: string | null | undefined;
|
|
3094
3170
|
};
|
|
3095
3171
|
})[];
|
|
3096
3172
|
}[];
|
|
@@ -3188,6 +3264,7 @@ export default function useCanvas(): {
|
|
|
3188
3264
|
readonly can_download?: boolean | undefined;
|
|
3189
3265
|
readonly can_share?: boolean | undefined;
|
|
3190
3266
|
readonly can_be_divided?: boolean | undefined;
|
|
3267
|
+
readonly can_print?: boolean | undefined;
|
|
3191
3268
|
} | undefined;
|
|
3192
3269
|
readonly tags?: readonly string[] | undefined;
|
|
3193
3270
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3216,6 +3293,7 @@ export default function useCanvas(): {
|
|
|
3216
3293
|
readonly can_download?: boolean | undefined;
|
|
3217
3294
|
readonly can_share?: boolean | undefined;
|
|
3218
3295
|
readonly can_be_divided?: boolean | undefined;
|
|
3296
|
+
readonly can_print?: boolean | undefined;
|
|
3219
3297
|
} | undefined;
|
|
3220
3298
|
readonly tags?: readonly string[] | undefined;
|
|
3221
3299
|
};
|
|
@@ -3238,6 +3316,7 @@ export default function useCanvas(): {
|
|
|
3238
3316
|
readonly can_download?: boolean | undefined;
|
|
3239
3317
|
readonly can_share?: boolean | undefined;
|
|
3240
3318
|
readonly can_be_divided?: boolean | undefined;
|
|
3319
|
+
readonly can_print?: boolean | undefined;
|
|
3241
3320
|
} | undefined;
|
|
3242
3321
|
readonly tags?: readonly string[] | undefined;
|
|
3243
3322
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3316,6 +3395,7 @@ export default function useCanvas(): {
|
|
|
3316
3395
|
readonly can_download?: boolean | undefined;
|
|
3317
3396
|
readonly can_share?: boolean | undefined;
|
|
3318
3397
|
readonly can_be_divided?: boolean | undefined;
|
|
3398
|
+
readonly can_print?: boolean | undefined;
|
|
3319
3399
|
} | undefined;
|
|
3320
3400
|
readonly metadata?: {
|
|
3321
3401
|
readonly [x: string]: any;
|
|
@@ -3473,6 +3553,10 @@ export default function useCanvas(): {
|
|
|
3473
3553
|
readonly is_editable: boolean;
|
|
3474
3554
|
readonly is_removable: boolean;
|
|
3475
3555
|
} | undefined;
|
|
3556
|
+
readonly template_permissions?: {
|
|
3557
|
+
readonly is_editable: boolean;
|
|
3558
|
+
readonly is_removable: boolean;
|
|
3559
|
+
} | undefined;
|
|
3476
3560
|
readonly style?: {
|
|
3477
3561
|
readonly [x: string]: any;
|
|
3478
3562
|
} | undefined;
|
|
@@ -3711,6 +3795,7 @@ export default function useCanvas(): {
|
|
|
3711
3795
|
readonly can_download?: boolean | undefined;
|
|
3712
3796
|
readonly can_share?: boolean | undefined;
|
|
3713
3797
|
readonly can_be_divided?: boolean | undefined;
|
|
3798
|
+
readonly can_print?: boolean | undefined;
|
|
3714
3799
|
} | undefined;
|
|
3715
3800
|
readonly content_url: string | null;
|
|
3716
3801
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -3719,6 +3804,7 @@ export default function useCanvas(): {
|
|
|
3719
3804
|
} | null;
|
|
3720
3805
|
readonly pspdfkit_document_id: string | null;
|
|
3721
3806
|
readonly pspdfkit_server_url: string | null;
|
|
3807
|
+
readonly expires_at?: string | null | undefined;
|
|
3722
3808
|
};
|
|
3723
3809
|
readonly slide: {
|
|
3724
3810
|
readonly index: number;
|
|
@@ -3740,6 +3826,7 @@ export default function useCanvas(): {
|
|
|
3740
3826
|
readonly can_download?: boolean | undefined;
|
|
3741
3827
|
readonly can_share?: boolean | undefined;
|
|
3742
3828
|
readonly can_be_divided?: boolean | undefined;
|
|
3829
|
+
readonly can_print?: boolean | undefined;
|
|
3743
3830
|
} | undefined;
|
|
3744
3831
|
readonly content_url: string | null;
|
|
3745
3832
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
@@ -3748,6 +3835,7 @@ export default function useCanvas(): {
|
|
|
3748
3835
|
} | null;
|
|
3749
3836
|
readonly pspdfkit_document_id: string | null;
|
|
3750
3837
|
readonly pspdfkit_server_url: string | null;
|
|
3838
|
+
readonly expires_at?: string | null | undefined;
|
|
3751
3839
|
};
|
|
3752
3840
|
})[];
|
|
3753
3841
|
}[];
|
|
@@ -3845,6 +3933,7 @@ export default function useCanvas(): {
|
|
|
3845
3933
|
readonly can_download?: boolean | undefined;
|
|
3846
3934
|
readonly can_share?: boolean | undefined;
|
|
3847
3935
|
readonly can_be_divided?: boolean | undefined;
|
|
3936
|
+
readonly can_print?: boolean | undefined;
|
|
3848
3937
|
} | undefined;
|
|
3849
3938
|
readonly tags?: readonly string[] | undefined;
|
|
3850
3939
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3873,6 +3962,7 @@ export default function useCanvas(): {
|
|
|
3873
3962
|
readonly can_download?: boolean | undefined;
|
|
3874
3963
|
readonly can_share?: boolean | undefined;
|
|
3875
3964
|
readonly can_be_divided?: boolean | undefined;
|
|
3965
|
+
readonly can_print?: boolean | undefined;
|
|
3876
3966
|
} | undefined;
|
|
3877
3967
|
readonly tags?: readonly string[] | undefined;
|
|
3878
3968
|
};
|
|
@@ -3895,6 +3985,7 @@ export default function useCanvas(): {
|
|
|
3895
3985
|
readonly can_download?: boolean | undefined;
|
|
3896
3986
|
readonly can_share?: boolean | undefined;
|
|
3897
3987
|
readonly can_be_divided?: boolean | undefined;
|
|
3988
|
+
readonly can_print?: boolean | undefined;
|
|
3898
3989
|
} | undefined;
|
|
3899
3990
|
readonly tags?: readonly string[] | undefined;
|
|
3900
3991
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3973,6 +4064,7 @@ export default function useCanvas(): {
|
|
|
3973
4064
|
readonly can_download?: boolean | undefined;
|
|
3974
4065
|
readonly can_share?: boolean | undefined;
|
|
3975
4066
|
readonly can_be_divided?: boolean | undefined;
|
|
4067
|
+
readonly can_print?: boolean | undefined;
|
|
3976
4068
|
} | undefined;
|
|
3977
4069
|
readonly metadata?: {
|
|
3978
4070
|
readonly [x: string]: any;
|
|
@@ -4130,6 +4222,10 @@ export default function useCanvas(): {
|
|
|
4130
4222
|
readonly is_editable: boolean;
|
|
4131
4223
|
readonly is_removable: boolean;
|
|
4132
4224
|
} | undefined;
|
|
4225
|
+
readonly template_permissions?: {
|
|
4226
|
+
readonly is_editable: boolean;
|
|
4227
|
+
readonly is_removable: boolean;
|
|
4228
|
+
} | undefined;
|
|
4133
4229
|
readonly style?: {
|
|
4134
4230
|
readonly [x: string]: any;
|
|
4135
4231
|
} | undefined;
|
|
@@ -4191,12 +4287,14 @@ export default function useCanvas(): {
|
|
|
4191
4287
|
can_download?: boolean | undefined;
|
|
4192
4288
|
can_share?: boolean | undefined;
|
|
4193
4289
|
can_be_divided?: boolean | undefined;
|
|
4290
|
+
can_print?: boolean | undefined;
|
|
4194
4291
|
} | undefined;
|
|
4195
4292
|
readonly content_url: string | null;
|
|
4196
4293
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
4197
4294
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
4198
4295
|
readonly pspdfkit_document_id: string | null;
|
|
4199
4296
|
readonly pspdfkit_server_url: string | null;
|
|
4297
|
+
expires_at?: string | null | undefined;
|
|
4200
4298
|
};
|
|
4201
4299
|
slide: {
|
|
4202
4300
|
index: number;
|
|
@@ -4216,12 +4314,14 @@ export default function useCanvas(): {
|
|
|
4216
4314
|
can_download?: boolean | undefined;
|
|
4217
4315
|
can_share?: boolean | undefined;
|
|
4218
4316
|
can_be_divided?: boolean | undefined;
|
|
4317
|
+
can_print?: boolean | undefined;
|
|
4219
4318
|
} | undefined;
|
|
4220
4319
|
readonly content_url: string | null;
|
|
4221
4320
|
readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
|
|
4222
4321
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
4223
4322
|
readonly pspdfkit_document_id: string | null;
|
|
4224
4323
|
readonly pspdfkit_server_url: string | null;
|
|
4324
|
+
expires_at?: string | null | undefined;
|
|
4225
4325
|
};
|
|
4226
4326
|
})[];
|
|
4227
4327
|
}[];
|
|
@@ -4313,6 +4413,7 @@ export default function useCanvas(): {
|
|
|
4313
4413
|
can_download?: boolean | undefined;
|
|
4314
4414
|
can_share?: boolean | undefined;
|
|
4315
4415
|
can_be_divided?: boolean | undefined;
|
|
4416
|
+
can_print?: boolean | undefined;
|
|
4316
4417
|
} | undefined;
|
|
4317
4418
|
tags?: string[] | undefined;
|
|
4318
4419
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4337,6 +4438,7 @@ export default function useCanvas(): {
|
|
|
4337
4438
|
can_download?: boolean | undefined;
|
|
4338
4439
|
can_share?: boolean | undefined;
|
|
4339
4440
|
can_be_divided?: boolean | undefined;
|
|
4441
|
+
can_print?: boolean | undefined;
|
|
4340
4442
|
} | undefined;
|
|
4341
4443
|
tags?: string[] | undefined;
|
|
4342
4444
|
};
|
|
@@ -4359,6 +4461,7 @@ export default function useCanvas(): {
|
|
|
4359
4461
|
can_download?: boolean | undefined;
|
|
4360
4462
|
can_share?: boolean | undefined;
|
|
4361
4463
|
can_be_divided?: boolean | undefined;
|
|
4464
|
+
can_print?: boolean | undefined;
|
|
4362
4465
|
} | undefined;
|
|
4363
4466
|
tags?: string[] | undefined;
|
|
4364
4467
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4433,6 +4536,7 @@ export default function useCanvas(): {
|
|
|
4433
4536
|
can_download?: boolean | undefined;
|
|
4434
4537
|
can_share?: boolean | undefined;
|
|
4435
4538
|
can_be_divided?: boolean | undefined;
|
|
4539
|
+
can_print?: boolean | undefined;
|
|
4436
4540
|
} | undefined;
|
|
4437
4541
|
metadata?: Record<string, any> | undefined;
|
|
4438
4542
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -4574,6 +4678,10 @@ export default function useCanvas(): {
|
|
|
4574
4678
|
is_editable: boolean;
|
|
4575
4679
|
is_removable: boolean;
|
|
4576
4680
|
} | undefined;
|
|
4681
|
+
template_permissions?: {
|
|
4682
|
+
is_editable: boolean;
|
|
4683
|
+
is_removable: boolean;
|
|
4684
|
+
} | undefined;
|
|
4577
4685
|
style?: Record<string, any> | undefined;
|
|
4578
4686
|
tags?: string[] | undefined;
|
|
4579
4687
|
theme_meta?: {
|
|
@@ -4924,7 +5032,6 @@ export default function useCanvas(): {
|
|
|
4924
5032
|
enable_recents?: boolean | undefined;
|
|
4925
5033
|
enable_favorites?: boolean | undefined;
|
|
4926
5034
|
enable_sync_file_filtering?: boolean | undefined;
|
|
4927
|
-
enable_sfdc_sync?: boolean | undefined;
|
|
4928
5035
|
time_format?: string | undefined;
|
|
4929
5036
|
date_format?: string | undefined;
|
|
4930
5037
|
is_file_expiration_mandatory?: boolean | undefined;
|
|
@@ -4967,7 +5074,6 @@ export default function useCanvas(): {
|
|
|
4967
5074
|
enable_multipeer_connectivity?: boolean;
|
|
4968
5075
|
enable_syncbox?: boolean;
|
|
4969
5076
|
enable_sync_file_filtering?: boolean;
|
|
4970
|
-
enable_sfdc_sync?: boolean;
|
|
4971
5077
|
time_format?: string;
|
|
4972
5078
|
date_format?: string;
|
|
4973
5079
|
is_file_expiration_mandatory?: boolean;
|
|
@@ -5261,7 +5367,6 @@ export default function useCanvas(): {
|
|
|
5261
5367
|
enable_recents?: boolean | undefined;
|
|
5262
5368
|
enable_favorites?: boolean | undefined;
|
|
5263
5369
|
enable_sync_file_filtering?: boolean | undefined;
|
|
5264
|
-
enable_sfdc_sync?: boolean | undefined;
|
|
5265
5370
|
time_format?: string | undefined;
|
|
5266
5371
|
date_format?: string | undefined;
|
|
5267
5372
|
is_file_expiration_mandatory?: boolean | undefined;
|
|
@@ -5591,7 +5696,6 @@ export default function useCanvas(): {
|
|
|
5591
5696
|
readonly enable_recents?: boolean | undefined;
|
|
5592
5697
|
readonly enable_favorites?: boolean | undefined;
|
|
5593
5698
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5594
|
-
readonly enable_sfdc_sync?: boolean | undefined;
|
|
5595
5699
|
readonly time_format?: string | undefined;
|
|
5596
5700
|
readonly date_format?: string | undefined;
|
|
5597
5701
|
readonly is_file_expiration_mandatory?: boolean | undefined;
|
|
@@ -5920,7 +6024,6 @@ export default function useCanvas(): {
|
|
|
5920
6024
|
readonly enable_recents?: boolean | undefined;
|
|
5921
6025
|
readonly enable_favorites?: boolean | undefined;
|
|
5922
6026
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5923
|
-
readonly enable_sfdc_sync?: boolean | undefined;
|
|
5924
6027
|
readonly time_format?: string | undefined;
|
|
5925
6028
|
readonly date_format?: string | undefined;
|
|
5926
6029
|
readonly is_file_expiration_mandatory?: boolean | undefined;
|