@pitcher/canvas-ui 2026.1.22-164323-beta → 2026.1.22-165049-beta
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/canvas-ui.css +21 -21
- package/canvas-ui.js +236 -60
- package/canvas-ui.js.map +1 -1
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +4 -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 +4 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +54 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +2 -0
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +7 -0
- package/lib/sdk/api/HighLevelApi.d.ts +0 -2
- package/lib/sdk/api/modules/query.d.ts +1 -44
- package/lib/sdk/main.d.ts +0 -6
- package/lib/sdk/payload.types.d.ts +0 -55
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/locale/de.json +4 -0
- package/locale/el.json +4 -0
- package/locale/en.json +4 -0
- package/locale/es.json +4 -0
- package/locale/fr.json +4 -0
- package/locale/it.json +4 -0
- package/locale/ja.json +4 -0
- package/locale/nl.json +4 -0
- package/locale/pl.json +4 -0
- package/locale/pt-br.json +4 -0
- package/locale/pt.json +4 -0
- package/locale/th.json +4 -0
- package/locale/tr.json +4 -0
- package/locale/zh.json +4 -0
- package/package.json +1 -1
- package/types/openapi/models/FilePermission.d.ts +1 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
|
@@ -31,6 +31,7 @@ export declare function provideMoveItemModal(): {
|
|
|
31
31
|
can_download?: boolean | undefined;
|
|
32
32
|
can_share?: boolean | undefined;
|
|
33
33
|
can_be_divided?: boolean | undefined;
|
|
34
|
+
can_print?: boolean | undefined;
|
|
34
35
|
} | undefined;
|
|
35
36
|
tags?: Array<string> | undefined;
|
|
36
37
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -56,6 +57,7 @@ export declare function provideMoveItemModal(): {
|
|
|
56
57
|
can_download?: boolean | undefined;
|
|
57
58
|
can_share?: boolean | undefined;
|
|
58
59
|
can_be_divided?: boolean | undefined;
|
|
60
|
+
can_print?: boolean | undefined;
|
|
59
61
|
} | undefined;
|
|
60
62
|
tags?: Array<string> | undefined;
|
|
61
63
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -94,6 +96,7 @@ export declare function provideMoveItemModal(): {
|
|
|
94
96
|
can_download?: boolean | undefined;
|
|
95
97
|
can_share?: boolean | undefined;
|
|
96
98
|
can_be_divided?: boolean | undefined;
|
|
99
|
+
can_print?: boolean | undefined;
|
|
97
100
|
} | undefined;
|
|
98
101
|
tags?: Array<string> | undefined;
|
|
99
102
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -119,6 +122,7 @@ export declare function provideMoveItemModal(): {
|
|
|
119
122
|
can_download?: boolean | undefined;
|
|
120
123
|
can_share?: boolean | undefined;
|
|
121
124
|
can_be_divided?: boolean | undefined;
|
|
125
|
+
can_print?: boolean | undefined;
|
|
122
126
|
} | undefined;
|
|
123
127
|
tags?: Array<string> | undefined;
|
|
124
128
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -19,6 +19,7 @@ export interface Form {
|
|
|
19
19
|
expiresAtOption: FileExpiration;
|
|
20
20
|
accessType: PFile['access_type'];
|
|
21
21
|
collaborations: UserCollaboration[];
|
|
22
|
+
metadata?: PFile['metadata'];
|
|
22
23
|
}
|
|
23
24
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
24
25
|
configEditorRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -153,6 +153,7 @@ declare const _default: () => {
|
|
|
153
153
|
readonly can_download?: boolean | undefined;
|
|
154
154
|
readonly can_share?: boolean | undefined;
|
|
155
155
|
readonly can_be_divided?: boolean | undefined;
|
|
156
|
+
readonly can_print?: boolean | undefined;
|
|
156
157
|
} | undefined;
|
|
157
158
|
readonly tags?: readonly string[] | undefined;
|
|
158
159
|
readonly owned_by: {
|
|
@@ -206,6 +207,7 @@ declare const _default: () => {
|
|
|
206
207
|
readonly can_download?: boolean | undefined;
|
|
207
208
|
readonly can_share?: boolean | undefined;
|
|
208
209
|
readonly can_be_divided?: boolean | undefined;
|
|
210
|
+
readonly can_print?: boolean | undefined;
|
|
209
211
|
} | undefined;
|
|
210
212
|
readonly pspdfkit_server_url: string | null;
|
|
211
213
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -305,6 +307,7 @@ declare const _default: () => {
|
|
|
305
307
|
readonly can_download?: boolean | undefined;
|
|
306
308
|
readonly can_share?: boolean | undefined;
|
|
307
309
|
readonly can_be_divided?: boolean | undefined;
|
|
310
|
+
readonly can_print?: boolean | undefined;
|
|
308
311
|
} | undefined;
|
|
309
312
|
readonly metadata: {
|
|
310
313
|
readonly [x: string]: any;
|
|
@@ -428,6 +431,7 @@ declare const _default: () => {
|
|
|
428
431
|
readonly can_download?: boolean | undefined;
|
|
429
432
|
readonly can_share?: boolean | undefined;
|
|
430
433
|
readonly can_be_divided?: boolean | undefined;
|
|
434
|
+
readonly can_print?: boolean | undefined;
|
|
431
435
|
} | undefined;
|
|
432
436
|
readonly metadata: {
|
|
433
437
|
readonly [x: string]: any;
|
|
@@ -472,6 +476,7 @@ declare const _default: () => {
|
|
|
472
476
|
readonly can_download?: boolean | undefined;
|
|
473
477
|
readonly can_share?: boolean | undefined;
|
|
474
478
|
readonly can_be_divided?: boolean | undefined;
|
|
479
|
+
readonly can_print?: boolean | undefined;
|
|
475
480
|
} | undefined;
|
|
476
481
|
readonly tags?: readonly string[] | undefined;
|
|
477
482
|
readonly owned_by: {
|
|
@@ -615,6 +620,7 @@ declare const _default: () => {
|
|
|
615
620
|
can_download?: boolean | undefined;
|
|
616
621
|
can_share?: boolean | undefined;
|
|
617
622
|
can_be_divided?: boolean | undefined;
|
|
623
|
+
can_print?: boolean | undefined;
|
|
618
624
|
} | undefined;
|
|
619
625
|
tags?: Array<string> | undefined;
|
|
620
626
|
readonly owned_by: {
|
|
@@ -668,6 +674,7 @@ declare const _default: () => {
|
|
|
668
674
|
can_download?: boolean | undefined;
|
|
669
675
|
can_share?: boolean | undefined;
|
|
670
676
|
can_be_divided?: boolean | undefined;
|
|
677
|
+
can_print?: boolean | undefined;
|
|
671
678
|
} | undefined;
|
|
672
679
|
readonly pspdfkit_server_url: string | null;
|
|
673
680
|
readonly pspdfkit_document_id: string | null;
|
|
@@ -761,6 +768,7 @@ declare const _default: () => {
|
|
|
761
768
|
can_download?: boolean | undefined;
|
|
762
769
|
can_share?: boolean | undefined;
|
|
763
770
|
can_be_divided?: boolean | undefined;
|
|
771
|
+
can_print?: boolean | undefined;
|
|
764
772
|
} | undefined;
|
|
765
773
|
readonly metadata: Record<string, any>;
|
|
766
774
|
readonly created_by: {
|
|
@@ -838,6 +846,7 @@ declare const _default: () => {
|
|
|
838
846
|
can_download?: boolean | undefined;
|
|
839
847
|
can_share?: boolean | undefined;
|
|
840
848
|
can_be_divided?: boolean | undefined;
|
|
849
|
+
can_print?: boolean | undefined;
|
|
841
850
|
} | undefined;
|
|
842
851
|
readonly metadata: Record<string, any>;
|
|
843
852
|
readonly created_by: {
|
|
@@ -27,6 +27,7 @@ export default function (): {
|
|
|
27
27
|
can_download?: boolean | undefined;
|
|
28
28
|
can_share?: boolean | undefined;
|
|
29
29
|
can_be_divided?: boolean | undefined;
|
|
30
|
+
can_print?: boolean | undefined;
|
|
30
31
|
} | undefined;
|
|
31
32
|
app_metadata?: Record<string, any> | undefined;
|
|
32
33
|
tags?: Array<string> | undefined;
|
|
@@ -71,6 +72,7 @@ export default function (): {
|
|
|
71
72
|
can_download?: boolean | undefined;
|
|
72
73
|
can_share?: boolean | undefined;
|
|
73
74
|
can_be_divided?: boolean | undefined;
|
|
75
|
+
can_print?: boolean | undefined;
|
|
74
76
|
} | undefined;
|
|
75
77
|
app_metadata?: Record<string, any> | undefined;
|
|
76
78
|
tags?: Array<string> | undefined;
|
|
@@ -113,6 +115,7 @@ export default function (): {
|
|
|
113
115
|
can_download?: boolean | undefined;
|
|
114
116
|
can_share?: boolean | undefined;
|
|
115
117
|
can_be_divided?: boolean | undefined;
|
|
118
|
+
can_print?: boolean | undefined;
|
|
116
119
|
} | undefined;
|
|
117
120
|
app_metadata?: Record<string, any> | undefined;
|
|
118
121
|
tags?: Array<string> | undefined;
|
|
@@ -157,6 +160,7 @@ export default function (): {
|
|
|
157
160
|
can_download?: boolean | undefined;
|
|
158
161
|
can_share?: boolean | undefined;
|
|
159
162
|
can_be_divided?: boolean | undefined;
|
|
163
|
+
can_print?: boolean | undefined;
|
|
160
164
|
} | undefined;
|
|
161
165
|
app_metadata?: Record<string, any> | undefined;
|
|
162
166
|
tags?: Array<string> | undefined;
|
|
@@ -51,6 +51,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
51
51
|
readonly can_download?: boolean | undefined;
|
|
52
52
|
readonly can_share?: boolean | undefined;
|
|
53
53
|
readonly can_be_divided?: boolean | undefined;
|
|
54
|
+
readonly can_print?: boolean | undefined;
|
|
54
55
|
} | undefined;
|
|
55
56
|
readonly tags?: readonly string[] | undefined;
|
|
56
57
|
readonly pspdfkit_auth_payload: {
|
|
@@ -80,6 +81,7 @@ declare const componentNodesById: import('vue').ComputedRef<{
|
|
|
80
81
|
readonly can_download?: boolean | undefined;
|
|
81
82
|
readonly can_share?: boolean | undefined;
|
|
82
83
|
readonly can_be_divided?: boolean | undefined;
|
|
84
|
+
readonly can_print?: boolean | undefined;
|
|
83
85
|
} | undefined;
|
|
84
86
|
readonly tags?: readonly string[] | undefined;
|
|
85
87
|
readonly pspdfkit_auth_payload: {
|
|
@@ -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;
|
|
@@ -531,6 +537,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
531
537
|
readonly can_download?: boolean | undefined;
|
|
532
538
|
readonly can_share?: boolean | undefined;
|
|
533
539
|
readonly can_be_divided?: boolean | undefined;
|
|
540
|
+
readonly can_print?: boolean | undefined;
|
|
534
541
|
} | undefined;
|
|
535
542
|
readonly tags?: readonly string[] | undefined;
|
|
536
543
|
readonly pspdfkit_auth_payload: {
|
|
@@ -560,6 +567,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
560
567
|
readonly can_download?: boolean | undefined;
|
|
561
568
|
readonly can_share?: boolean | undefined;
|
|
562
569
|
readonly can_be_divided?: boolean | undefined;
|
|
570
|
+
readonly can_print?: boolean | undefined;
|
|
563
571
|
} | undefined;
|
|
564
572
|
readonly tags?: readonly string[] | undefined;
|
|
565
573
|
readonly pspdfkit_auth_payload: {
|
|
@@ -664,6 +672,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
664
672
|
readonly can_download?: boolean | undefined;
|
|
665
673
|
readonly can_share?: boolean | undefined;
|
|
666
674
|
readonly can_be_divided?: boolean | undefined;
|
|
675
|
+
readonly can_print?: boolean | undefined;
|
|
667
676
|
} | undefined;
|
|
668
677
|
readonly tags?: readonly string[] | undefined;
|
|
669
678
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -692,6 +701,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
692
701
|
readonly can_download?: boolean | undefined;
|
|
693
702
|
readonly can_share?: boolean | undefined;
|
|
694
703
|
readonly can_be_divided?: boolean | undefined;
|
|
704
|
+
readonly can_print?: boolean | undefined;
|
|
695
705
|
} | undefined;
|
|
696
706
|
readonly tags?: readonly string[] | undefined;
|
|
697
707
|
};
|
|
@@ -714,6 +724,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
714
724
|
readonly can_download?: boolean | undefined;
|
|
715
725
|
readonly can_share?: boolean | undefined;
|
|
716
726
|
readonly can_be_divided?: boolean | undefined;
|
|
727
|
+
readonly can_print?: boolean | undefined;
|
|
717
728
|
} | undefined;
|
|
718
729
|
readonly tags?: readonly string[] | undefined;
|
|
719
730
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -792,6 +803,7 @@ declare const sectionComponentNodesBySectionId: import('vue').ComputedRef<{
|
|
|
792
803
|
readonly can_download?: boolean | undefined;
|
|
793
804
|
readonly can_share?: boolean | undefined;
|
|
794
805
|
readonly can_be_divided?: boolean | undefined;
|
|
806
|
+
readonly can_print?: boolean | undefined;
|
|
795
807
|
} | undefined;
|
|
796
808
|
readonly metadata?: {
|
|
797
809
|
readonly [x: string]: any;
|
|
@@ -1163,6 +1175,7 @@ export default function useCanvas(): {
|
|
|
1163
1175
|
readonly can_download?: boolean | undefined;
|
|
1164
1176
|
readonly can_share?: boolean | undefined;
|
|
1165
1177
|
readonly can_be_divided?: boolean | undefined;
|
|
1178
|
+
readonly can_print?: boolean | undefined;
|
|
1166
1179
|
} | undefined;
|
|
1167
1180
|
readonly tags?: readonly string[] | undefined;
|
|
1168
1181
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1192,6 +1205,7 @@ export default function useCanvas(): {
|
|
|
1192
1205
|
readonly can_download?: boolean | undefined;
|
|
1193
1206
|
readonly can_share?: boolean | undefined;
|
|
1194
1207
|
readonly can_be_divided?: boolean | undefined;
|
|
1208
|
+
readonly can_print?: boolean | undefined;
|
|
1195
1209
|
} | undefined;
|
|
1196
1210
|
readonly tags?: readonly string[] | undefined;
|
|
1197
1211
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1296,6 +1310,7 @@ export default function useCanvas(): {
|
|
|
1296
1310
|
readonly can_download?: boolean | undefined;
|
|
1297
1311
|
readonly can_share?: boolean | undefined;
|
|
1298
1312
|
readonly can_be_divided?: boolean | undefined;
|
|
1313
|
+
readonly can_print?: boolean | undefined;
|
|
1299
1314
|
} | undefined;
|
|
1300
1315
|
readonly tags?: readonly string[] | undefined;
|
|
1301
1316
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1324,6 +1339,7 @@ export default function useCanvas(): {
|
|
|
1324
1339
|
readonly can_download?: boolean | undefined;
|
|
1325
1340
|
readonly can_share?: boolean | undefined;
|
|
1326
1341
|
readonly can_be_divided?: boolean | undefined;
|
|
1342
|
+
readonly can_print?: boolean | undefined;
|
|
1327
1343
|
} | undefined;
|
|
1328
1344
|
readonly tags?: readonly string[] | undefined;
|
|
1329
1345
|
};
|
|
@@ -1346,6 +1362,7 @@ export default function useCanvas(): {
|
|
|
1346
1362
|
readonly can_download?: boolean | undefined;
|
|
1347
1363
|
readonly can_share?: boolean | undefined;
|
|
1348
1364
|
readonly can_be_divided?: boolean | undefined;
|
|
1365
|
+
readonly can_print?: boolean | undefined;
|
|
1349
1366
|
} | undefined;
|
|
1350
1367
|
readonly tags?: readonly string[] | undefined;
|
|
1351
1368
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1424,6 +1441,7 @@ export default function useCanvas(): {
|
|
|
1424
1441
|
readonly can_download?: boolean | undefined;
|
|
1425
1442
|
readonly can_share?: boolean | undefined;
|
|
1426
1443
|
readonly can_be_divided?: boolean | undefined;
|
|
1444
|
+
readonly can_print?: boolean | undefined;
|
|
1427
1445
|
} | undefined;
|
|
1428
1446
|
readonly metadata?: {
|
|
1429
1447
|
readonly [x: string]: any;
|
|
@@ -1655,6 +1673,7 @@ export default function useCanvas(): {
|
|
|
1655
1673
|
readonly can_download?: boolean | undefined;
|
|
1656
1674
|
readonly can_share?: boolean | undefined;
|
|
1657
1675
|
readonly can_be_divided?: boolean | undefined;
|
|
1676
|
+
readonly can_print?: boolean | undefined;
|
|
1658
1677
|
} | undefined;
|
|
1659
1678
|
readonly tags?: readonly string[] | undefined;
|
|
1660
1679
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1684,6 +1703,7 @@ export default function useCanvas(): {
|
|
|
1684
1703
|
readonly can_download?: boolean | undefined;
|
|
1685
1704
|
readonly can_share?: boolean | undefined;
|
|
1686
1705
|
readonly can_be_divided?: boolean | undefined;
|
|
1706
|
+
readonly can_print?: boolean | undefined;
|
|
1687
1707
|
} | undefined;
|
|
1688
1708
|
readonly tags?: readonly string[] | undefined;
|
|
1689
1709
|
readonly pspdfkit_auth_payload: {
|
|
@@ -1788,6 +1808,7 @@ export default function useCanvas(): {
|
|
|
1788
1808
|
readonly can_download?: boolean | undefined;
|
|
1789
1809
|
readonly can_share?: boolean | undefined;
|
|
1790
1810
|
readonly can_be_divided?: boolean | undefined;
|
|
1811
|
+
readonly can_print?: boolean | undefined;
|
|
1791
1812
|
} | undefined;
|
|
1792
1813
|
readonly tags?: readonly string[] | undefined;
|
|
1793
1814
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1816,6 +1837,7 @@ export default function useCanvas(): {
|
|
|
1816
1837
|
readonly can_download?: boolean | undefined;
|
|
1817
1838
|
readonly can_share?: boolean | undefined;
|
|
1818
1839
|
readonly can_be_divided?: boolean | undefined;
|
|
1840
|
+
readonly can_print?: boolean | undefined;
|
|
1819
1841
|
} | undefined;
|
|
1820
1842
|
readonly tags?: readonly string[] | undefined;
|
|
1821
1843
|
};
|
|
@@ -1838,6 +1860,7 @@ export default function useCanvas(): {
|
|
|
1838
1860
|
readonly can_download?: boolean | undefined;
|
|
1839
1861
|
readonly can_share?: boolean | undefined;
|
|
1840
1862
|
readonly can_be_divided?: boolean | undefined;
|
|
1863
|
+
readonly can_print?: boolean | undefined;
|
|
1841
1864
|
} | undefined;
|
|
1842
1865
|
readonly tags?: readonly string[] | undefined;
|
|
1843
1866
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -1916,6 +1939,7 @@ export default function useCanvas(): {
|
|
|
1916
1939
|
readonly can_download?: boolean | undefined;
|
|
1917
1940
|
readonly can_share?: boolean | undefined;
|
|
1918
1941
|
readonly can_be_divided?: boolean | undefined;
|
|
1942
|
+
readonly can_print?: boolean | undefined;
|
|
1919
1943
|
} | undefined;
|
|
1920
1944
|
readonly metadata?: {
|
|
1921
1945
|
readonly [x: string]: any;
|
|
@@ -2145,6 +2169,7 @@ export default function useCanvas(): {
|
|
|
2145
2169
|
can_download?: boolean | undefined;
|
|
2146
2170
|
can_share?: boolean | undefined;
|
|
2147
2171
|
can_be_divided?: boolean | undefined;
|
|
2172
|
+
can_print?: boolean | undefined;
|
|
2148
2173
|
} | undefined;
|
|
2149
2174
|
tags?: Array<string> | undefined;
|
|
2150
2175
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2170,6 +2195,7 @@ export default function useCanvas(): {
|
|
|
2170
2195
|
can_download?: boolean | undefined;
|
|
2171
2196
|
can_share?: boolean | undefined;
|
|
2172
2197
|
can_be_divided?: boolean | undefined;
|
|
2198
|
+
can_print?: boolean | undefined;
|
|
2173
2199
|
} | undefined;
|
|
2174
2200
|
tags?: Array<string> | undefined;
|
|
2175
2201
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2266,6 +2292,7 @@ export default function useCanvas(): {
|
|
|
2266
2292
|
can_download?: boolean | undefined;
|
|
2267
2293
|
can_share?: boolean | undefined;
|
|
2268
2294
|
can_be_divided?: boolean | undefined;
|
|
2295
|
+
can_print?: boolean | undefined;
|
|
2269
2296
|
} | undefined;
|
|
2270
2297
|
tags?: string[] | undefined;
|
|
2271
2298
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2290,6 +2317,7 @@ export default function useCanvas(): {
|
|
|
2290
2317
|
can_download?: boolean | undefined;
|
|
2291
2318
|
can_share?: boolean | undefined;
|
|
2292
2319
|
can_be_divided?: boolean | undefined;
|
|
2320
|
+
can_print?: boolean | undefined;
|
|
2293
2321
|
} | undefined;
|
|
2294
2322
|
tags?: string[] | undefined;
|
|
2295
2323
|
};
|
|
@@ -2312,6 +2340,7 @@ export default function useCanvas(): {
|
|
|
2312
2340
|
can_download?: boolean | undefined;
|
|
2313
2341
|
can_share?: boolean | undefined;
|
|
2314
2342
|
can_be_divided?: boolean | undefined;
|
|
2343
|
+
can_print?: boolean | undefined;
|
|
2315
2344
|
} | undefined;
|
|
2316
2345
|
tags?: string[] | undefined;
|
|
2317
2346
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2386,6 +2415,7 @@ export default function useCanvas(): {
|
|
|
2386
2415
|
can_download?: boolean | undefined;
|
|
2387
2416
|
can_share?: boolean | undefined;
|
|
2388
2417
|
can_be_divided?: boolean | undefined;
|
|
2418
|
+
can_print?: boolean | undefined;
|
|
2389
2419
|
} | undefined;
|
|
2390
2420
|
metadata?: Record<string, any> | undefined;
|
|
2391
2421
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -2580,6 +2610,7 @@ export default function useCanvas(): {
|
|
|
2580
2610
|
can_download?: boolean | undefined;
|
|
2581
2611
|
can_share?: boolean | undefined;
|
|
2582
2612
|
can_be_divided?: boolean | undefined;
|
|
2613
|
+
can_print?: boolean | undefined;
|
|
2583
2614
|
} | undefined;
|
|
2584
2615
|
tags?: Array<string> | undefined;
|
|
2585
2616
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2605,6 +2636,7 @@ export default function useCanvas(): {
|
|
|
2605
2636
|
can_download?: boolean | undefined;
|
|
2606
2637
|
can_share?: boolean | undefined;
|
|
2607
2638
|
can_be_divided?: boolean | undefined;
|
|
2639
|
+
can_print?: boolean | undefined;
|
|
2608
2640
|
} | undefined;
|
|
2609
2641
|
tags?: Array<string> | undefined;
|
|
2610
2642
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -2701,6 +2733,7 @@ export default function useCanvas(): {
|
|
|
2701
2733
|
can_download?: boolean | undefined;
|
|
2702
2734
|
can_share?: boolean | undefined;
|
|
2703
2735
|
can_be_divided?: boolean | undefined;
|
|
2736
|
+
can_print?: boolean | undefined;
|
|
2704
2737
|
} | undefined;
|
|
2705
2738
|
tags?: string[] | undefined;
|
|
2706
2739
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2725,6 +2758,7 @@ export default function useCanvas(): {
|
|
|
2725
2758
|
can_download?: boolean | undefined;
|
|
2726
2759
|
can_share?: boolean | undefined;
|
|
2727
2760
|
can_be_divided?: boolean | undefined;
|
|
2761
|
+
can_print?: boolean | undefined;
|
|
2728
2762
|
} | undefined;
|
|
2729
2763
|
tags?: string[] | undefined;
|
|
2730
2764
|
};
|
|
@@ -2747,6 +2781,7 @@ export default function useCanvas(): {
|
|
|
2747
2781
|
can_download?: boolean | undefined;
|
|
2748
2782
|
can_share?: boolean | undefined;
|
|
2749
2783
|
can_be_divided?: boolean | undefined;
|
|
2784
|
+
can_print?: boolean | undefined;
|
|
2750
2785
|
} | undefined;
|
|
2751
2786
|
tags?: string[] | undefined;
|
|
2752
2787
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -2821,6 +2856,7 @@ export default function useCanvas(): {
|
|
|
2821
2856
|
can_download?: boolean | undefined;
|
|
2822
2857
|
can_share?: boolean | undefined;
|
|
2823
2858
|
can_be_divided?: boolean | undefined;
|
|
2859
|
+
can_print?: boolean | undefined;
|
|
2824
2860
|
} | undefined;
|
|
2825
2861
|
metadata?: Record<string, any> | undefined;
|
|
2826
2862
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -3055,6 +3091,7 @@ export default function useCanvas(): {
|
|
|
3055
3091
|
readonly can_download?: boolean | undefined;
|
|
3056
3092
|
readonly can_share?: boolean | undefined;
|
|
3057
3093
|
readonly can_be_divided?: boolean | undefined;
|
|
3094
|
+
readonly can_print?: boolean | undefined;
|
|
3058
3095
|
} | undefined;
|
|
3059
3096
|
readonly tags?: readonly string[] | undefined;
|
|
3060
3097
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3084,6 +3121,7 @@ export default function useCanvas(): {
|
|
|
3084
3121
|
readonly can_download?: boolean | undefined;
|
|
3085
3122
|
readonly can_share?: boolean | undefined;
|
|
3086
3123
|
readonly can_be_divided?: boolean | undefined;
|
|
3124
|
+
readonly can_print?: boolean | undefined;
|
|
3087
3125
|
} | undefined;
|
|
3088
3126
|
readonly tags?: readonly string[] | undefined;
|
|
3089
3127
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3188,6 +3226,7 @@ export default function useCanvas(): {
|
|
|
3188
3226
|
readonly can_download?: boolean | undefined;
|
|
3189
3227
|
readonly can_share?: boolean | undefined;
|
|
3190
3228
|
readonly can_be_divided?: boolean | undefined;
|
|
3229
|
+
readonly can_print?: boolean | undefined;
|
|
3191
3230
|
} | undefined;
|
|
3192
3231
|
readonly tags?: readonly string[] | undefined;
|
|
3193
3232
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3216,6 +3255,7 @@ export default function useCanvas(): {
|
|
|
3216
3255
|
readonly can_download?: boolean | undefined;
|
|
3217
3256
|
readonly can_share?: boolean | undefined;
|
|
3218
3257
|
readonly can_be_divided?: boolean | undefined;
|
|
3258
|
+
readonly can_print?: boolean | undefined;
|
|
3219
3259
|
} | undefined;
|
|
3220
3260
|
readonly tags?: readonly string[] | undefined;
|
|
3221
3261
|
};
|
|
@@ -3238,6 +3278,7 @@ export default function useCanvas(): {
|
|
|
3238
3278
|
readonly can_download?: boolean | undefined;
|
|
3239
3279
|
readonly can_share?: boolean | undefined;
|
|
3240
3280
|
readonly can_be_divided?: boolean | undefined;
|
|
3281
|
+
readonly can_print?: boolean | undefined;
|
|
3241
3282
|
} | undefined;
|
|
3242
3283
|
readonly tags?: readonly string[] | undefined;
|
|
3243
3284
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3316,6 +3357,7 @@ export default function useCanvas(): {
|
|
|
3316
3357
|
readonly can_download?: boolean | undefined;
|
|
3317
3358
|
readonly can_share?: boolean | undefined;
|
|
3318
3359
|
readonly can_be_divided?: boolean | undefined;
|
|
3360
|
+
readonly can_print?: boolean | undefined;
|
|
3319
3361
|
} | undefined;
|
|
3320
3362
|
readonly metadata?: {
|
|
3321
3363
|
readonly [x: string]: any;
|
|
@@ -3712,6 +3754,7 @@ export default function useCanvas(): {
|
|
|
3712
3754
|
readonly can_download?: boolean | undefined;
|
|
3713
3755
|
readonly can_share?: boolean | undefined;
|
|
3714
3756
|
readonly can_be_divided?: boolean | undefined;
|
|
3757
|
+
readonly can_print?: boolean | undefined;
|
|
3715
3758
|
} | undefined;
|
|
3716
3759
|
readonly tags?: readonly string[] | undefined;
|
|
3717
3760
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3741,6 +3784,7 @@ export default function useCanvas(): {
|
|
|
3741
3784
|
readonly can_download?: boolean | undefined;
|
|
3742
3785
|
readonly can_share?: boolean | undefined;
|
|
3743
3786
|
readonly can_be_divided?: boolean | undefined;
|
|
3787
|
+
readonly can_print?: boolean | undefined;
|
|
3744
3788
|
} | undefined;
|
|
3745
3789
|
readonly tags?: readonly string[] | undefined;
|
|
3746
3790
|
readonly pspdfkit_auth_payload: {
|
|
@@ -3845,6 +3889,7 @@ export default function useCanvas(): {
|
|
|
3845
3889
|
readonly can_download?: boolean | undefined;
|
|
3846
3890
|
readonly can_share?: boolean | undefined;
|
|
3847
3891
|
readonly can_be_divided?: boolean | undefined;
|
|
3892
|
+
readonly can_print?: boolean | undefined;
|
|
3848
3893
|
} | undefined;
|
|
3849
3894
|
readonly tags?: readonly string[] | undefined;
|
|
3850
3895
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3873,6 +3918,7 @@ export default function useCanvas(): {
|
|
|
3873
3918
|
readonly can_download?: boolean | undefined;
|
|
3874
3919
|
readonly can_share?: boolean | undefined;
|
|
3875
3920
|
readonly can_be_divided?: boolean | undefined;
|
|
3921
|
+
readonly can_print?: boolean | undefined;
|
|
3876
3922
|
} | undefined;
|
|
3877
3923
|
readonly tags?: readonly string[] | undefined;
|
|
3878
3924
|
};
|
|
@@ -3895,6 +3941,7 @@ export default function useCanvas(): {
|
|
|
3895
3941
|
readonly can_download?: boolean | undefined;
|
|
3896
3942
|
readonly can_share?: boolean | undefined;
|
|
3897
3943
|
readonly can_be_divided?: boolean | undefined;
|
|
3944
|
+
readonly can_print?: boolean | undefined;
|
|
3898
3945
|
} | undefined;
|
|
3899
3946
|
readonly tags?: readonly string[] | undefined;
|
|
3900
3947
|
readonly thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -3973,6 +4020,7 @@ export default function useCanvas(): {
|
|
|
3973
4020
|
readonly can_download?: boolean | undefined;
|
|
3974
4021
|
readonly can_share?: boolean | undefined;
|
|
3975
4022
|
readonly can_be_divided?: boolean | undefined;
|
|
4023
|
+
readonly can_print?: boolean | undefined;
|
|
3976
4024
|
} | undefined;
|
|
3977
4025
|
readonly metadata?: {
|
|
3978
4026
|
readonly [x: string]: any;
|
|
@@ -4192,6 +4240,7 @@ export default function useCanvas(): {
|
|
|
4192
4240
|
can_download?: boolean | undefined;
|
|
4193
4241
|
can_share?: boolean | undefined;
|
|
4194
4242
|
can_be_divided?: boolean | undefined;
|
|
4243
|
+
can_print?: boolean | undefined;
|
|
4195
4244
|
} | undefined;
|
|
4196
4245
|
tags?: Array<string> | undefined;
|
|
4197
4246
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -4217,6 +4266,7 @@ export default function useCanvas(): {
|
|
|
4217
4266
|
can_download?: boolean | undefined;
|
|
4218
4267
|
can_share?: boolean | undefined;
|
|
4219
4268
|
can_be_divided?: boolean | undefined;
|
|
4269
|
+
can_print?: boolean | undefined;
|
|
4220
4270
|
} | undefined;
|
|
4221
4271
|
tags?: Array<string> | undefined;
|
|
4222
4272
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -4313,6 +4363,7 @@ export default function useCanvas(): {
|
|
|
4313
4363
|
can_download?: boolean | undefined;
|
|
4314
4364
|
can_share?: boolean | undefined;
|
|
4315
4365
|
can_be_divided?: boolean | undefined;
|
|
4366
|
+
can_print?: boolean | undefined;
|
|
4316
4367
|
} | undefined;
|
|
4317
4368
|
tags?: string[] | undefined;
|
|
4318
4369
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4337,6 +4388,7 @@ export default function useCanvas(): {
|
|
|
4337
4388
|
can_download?: boolean | undefined;
|
|
4338
4389
|
can_share?: boolean | undefined;
|
|
4339
4390
|
can_be_divided?: boolean | undefined;
|
|
4391
|
+
can_print?: boolean | undefined;
|
|
4340
4392
|
} | undefined;
|
|
4341
4393
|
tags?: string[] | undefined;
|
|
4342
4394
|
};
|
|
@@ -4359,6 +4411,7 @@ export default function useCanvas(): {
|
|
|
4359
4411
|
can_download?: boolean | undefined;
|
|
4360
4412
|
can_share?: boolean | undefined;
|
|
4361
4413
|
can_be_divided?: boolean | undefined;
|
|
4414
|
+
can_print?: boolean | undefined;
|
|
4362
4415
|
} | undefined;
|
|
4363
4416
|
tags?: string[] | undefined;
|
|
4364
4417
|
thumbnail_url?: FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -4433,6 +4486,7 @@ export default function useCanvas(): {
|
|
|
4433
4486
|
can_download?: boolean | undefined;
|
|
4434
4487
|
can_share?: boolean | undefined;
|
|
4435
4488
|
can_be_divided?: boolean | undefined;
|
|
4489
|
+
can_print?: boolean | undefined;
|
|
4436
4490
|
} | undefined;
|
|
4437
4491
|
metadata?: Record<string, any> | undefined;
|
|
4438
4492
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -199,6 +199,7 @@ export default function useCanvasBlocks(): {
|
|
|
199
199
|
readonly can_download?: boolean | undefined;
|
|
200
200
|
readonly can_share?: boolean | undefined;
|
|
201
201
|
readonly can_be_divided?: boolean | undefined;
|
|
202
|
+
readonly can_print?: boolean | undefined;
|
|
202
203
|
} | undefined;
|
|
203
204
|
readonly tags?: readonly string[] | undefined;
|
|
204
205
|
readonly pspdfkit_auth_payload: {
|
|
@@ -228,6 +229,7 @@ export default function useCanvasBlocks(): {
|
|
|
228
229
|
readonly can_download?: boolean | undefined;
|
|
229
230
|
readonly can_share?: boolean | undefined;
|
|
230
231
|
readonly can_be_divided?: boolean | undefined;
|
|
232
|
+
readonly can_print?: boolean | undefined;
|
|
231
233
|
} | undefined;
|
|
232
234
|
readonly tags?: readonly string[] | undefined;
|
|
233
235
|
readonly pspdfkit_auth_payload: {
|
|
@@ -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;
|
|
@@ -676,6 +682,7 @@ export default function useCanvasBlocks(): {
|
|
|
676
682
|
readonly can_download?: boolean | undefined;
|
|
677
683
|
readonly can_share?: boolean | undefined;
|
|
678
684
|
readonly can_be_divided?: boolean | undefined;
|
|
685
|
+
readonly can_print?: boolean | undefined;
|
|
679
686
|
} | undefined;
|
|
680
687
|
readonly tags?: readonly string[] | undefined;
|
|
681
688
|
readonly pspdfkit_auth_payload: {
|
|
@@ -705,6 +712,7 @@ export default function useCanvasBlocks(): {
|
|
|
705
712
|
readonly can_download?: boolean | undefined;
|
|
706
713
|
readonly can_share?: boolean | undefined;
|
|
707
714
|
readonly can_be_divided?: boolean | undefined;
|
|
715
|
+
readonly can_print?: boolean | undefined;
|
|
708
716
|
} | undefined;
|
|
709
717
|
readonly tags?: readonly string[] | undefined;
|
|
710
718
|
readonly pspdfkit_auth_payload: {
|
|
@@ -809,6 +817,7 @@ export default function useCanvasBlocks(): {
|
|
|
809
817
|
readonly can_download?: boolean | undefined;
|
|
810
818
|
readonly can_share?: boolean | undefined;
|
|
811
819
|
readonly can_be_divided?: boolean | undefined;
|
|
820
|
+
readonly can_print?: boolean | undefined;
|
|
812
821
|
} | undefined;
|
|
813
822
|
readonly tags?: readonly string[] | undefined;
|
|
814
823
|
readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -837,6 +846,7 @@ export default function useCanvasBlocks(): {
|
|
|
837
846
|
readonly can_download?: boolean | undefined;
|
|
838
847
|
readonly can_share?: boolean | undefined;
|
|
839
848
|
readonly can_be_divided?: boolean | undefined;
|
|
849
|
+
readonly can_print?: boolean | undefined;
|
|
840
850
|
} | undefined;
|
|
841
851
|
readonly tags?: readonly string[] | undefined;
|
|
842
852
|
};
|
|
@@ -859,6 +869,7 @@ export default function useCanvasBlocks(): {
|
|
|
859
869
|
readonly can_download?: boolean | undefined;
|
|
860
870
|
readonly can_share?: boolean | undefined;
|
|
861
871
|
readonly can_be_divided?: boolean | undefined;
|
|
872
|
+
readonly can_print?: boolean | undefined;
|
|
862
873
|
} | undefined;
|
|
863
874
|
readonly tags?: readonly string[] | undefined;
|
|
864
875
|
readonly thumbnail_url?: import('../../../../types/openapi').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -937,6 +948,7 @@ export default function useCanvasBlocks(): {
|
|
|
937
948
|
readonly can_download?: boolean | undefined;
|
|
938
949
|
readonly can_share?: boolean | undefined;
|
|
939
950
|
readonly can_be_divided?: boolean | undefined;
|
|
951
|
+
readonly can_print?: boolean | undefined;
|
|
940
952
|
} | undefined;
|
|
941
953
|
readonly metadata?: {
|
|
942
954
|
readonly [x: string]: any;
|