@pitcher/js-api 1.26.0-beta.14 → 1.26.0-beta.16

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.
Files changed (47) hide show
  1. package/js-api.esm.js +1 -1
  2. package/js-api.esm.js.map +1 -1
  3. package/js-api.umd.min.js +8 -8
  4. package/js-api.umd.min.js.map +1 -1
  5. package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +4 -0
  6. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +1 -0
  7. package/lib/apps/browser/stores/api.d.ts +9 -0
  8. package/lib/apps/browser/stores/upload.d.ts +4 -0
  9. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +5 -0
  10. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +5 -0
  11. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +5 -0
  12. package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +1 -0
  13. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +5 -0
  14. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +5 -0
  15. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +5 -0
  16. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +5 -0
  17. package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +5 -0
  18. package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +5 -0
  19. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +5 -0
  20. package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +5 -0
  21. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +5 -0
  22. package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +5 -0
  23. package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +15 -1
  24. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +5 -0
  25. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +5 -0
  26. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +1 -0
  27. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +5 -0
  28. package/lib/apps/canvas-builder/composables/useCanvas.d.ts +90 -5
  29. package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +20 -0
  30. package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +20 -0
  31. package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
  32. package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -1
  33. package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
  34. package/lib/apps/canvas-builder/constants/canvas.const.d.ts +4 -0
  35. package/lib/apps/canvas-builder/types/canvas.d.ts +4 -0
  36. package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
  37. package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +2 -0
  38. package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +2 -0
  39. package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +7 -0
  40. package/lib/composables/useSmartStore.d.ts +1 -1
  41. package/lib/sdk/api/modules/query.d.ts +3 -3
  42. package/lib/types/instanceSettings.types.d.ts +0 -1
  43. package/lib/types/launchDarkly.types.d.ts +1 -1
  44. package/lib/types/sfdc.d.ts +1 -0
  45. package/package.json +1 -1
  46. package/types/openapi/models/FilePermission.d.ts +1 -0
  47. 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;
@@ -79,6 +80,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
79
80
  readonly can_download?: boolean | undefined;
80
81
  readonly can_share?: boolean | undefined;
81
82
  readonly can_be_divided?: boolean | undefined;
83
+ readonly can_print?: boolean | undefined;
82
84
  } | undefined;
83
85
  readonly content_url: string | null;
84
86
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -184,6 +186,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
184
186
  readonly can_download?: boolean | undefined;
185
187
  readonly can_share?: boolean | undefined;
186
188
  readonly can_be_divided?: boolean | undefined;
189
+ readonly can_print?: boolean | undefined;
187
190
  } | undefined;
188
191
  readonly tags?: readonly string[] | undefined;
189
192
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -212,6 +215,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
212
215
  readonly can_download?: boolean | undefined;
213
216
  readonly can_share?: boolean | undefined;
214
217
  readonly can_be_divided?: boolean | undefined;
218
+ readonly can_print?: boolean | undefined;
215
219
  } | undefined;
216
220
  readonly tags?: readonly string[] | undefined;
217
221
  };
@@ -234,6 +238,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
234
238
  readonly can_download?: boolean | undefined;
235
239
  readonly can_share?: boolean | undefined;
236
240
  readonly can_be_divided?: boolean | undefined;
241
+ readonly can_print?: boolean | undefined;
237
242
  } | undefined;
238
243
  readonly tags?: readonly string[] | undefined;
239
244
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -312,6 +317,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
312
317
  readonly can_download?: boolean | undefined;
313
318
  readonly can_share?: boolean | undefined;
314
319
  readonly can_be_divided?: boolean | undefined;
320
+ readonly can_print?: boolean | undefined;
315
321
  } | undefined;
316
322
  readonly metadata?: {
317
323
  readonly [x: string]: any;
@@ -469,6 +475,10 @@ declare const componentNodesById: import('vue').ComputedRef<{
469
475
  readonly is_editable: boolean;
470
476
  readonly is_removable: boolean;
471
477
  } | undefined;
478
+ readonly template_permissions?: {
479
+ readonly is_editable: boolean;
480
+ readonly is_removable: boolean;
481
+ } | undefined;
472
482
  readonly style?: {
473
483
  readonly [x: string]: any;
474
484
  } | undefined;
@@ -530,6 +540,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
530
540
  readonly can_download?: boolean | undefined;
531
541
  readonly can_share?: boolean | undefined;
532
542
  readonly can_be_divided?: boolean | undefined;
543
+ readonly can_print?: boolean | undefined;
533
544
  } | undefined;
534
545
  readonly content_url: string | null;
535
546
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -559,6 +570,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
559
570
  readonly can_download?: boolean | undefined;
560
571
  readonly can_share?: boolean | undefined;
561
572
  readonly can_be_divided?: boolean | undefined;
573
+ readonly can_print?: boolean | undefined;
562
574
  } | undefined;
563
575
  readonly content_url: string | null;
564
576
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -664,6 +676,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
664
676
  readonly can_download?: boolean | undefined;
665
677
  readonly can_share?: boolean | undefined;
666
678
  readonly can_be_divided?: boolean | undefined;
679
+ readonly can_print?: boolean | undefined;
667
680
  } | undefined;
668
681
  readonly tags?: readonly string[] | undefined;
669
682
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -692,6 +705,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
692
705
  readonly can_download?: boolean | undefined;
693
706
  readonly can_share?: boolean | undefined;
694
707
  readonly can_be_divided?: boolean | undefined;
708
+ readonly can_print?: boolean | undefined;
695
709
  } | undefined;
696
710
  readonly tags?: readonly string[] | undefined;
697
711
  };
@@ -714,6 +728,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
714
728
  readonly can_download?: boolean | undefined;
715
729
  readonly can_share?: boolean | undefined;
716
730
  readonly can_be_divided?: boolean | undefined;
731
+ readonly can_print?: boolean | undefined;
717
732
  } | undefined;
718
733
  readonly tags?: readonly string[] | undefined;
719
734
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -792,6 +807,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
792
807
  readonly can_download?: boolean | undefined;
793
808
  readonly can_share?: boolean | undefined;
794
809
  readonly can_be_divided?: boolean | undefined;
810
+ readonly can_print?: boolean | undefined;
795
811
  } | undefined;
796
812
  readonly metadata?: {
797
813
  readonly [x: string]: any;
@@ -949,6 +965,10 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
949
965
  readonly is_editable: boolean;
950
966
  readonly is_removable: boolean;
951
967
  } | undefined;
968
+ readonly template_permissions?: {
969
+ readonly is_editable: boolean;
970
+ readonly is_removable: boolean;
971
+ } | undefined;
952
972
  readonly style?: {
953
973
  readonly [x: string]: any;
954
974
  } | undefined;
@@ -1162,6 +1182,7 @@ export default function useCanvas(): {
1162
1182
  readonly can_download?: boolean | undefined;
1163
1183
  readonly can_share?: boolean | undefined;
1164
1184
  readonly can_be_divided?: boolean | undefined;
1185
+ readonly can_print?: boolean | undefined;
1165
1186
  } | undefined;
1166
1187
  readonly content_url: string | null;
1167
1188
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -1191,6 +1212,7 @@ export default function useCanvas(): {
1191
1212
  readonly can_download?: boolean | undefined;
1192
1213
  readonly can_share?: boolean | undefined;
1193
1214
  readonly can_be_divided?: boolean | undefined;
1215
+ readonly can_print?: boolean | undefined;
1194
1216
  } | undefined;
1195
1217
  readonly content_url: string | null;
1196
1218
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -1296,6 +1318,7 @@ export default function useCanvas(): {
1296
1318
  readonly can_download?: boolean | undefined;
1297
1319
  readonly can_share?: boolean | undefined;
1298
1320
  readonly can_be_divided?: boolean | undefined;
1321
+ readonly can_print?: boolean | undefined;
1299
1322
  } | undefined;
1300
1323
  readonly tags?: readonly string[] | undefined;
1301
1324
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -1324,6 +1347,7 @@ export default function useCanvas(): {
1324
1347
  readonly can_download?: boolean | undefined;
1325
1348
  readonly can_share?: boolean | undefined;
1326
1349
  readonly can_be_divided?: boolean | undefined;
1350
+ readonly can_print?: boolean | undefined;
1327
1351
  } | undefined;
1328
1352
  readonly tags?: readonly string[] | undefined;
1329
1353
  };
@@ -1346,6 +1370,7 @@ export default function useCanvas(): {
1346
1370
  readonly can_download?: boolean | undefined;
1347
1371
  readonly can_share?: boolean | undefined;
1348
1372
  readonly can_be_divided?: boolean | undefined;
1373
+ readonly can_print?: boolean | undefined;
1349
1374
  } | undefined;
1350
1375
  readonly tags?: readonly string[] | undefined;
1351
1376
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -1424,6 +1449,7 @@ export default function useCanvas(): {
1424
1449
  readonly can_download?: boolean | undefined;
1425
1450
  readonly can_share?: boolean | undefined;
1426
1451
  readonly can_be_divided?: boolean | undefined;
1452
+ readonly can_print?: boolean | undefined;
1427
1453
  } | undefined;
1428
1454
  readonly metadata?: {
1429
1455
  readonly [x: string]: any;
@@ -1581,6 +1607,10 @@ export default function useCanvas(): {
1581
1607
  readonly is_editable: boolean;
1582
1608
  readonly is_removable: boolean;
1583
1609
  } | undefined;
1610
+ readonly template_permissions?: {
1611
+ readonly is_editable: boolean;
1612
+ readonly is_removable: boolean;
1613
+ } | undefined;
1584
1614
  readonly style?: {
1585
1615
  readonly [x: string]: any;
1586
1616
  } | undefined;
@@ -1654,6 +1684,7 @@ export default function useCanvas(): {
1654
1684
  readonly can_download?: boolean | undefined;
1655
1685
  readonly can_share?: boolean | undefined;
1656
1686
  readonly can_be_divided?: boolean | undefined;
1687
+ readonly can_print?: boolean | undefined;
1657
1688
  } | undefined;
1658
1689
  readonly content_url: string | null;
1659
1690
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -1683,6 +1714,7 @@ export default function useCanvas(): {
1683
1714
  readonly can_download?: boolean | undefined;
1684
1715
  readonly can_share?: boolean | undefined;
1685
1716
  readonly can_be_divided?: boolean | undefined;
1717
+ readonly can_print?: boolean | undefined;
1686
1718
  } | undefined;
1687
1719
  readonly content_url: string | null;
1688
1720
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -1788,6 +1820,7 @@ export default function useCanvas(): {
1788
1820
  readonly can_download?: boolean | undefined;
1789
1821
  readonly can_share?: boolean | undefined;
1790
1822
  readonly can_be_divided?: boolean | undefined;
1823
+ readonly can_print?: boolean | undefined;
1791
1824
  } | undefined;
1792
1825
  readonly tags?: readonly string[] | undefined;
1793
1826
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -1816,6 +1849,7 @@ export default function useCanvas(): {
1816
1849
  readonly can_download?: boolean | undefined;
1817
1850
  readonly can_share?: boolean | undefined;
1818
1851
  readonly can_be_divided?: boolean | undefined;
1852
+ readonly can_print?: boolean | undefined;
1819
1853
  } | undefined;
1820
1854
  readonly tags?: readonly string[] | undefined;
1821
1855
  };
@@ -1838,6 +1872,7 @@ export default function useCanvas(): {
1838
1872
  readonly can_download?: boolean | undefined;
1839
1873
  readonly can_share?: boolean | undefined;
1840
1874
  readonly can_be_divided?: boolean | undefined;
1875
+ readonly can_print?: boolean | undefined;
1841
1876
  } | undefined;
1842
1877
  readonly tags?: readonly string[] | undefined;
1843
1878
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -1916,6 +1951,7 @@ export default function useCanvas(): {
1916
1951
  readonly can_download?: boolean | undefined;
1917
1952
  readonly can_share?: boolean | undefined;
1918
1953
  readonly can_be_divided?: boolean | undefined;
1954
+ readonly can_print?: boolean | undefined;
1919
1955
  } | undefined;
1920
1956
  readonly metadata?: {
1921
1957
  readonly [x: string]: any;
@@ -2073,6 +2109,10 @@ export default function useCanvas(): {
2073
2109
  readonly is_editable: boolean;
2074
2110
  readonly is_removable: boolean;
2075
2111
  } | undefined;
2112
+ readonly template_permissions?: {
2113
+ readonly is_editable: boolean;
2114
+ readonly is_removable: boolean;
2115
+ } | undefined;
2076
2116
  readonly style?: {
2077
2117
  readonly [x: string]: any;
2078
2118
  } | undefined;
@@ -2144,6 +2184,7 @@ export default function useCanvas(): {
2144
2184
  can_download?: boolean | undefined;
2145
2185
  can_share?: boolean | undefined;
2146
2186
  can_be_divided?: boolean | undefined;
2187
+ can_print?: boolean | undefined;
2147
2188
  } | undefined;
2148
2189
  readonly content_url: string | null;
2149
2190
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -2169,6 +2210,7 @@ export default function useCanvas(): {
2169
2210
  can_download?: boolean | undefined;
2170
2211
  can_share?: boolean | undefined;
2171
2212
  can_be_divided?: boolean | undefined;
2213
+ can_print?: boolean | undefined;
2172
2214
  } | undefined;
2173
2215
  readonly content_url: string | null;
2174
2216
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -2266,6 +2308,7 @@ export default function useCanvas(): {
2266
2308
  can_download?: boolean | undefined;
2267
2309
  can_share?: boolean | undefined;
2268
2310
  can_be_divided?: boolean | undefined;
2311
+ can_print?: boolean | undefined;
2269
2312
  } | undefined;
2270
2313
  tags?: string[] | undefined;
2271
2314
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -2290,6 +2333,7 @@ export default function useCanvas(): {
2290
2333
  can_download?: boolean | undefined;
2291
2334
  can_share?: boolean | undefined;
2292
2335
  can_be_divided?: boolean | undefined;
2336
+ can_print?: boolean | undefined;
2293
2337
  } | undefined;
2294
2338
  tags?: string[] | undefined;
2295
2339
  };
@@ -2312,6 +2356,7 @@ export default function useCanvas(): {
2312
2356
  can_download?: boolean | undefined;
2313
2357
  can_share?: boolean | undefined;
2314
2358
  can_be_divided?: boolean | undefined;
2359
+ can_print?: boolean | undefined;
2315
2360
  } | undefined;
2316
2361
  tags?: string[] | undefined;
2317
2362
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -2386,6 +2431,7 @@ export default function useCanvas(): {
2386
2431
  can_download?: boolean | undefined;
2387
2432
  can_share?: boolean | undefined;
2388
2433
  can_be_divided?: boolean | undefined;
2434
+ can_print?: boolean | undefined;
2389
2435
  } | undefined;
2390
2436
  metadata?: Record<string, any> | undefined;
2391
2437
  app_metadata?: Record<string, any> | undefined;
@@ -2527,6 +2573,10 @@ export default function useCanvas(): {
2527
2573
  is_editable: boolean;
2528
2574
  is_removable: boolean;
2529
2575
  } | undefined;
2576
+ template_permissions?: {
2577
+ is_editable: boolean;
2578
+ is_removable: boolean;
2579
+ } | undefined;
2530
2580
  style?: Record<string, any> | undefined;
2531
2581
  tags?: string[] | undefined;
2532
2582
  theme_meta?: {
@@ -2579,6 +2629,7 @@ export default function useCanvas(): {
2579
2629
  can_download?: boolean | undefined;
2580
2630
  can_share?: boolean | undefined;
2581
2631
  can_be_divided?: boolean | undefined;
2632
+ can_print?: boolean | undefined;
2582
2633
  } | undefined;
2583
2634
  readonly content_url: string | null;
2584
2635
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -2604,6 +2655,7 @@ export default function useCanvas(): {
2604
2655
  can_download?: boolean | undefined;
2605
2656
  can_share?: boolean | undefined;
2606
2657
  can_be_divided?: boolean | undefined;
2658
+ can_print?: boolean | undefined;
2607
2659
  } | undefined;
2608
2660
  readonly content_url: string | null;
2609
2661
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -2701,6 +2753,7 @@ export default function useCanvas(): {
2701
2753
  can_download?: boolean | undefined;
2702
2754
  can_share?: boolean | undefined;
2703
2755
  can_be_divided?: boolean | undefined;
2756
+ can_print?: boolean | undefined;
2704
2757
  } | undefined;
2705
2758
  tags?: string[] | undefined;
2706
2759
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -2725,6 +2778,7 @@ export default function useCanvas(): {
2725
2778
  can_download?: boolean | undefined;
2726
2779
  can_share?: boolean | undefined;
2727
2780
  can_be_divided?: boolean | undefined;
2781
+ can_print?: boolean | undefined;
2728
2782
  } | undefined;
2729
2783
  tags?: string[] | undefined;
2730
2784
  };
@@ -2747,6 +2801,7 @@ export default function useCanvas(): {
2747
2801
  can_download?: boolean | undefined;
2748
2802
  can_share?: boolean | undefined;
2749
2803
  can_be_divided?: boolean | undefined;
2804
+ can_print?: boolean | undefined;
2750
2805
  } | undefined;
2751
2806
  tags?: string[] | undefined;
2752
2807
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -2821,6 +2876,7 @@ export default function useCanvas(): {
2821
2876
  can_download?: boolean | undefined;
2822
2877
  can_share?: boolean | undefined;
2823
2878
  can_be_divided?: boolean | undefined;
2879
+ can_print?: boolean | undefined;
2824
2880
  } | undefined;
2825
2881
  metadata?: Record<string, any> | undefined;
2826
2882
  app_metadata?: Record<string, any> | undefined;
@@ -2962,6 +3018,10 @@ export default function useCanvas(): {
2962
3018
  is_editable: boolean;
2963
3019
  is_removable: boolean;
2964
3020
  } | undefined;
3021
+ template_permissions?: {
3022
+ is_editable: boolean;
3023
+ is_removable: boolean;
3024
+ } | undefined;
2965
3025
  style?: Record<string, any> | undefined;
2966
3026
  tags?: string[] | undefined;
2967
3027
  theme_meta?: {
@@ -3054,6 +3114,7 @@ export default function useCanvas(): {
3054
3114
  readonly can_download?: boolean | undefined;
3055
3115
  readonly can_share?: boolean | undefined;
3056
3116
  readonly can_be_divided?: boolean | undefined;
3117
+ readonly can_print?: boolean | undefined;
3057
3118
  } | undefined;
3058
3119
  readonly content_url: string | null;
3059
3120
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -3083,6 +3144,7 @@ export default function useCanvas(): {
3083
3144
  readonly can_download?: boolean | undefined;
3084
3145
  readonly can_share?: boolean | undefined;
3085
3146
  readonly can_be_divided?: boolean | undefined;
3147
+ readonly can_print?: boolean | undefined;
3086
3148
  } | undefined;
3087
3149
  readonly content_url: string | null;
3088
3150
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -3188,6 +3250,7 @@ export default function useCanvas(): {
3188
3250
  readonly can_download?: boolean | undefined;
3189
3251
  readonly can_share?: boolean | undefined;
3190
3252
  readonly can_be_divided?: boolean | undefined;
3253
+ readonly can_print?: boolean | undefined;
3191
3254
  } | undefined;
3192
3255
  readonly tags?: readonly string[] | undefined;
3193
3256
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -3216,6 +3279,7 @@ export default function useCanvas(): {
3216
3279
  readonly can_download?: boolean | undefined;
3217
3280
  readonly can_share?: boolean | undefined;
3218
3281
  readonly can_be_divided?: boolean | undefined;
3282
+ readonly can_print?: boolean | undefined;
3219
3283
  } | undefined;
3220
3284
  readonly tags?: readonly string[] | undefined;
3221
3285
  };
@@ -3238,6 +3302,7 @@ export default function useCanvas(): {
3238
3302
  readonly can_download?: boolean | undefined;
3239
3303
  readonly can_share?: boolean | undefined;
3240
3304
  readonly can_be_divided?: boolean | undefined;
3305
+ readonly can_print?: boolean | undefined;
3241
3306
  } | undefined;
3242
3307
  readonly tags?: readonly string[] | undefined;
3243
3308
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -3316,6 +3381,7 @@ export default function useCanvas(): {
3316
3381
  readonly can_download?: boolean | undefined;
3317
3382
  readonly can_share?: boolean | undefined;
3318
3383
  readonly can_be_divided?: boolean | undefined;
3384
+ readonly can_print?: boolean | undefined;
3319
3385
  } | undefined;
3320
3386
  readonly metadata?: {
3321
3387
  readonly [x: string]: any;
@@ -3473,6 +3539,10 @@ export default function useCanvas(): {
3473
3539
  readonly is_editable: boolean;
3474
3540
  readonly is_removable: boolean;
3475
3541
  } | undefined;
3542
+ readonly template_permissions?: {
3543
+ readonly is_editable: boolean;
3544
+ readonly is_removable: boolean;
3545
+ } | undefined;
3476
3546
  readonly style?: {
3477
3547
  readonly [x: string]: any;
3478
3548
  } | undefined;
@@ -3711,6 +3781,7 @@ export default function useCanvas(): {
3711
3781
  readonly can_download?: boolean | undefined;
3712
3782
  readonly can_share?: boolean | undefined;
3713
3783
  readonly can_be_divided?: boolean | undefined;
3784
+ readonly can_print?: boolean | undefined;
3714
3785
  } | undefined;
3715
3786
  readonly content_url: string | null;
3716
3787
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -3740,6 +3811,7 @@ export default function useCanvas(): {
3740
3811
  readonly can_download?: boolean | undefined;
3741
3812
  readonly can_share?: boolean | undefined;
3742
3813
  readonly can_be_divided?: boolean | undefined;
3814
+ readonly can_print?: boolean | undefined;
3743
3815
  } | undefined;
3744
3816
  readonly content_url: string | null;
3745
3817
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -3845,6 +3917,7 @@ export default function useCanvas(): {
3845
3917
  readonly can_download?: boolean | undefined;
3846
3918
  readonly can_share?: boolean | undefined;
3847
3919
  readonly can_be_divided?: boolean | undefined;
3920
+ readonly can_print?: boolean | undefined;
3848
3921
  } | undefined;
3849
3922
  readonly tags?: readonly string[] | undefined;
3850
3923
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -3873,6 +3946,7 @@ export default function useCanvas(): {
3873
3946
  readonly can_download?: boolean | undefined;
3874
3947
  readonly can_share?: boolean | undefined;
3875
3948
  readonly can_be_divided?: boolean | undefined;
3949
+ readonly can_print?: boolean | undefined;
3876
3950
  } | undefined;
3877
3951
  readonly tags?: readonly string[] | undefined;
3878
3952
  };
@@ -3895,6 +3969,7 @@ export default function useCanvas(): {
3895
3969
  readonly can_download?: boolean | undefined;
3896
3970
  readonly can_share?: boolean | undefined;
3897
3971
  readonly can_be_divided?: boolean | undefined;
3972
+ readonly can_print?: boolean | undefined;
3898
3973
  } | undefined;
3899
3974
  readonly tags?: readonly string[] | undefined;
3900
3975
  readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -3973,6 +4048,7 @@ export default function useCanvas(): {
3973
4048
  readonly can_download?: boolean | undefined;
3974
4049
  readonly can_share?: boolean | undefined;
3975
4050
  readonly can_be_divided?: boolean | undefined;
4051
+ readonly can_print?: boolean | undefined;
3976
4052
  } | undefined;
3977
4053
  readonly metadata?: {
3978
4054
  readonly [x: string]: any;
@@ -4130,6 +4206,10 @@ export default function useCanvas(): {
4130
4206
  readonly is_editable: boolean;
4131
4207
  readonly is_removable: boolean;
4132
4208
  } | undefined;
4209
+ readonly template_permissions?: {
4210
+ readonly is_editable: boolean;
4211
+ readonly is_removable: boolean;
4212
+ } | undefined;
4133
4213
  readonly style?: {
4134
4214
  readonly [x: string]: any;
4135
4215
  } | undefined;
@@ -4191,6 +4271,7 @@ export default function useCanvas(): {
4191
4271
  can_download?: boolean | undefined;
4192
4272
  can_share?: boolean | undefined;
4193
4273
  can_be_divided?: boolean | undefined;
4274
+ can_print?: boolean | undefined;
4194
4275
  } | undefined;
4195
4276
  readonly content_url: string | null;
4196
4277
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -4216,6 +4297,7 @@ export default function useCanvas(): {
4216
4297
  can_download?: boolean | undefined;
4217
4298
  can_share?: boolean | undefined;
4218
4299
  can_be_divided?: boolean | undefined;
4300
+ can_print?: boolean | undefined;
4219
4301
  } | undefined;
4220
4302
  readonly content_url: string | null;
4221
4303
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -4313,6 +4395,7 @@ export default function useCanvas(): {
4313
4395
  can_download?: boolean | undefined;
4314
4396
  can_share?: boolean | undefined;
4315
4397
  can_be_divided?: boolean | undefined;
4398
+ can_print?: boolean | undefined;
4316
4399
  } | undefined;
4317
4400
  tags?: string[] | undefined;
4318
4401
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -4337,6 +4420,7 @@ export default function useCanvas(): {
4337
4420
  can_download?: boolean | undefined;
4338
4421
  can_share?: boolean | undefined;
4339
4422
  can_be_divided?: boolean | undefined;
4423
+ can_print?: boolean | undefined;
4340
4424
  } | undefined;
4341
4425
  tags?: string[] | undefined;
4342
4426
  };
@@ -4359,6 +4443,7 @@ export default function useCanvas(): {
4359
4443
  can_download?: boolean | undefined;
4360
4444
  can_share?: boolean | undefined;
4361
4445
  can_be_divided?: boolean | undefined;
4446
+ can_print?: boolean | undefined;
4362
4447
  } | undefined;
4363
4448
  tags?: string[] | undefined;
4364
4449
  thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
@@ -4433,6 +4518,7 @@ export default function useCanvas(): {
4433
4518
  can_download?: boolean | undefined;
4434
4519
  can_share?: boolean | undefined;
4435
4520
  can_be_divided?: boolean | undefined;
4521
+ can_print?: boolean | undefined;
4436
4522
  } | undefined;
4437
4523
  metadata?: Record<string, any> | undefined;
4438
4524
  app_metadata?: Record<string, any> | undefined;
@@ -4574,6 +4660,10 @@ export default function useCanvas(): {
4574
4660
  is_editable: boolean;
4575
4661
  is_removable: boolean;
4576
4662
  } | undefined;
4663
+ template_permissions?: {
4664
+ is_editable: boolean;
4665
+ is_removable: boolean;
4666
+ } | undefined;
4577
4667
  style?: Record<string, any> | undefined;
4578
4668
  tags?: string[] | undefined;
4579
4669
  theme_meta?: {
@@ -4924,7 +5014,6 @@ export default function useCanvas(): {
4924
5014
  enable_recents?: boolean | undefined;
4925
5015
  enable_favorites?: boolean | undefined;
4926
5016
  enable_sync_file_filtering?: boolean | undefined;
4927
- enable_sfdc_sync?: boolean | undefined;
4928
5017
  time_format?: string | undefined;
4929
5018
  date_format?: string | undefined;
4930
5019
  is_file_expiration_mandatory?: boolean | undefined;
@@ -4967,7 +5056,6 @@ export default function useCanvas(): {
4967
5056
  enable_multipeer_connectivity?: boolean;
4968
5057
  enable_syncbox?: boolean;
4969
5058
  enable_sync_file_filtering?: boolean;
4970
- enable_sfdc_sync?: boolean;
4971
5059
  time_format?: string;
4972
5060
  date_format?: string;
4973
5061
  is_file_expiration_mandatory?: boolean;
@@ -5261,7 +5349,6 @@ export default function useCanvas(): {
5261
5349
  enable_recents?: boolean | undefined;
5262
5350
  enable_favorites?: boolean | undefined;
5263
5351
  enable_sync_file_filtering?: boolean | undefined;
5264
- enable_sfdc_sync?: boolean | undefined;
5265
5352
  time_format?: string | undefined;
5266
5353
  date_format?: string | undefined;
5267
5354
  is_file_expiration_mandatory?: boolean | undefined;
@@ -5591,7 +5678,6 @@ export default function useCanvas(): {
5591
5678
  readonly enable_recents?: boolean | undefined;
5592
5679
  readonly enable_favorites?: boolean | undefined;
5593
5680
  readonly enable_sync_file_filtering?: boolean | undefined;
5594
- readonly enable_sfdc_sync?: boolean | undefined;
5595
5681
  readonly time_format?: string | undefined;
5596
5682
  readonly date_format?: string | undefined;
5597
5683
  readonly is_file_expiration_mandatory?: boolean | undefined;
@@ -5920,7 +6006,6 @@ export default function useCanvas(): {
5920
6006
  readonly enable_recents?: boolean | undefined;
5921
6007
  readonly enable_favorites?: boolean | undefined;
5922
6008
  readonly enable_sync_file_filtering?: boolean | undefined;
5923
- readonly enable_sfdc_sync?: boolean | undefined;
5924
6009
  readonly time_format?: string | undefined;
5925
6010
  readonly date_format?: string | undefined;
5926
6011
  readonly is_file_expiration_mandatory?: boolean | undefined;
@@ -198,6 +198,7 @@ export default function useCanvasBlocks(): {
198
198
  readonly can_download?: boolean | undefined;
199
199
  readonly can_share?: boolean | undefined;
200
200
  readonly can_be_divided?: boolean | undefined;
201
+ readonly can_print?: boolean | undefined;
201
202
  } | undefined;
202
203
  readonly content_url: string | null;
203
204
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -227,6 +228,7 @@ export default function useCanvasBlocks(): {
227
228
  readonly can_download?: boolean | undefined;
228
229
  readonly can_share?: boolean | undefined;
229
230
  readonly can_be_divided?: boolean | undefined;
231
+ readonly can_print?: boolean | undefined;
230
232
  } | undefined;
231
233
  readonly content_url: string | null;
232
234
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -332,6 +334,7 @@ export default function useCanvasBlocks(): {
332
334
  readonly can_download?: boolean | undefined;
333
335
  readonly can_share?: boolean | undefined;
334
336
  readonly can_be_divided?: boolean | undefined;
337
+ readonly can_print?: boolean | undefined;
335
338
  } | undefined;
336
339
  readonly tags?: readonly string[] | undefined;
337
340
  readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
@@ -360,6 +363,7 @@ export default function useCanvasBlocks(): {
360
363
  readonly can_download?: boolean | undefined;
361
364
  readonly can_share?: boolean | undefined;
362
365
  readonly can_be_divided?: boolean | undefined;
366
+ readonly can_print?: boolean | undefined;
363
367
  } | undefined;
364
368
  readonly tags?: readonly string[] | undefined;
365
369
  };
@@ -382,6 +386,7 @@ export default function useCanvasBlocks(): {
382
386
  readonly can_download?: boolean | undefined;
383
387
  readonly can_share?: boolean | undefined;
384
388
  readonly can_be_divided?: boolean | undefined;
389
+ readonly can_print?: boolean | undefined;
385
390
  } | undefined;
386
391
  readonly tags?: readonly string[] | undefined;
387
392
  readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
@@ -460,6 +465,7 @@ export default function useCanvasBlocks(): {
460
465
  readonly can_download?: boolean | undefined;
461
466
  readonly can_share?: boolean | undefined;
462
467
  readonly can_be_divided?: boolean | undefined;
468
+ readonly can_print?: boolean | undefined;
463
469
  } | undefined;
464
470
  readonly metadata?: {
465
471
  readonly [x: string]: any;
@@ -617,6 +623,10 @@ export default function useCanvasBlocks(): {
617
623
  readonly is_editable: boolean;
618
624
  readonly is_removable: boolean;
619
625
  } | undefined;
626
+ readonly template_permissions?: {
627
+ readonly is_editable: boolean;
628
+ readonly is_removable: boolean;
629
+ } | undefined;
620
630
  readonly style?: {
621
631
  readonly [x: string]: any;
622
632
  } | undefined;
@@ -675,6 +685,7 @@ export default function useCanvasBlocks(): {
675
685
  readonly can_download?: boolean | undefined;
676
686
  readonly can_share?: boolean | undefined;
677
687
  readonly can_be_divided?: boolean | undefined;
688
+ readonly can_print?: boolean | undefined;
678
689
  } | undefined;
679
690
  readonly content_url: string | null;
680
691
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -704,6 +715,7 @@ export default function useCanvasBlocks(): {
704
715
  readonly can_download?: boolean | undefined;
705
716
  readonly can_share?: boolean | undefined;
706
717
  readonly can_be_divided?: boolean | undefined;
718
+ readonly can_print?: boolean | undefined;
707
719
  } | undefined;
708
720
  readonly content_url: string | null;
709
721
  readonly content_type: import('../../../../types/openapi').FileContentTypeEnum;
@@ -809,6 +821,7 @@ export default function useCanvasBlocks(): {
809
821
  readonly can_download?: boolean | undefined;
810
822
  readonly can_share?: boolean | undefined;
811
823
  readonly can_be_divided?: boolean | undefined;
824
+ readonly can_print?: boolean | undefined;
812
825
  } | undefined;
813
826
  readonly tags?: readonly string[] | undefined;
814
827
  readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
@@ -837,6 +850,7 @@ export default function useCanvasBlocks(): {
837
850
  readonly can_download?: boolean | undefined;
838
851
  readonly can_share?: boolean | undefined;
839
852
  readonly can_be_divided?: boolean | undefined;
853
+ readonly can_print?: boolean | undefined;
840
854
  } | undefined;
841
855
  readonly tags?: readonly string[] | undefined;
842
856
  };
@@ -859,6 +873,7 @@ export default function useCanvasBlocks(): {
859
873
  readonly can_download?: boolean | undefined;
860
874
  readonly can_share?: boolean | undefined;
861
875
  readonly can_be_divided?: boolean | undefined;
876
+ readonly can_print?: boolean | undefined;
862
877
  } | undefined;
863
878
  readonly tags?: readonly string[] | undefined;
864
879
  readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
@@ -937,6 +952,7 @@ export default function useCanvasBlocks(): {
937
952
  readonly can_download?: boolean | undefined;
938
953
  readonly can_share?: boolean | undefined;
939
954
  readonly can_be_divided?: boolean | undefined;
955
+ readonly can_print?: boolean | undefined;
940
956
  } | undefined;
941
957
  readonly metadata?: {
942
958
  readonly [x: string]: any;
@@ -1094,6 +1110,10 @@ export default function useCanvasBlocks(): {
1094
1110
  readonly is_editable: boolean;
1095
1111
  readonly is_removable: boolean;
1096
1112
  } | undefined;
1113
+ readonly template_permissions?: {
1114
+ readonly is_editable: boolean;
1115
+ readonly is_removable: boolean;
1116
+ } | undefined;
1097
1117
  readonly style?: {
1098
1118
  readonly [x: string]: any;
1099
1119
  } | undefined;