@supernova-studio/client 0.32.0 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +233 -183
- package/dist/index.d.ts +233 -183
- package/dist/index.js +417 -284
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +408 -275
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/documentation/group.ts +1 -1
- package/src/yjs/docs-editor/blocks-to-prosemirror.ts +19 -7
- package/src/yjs/docs-editor/index.ts +1 -0
- package/src/yjs/docs-editor/list-tree-builder.ts +23 -82
- package/src/yjs/docs-editor/mock.ts +304 -147
- package/src/yjs/docs-editor/prosemirror-to-blocks.ts +109 -68
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { DocumentationPageV2, ElementGroup, DocumentationPageV1, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
2
|
+
import { DocumentationPageV2, ElementGroup, DocumentationPageV1, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { Schema } from 'prosemirror-model';
|
|
@@ -101,7 +101,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
101
101
|
url: string;
|
|
102
102
|
resourceId: string;
|
|
103
103
|
}>>;
|
|
104
|
-
|
|
104
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
105
105
|
sourceId: z.ZodString;
|
|
106
106
|
frameReferenceId: z.ZodString;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -117,7 +117,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
117
117
|
url: string;
|
|
118
118
|
resourceId: string;
|
|
119
119
|
} | undefined;
|
|
120
|
-
|
|
120
|
+
figmaNode?: {
|
|
121
121
|
sourceId: string;
|
|
122
122
|
frameReferenceId: string;
|
|
123
123
|
} | undefined;
|
|
@@ -127,7 +127,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
127
127
|
url: string;
|
|
128
128
|
resourceId: string;
|
|
129
129
|
} | undefined;
|
|
130
|
-
|
|
130
|
+
figmaNode?: {
|
|
131
131
|
sourceId: string;
|
|
132
132
|
frameReferenceId: string;
|
|
133
133
|
} | undefined;
|
|
@@ -141,7 +141,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
141
141
|
url: string;
|
|
142
142
|
resourceId: string;
|
|
143
143
|
} | undefined;
|
|
144
|
-
|
|
144
|
+
figmaNode?: {
|
|
145
145
|
sourceId: string;
|
|
146
146
|
frameReferenceId: string;
|
|
147
147
|
} | undefined;
|
|
@@ -155,7 +155,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
155
155
|
url: string;
|
|
156
156
|
resourceId: string;
|
|
157
157
|
} | undefined;
|
|
158
|
-
|
|
158
|
+
figmaNode?: {
|
|
159
159
|
sourceId: string;
|
|
160
160
|
frameReferenceId: string;
|
|
161
161
|
} | undefined;
|
|
@@ -171,7 +171,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
171
171
|
url: string;
|
|
172
172
|
resourceId: string;
|
|
173
173
|
} | undefined;
|
|
174
|
-
|
|
174
|
+
figmaNode?: {
|
|
175
175
|
sourceId: string;
|
|
176
176
|
frameReferenceId: string;
|
|
177
177
|
} | undefined;
|
|
@@ -187,7 +187,7 @@ declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
|
187
187
|
url: string;
|
|
188
188
|
resourceId: string;
|
|
189
189
|
} | undefined;
|
|
190
|
-
|
|
190
|
+
figmaNode?: {
|
|
191
191
|
sourceId: string;
|
|
192
192
|
frameReferenceId: string;
|
|
193
193
|
} | undefined;
|
|
@@ -358,29 +358,29 @@ declare const DTODocumentationTabCreateActionInputV2: z.ZodObject<{
|
|
|
358
358
|
type: z.ZodLiteral<"DocumentationTabCreate">;
|
|
359
359
|
input: z.ZodObject<{
|
|
360
360
|
persistentId: z.ZodString;
|
|
361
|
-
|
|
361
|
+
fromItemPersistentId: z.ZodString;
|
|
362
362
|
tabName: z.ZodString;
|
|
363
363
|
}, "strip", z.ZodTypeAny, {
|
|
364
364
|
persistentId: string;
|
|
365
|
-
|
|
365
|
+
fromItemPersistentId: string;
|
|
366
366
|
tabName: string;
|
|
367
367
|
}, {
|
|
368
368
|
persistentId: string;
|
|
369
|
-
|
|
369
|
+
fromItemPersistentId: string;
|
|
370
370
|
tabName: string;
|
|
371
371
|
}>;
|
|
372
372
|
}, "strip", z.ZodTypeAny, {
|
|
373
373
|
type: "DocumentationTabCreate";
|
|
374
374
|
input: {
|
|
375
375
|
persistentId: string;
|
|
376
|
-
|
|
376
|
+
fromItemPersistentId: string;
|
|
377
377
|
tabName: string;
|
|
378
378
|
};
|
|
379
379
|
}, {
|
|
380
380
|
type: "DocumentationTabCreate";
|
|
381
381
|
input: {
|
|
382
382
|
persistentId: string;
|
|
383
|
-
|
|
383
|
+
fromItemPersistentId: string;
|
|
384
384
|
tabName: string;
|
|
385
385
|
};
|
|
386
386
|
}>;
|
|
@@ -426,7 +426,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
426
426
|
url: string;
|
|
427
427
|
resourceId: string;
|
|
428
428
|
}>>;
|
|
429
|
-
|
|
429
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
430
430
|
sourceId: z.ZodString;
|
|
431
431
|
frameReferenceId: z.ZodString;
|
|
432
432
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -442,7 +442,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
442
442
|
url: string;
|
|
443
443
|
resourceId: string;
|
|
444
444
|
} | undefined;
|
|
445
|
-
|
|
445
|
+
figmaNode?: {
|
|
446
446
|
sourceId: string;
|
|
447
447
|
frameReferenceId: string;
|
|
448
448
|
} | undefined;
|
|
@@ -452,7 +452,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
452
452
|
url: string;
|
|
453
453
|
resourceId: string;
|
|
454
454
|
} | undefined;
|
|
455
|
-
|
|
455
|
+
figmaNode?: {
|
|
456
456
|
sourceId: string;
|
|
457
457
|
frameReferenceId: string;
|
|
458
458
|
} | undefined;
|
|
@@ -481,7 +481,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
481
481
|
url: string;
|
|
482
482
|
resourceId: string;
|
|
483
483
|
} | undefined;
|
|
484
|
-
|
|
484
|
+
figmaNode?: {
|
|
485
485
|
sourceId: string;
|
|
486
486
|
frameReferenceId: string;
|
|
487
487
|
} | undefined;
|
|
@@ -507,7 +507,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
507
507
|
url: string;
|
|
508
508
|
resourceId: string;
|
|
509
509
|
} | undefined;
|
|
510
|
-
|
|
510
|
+
figmaNode?: {
|
|
511
511
|
sourceId: string;
|
|
512
512
|
frameReferenceId: string;
|
|
513
513
|
} | undefined;
|
|
@@ -536,7 +536,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
536
536
|
url: string;
|
|
537
537
|
resourceId: string;
|
|
538
538
|
} | undefined;
|
|
539
|
-
|
|
539
|
+
figmaNode?: {
|
|
540
540
|
sourceId: string;
|
|
541
541
|
frameReferenceId: string;
|
|
542
542
|
} | undefined;
|
|
@@ -565,7 +565,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
565
565
|
url: string;
|
|
566
566
|
resourceId: string;
|
|
567
567
|
} | undefined;
|
|
568
|
-
|
|
568
|
+
figmaNode?: {
|
|
569
569
|
sourceId: string;
|
|
570
570
|
frameReferenceId: string;
|
|
571
571
|
} | undefined;
|
|
@@ -601,7 +601,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
601
601
|
url: string;
|
|
602
602
|
resourceId: string;
|
|
603
603
|
} | undefined;
|
|
604
|
-
|
|
604
|
+
figmaNode?: {
|
|
605
605
|
sourceId: string;
|
|
606
606
|
frameReferenceId: string;
|
|
607
607
|
} | undefined;
|
|
@@ -636,7 +636,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
636
636
|
url: string;
|
|
637
637
|
resourceId: string;
|
|
638
638
|
} | undefined;
|
|
639
|
-
|
|
639
|
+
figmaNode?: {
|
|
640
640
|
sourceId: string;
|
|
641
641
|
frameReferenceId: string;
|
|
642
642
|
} | undefined;
|
|
@@ -674,7 +674,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
674
674
|
url: string;
|
|
675
675
|
resourceId: string;
|
|
676
676
|
} | undefined;
|
|
677
|
-
|
|
677
|
+
figmaNode?: {
|
|
678
678
|
sourceId: string;
|
|
679
679
|
frameReferenceId: string;
|
|
680
680
|
} | undefined;
|
|
@@ -712,7 +712,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
712
712
|
url: string;
|
|
713
713
|
resourceId: string;
|
|
714
714
|
} | undefined;
|
|
715
|
-
|
|
715
|
+
figmaNode?: {
|
|
716
716
|
sourceId: string;
|
|
717
717
|
frameReferenceId: string;
|
|
718
718
|
} | undefined;
|
|
@@ -767,7 +767,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
767
767
|
url: string;
|
|
768
768
|
resourceId: string;
|
|
769
769
|
}>>;
|
|
770
|
-
|
|
770
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
771
771
|
sourceId: z.ZodString;
|
|
772
772
|
frameReferenceId: z.ZodString;
|
|
773
773
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -783,7 +783,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
783
783
|
url: string;
|
|
784
784
|
resourceId: string;
|
|
785
785
|
} | undefined;
|
|
786
|
-
|
|
786
|
+
figmaNode?: {
|
|
787
787
|
sourceId: string;
|
|
788
788
|
frameReferenceId: string;
|
|
789
789
|
} | undefined;
|
|
@@ -793,7 +793,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
793
793
|
url: string;
|
|
794
794
|
resourceId: string;
|
|
795
795
|
} | undefined;
|
|
796
|
-
|
|
796
|
+
figmaNode?: {
|
|
797
797
|
sourceId: string;
|
|
798
798
|
frameReferenceId: string;
|
|
799
799
|
} | undefined;
|
|
@@ -822,7 +822,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
822
822
|
url: string;
|
|
823
823
|
resourceId: string;
|
|
824
824
|
} | undefined;
|
|
825
|
-
|
|
825
|
+
figmaNode?: {
|
|
826
826
|
sourceId: string;
|
|
827
827
|
frameReferenceId: string;
|
|
828
828
|
} | undefined;
|
|
@@ -848,7 +848,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
848
848
|
url: string;
|
|
849
849
|
resourceId: string;
|
|
850
850
|
} | undefined;
|
|
851
|
-
|
|
851
|
+
figmaNode?: {
|
|
852
852
|
sourceId: string;
|
|
853
853
|
frameReferenceId: string;
|
|
854
854
|
} | undefined;
|
|
@@ -877,7 +877,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
877
877
|
url: string;
|
|
878
878
|
resourceId: string;
|
|
879
879
|
} | undefined;
|
|
880
|
-
|
|
880
|
+
figmaNode?: {
|
|
881
881
|
sourceId: string;
|
|
882
882
|
frameReferenceId: string;
|
|
883
883
|
} | undefined;
|
|
@@ -906,7 +906,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
906
906
|
url: string;
|
|
907
907
|
resourceId: string;
|
|
908
908
|
} | undefined;
|
|
909
|
-
|
|
909
|
+
figmaNode?: {
|
|
910
910
|
sourceId: string;
|
|
911
911
|
frameReferenceId: string;
|
|
912
912
|
} | undefined;
|
|
@@ -939,7 +939,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
939
939
|
url: string;
|
|
940
940
|
resourceId: string;
|
|
941
941
|
} | undefined;
|
|
942
|
-
|
|
942
|
+
figmaNode?: {
|
|
943
943
|
sourceId: string;
|
|
944
944
|
frameReferenceId: string;
|
|
945
945
|
} | undefined;
|
|
@@ -972,7 +972,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
972
972
|
url: string;
|
|
973
973
|
resourceId: string;
|
|
974
974
|
} | undefined;
|
|
975
|
-
|
|
975
|
+
figmaNode?: {
|
|
976
976
|
sourceId: string;
|
|
977
977
|
frameReferenceId: string;
|
|
978
978
|
} | undefined;
|
|
@@ -1008,7 +1008,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
1008
1008
|
url: string;
|
|
1009
1009
|
resourceId: string;
|
|
1010
1010
|
} | undefined;
|
|
1011
|
-
|
|
1011
|
+
figmaNode?: {
|
|
1012
1012
|
sourceId: string;
|
|
1013
1013
|
frameReferenceId: string;
|
|
1014
1014
|
} | undefined;
|
|
@@ -1044,7 +1044,7 @@ declare const DTODocumentationGroupUpdateActionInputV2: z.ZodObject<{
|
|
|
1044
1044
|
url: string;
|
|
1045
1045
|
resourceId: string;
|
|
1046
1046
|
} | undefined;
|
|
1047
|
-
|
|
1047
|
+
figmaNode?: {
|
|
1048
1048
|
sourceId: string;
|
|
1049
1049
|
frameReferenceId: string;
|
|
1050
1050
|
} | undefined;
|
|
@@ -1269,7 +1269,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1269
1269
|
url: string;
|
|
1270
1270
|
resourceId: string;
|
|
1271
1271
|
}>>;
|
|
1272
|
-
|
|
1272
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
1273
1273
|
sourceId: z.ZodString;
|
|
1274
1274
|
frameReferenceId: z.ZodString;
|
|
1275
1275
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1285,7 +1285,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1285
1285
|
url: string;
|
|
1286
1286
|
resourceId: string;
|
|
1287
1287
|
} | undefined;
|
|
1288
|
-
|
|
1288
|
+
figmaNode?: {
|
|
1289
1289
|
sourceId: string;
|
|
1290
1290
|
frameReferenceId: string;
|
|
1291
1291
|
} | undefined;
|
|
@@ -1295,7 +1295,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1295
1295
|
url: string;
|
|
1296
1296
|
resourceId: string;
|
|
1297
1297
|
} | undefined;
|
|
1298
|
-
|
|
1298
|
+
figmaNode?: {
|
|
1299
1299
|
sourceId: string;
|
|
1300
1300
|
frameReferenceId: string;
|
|
1301
1301
|
} | undefined;
|
|
@@ -1324,7 +1324,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1324
1324
|
url: string;
|
|
1325
1325
|
resourceId: string;
|
|
1326
1326
|
} | undefined;
|
|
1327
|
-
|
|
1327
|
+
figmaNode?: {
|
|
1328
1328
|
sourceId: string;
|
|
1329
1329
|
frameReferenceId: string;
|
|
1330
1330
|
} | undefined;
|
|
@@ -1350,7 +1350,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1350
1350
|
url: string;
|
|
1351
1351
|
resourceId: string;
|
|
1352
1352
|
} | undefined;
|
|
1353
|
-
|
|
1353
|
+
figmaNode?: {
|
|
1354
1354
|
sourceId: string;
|
|
1355
1355
|
frameReferenceId: string;
|
|
1356
1356
|
} | undefined;
|
|
@@ -1379,7 +1379,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1379
1379
|
url: string;
|
|
1380
1380
|
resourceId: string;
|
|
1381
1381
|
} | undefined;
|
|
1382
|
-
|
|
1382
|
+
figmaNode?: {
|
|
1383
1383
|
sourceId: string;
|
|
1384
1384
|
frameReferenceId: string;
|
|
1385
1385
|
} | undefined;
|
|
@@ -1408,7 +1408,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1408
1408
|
url: string;
|
|
1409
1409
|
resourceId: string;
|
|
1410
1410
|
} | undefined;
|
|
1411
|
-
|
|
1411
|
+
figmaNode?: {
|
|
1412
1412
|
sourceId: string;
|
|
1413
1413
|
frameReferenceId: string;
|
|
1414
1414
|
} | undefined;
|
|
@@ -1450,7 +1450,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1450
1450
|
url: string;
|
|
1451
1451
|
resourceId: string;
|
|
1452
1452
|
} | undefined;
|
|
1453
|
-
|
|
1453
|
+
figmaNode?: {
|
|
1454
1454
|
sourceId: string;
|
|
1455
1455
|
frameReferenceId: string;
|
|
1456
1456
|
} | undefined;
|
|
@@ -1494,7 +1494,7 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1494
1494
|
url: string;
|
|
1495
1495
|
resourceId: string;
|
|
1496
1496
|
} | undefined;
|
|
1497
|
-
|
|
1497
|
+
figmaNode?: {
|
|
1498
1498
|
sourceId: string;
|
|
1499
1499
|
frameReferenceId: string;
|
|
1500
1500
|
} | undefined;
|
|
@@ -1546,7 +1546,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1546
1546
|
url: string;
|
|
1547
1547
|
resourceId: string;
|
|
1548
1548
|
}>>;
|
|
1549
|
-
|
|
1549
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
1550
1550
|
sourceId: z.ZodString;
|
|
1551
1551
|
frameReferenceId: z.ZodString;
|
|
1552
1552
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1562,7 +1562,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1562
1562
|
url: string;
|
|
1563
1563
|
resourceId: string;
|
|
1564
1564
|
} | undefined;
|
|
1565
|
-
|
|
1565
|
+
figmaNode?: {
|
|
1566
1566
|
sourceId: string;
|
|
1567
1567
|
frameReferenceId: string;
|
|
1568
1568
|
} | undefined;
|
|
@@ -1572,7 +1572,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1572
1572
|
url: string;
|
|
1573
1573
|
resourceId: string;
|
|
1574
1574
|
} | undefined;
|
|
1575
|
-
|
|
1575
|
+
figmaNode?: {
|
|
1576
1576
|
sourceId: string;
|
|
1577
1577
|
frameReferenceId: string;
|
|
1578
1578
|
} | undefined;
|
|
@@ -1601,7 +1601,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1601
1601
|
url: string;
|
|
1602
1602
|
resourceId: string;
|
|
1603
1603
|
} | undefined;
|
|
1604
|
-
|
|
1604
|
+
figmaNode?: {
|
|
1605
1605
|
sourceId: string;
|
|
1606
1606
|
frameReferenceId: string;
|
|
1607
1607
|
} | undefined;
|
|
@@ -1627,7 +1627,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1627
1627
|
url: string;
|
|
1628
1628
|
resourceId: string;
|
|
1629
1629
|
} | undefined;
|
|
1630
|
-
|
|
1630
|
+
figmaNode?: {
|
|
1631
1631
|
sourceId: string;
|
|
1632
1632
|
frameReferenceId: string;
|
|
1633
1633
|
} | undefined;
|
|
@@ -1656,7 +1656,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1656
1656
|
url: string;
|
|
1657
1657
|
resourceId: string;
|
|
1658
1658
|
} | undefined;
|
|
1659
|
-
|
|
1659
|
+
figmaNode?: {
|
|
1660
1660
|
sourceId: string;
|
|
1661
1661
|
frameReferenceId: string;
|
|
1662
1662
|
} | undefined;
|
|
@@ -1685,7 +1685,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1685
1685
|
url: string;
|
|
1686
1686
|
resourceId: string;
|
|
1687
1687
|
} | undefined;
|
|
1688
|
-
|
|
1688
|
+
figmaNode?: {
|
|
1689
1689
|
sourceId: string;
|
|
1690
1690
|
frameReferenceId: string;
|
|
1691
1691
|
} | undefined;
|
|
@@ -1721,7 +1721,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1721
1721
|
url: string;
|
|
1722
1722
|
resourceId: string;
|
|
1723
1723
|
} | undefined;
|
|
1724
|
-
|
|
1724
|
+
figmaNode?: {
|
|
1725
1725
|
sourceId: string;
|
|
1726
1726
|
frameReferenceId: string;
|
|
1727
1727
|
} | undefined;
|
|
@@ -1756,7 +1756,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
1756
1756
|
url: string;
|
|
1757
1757
|
resourceId: string;
|
|
1758
1758
|
} | undefined;
|
|
1759
|
-
|
|
1759
|
+
figmaNode?: {
|
|
1760
1760
|
sourceId: string;
|
|
1761
1761
|
frameReferenceId: string;
|
|
1762
1762
|
} | undefined;
|
|
@@ -1807,7 +1807,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1807
1807
|
url: string;
|
|
1808
1808
|
resourceId: string;
|
|
1809
1809
|
}>>;
|
|
1810
|
-
|
|
1810
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
1811
1811
|
sourceId: z.ZodString;
|
|
1812
1812
|
frameReferenceId: z.ZodString;
|
|
1813
1813
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1823,7 +1823,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1823
1823
|
url: string;
|
|
1824
1824
|
resourceId: string;
|
|
1825
1825
|
} | undefined;
|
|
1826
|
-
|
|
1826
|
+
figmaNode?: {
|
|
1827
1827
|
sourceId: string;
|
|
1828
1828
|
frameReferenceId: string;
|
|
1829
1829
|
} | undefined;
|
|
@@ -1833,7 +1833,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1833
1833
|
url: string;
|
|
1834
1834
|
resourceId: string;
|
|
1835
1835
|
} | undefined;
|
|
1836
|
-
|
|
1836
|
+
figmaNode?: {
|
|
1837
1837
|
sourceId: string;
|
|
1838
1838
|
frameReferenceId: string;
|
|
1839
1839
|
} | undefined;
|
|
@@ -1862,7 +1862,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1862
1862
|
url: string;
|
|
1863
1863
|
resourceId: string;
|
|
1864
1864
|
} | undefined;
|
|
1865
|
-
|
|
1865
|
+
figmaNode?: {
|
|
1866
1866
|
sourceId: string;
|
|
1867
1867
|
frameReferenceId: string;
|
|
1868
1868
|
} | undefined;
|
|
@@ -1888,7 +1888,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1888
1888
|
url: string;
|
|
1889
1889
|
resourceId: string;
|
|
1890
1890
|
} | undefined;
|
|
1891
|
-
|
|
1891
|
+
figmaNode?: {
|
|
1892
1892
|
sourceId: string;
|
|
1893
1893
|
frameReferenceId: string;
|
|
1894
1894
|
} | undefined;
|
|
@@ -1917,7 +1917,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1917
1917
|
url: string;
|
|
1918
1918
|
resourceId: string;
|
|
1919
1919
|
} | undefined;
|
|
1920
|
-
|
|
1920
|
+
figmaNode?: {
|
|
1921
1921
|
sourceId: string;
|
|
1922
1922
|
frameReferenceId: string;
|
|
1923
1923
|
} | undefined;
|
|
@@ -1946,7 +1946,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1946
1946
|
url: string;
|
|
1947
1947
|
resourceId: string;
|
|
1948
1948
|
} | undefined;
|
|
1949
|
-
|
|
1949
|
+
figmaNode?: {
|
|
1950
1950
|
sourceId: string;
|
|
1951
1951
|
frameReferenceId: string;
|
|
1952
1952
|
} | undefined;
|
|
@@ -1979,7 +1979,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
1979
1979
|
url: string;
|
|
1980
1980
|
resourceId: string;
|
|
1981
1981
|
} | undefined;
|
|
1982
|
-
|
|
1982
|
+
figmaNode?: {
|
|
1983
1983
|
sourceId: string;
|
|
1984
1984
|
frameReferenceId: string;
|
|
1985
1985
|
} | undefined;
|
|
@@ -2012,7 +2012,7 @@ declare const DTOUpdateDocumentationGroupInput: z.ZodObject<{
|
|
|
2012
2012
|
url: string;
|
|
2013
2013
|
resourceId: string;
|
|
2014
2014
|
} | undefined;
|
|
2015
|
-
|
|
2015
|
+
figmaNode?: {
|
|
2016
2016
|
sourceId: string;
|
|
2017
2017
|
frameReferenceId: string;
|
|
2018
2018
|
} | undefined;
|
|
@@ -2055,15 +2055,15 @@ declare const DTODuplicateDocumentationGroupInput: z.ZodObject<{
|
|
|
2055
2055
|
type DTODuplicateDocumentationGroupInput = z.infer<typeof DTODuplicateDocumentationGroupInput>;
|
|
2056
2056
|
declare const DTOCreateDocumentationTabInput: z.ZodObject<{
|
|
2057
2057
|
persistentId: z.ZodString;
|
|
2058
|
-
|
|
2058
|
+
fromItemPersistentId: z.ZodString;
|
|
2059
2059
|
tabName: z.ZodString;
|
|
2060
2060
|
}, "strip", z.ZodTypeAny, {
|
|
2061
2061
|
persistentId: string;
|
|
2062
|
-
|
|
2062
|
+
fromItemPersistentId: string;
|
|
2063
2063
|
tabName: string;
|
|
2064
2064
|
}, {
|
|
2065
2065
|
persistentId: string;
|
|
2066
|
-
|
|
2066
|
+
fromItemPersistentId: string;
|
|
2067
2067
|
tabName: string;
|
|
2068
2068
|
}>;
|
|
2069
2069
|
type DTOCreateDocumentationTabInput = z.infer<typeof DTOCreateDocumentationTabInput>;
|
|
@@ -2234,7 +2234,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2234
2234
|
url: string;
|
|
2235
2235
|
resourceId: string;
|
|
2236
2236
|
}>>;
|
|
2237
|
-
|
|
2237
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
2238
2238
|
sourceId: z.ZodString;
|
|
2239
2239
|
frameReferenceId: z.ZodString;
|
|
2240
2240
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2250,7 +2250,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2250
2250
|
url: string;
|
|
2251
2251
|
resourceId: string;
|
|
2252
2252
|
} | undefined;
|
|
2253
|
-
|
|
2253
|
+
figmaNode?: {
|
|
2254
2254
|
sourceId: string;
|
|
2255
2255
|
frameReferenceId: string;
|
|
2256
2256
|
} | undefined;
|
|
@@ -2260,7 +2260,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2260
2260
|
url: string;
|
|
2261
2261
|
resourceId: string;
|
|
2262
2262
|
} | undefined;
|
|
2263
|
-
|
|
2263
|
+
figmaNode?: {
|
|
2264
2264
|
sourceId: string;
|
|
2265
2265
|
frameReferenceId: string;
|
|
2266
2266
|
} | undefined;
|
|
@@ -2289,7 +2289,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2289
2289
|
url: string;
|
|
2290
2290
|
resourceId: string;
|
|
2291
2291
|
} | undefined;
|
|
2292
|
-
|
|
2292
|
+
figmaNode?: {
|
|
2293
2293
|
sourceId: string;
|
|
2294
2294
|
frameReferenceId: string;
|
|
2295
2295
|
} | undefined;
|
|
@@ -2315,7 +2315,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2315
2315
|
url: string;
|
|
2316
2316
|
resourceId: string;
|
|
2317
2317
|
} | undefined;
|
|
2318
|
-
|
|
2318
|
+
figmaNode?: {
|
|
2319
2319
|
sourceId: string;
|
|
2320
2320
|
frameReferenceId: string;
|
|
2321
2321
|
} | undefined;
|
|
@@ -2344,7 +2344,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2344
2344
|
url: string;
|
|
2345
2345
|
resourceId: string;
|
|
2346
2346
|
} | undefined;
|
|
2347
|
-
|
|
2347
|
+
figmaNode?: {
|
|
2348
2348
|
sourceId: string;
|
|
2349
2349
|
frameReferenceId: string;
|
|
2350
2350
|
} | undefined;
|
|
@@ -2373,7 +2373,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2373
2373
|
url: string;
|
|
2374
2374
|
resourceId: string;
|
|
2375
2375
|
} | undefined;
|
|
2376
|
-
|
|
2376
|
+
figmaNode?: {
|
|
2377
2377
|
sourceId: string;
|
|
2378
2378
|
frameReferenceId: string;
|
|
2379
2379
|
} | undefined;
|
|
@@ -2409,7 +2409,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2409
2409
|
url: string;
|
|
2410
2410
|
resourceId: string;
|
|
2411
2411
|
} | undefined;
|
|
2412
|
-
|
|
2412
|
+
figmaNode?: {
|
|
2413
2413
|
sourceId: string;
|
|
2414
2414
|
frameReferenceId: string;
|
|
2415
2415
|
} | undefined;
|
|
@@ -2444,7 +2444,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2444
2444
|
url: string;
|
|
2445
2445
|
resourceId: string;
|
|
2446
2446
|
} | undefined;
|
|
2447
|
-
|
|
2447
|
+
figmaNode?: {
|
|
2448
2448
|
sourceId: string;
|
|
2449
2449
|
frameReferenceId: string;
|
|
2450
2450
|
} | undefined;
|
|
@@ -2482,7 +2482,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2482
2482
|
url: string;
|
|
2483
2483
|
resourceId: string;
|
|
2484
2484
|
} | undefined;
|
|
2485
|
-
|
|
2485
|
+
figmaNode?: {
|
|
2486
2486
|
sourceId: string;
|
|
2487
2487
|
frameReferenceId: string;
|
|
2488
2488
|
} | undefined;
|
|
@@ -2520,7 +2520,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
2520
2520
|
url: string;
|
|
2521
2521
|
resourceId: string;
|
|
2522
2522
|
} | undefined;
|
|
2523
|
-
|
|
2523
|
+
figmaNode?: {
|
|
2524
2524
|
sourceId: string;
|
|
2525
2525
|
frameReferenceId: string;
|
|
2526
2526
|
} | undefined;
|
|
@@ -2574,7 +2574,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2574
2574
|
url: string;
|
|
2575
2575
|
resourceId: string;
|
|
2576
2576
|
}>>;
|
|
2577
|
-
|
|
2577
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
2578
2578
|
sourceId: z.ZodString;
|
|
2579
2579
|
frameReferenceId: z.ZodString;
|
|
2580
2580
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2590,7 +2590,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2590
2590
|
url: string;
|
|
2591
2591
|
resourceId: string;
|
|
2592
2592
|
} | undefined;
|
|
2593
|
-
|
|
2593
|
+
figmaNode?: {
|
|
2594
2594
|
sourceId: string;
|
|
2595
2595
|
frameReferenceId: string;
|
|
2596
2596
|
} | undefined;
|
|
@@ -2600,7 +2600,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2600
2600
|
url: string;
|
|
2601
2601
|
resourceId: string;
|
|
2602
2602
|
} | undefined;
|
|
2603
|
-
|
|
2603
|
+
figmaNode?: {
|
|
2604
2604
|
sourceId: string;
|
|
2605
2605
|
frameReferenceId: string;
|
|
2606
2606
|
} | undefined;
|
|
@@ -2629,7 +2629,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2629
2629
|
url: string;
|
|
2630
2630
|
resourceId: string;
|
|
2631
2631
|
} | undefined;
|
|
2632
|
-
|
|
2632
|
+
figmaNode?: {
|
|
2633
2633
|
sourceId: string;
|
|
2634
2634
|
frameReferenceId: string;
|
|
2635
2635
|
} | undefined;
|
|
@@ -2655,7 +2655,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2655
2655
|
url: string;
|
|
2656
2656
|
resourceId: string;
|
|
2657
2657
|
} | undefined;
|
|
2658
|
-
|
|
2658
|
+
figmaNode?: {
|
|
2659
2659
|
sourceId: string;
|
|
2660
2660
|
frameReferenceId: string;
|
|
2661
2661
|
} | undefined;
|
|
@@ -2684,7 +2684,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2684
2684
|
url: string;
|
|
2685
2685
|
resourceId: string;
|
|
2686
2686
|
} | undefined;
|
|
2687
|
-
|
|
2687
|
+
figmaNode?: {
|
|
2688
2688
|
sourceId: string;
|
|
2689
2689
|
frameReferenceId: string;
|
|
2690
2690
|
} | undefined;
|
|
@@ -2713,7 +2713,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2713
2713
|
url: string;
|
|
2714
2714
|
resourceId: string;
|
|
2715
2715
|
} | undefined;
|
|
2716
|
-
|
|
2716
|
+
figmaNode?: {
|
|
2717
2717
|
sourceId: string;
|
|
2718
2718
|
frameReferenceId: string;
|
|
2719
2719
|
} | undefined;
|
|
@@ -2746,7 +2746,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2746
2746
|
url: string;
|
|
2747
2747
|
resourceId: string;
|
|
2748
2748
|
} | undefined;
|
|
2749
|
-
|
|
2749
|
+
figmaNode?: {
|
|
2750
2750
|
sourceId: string;
|
|
2751
2751
|
frameReferenceId: string;
|
|
2752
2752
|
} | undefined;
|
|
@@ -2779,7 +2779,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2779
2779
|
url: string;
|
|
2780
2780
|
resourceId: string;
|
|
2781
2781
|
} | undefined;
|
|
2782
|
-
|
|
2782
|
+
figmaNode?: {
|
|
2783
2783
|
sourceId: string;
|
|
2784
2784
|
frameReferenceId: string;
|
|
2785
2785
|
} | undefined;
|
|
@@ -2815,7 +2815,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2815
2815
|
url: string;
|
|
2816
2816
|
resourceId: string;
|
|
2817
2817
|
} | undefined;
|
|
2818
|
-
|
|
2818
|
+
figmaNode?: {
|
|
2819
2819
|
sourceId: string;
|
|
2820
2820
|
frameReferenceId: string;
|
|
2821
2821
|
} | undefined;
|
|
@@ -2851,7 +2851,7 @@ declare const DTODocumentationPageUpdateActionInputV2: z.ZodObject<{
|
|
|
2851
2851
|
url: string;
|
|
2852
2852
|
resourceId: string;
|
|
2853
2853
|
} | undefined;
|
|
2854
|
-
|
|
2854
|
+
figmaNode?: {
|
|
2855
2855
|
sourceId: string;
|
|
2856
2856
|
frameReferenceId: string;
|
|
2857
2857
|
} | undefined;
|
|
@@ -3822,7 +3822,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3822
3822
|
url: string;
|
|
3823
3823
|
resourceId: string;
|
|
3824
3824
|
}>>;
|
|
3825
|
-
|
|
3825
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
3826
3826
|
sourceId: z.ZodString;
|
|
3827
3827
|
frameReferenceId: z.ZodString;
|
|
3828
3828
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3838,7 +3838,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3838
3838
|
url: string;
|
|
3839
3839
|
resourceId: string;
|
|
3840
3840
|
} | undefined;
|
|
3841
|
-
|
|
3841
|
+
figmaNode?: {
|
|
3842
3842
|
sourceId: string;
|
|
3843
3843
|
frameReferenceId: string;
|
|
3844
3844
|
} | undefined;
|
|
@@ -3848,7 +3848,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3848
3848
|
url: string;
|
|
3849
3849
|
resourceId: string;
|
|
3850
3850
|
} | undefined;
|
|
3851
|
-
|
|
3851
|
+
figmaNode?: {
|
|
3852
3852
|
sourceId: string;
|
|
3853
3853
|
frameReferenceId: string;
|
|
3854
3854
|
} | undefined;
|
|
@@ -3877,7 +3877,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3877
3877
|
url: string;
|
|
3878
3878
|
resourceId: string;
|
|
3879
3879
|
} | undefined;
|
|
3880
|
-
|
|
3880
|
+
figmaNode?: {
|
|
3881
3881
|
sourceId: string;
|
|
3882
3882
|
frameReferenceId: string;
|
|
3883
3883
|
} | undefined;
|
|
@@ -3903,7 +3903,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3903
3903
|
url: string;
|
|
3904
3904
|
resourceId: string;
|
|
3905
3905
|
} | undefined;
|
|
3906
|
-
|
|
3906
|
+
figmaNode?: {
|
|
3907
3907
|
sourceId: string;
|
|
3908
3908
|
frameReferenceId: string;
|
|
3909
3909
|
} | undefined;
|
|
@@ -3932,7 +3932,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3932
3932
|
url: string;
|
|
3933
3933
|
resourceId: string;
|
|
3934
3934
|
} | undefined;
|
|
3935
|
-
|
|
3935
|
+
figmaNode?: {
|
|
3936
3936
|
sourceId: string;
|
|
3937
3937
|
frameReferenceId: string;
|
|
3938
3938
|
} | undefined;
|
|
@@ -3961,7 +3961,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3961
3961
|
url: string;
|
|
3962
3962
|
resourceId: string;
|
|
3963
3963
|
} | undefined;
|
|
3964
|
-
|
|
3964
|
+
figmaNode?: {
|
|
3965
3965
|
sourceId: string;
|
|
3966
3966
|
frameReferenceId: string;
|
|
3967
3967
|
} | undefined;
|
|
@@ -4001,7 +4001,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
4001
4001
|
url: string;
|
|
4002
4002
|
resourceId: string;
|
|
4003
4003
|
} | undefined;
|
|
4004
|
-
|
|
4004
|
+
figmaNode?: {
|
|
4005
4005
|
sourceId: string;
|
|
4006
4006
|
frameReferenceId: string;
|
|
4007
4007
|
} | undefined;
|
|
@@ -4043,7 +4043,7 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
4043
4043
|
url: string;
|
|
4044
4044
|
resourceId: string;
|
|
4045
4045
|
} | undefined;
|
|
4046
|
-
|
|
4046
|
+
figmaNode?: {
|
|
4047
4047
|
sourceId: string;
|
|
4048
4048
|
frameReferenceId: string;
|
|
4049
4049
|
} | undefined;
|
|
@@ -4278,7 +4278,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4278
4278
|
url: string;
|
|
4279
4279
|
resourceId: string;
|
|
4280
4280
|
}>>;
|
|
4281
|
-
|
|
4281
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
4282
4282
|
sourceId: z.ZodString;
|
|
4283
4283
|
frameReferenceId: z.ZodString;
|
|
4284
4284
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4294,7 +4294,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4294
4294
|
url: string;
|
|
4295
4295
|
resourceId: string;
|
|
4296
4296
|
} | undefined;
|
|
4297
|
-
|
|
4297
|
+
figmaNode?: {
|
|
4298
4298
|
sourceId: string;
|
|
4299
4299
|
frameReferenceId: string;
|
|
4300
4300
|
} | undefined;
|
|
@@ -4304,7 +4304,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4304
4304
|
url: string;
|
|
4305
4305
|
resourceId: string;
|
|
4306
4306
|
} | undefined;
|
|
4307
|
-
|
|
4307
|
+
figmaNode?: {
|
|
4308
4308
|
sourceId: string;
|
|
4309
4309
|
frameReferenceId: string;
|
|
4310
4310
|
} | undefined;
|
|
@@ -4333,7 +4333,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4333
4333
|
url: string;
|
|
4334
4334
|
resourceId: string;
|
|
4335
4335
|
} | undefined;
|
|
4336
|
-
|
|
4336
|
+
figmaNode?: {
|
|
4337
4337
|
sourceId: string;
|
|
4338
4338
|
frameReferenceId: string;
|
|
4339
4339
|
} | undefined;
|
|
@@ -4359,7 +4359,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4359
4359
|
url: string;
|
|
4360
4360
|
resourceId: string;
|
|
4361
4361
|
} | undefined;
|
|
4362
|
-
|
|
4362
|
+
figmaNode?: {
|
|
4363
4363
|
sourceId: string;
|
|
4364
4364
|
frameReferenceId: string;
|
|
4365
4365
|
} | undefined;
|
|
@@ -4388,7 +4388,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4388
4388
|
url: string;
|
|
4389
4389
|
resourceId: string;
|
|
4390
4390
|
} | undefined;
|
|
4391
|
-
|
|
4391
|
+
figmaNode?: {
|
|
4392
4392
|
sourceId: string;
|
|
4393
4393
|
frameReferenceId: string;
|
|
4394
4394
|
} | undefined;
|
|
@@ -4417,7 +4417,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4417
4417
|
url: string;
|
|
4418
4418
|
resourceId: string;
|
|
4419
4419
|
} | undefined;
|
|
4420
|
-
|
|
4420
|
+
figmaNode?: {
|
|
4421
4421
|
sourceId: string;
|
|
4422
4422
|
frameReferenceId: string;
|
|
4423
4423
|
} | undefined;
|
|
@@ -4453,7 +4453,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4453
4453
|
url: string;
|
|
4454
4454
|
resourceId: string;
|
|
4455
4455
|
} | undefined;
|
|
4456
|
-
|
|
4456
|
+
figmaNode?: {
|
|
4457
4457
|
sourceId: string;
|
|
4458
4458
|
frameReferenceId: string;
|
|
4459
4459
|
} | undefined;
|
|
@@ -4488,7 +4488,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4488
4488
|
url: string;
|
|
4489
4489
|
resourceId: string;
|
|
4490
4490
|
} | undefined;
|
|
4491
|
-
|
|
4491
|
+
figmaNode?: {
|
|
4492
4492
|
sourceId: string;
|
|
4493
4493
|
frameReferenceId: string;
|
|
4494
4494
|
} | undefined;
|
|
@@ -4539,7 +4539,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4539
4539
|
url: string;
|
|
4540
4540
|
resourceId: string;
|
|
4541
4541
|
}>>;
|
|
4542
|
-
|
|
4542
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
4543
4543
|
sourceId: z.ZodString;
|
|
4544
4544
|
frameReferenceId: z.ZodString;
|
|
4545
4545
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4555,7 +4555,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4555
4555
|
url: string;
|
|
4556
4556
|
resourceId: string;
|
|
4557
4557
|
} | undefined;
|
|
4558
|
-
|
|
4558
|
+
figmaNode?: {
|
|
4559
4559
|
sourceId: string;
|
|
4560
4560
|
frameReferenceId: string;
|
|
4561
4561
|
} | undefined;
|
|
@@ -4565,7 +4565,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4565
4565
|
url: string;
|
|
4566
4566
|
resourceId: string;
|
|
4567
4567
|
} | undefined;
|
|
4568
|
-
|
|
4568
|
+
figmaNode?: {
|
|
4569
4569
|
sourceId: string;
|
|
4570
4570
|
frameReferenceId: string;
|
|
4571
4571
|
} | undefined;
|
|
@@ -4594,7 +4594,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4594
4594
|
url: string;
|
|
4595
4595
|
resourceId: string;
|
|
4596
4596
|
} | undefined;
|
|
4597
|
-
|
|
4597
|
+
figmaNode?: {
|
|
4598
4598
|
sourceId: string;
|
|
4599
4599
|
frameReferenceId: string;
|
|
4600
4600
|
} | undefined;
|
|
@@ -4620,7 +4620,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4620
4620
|
url: string;
|
|
4621
4621
|
resourceId: string;
|
|
4622
4622
|
} | undefined;
|
|
4623
|
-
|
|
4623
|
+
figmaNode?: {
|
|
4624
4624
|
sourceId: string;
|
|
4625
4625
|
frameReferenceId: string;
|
|
4626
4626
|
} | undefined;
|
|
@@ -4649,7 +4649,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4649
4649
|
url: string;
|
|
4650
4650
|
resourceId: string;
|
|
4651
4651
|
} | undefined;
|
|
4652
|
-
|
|
4652
|
+
figmaNode?: {
|
|
4653
4653
|
sourceId: string;
|
|
4654
4654
|
frameReferenceId: string;
|
|
4655
4655
|
} | undefined;
|
|
@@ -4678,7 +4678,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4678
4678
|
url: string;
|
|
4679
4679
|
resourceId: string;
|
|
4680
4680
|
} | undefined;
|
|
4681
|
-
|
|
4681
|
+
figmaNode?: {
|
|
4682
4682
|
sourceId: string;
|
|
4683
4683
|
frameReferenceId: string;
|
|
4684
4684
|
} | undefined;
|
|
@@ -4711,7 +4711,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4711
4711
|
url: string;
|
|
4712
4712
|
resourceId: string;
|
|
4713
4713
|
} | undefined;
|
|
4714
|
-
|
|
4714
|
+
figmaNode?: {
|
|
4715
4715
|
sourceId: string;
|
|
4716
4716
|
frameReferenceId: string;
|
|
4717
4717
|
} | undefined;
|
|
@@ -4744,7 +4744,7 @@ declare const DTOUpdateDocumentationPageInputV2: z.ZodObject<{
|
|
|
4744
4744
|
url: string;
|
|
4745
4745
|
resourceId: string;
|
|
4746
4746
|
} | undefined;
|
|
4747
|
-
|
|
4747
|
+
figmaNode?: {
|
|
4748
4748
|
sourceId: string;
|
|
4749
4749
|
frameReferenceId: string;
|
|
4750
4750
|
} | undefined;
|
|
@@ -5536,7 +5536,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5536
5536
|
url: string;
|
|
5537
5537
|
resourceId: string;
|
|
5538
5538
|
}>>;
|
|
5539
|
-
|
|
5539
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
5540
5540
|
sourceId: z.ZodString;
|
|
5541
5541
|
frameReferenceId: z.ZodString;
|
|
5542
5542
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5552,7 +5552,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5552
5552
|
url: string;
|
|
5553
5553
|
resourceId: string;
|
|
5554
5554
|
} | undefined;
|
|
5555
|
-
|
|
5555
|
+
figmaNode?: {
|
|
5556
5556
|
sourceId: string;
|
|
5557
5557
|
frameReferenceId: string;
|
|
5558
5558
|
} | undefined;
|
|
@@ -5562,7 +5562,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5562
5562
|
url: string;
|
|
5563
5563
|
resourceId: string;
|
|
5564
5564
|
} | undefined;
|
|
5565
|
-
|
|
5565
|
+
figmaNode?: {
|
|
5566
5566
|
sourceId: string;
|
|
5567
5567
|
frameReferenceId: string;
|
|
5568
5568
|
} | undefined;
|
|
@@ -5591,7 +5591,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5591
5591
|
url: string;
|
|
5592
5592
|
resourceId: string;
|
|
5593
5593
|
} | undefined;
|
|
5594
|
-
|
|
5594
|
+
figmaNode?: {
|
|
5595
5595
|
sourceId: string;
|
|
5596
5596
|
frameReferenceId: string;
|
|
5597
5597
|
} | undefined;
|
|
@@ -5617,7 +5617,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5617
5617
|
url: string;
|
|
5618
5618
|
resourceId: string;
|
|
5619
5619
|
} | undefined;
|
|
5620
|
-
|
|
5620
|
+
figmaNode?: {
|
|
5621
5621
|
sourceId: string;
|
|
5622
5622
|
frameReferenceId: string;
|
|
5623
5623
|
} | undefined;
|
|
@@ -5646,7 +5646,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5646
5646
|
url: string;
|
|
5647
5647
|
resourceId: string;
|
|
5648
5648
|
} | undefined;
|
|
5649
|
-
|
|
5649
|
+
figmaNode?: {
|
|
5650
5650
|
sourceId: string;
|
|
5651
5651
|
frameReferenceId: string;
|
|
5652
5652
|
} | undefined;
|
|
@@ -5675,7 +5675,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5675
5675
|
url: string;
|
|
5676
5676
|
resourceId: string;
|
|
5677
5677
|
} | undefined;
|
|
5678
|
-
|
|
5678
|
+
figmaNode?: {
|
|
5679
5679
|
sourceId: string;
|
|
5680
5680
|
frameReferenceId: string;
|
|
5681
5681
|
} | undefined;
|
|
@@ -5711,7 +5711,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5711
5711
|
url: string;
|
|
5712
5712
|
resourceId: string;
|
|
5713
5713
|
} | undefined;
|
|
5714
|
-
|
|
5714
|
+
figmaNode?: {
|
|
5715
5715
|
sourceId: string;
|
|
5716
5716
|
frameReferenceId: string;
|
|
5717
5717
|
} | undefined;
|
|
@@ -5746,7 +5746,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5746
5746
|
url: string;
|
|
5747
5747
|
resourceId: string;
|
|
5748
5748
|
} | undefined;
|
|
5749
|
-
|
|
5749
|
+
figmaNode?: {
|
|
5750
5750
|
sourceId: string;
|
|
5751
5751
|
frameReferenceId: string;
|
|
5752
5752
|
} | undefined;
|
|
@@ -5784,7 +5784,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5784
5784
|
url: string;
|
|
5785
5785
|
resourceId: string;
|
|
5786
5786
|
} | undefined;
|
|
5787
|
-
|
|
5787
|
+
figmaNode?: {
|
|
5788
5788
|
sourceId: string;
|
|
5789
5789
|
frameReferenceId: string;
|
|
5790
5790
|
} | undefined;
|
|
@@ -5822,7 +5822,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5822
5822
|
url: string;
|
|
5823
5823
|
resourceId: string;
|
|
5824
5824
|
} | undefined;
|
|
5825
|
-
|
|
5825
|
+
figmaNode?: {
|
|
5826
5826
|
sourceId: string;
|
|
5827
5827
|
frameReferenceId: string;
|
|
5828
5828
|
} | undefined;
|
|
@@ -5874,7 +5874,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5874
5874
|
url: string;
|
|
5875
5875
|
resourceId: string;
|
|
5876
5876
|
}>>;
|
|
5877
|
-
|
|
5877
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
5878
5878
|
sourceId: z.ZodString;
|
|
5879
5879
|
frameReferenceId: z.ZodString;
|
|
5880
5880
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5890,7 +5890,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5890
5890
|
url: string;
|
|
5891
5891
|
resourceId: string;
|
|
5892
5892
|
} | undefined;
|
|
5893
|
-
|
|
5893
|
+
figmaNode?: {
|
|
5894
5894
|
sourceId: string;
|
|
5895
5895
|
frameReferenceId: string;
|
|
5896
5896
|
} | undefined;
|
|
@@ -5900,7 +5900,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5900
5900
|
url: string;
|
|
5901
5901
|
resourceId: string;
|
|
5902
5902
|
} | undefined;
|
|
5903
|
-
|
|
5903
|
+
figmaNode?: {
|
|
5904
5904
|
sourceId: string;
|
|
5905
5905
|
frameReferenceId: string;
|
|
5906
5906
|
} | undefined;
|
|
@@ -5929,7 +5929,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5929
5929
|
url: string;
|
|
5930
5930
|
resourceId: string;
|
|
5931
5931
|
} | undefined;
|
|
5932
|
-
|
|
5932
|
+
figmaNode?: {
|
|
5933
5933
|
sourceId: string;
|
|
5934
5934
|
frameReferenceId: string;
|
|
5935
5935
|
} | undefined;
|
|
@@ -5955,7 +5955,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5955
5955
|
url: string;
|
|
5956
5956
|
resourceId: string;
|
|
5957
5957
|
} | undefined;
|
|
5958
|
-
|
|
5958
|
+
figmaNode?: {
|
|
5959
5959
|
sourceId: string;
|
|
5960
5960
|
frameReferenceId: string;
|
|
5961
5961
|
} | undefined;
|
|
@@ -5984,7 +5984,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
5984
5984
|
url: string;
|
|
5985
5985
|
resourceId: string;
|
|
5986
5986
|
} | undefined;
|
|
5987
|
-
|
|
5987
|
+
figmaNode?: {
|
|
5988
5988
|
sourceId: string;
|
|
5989
5989
|
frameReferenceId: string;
|
|
5990
5990
|
} | undefined;
|
|
@@ -6013,7 +6013,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6013
6013
|
url: string;
|
|
6014
6014
|
resourceId: string;
|
|
6015
6015
|
} | undefined;
|
|
6016
|
-
|
|
6016
|
+
figmaNode?: {
|
|
6017
6017
|
sourceId: string;
|
|
6018
6018
|
frameReferenceId: string;
|
|
6019
6019
|
} | undefined;
|
|
@@ -6046,7 +6046,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6046
6046
|
url: string;
|
|
6047
6047
|
resourceId: string;
|
|
6048
6048
|
} | undefined;
|
|
6049
|
-
|
|
6049
|
+
figmaNode?: {
|
|
6050
6050
|
sourceId: string;
|
|
6051
6051
|
frameReferenceId: string;
|
|
6052
6052
|
} | undefined;
|
|
@@ -6079,7 +6079,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6079
6079
|
url: string;
|
|
6080
6080
|
resourceId: string;
|
|
6081
6081
|
} | undefined;
|
|
6082
|
-
|
|
6082
|
+
figmaNode?: {
|
|
6083
6083
|
sourceId: string;
|
|
6084
6084
|
frameReferenceId: string;
|
|
6085
6085
|
} | undefined;
|
|
@@ -6115,7 +6115,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6115
6115
|
url: string;
|
|
6116
6116
|
resourceId: string;
|
|
6117
6117
|
} | undefined;
|
|
6118
|
-
|
|
6118
|
+
figmaNode?: {
|
|
6119
6119
|
sourceId: string;
|
|
6120
6120
|
frameReferenceId: string;
|
|
6121
6121
|
} | undefined;
|
|
@@ -6151,7 +6151,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6151
6151
|
url: string;
|
|
6152
6152
|
resourceId: string;
|
|
6153
6153
|
} | undefined;
|
|
6154
|
-
|
|
6154
|
+
figmaNode?: {
|
|
6155
6155
|
sourceId: string;
|
|
6156
6156
|
frameReferenceId: string;
|
|
6157
6157
|
} | undefined;
|
|
@@ -6284,7 +6284,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6284
6284
|
url: string;
|
|
6285
6285
|
resourceId: string;
|
|
6286
6286
|
}>>;
|
|
6287
|
-
|
|
6287
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
6288
6288
|
sourceId: z.ZodString;
|
|
6289
6289
|
frameReferenceId: z.ZodString;
|
|
6290
6290
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6300,7 +6300,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6300
6300
|
url: string;
|
|
6301
6301
|
resourceId: string;
|
|
6302
6302
|
} | undefined;
|
|
6303
|
-
|
|
6303
|
+
figmaNode?: {
|
|
6304
6304
|
sourceId: string;
|
|
6305
6305
|
frameReferenceId: string;
|
|
6306
6306
|
} | undefined;
|
|
@@ -6310,7 +6310,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6310
6310
|
url: string;
|
|
6311
6311
|
resourceId: string;
|
|
6312
6312
|
} | undefined;
|
|
6313
|
-
|
|
6313
|
+
figmaNode?: {
|
|
6314
6314
|
sourceId: string;
|
|
6315
6315
|
frameReferenceId: string;
|
|
6316
6316
|
} | undefined;
|
|
@@ -6339,7 +6339,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6339
6339
|
url: string;
|
|
6340
6340
|
resourceId: string;
|
|
6341
6341
|
} | undefined;
|
|
6342
|
-
|
|
6342
|
+
figmaNode?: {
|
|
6343
6343
|
sourceId: string;
|
|
6344
6344
|
frameReferenceId: string;
|
|
6345
6345
|
} | undefined;
|
|
@@ -6365,7 +6365,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6365
6365
|
url: string;
|
|
6366
6366
|
resourceId: string;
|
|
6367
6367
|
} | undefined;
|
|
6368
|
-
|
|
6368
|
+
figmaNode?: {
|
|
6369
6369
|
sourceId: string;
|
|
6370
6370
|
frameReferenceId: string;
|
|
6371
6371
|
} | undefined;
|
|
@@ -6394,7 +6394,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6394
6394
|
url: string;
|
|
6395
6395
|
resourceId: string;
|
|
6396
6396
|
} | undefined;
|
|
6397
|
-
|
|
6397
|
+
figmaNode?: {
|
|
6398
6398
|
sourceId: string;
|
|
6399
6399
|
frameReferenceId: string;
|
|
6400
6400
|
} | undefined;
|
|
@@ -6423,7 +6423,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6423
6423
|
url: string;
|
|
6424
6424
|
resourceId: string;
|
|
6425
6425
|
} | undefined;
|
|
6426
|
-
|
|
6426
|
+
figmaNode?: {
|
|
6427
6427
|
sourceId: string;
|
|
6428
6428
|
frameReferenceId: string;
|
|
6429
6429
|
} | undefined;
|
|
@@ -6459,7 +6459,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6459
6459
|
url: string;
|
|
6460
6460
|
resourceId: string;
|
|
6461
6461
|
} | undefined;
|
|
6462
|
-
|
|
6462
|
+
figmaNode?: {
|
|
6463
6463
|
sourceId: string;
|
|
6464
6464
|
frameReferenceId: string;
|
|
6465
6465
|
} | undefined;
|
|
@@ -6494,7 +6494,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6494
6494
|
url: string;
|
|
6495
6495
|
resourceId: string;
|
|
6496
6496
|
} | undefined;
|
|
6497
|
-
|
|
6497
|
+
figmaNode?: {
|
|
6498
6498
|
sourceId: string;
|
|
6499
6499
|
frameReferenceId: string;
|
|
6500
6500
|
} | undefined;
|
|
@@ -6532,7 +6532,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6532
6532
|
url: string;
|
|
6533
6533
|
resourceId: string;
|
|
6534
6534
|
} | undefined;
|
|
6535
|
-
|
|
6535
|
+
figmaNode?: {
|
|
6536
6536
|
sourceId: string;
|
|
6537
6537
|
frameReferenceId: string;
|
|
6538
6538
|
} | undefined;
|
|
@@ -6570,7 +6570,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6570
6570
|
url: string;
|
|
6571
6571
|
resourceId: string;
|
|
6572
6572
|
} | undefined;
|
|
6573
|
-
|
|
6573
|
+
figmaNode?: {
|
|
6574
6574
|
sourceId: string;
|
|
6575
6575
|
frameReferenceId: string;
|
|
6576
6576
|
} | undefined;
|
|
@@ -6584,29 +6584,29 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6584
6584
|
type: z.ZodLiteral<"DocumentationTabCreate">;
|
|
6585
6585
|
input: z.ZodObject<{
|
|
6586
6586
|
persistentId: z.ZodString;
|
|
6587
|
-
|
|
6587
|
+
fromItemPersistentId: z.ZodString;
|
|
6588
6588
|
tabName: z.ZodString;
|
|
6589
6589
|
}, "strip", z.ZodTypeAny, {
|
|
6590
6590
|
persistentId: string;
|
|
6591
|
-
|
|
6591
|
+
fromItemPersistentId: string;
|
|
6592
6592
|
tabName: string;
|
|
6593
6593
|
}, {
|
|
6594
6594
|
persistentId: string;
|
|
6595
|
-
|
|
6595
|
+
fromItemPersistentId: string;
|
|
6596
6596
|
tabName: string;
|
|
6597
6597
|
}>;
|
|
6598
6598
|
}, "strip", z.ZodTypeAny, {
|
|
6599
6599
|
type: "DocumentationTabCreate";
|
|
6600
6600
|
input: {
|
|
6601
6601
|
persistentId: string;
|
|
6602
|
-
|
|
6602
|
+
fromItemPersistentId: string;
|
|
6603
6603
|
tabName: string;
|
|
6604
6604
|
};
|
|
6605
6605
|
}, {
|
|
6606
6606
|
type: "DocumentationTabCreate";
|
|
6607
6607
|
input: {
|
|
6608
6608
|
persistentId: string;
|
|
6609
|
-
|
|
6609
|
+
fromItemPersistentId: string;
|
|
6610
6610
|
tabName: string;
|
|
6611
6611
|
};
|
|
6612
6612
|
}>, z.ZodObject<{
|
|
@@ -6651,7 +6651,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6651
6651
|
url: string;
|
|
6652
6652
|
resourceId: string;
|
|
6653
6653
|
}>>;
|
|
6654
|
-
|
|
6654
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
6655
6655
|
sourceId: z.ZodString;
|
|
6656
6656
|
frameReferenceId: z.ZodString;
|
|
6657
6657
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6667,7 +6667,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6667
6667
|
url: string;
|
|
6668
6668
|
resourceId: string;
|
|
6669
6669
|
} | undefined;
|
|
6670
|
-
|
|
6670
|
+
figmaNode?: {
|
|
6671
6671
|
sourceId: string;
|
|
6672
6672
|
frameReferenceId: string;
|
|
6673
6673
|
} | undefined;
|
|
@@ -6677,7 +6677,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6677
6677
|
url: string;
|
|
6678
6678
|
resourceId: string;
|
|
6679
6679
|
} | undefined;
|
|
6680
|
-
|
|
6680
|
+
figmaNode?: {
|
|
6681
6681
|
sourceId: string;
|
|
6682
6682
|
frameReferenceId: string;
|
|
6683
6683
|
} | undefined;
|
|
@@ -6706,7 +6706,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6706
6706
|
url: string;
|
|
6707
6707
|
resourceId: string;
|
|
6708
6708
|
} | undefined;
|
|
6709
|
-
|
|
6709
|
+
figmaNode?: {
|
|
6710
6710
|
sourceId: string;
|
|
6711
6711
|
frameReferenceId: string;
|
|
6712
6712
|
} | undefined;
|
|
@@ -6732,7 +6732,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6732
6732
|
url: string;
|
|
6733
6733
|
resourceId: string;
|
|
6734
6734
|
} | undefined;
|
|
6735
|
-
|
|
6735
|
+
figmaNode?: {
|
|
6736
6736
|
sourceId: string;
|
|
6737
6737
|
frameReferenceId: string;
|
|
6738
6738
|
} | undefined;
|
|
@@ -6761,7 +6761,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6761
6761
|
url: string;
|
|
6762
6762
|
resourceId: string;
|
|
6763
6763
|
} | undefined;
|
|
6764
|
-
|
|
6764
|
+
figmaNode?: {
|
|
6765
6765
|
sourceId: string;
|
|
6766
6766
|
frameReferenceId: string;
|
|
6767
6767
|
} | undefined;
|
|
@@ -6790,7 +6790,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6790
6790
|
url: string;
|
|
6791
6791
|
resourceId: string;
|
|
6792
6792
|
} | undefined;
|
|
6793
|
-
|
|
6793
|
+
figmaNode?: {
|
|
6794
6794
|
sourceId: string;
|
|
6795
6795
|
frameReferenceId: string;
|
|
6796
6796
|
} | undefined;
|
|
@@ -6823,7 +6823,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6823
6823
|
url: string;
|
|
6824
6824
|
resourceId: string;
|
|
6825
6825
|
} | undefined;
|
|
6826
|
-
|
|
6826
|
+
figmaNode?: {
|
|
6827
6827
|
sourceId: string;
|
|
6828
6828
|
frameReferenceId: string;
|
|
6829
6829
|
} | undefined;
|
|
@@ -6856,7 +6856,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6856
6856
|
url: string;
|
|
6857
6857
|
resourceId: string;
|
|
6858
6858
|
} | undefined;
|
|
6859
|
-
|
|
6859
|
+
figmaNode?: {
|
|
6860
6860
|
sourceId: string;
|
|
6861
6861
|
frameReferenceId: string;
|
|
6862
6862
|
} | undefined;
|
|
@@ -6892,7 +6892,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6892
6892
|
url: string;
|
|
6893
6893
|
resourceId: string;
|
|
6894
6894
|
} | undefined;
|
|
6895
|
-
|
|
6895
|
+
figmaNode?: {
|
|
6896
6896
|
sourceId: string;
|
|
6897
6897
|
frameReferenceId: string;
|
|
6898
6898
|
} | undefined;
|
|
@@ -6928,7 +6928,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
6928
6928
|
url: string;
|
|
6929
6929
|
resourceId: string;
|
|
6930
6930
|
} | undefined;
|
|
6931
|
-
|
|
6931
|
+
figmaNode?: {
|
|
6932
6932
|
sourceId: string;
|
|
6933
6933
|
frameReferenceId: string;
|
|
6934
6934
|
} | undefined;
|
|
@@ -12766,7 +12766,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12766
12766
|
url: string;
|
|
12767
12767
|
resourceId: string;
|
|
12768
12768
|
}>>;
|
|
12769
|
-
|
|
12769
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
12770
12770
|
sourceId: z.ZodString;
|
|
12771
12771
|
frameReferenceId: z.ZodString;
|
|
12772
12772
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12782,7 +12782,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12782
12782
|
url: string;
|
|
12783
12783
|
resourceId: string;
|
|
12784
12784
|
} | undefined;
|
|
12785
|
-
|
|
12785
|
+
figmaNode?: {
|
|
12786
12786
|
sourceId: string;
|
|
12787
12787
|
frameReferenceId: string;
|
|
12788
12788
|
} | undefined;
|
|
@@ -12792,7 +12792,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12792
12792
|
url: string;
|
|
12793
12793
|
resourceId: string;
|
|
12794
12794
|
} | undefined;
|
|
12795
|
-
|
|
12795
|
+
figmaNode?: {
|
|
12796
12796
|
sourceId: string;
|
|
12797
12797
|
frameReferenceId: string;
|
|
12798
12798
|
} | undefined;
|
|
@@ -12821,7 +12821,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12821
12821
|
url: string;
|
|
12822
12822
|
resourceId: string;
|
|
12823
12823
|
} | undefined;
|
|
12824
|
-
|
|
12824
|
+
figmaNode?: {
|
|
12825
12825
|
sourceId: string;
|
|
12826
12826
|
frameReferenceId: string;
|
|
12827
12827
|
} | undefined;
|
|
@@ -12847,7 +12847,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12847
12847
|
url: string;
|
|
12848
12848
|
resourceId: string;
|
|
12849
12849
|
} | undefined;
|
|
12850
|
-
|
|
12850
|
+
figmaNode?: {
|
|
12851
12851
|
sourceId: string;
|
|
12852
12852
|
frameReferenceId: string;
|
|
12853
12853
|
} | undefined;
|
|
@@ -12876,7 +12876,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12876
12876
|
url: string;
|
|
12877
12877
|
resourceId: string;
|
|
12878
12878
|
} | undefined;
|
|
12879
|
-
|
|
12879
|
+
figmaNode?: {
|
|
12880
12880
|
sourceId: string;
|
|
12881
12881
|
frameReferenceId: string;
|
|
12882
12882
|
} | undefined;
|
|
@@ -12905,7 +12905,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12905
12905
|
url: string;
|
|
12906
12906
|
resourceId: string;
|
|
12907
12907
|
} | undefined;
|
|
12908
|
-
|
|
12908
|
+
figmaNode?: {
|
|
12909
12909
|
sourceId: string;
|
|
12910
12910
|
frameReferenceId: string;
|
|
12911
12911
|
} | undefined;
|
|
@@ -12937,7 +12937,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12937
12937
|
url: string;
|
|
12938
12938
|
resourceId: string;
|
|
12939
12939
|
} | undefined;
|
|
12940
|
-
|
|
12940
|
+
figmaNode?: {
|
|
12941
12941
|
sourceId: string;
|
|
12942
12942
|
frameReferenceId: string;
|
|
12943
12943
|
} | undefined;
|
|
@@ -12969,7 +12969,7 @@ declare const DTODocumentationPageRoomHeaderData: z.ZodObject<{
|
|
|
12969
12969
|
url: string;
|
|
12970
12970
|
resourceId: string;
|
|
12971
12971
|
} | undefined;
|
|
12972
|
-
|
|
12972
|
+
figmaNode?: {
|
|
12973
12973
|
sourceId: string;
|
|
12974
12974
|
frameReferenceId: string;
|
|
12975
12975
|
} | undefined;
|
|
@@ -13018,7 +13018,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13018
13018
|
url: string;
|
|
13019
13019
|
resourceId: string;
|
|
13020
13020
|
}>>;
|
|
13021
|
-
|
|
13021
|
+
figmaNode: z.ZodOptional<z.ZodObject<{
|
|
13022
13022
|
sourceId: z.ZodString;
|
|
13023
13023
|
frameReferenceId: z.ZodString;
|
|
13024
13024
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13034,7 +13034,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13034
13034
|
url: string;
|
|
13035
13035
|
resourceId: string;
|
|
13036
13036
|
} | undefined;
|
|
13037
|
-
|
|
13037
|
+
figmaNode?: {
|
|
13038
13038
|
sourceId: string;
|
|
13039
13039
|
frameReferenceId: string;
|
|
13040
13040
|
} | undefined;
|
|
@@ -13044,7 +13044,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13044
13044
|
url: string;
|
|
13045
13045
|
resourceId: string;
|
|
13046
13046
|
} | undefined;
|
|
13047
|
-
|
|
13047
|
+
figmaNode?: {
|
|
13048
13048
|
sourceId: string;
|
|
13049
13049
|
frameReferenceId: string;
|
|
13050
13050
|
} | undefined;
|
|
@@ -13070,7 +13070,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13070
13070
|
url: string;
|
|
13071
13071
|
resourceId: string;
|
|
13072
13072
|
} | undefined;
|
|
13073
|
-
|
|
13073
|
+
figmaNode?: {
|
|
13074
13074
|
sourceId: string;
|
|
13075
13075
|
frameReferenceId: string;
|
|
13076
13076
|
} | undefined;
|
|
@@ -13096,7 +13096,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13096
13096
|
url: string;
|
|
13097
13097
|
resourceId: string;
|
|
13098
13098
|
} | undefined;
|
|
13099
|
-
|
|
13099
|
+
figmaNode?: {
|
|
13100
13100
|
sourceId: string;
|
|
13101
13101
|
frameReferenceId: string;
|
|
13102
13102
|
} | undefined;
|
|
@@ -13125,7 +13125,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13125
13125
|
url: string;
|
|
13126
13126
|
resourceId: string;
|
|
13127
13127
|
} | undefined;
|
|
13128
|
-
|
|
13128
|
+
figmaNode?: {
|
|
13129
13129
|
sourceId: string;
|
|
13130
13130
|
frameReferenceId: string;
|
|
13131
13131
|
} | undefined;
|
|
@@ -13154,7 +13154,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13154
13154
|
url: string;
|
|
13155
13155
|
resourceId: string;
|
|
13156
13156
|
} | undefined;
|
|
13157
|
-
|
|
13157
|
+
figmaNode?: {
|
|
13158
13158
|
sourceId: string;
|
|
13159
13159
|
frameReferenceId: string;
|
|
13160
13160
|
} | undefined;
|
|
@@ -13186,7 +13186,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13186
13186
|
url: string;
|
|
13187
13187
|
resourceId: string;
|
|
13188
13188
|
} | undefined;
|
|
13189
|
-
|
|
13189
|
+
figmaNode?: {
|
|
13190
13190
|
sourceId: string;
|
|
13191
13191
|
frameReferenceId: string;
|
|
13192
13192
|
} | undefined;
|
|
@@ -13218,7 +13218,7 @@ declare const DTODocumentationPageRoomHeaderDataUpdate: z.ZodObject<{
|
|
|
13218
13218
|
url: string;
|
|
13219
13219
|
resourceId: string;
|
|
13220
13220
|
} | undefined;
|
|
13221
|
-
|
|
13221
|
+
figmaNode?: {
|
|
13222
13222
|
sourceId: string;
|
|
13223
13223
|
frameReferenceId: string;
|
|
13224
13224
|
} | undefined;
|
|
@@ -14876,13 +14876,64 @@ type ProsemirrorBlockItem = {
|
|
|
14876
14876
|
|
|
14877
14877
|
declare function pageToYXmlFragment(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[], fragment: Y.XmlFragment): Y.XmlFragment;
|
|
14878
14878
|
declare function pageToProsemirrorDoc(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[]): ProsemirrorNode;
|
|
14879
|
+
declare function blockToProsemirrorNode(block: PageBlockEditorModel, definitions: PageBlockDefinition[]): ProsemirrorNode | null;
|
|
14879
14880
|
declare function serializeAsCustomBlock(block: PageBlockEditorModel, definition: PageBlockDefinition): ProsemirrorNode;
|
|
14880
14881
|
|
|
14882
|
+
type Node = ListNode | ListItemNode;
|
|
14883
|
+
type ListNode = {
|
|
14884
|
+
type: "List";
|
|
14885
|
+
listType: "Ordered" | "Unordered";
|
|
14886
|
+
block: PageBlockEditorModel;
|
|
14887
|
+
leadingChildren: ListItemNode[];
|
|
14888
|
+
children: Node[];
|
|
14889
|
+
};
|
|
14890
|
+
type ListItemNode = {
|
|
14891
|
+
type: "ListItem";
|
|
14892
|
+
text: PageBlockText;
|
|
14893
|
+
};
|
|
14894
|
+
declare class ListTreeBuilder {
|
|
14895
|
+
private rootNode;
|
|
14896
|
+
addWithProperty(block: PageBlockEditorModel, multiRichTextProperty: PageBlockDefinitionProperty): ListNode | undefined;
|
|
14897
|
+
add(block: PageBlockEditorModel, multiRichTextPropertyId: string, multiRichTextPropertyStyle: PageBlockDefinitionMultiRichTextPropertyStyle): ListNode | undefined;
|
|
14898
|
+
flush(): ListNode | undefined;
|
|
14899
|
+
private getParentOfDepth;
|
|
14900
|
+
private createList;
|
|
14901
|
+
}
|
|
14902
|
+
|
|
14881
14903
|
declare function getMockPageBlockDefinitions(): PageBlockDefinition[];
|
|
14882
14904
|
|
|
14883
14905
|
declare function yDocToPage(yDoc: Y.Doc, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
14884
14906
|
declare function yXmlFragmentToPage(fragment: Y.XmlFragment, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
14885
14907
|
declare function prosemirrorDocToPage(prosemirrorDoc: ProsemirrorNode, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
14908
|
+
declare function prosemirrorNodeToBlock(prosemirrorNode: ProsemirrorNode, definitions: PageBlockDefinition[]): {
|
|
14909
|
+
id: string;
|
|
14910
|
+
type: "Block";
|
|
14911
|
+
data: {
|
|
14912
|
+
items: {
|
|
14913
|
+
id: string;
|
|
14914
|
+
props: Record<string, {
|
|
14915
|
+
value?: any;
|
|
14916
|
+
} & Record<string, any>>;
|
|
14917
|
+
linksTo?: {
|
|
14918
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
14919
|
+
documentationItemId?: string | undefined;
|
|
14920
|
+
pageHeadingId?: string | undefined;
|
|
14921
|
+
url?: string | undefined;
|
|
14922
|
+
openInNewTab?: boolean | undefined;
|
|
14923
|
+
} | undefined;
|
|
14924
|
+
}[];
|
|
14925
|
+
packageId: string;
|
|
14926
|
+
indentLevel: number;
|
|
14927
|
+
variantId?: string | undefined;
|
|
14928
|
+
appearance?: {
|
|
14929
|
+
itemBackgroundColor?: {
|
|
14930
|
+
value: string;
|
|
14931
|
+
referencedTokenId?: string | undefined;
|
|
14932
|
+
} | undefined;
|
|
14933
|
+
numberOfColumns?: number | undefined;
|
|
14934
|
+
} | undefined;
|
|
14935
|
+
};
|
|
14936
|
+
};
|
|
14886
14937
|
declare function prosemirrorNodeToSection(prosemirrorNode: ProsemirrorNode, definitions: PageBlockDefinition[]): PageSectionEditorModel | null;
|
|
14887
14938
|
declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], definitions: PageBlockDefinition[]): {
|
|
14888
14939
|
id: string;
|
|
@@ -14913,7 +14964,6 @@ declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], d
|
|
|
14913
14964
|
} | undefined;
|
|
14914
14965
|
};
|
|
14915
14966
|
}[];
|
|
14916
|
-
declare function prosemirrorNodeToBlock(prosemirrorNode: ProsemirrorNode, definition: PageBlockDefinition): PageBlockEditorModel | null;
|
|
14917
14967
|
|
|
14918
14968
|
declare const BlockParsingUtils: {
|
|
14919
14969
|
singleBlockItem(block: PageBlockEditorModel): {
|
|
@@ -14989,4 +15039,4 @@ declare const BlockDefinitionUtils: {
|
|
|
14989
15039
|
};
|
|
14990
15040
|
};
|
|
14991
15041
|
|
|
14992
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignSystem, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceRole, DocumentationPageEditorModel, DocumentationPageV1DTO, NpmRegistryInput, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, WorkspaceConfigurationPayload, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTO, elementGroupsToDocumentationGroupStructureDTO, getMockPageBlockDefinitions, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToBlock, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
15042
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignSystem, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceRole, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, WorkspaceConfigurationPayload, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTO, elementGroupsToDocumentationGroupStructureDTO, getMockPageBlockDefinitions, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToBlock, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|