@bendyline/docblocks 2.2.1 → 2.3.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/THIRD_PARTY_NOTICES.txt +1911 -0
- package/dist/{chunk-M2PUNKHS.js → chunk-2WDJ27EH.js} +26 -0
- package/dist/{chunk-DBJW7BZI.js → chunk-EG3WGSZH.js} +1 -53
- package/dist/{chunk-45T5AFCN.js → chunk-MO2VYEZQ.js} +1 -1
- package/dist/document/index.d.ts +1 -1
- package/dist/filesystem/electron.d.ts +2 -2
- package/dist/filesystem/electron.js +1 -1
- package/dist/filesystem/index.d.ts +3 -3
- package/dist/filesystem/index.js +2 -2
- package/dist/filesystem/indexeddb.d.ts +1 -1
- package/dist/filesystem/memory.d.ts +1 -1
- package/dist/filesystem/native.d.ts +1 -1
- package/dist/host/index.d.ts +12 -4
- package/dist/host/index.js +7 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +7 -3
- package/dist/mcp/index.d.ts +3 -4
- package/dist/mcp/index.js +3 -5
- package/dist/mcp/zod.d.ts +63 -337
- package/dist/mcp/zod.js +3 -22
- package/dist/{types-BEg5SQ1_.d.ts → types-Bb3yccTH.d.ts} +2 -0
- package/dist/{types-Cv4uiosG.d.ts → types-CREx02sE.d.ts} +28 -2
- package/dist/{types-DkvEkg0I.d.ts → types-DapJIsC2.d.ts} +3 -17
- package/dist/vscode/index.d.ts +24 -2
- package/dist/vscode/index.js +45 -4
- package/dist/workspace/index.d.ts +2 -2
- package/package.json +11 -4
package/dist/mcp/zod.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { z as z$1 } from 'zod/v4';
|
|
3
|
-
import { H as DocBlocksMcpToolName } from '../types-
|
|
3
|
+
import { H as DocBlocksMcpToolName } from '../types-DapJIsC2.js';
|
|
4
4
|
import '../workspace-path-CWVrcuPL.js';
|
|
5
5
|
|
|
6
6
|
/** Canonical Zod projection of the exact MCP wire contract for protocol SDKs. */
|
|
@@ -419,7 +419,7 @@ declare const artifactRefSchema: z.ZodEffects<z.ZodObject<{
|
|
|
419
419
|
declare const diagnosticSchema: z.ZodObject<{
|
|
420
420
|
code: z.ZodString;
|
|
421
421
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
422
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
422
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
423
423
|
format: z.ZodNullable<z.ZodString>;
|
|
424
424
|
count: z.ZodNumber;
|
|
425
425
|
message: z.ZodString;
|
|
@@ -477,7 +477,7 @@ declare const diagnosticSchema: z.ZodObject<{
|
|
|
477
477
|
retryable: boolean;
|
|
478
478
|
format: string | null;
|
|
479
479
|
severity: "info" | "warning" | "error";
|
|
480
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
480
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
481
481
|
count: number;
|
|
482
482
|
remediation: string | null;
|
|
483
483
|
location: {
|
|
@@ -502,7 +502,7 @@ declare const diagnosticSchema: z.ZodObject<{
|
|
|
502
502
|
retryable: boolean;
|
|
503
503
|
format: string | null;
|
|
504
504
|
severity: "info" | "warning" | "error";
|
|
505
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
505
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
506
506
|
count: number;
|
|
507
507
|
remediation: string | null;
|
|
508
508
|
location: {
|
|
@@ -525,7 +525,7 @@ declare const diagnosticSchema: z.ZodObject<{
|
|
|
525
525
|
declare const mcpErrorDetailSchema: z.ZodEffects<z.ZodObject<{
|
|
526
526
|
code: z.ZodString;
|
|
527
527
|
message: z.ZodString;
|
|
528
|
-
stage: z.ZodNullable<z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
528
|
+
stage: z.ZodNullable<z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>>;
|
|
529
529
|
format: z.ZodNullable<z.ZodString>;
|
|
530
530
|
hint: z.ZodNullable<z.ZodString>;
|
|
531
531
|
retryable: z.ZodBoolean;
|
|
@@ -544,7 +544,7 @@ declare const mcpErrorDetailSchema: z.ZodEffects<z.ZodObject<{
|
|
|
544
544
|
message: string;
|
|
545
545
|
retryable: boolean;
|
|
546
546
|
format: string | null;
|
|
547
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
547
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
548
548
|
hint: string | null;
|
|
549
549
|
operationLoad: {
|
|
550
550
|
active: number;
|
|
@@ -555,7 +555,7 @@ declare const mcpErrorDetailSchema: z.ZodEffects<z.ZodObject<{
|
|
|
555
555
|
message: string;
|
|
556
556
|
retryable: boolean;
|
|
557
557
|
format: string | null;
|
|
558
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
558
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
559
559
|
hint: string | null;
|
|
560
560
|
operationLoad: {
|
|
561
561
|
active: number;
|
|
@@ -566,7 +566,7 @@ declare const mcpErrorDetailSchema: z.ZodEffects<z.ZodObject<{
|
|
|
566
566
|
message: string;
|
|
567
567
|
retryable: boolean;
|
|
568
568
|
format: string | null;
|
|
569
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
569
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
570
570
|
hint: string | null;
|
|
571
571
|
operationLoad: {
|
|
572
572
|
active: number;
|
|
@@ -577,7 +577,7 @@ declare const mcpErrorDetailSchema: z.ZodEffects<z.ZodObject<{
|
|
|
577
577
|
message: string;
|
|
578
578
|
retryable: boolean;
|
|
579
579
|
format: string | null;
|
|
580
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
580
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
581
581
|
hint: string | null;
|
|
582
582
|
operationLoad: {
|
|
583
583
|
active: number;
|
|
@@ -591,7 +591,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
591
591
|
error: z.ZodEffects<z.ZodObject<{
|
|
592
592
|
code: z.ZodString;
|
|
593
593
|
message: z.ZodString;
|
|
594
|
-
stage: z.ZodNullable<z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
594
|
+
stage: z.ZodNullable<z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>>;
|
|
595
595
|
format: z.ZodNullable<z.ZodString>;
|
|
596
596
|
hint: z.ZodNullable<z.ZodString>;
|
|
597
597
|
retryable: z.ZodBoolean;
|
|
@@ -610,7 +610,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
610
610
|
message: string;
|
|
611
611
|
retryable: boolean;
|
|
612
612
|
format: string | null;
|
|
613
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
613
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
614
614
|
hint: string | null;
|
|
615
615
|
operationLoad: {
|
|
616
616
|
active: number;
|
|
@@ -621,7 +621,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
621
621
|
message: string;
|
|
622
622
|
retryable: boolean;
|
|
623
623
|
format: string | null;
|
|
624
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
624
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
625
625
|
hint: string | null;
|
|
626
626
|
operationLoad: {
|
|
627
627
|
active: number;
|
|
@@ -632,7 +632,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
632
632
|
message: string;
|
|
633
633
|
retryable: boolean;
|
|
634
634
|
format: string | null;
|
|
635
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
635
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
636
636
|
hint: string | null;
|
|
637
637
|
operationLoad: {
|
|
638
638
|
active: number;
|
|
@@ -643,7 +643,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
643
643
|
message: string;
|
|
644
644
|
retryable: boolean;
|
|
645
645
|
format: string | null;
|
|
646
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
646
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
647
647
|
hint: string | null;
|
|
648
648
|
operationLoad: {
|
|
649
649
|
active: number;
|
|
@@ -656,7 +656,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
656
656
|
message: string;
|
|
657
657
|
retryable: boolean;
|
|
658
658
|
format: string | null;
|
|
659
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
659
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
660
660
|
hint: string | null;
|
|
661
661
|
operationLoad: {
|
|
662
662
|
active: number;
|
|
@@ -672,7 +672,7 @@ declare const mcpErrorResultSchema: z.ZodObject<{
|
|
|
672
672
|
message: string;
|
|
673
673
|
retryable: boolean;
|
|
674
674
|
format: string | null;
|
|
675
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
675
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare" | null;
|
|
676
676
|
hint: string | null;
|
|
677
677
|
operationLoad: {
|
|
678
678
|
active: number;
|
|
@@ -851,7 +851,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
851
851
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
852
852
|
code: z.ZodString;
|
|
853
853
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
854
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
854
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
855
855
|
format: z.ZodNullable<z.ZodString>;
|
|
856
856
|
count: z.ZodNumber;
|
|
857
857
|
message: z.ZodString;
|
|
@@ -909,7 +909,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
909
909
|
retryable: boolean;
|
|
910
910
|
format: string | null;
|
|
911
911
|
severity: "info" | "warning" | "error";
|
|
912
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
912
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
913
913
|
count: number;
|
|
914
914
|
remediation: string | null;
|
|
915
915
|
location: {
|
|
@@ -934,7 +934,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
934
934
|
retryable: boolean;
|
|
935
935
|
format: string | null;
|
|
936
936
|
severity: "info" | "warning" | "error";
|
|
937
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
937
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
938
938
|
count: number;
|
|
939
939
|
remediation: string | null;
|
|
940
940
|
location: {
|
|
@@ -999,7 +999,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
999
999
|
retryable: boolean;
|
|
1000
1000
|
format: string | null;
|
|
1001
1001
|
severity: "info" | "warning" | "error";
|
|
1002
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1002
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1003
1003
|
count: number;
|
|
1004
1004
|
remediation: string | null;
|
|
1005
1005
|
location: {
|
|
@@ -1064,7 +1064,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1064
1064
|
retryable: boolean;
|
|
1065
1065
|
format: string | null;
|
|
1066
1066
|
severity: "info" | "warning" | "error";
|
|
1067
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1067
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1068
1068
|
count: number;
|
|
1069
1069
|
remediation: string | null;
|
|
1070
1070
|
location: {
|
|
@@ -1129,7 +1129,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1129
1129
|
retryable: boolean;
|
|
1130
1130
|
format: string | null;
|
|
1131
1131
|
severity: "info" | "warning" | "error";
|
|
1132
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1132
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1133
1133
|
count: number;
|
|
1134
1134
|
remediation: string | null;
|
|
1135
1135
|
location: {
|
|
@@ -1194,7 +1194,7 @@ declare const conversionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1194
1194
|
retryable: boolean;
|
|
1195
1195
|
format: string | null;
|
|
1196
1196
|
severity: "info" | "warning" | "error";
|
|
1197
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1197
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1198
1198
|
count: number;
|
|
1199
1199
|
remediation: string | null;
|
|
1200
1200
|
location: {
|
|
@@ -1409,7 +1409,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1409
1409
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
1410
1410
|
code: z.ZodString;
|
|
1411
1411
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
1412
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
1412
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
1413
1413
|
format: z.ZodNullable<z.ZodString>;
|
|
1414
1414
|
count: z.ZodNumber;
|
|
1415
1415
|
message: z.ZodString;
|
|
@@ -1467,7 +1467,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1467
1467
|
retryable: boolean;
|
|
1468
1468
|
format: string | null;
|
|
1469
1469
|
severity: "info" | "warning" | "error";
|
|
1470
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1470
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1471
1471
|
count: number;
|
|
1472
1472
|
remediation: string | null;
|
|
1473
1473
|
location: {
|
|
@@ -1492,7 +1492,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1492
1492
|
retryable: boolean;
|
|
1493
1493
|
format: string | null;
|
|
1494
1494
|
severity: "info" | "warning" | "error";
|
|
1495
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1495
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1496
1496
|
count: number;
|
|
1497
1497
|
remediation: string | null;
|
|
1498
1498
|
location: {
|
|
@@ -1542,7 +1542,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1542
1542
|
retryable: boolean;
|
|
1543
1543
|
format: string | null;
|
|
1544
1544
|
severity: "info" | "warning" | "error";
|
|
1545
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1545
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1546
1546
|
count: number;
|
|
1547
1547
|
remediation: string | null;
|
|
1548
1548
|
location: {
|
|
@@ -1641,7 +1641,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1641
1641
|
retryable: boolean;
|
|
1642
1642
|
format: string | null;
|
|
1643
1643
|
severity: "info" | "warning" | "error";
|
|
1644
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1644
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1645
1645
|
count: number;
|
|
1646
1646
|
remediation: string | null;
|
|
1647
1647
|
location: {
|
|
@@ -1740,7 +1740,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1740
1740
|
retryable: boolean;
|
|
1741
1741
|
format: string | null;
|
|
1742
1742
|
severity: "info" | "warning" | "error";
|
|
1743
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1743
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1744
1744
|
count: number;
|
|
1745
1745
|
remediation: string | null;
|
|
1746
1746
|
location: {
|
|
@@ -1839,7 +1839,7 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1839
1839
|
retryable: boolean;
|
|
1840
1840
|
format: string | null;
|
|
1841
1841
|
severity: "info" | "warning" | "error";
|
|
1842
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
1842
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1843
1843
|
count: number;
|
|
1844
1844
|
remediation: string | null;
|
|
1845
1845
|
location: {
|
|
@@ -1909,280 +1909,6 @@ declare const inspectionResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1909
1909
|
truncated: boolean;
|
|
1910
1910
|
detailsTruncated: boolean;
|
|
1911
1911
|
}>;
|
|
1912
|
-
declare const validationResultSchema: z.ZodEffects<z.ZodObject<{
|
|
1913
|
-
version: z.ZodLiteral<1>;
|
|
1914
|
-
kind: z.ZodLiteral<"validation">;
|
|
1915
|
-
sourceFormat: z.ZodString;
|
|
1916
|
-
targetFormat: z.ZodNullable<z.ZodString>;
|
|
1917
|
-
valid: z.ZodBoolean;
|
|
1918
|
-
summary: z.ZodObject<{
|
|
1919
|
-
errorCount: z.ZodNumber;
|
|
1920
|
-
warningCount: z.ZodNumber;
|
|
1921
|
-
infoCount: z.ZodNumber;
|
|
1922
|
-
}, "strict", z.ZodTypeAny, {
|
|
1923
|
-
errorCount: number;
|
|
1924
|
-
warningCount: number;
|
|
1925
|
-
infoCount: number;
|
|
1926
|
-
}, {
|
|
1927
|
-
errorCount: number;
|
|
1928
|
-
warningCount: number;
|
|
1929
|
-
infoCount: number;
|
|
1930
|
-
}>;
|
|
1931
|
-
diagnostics: z.ZodArray<z.ZodObject<{
|
|
1932
|
-
code: z.ZodString;
|
|
1933
|
-
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
1934
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "validate", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
1935
|
-
format: z.ZodNullable<z.ZodString>;
|
|
1936
|
-
count: z.ZodNumber;
|
|
1937
|
-
message: z.ZodString;
|
|
1938
|
-
remediation: z.ZodNullable<z.ZodString>;
|
|
1939
|
-
retryable: z.ZodBoolean;
|
|
1940
|
-
location: z.ZodNullable<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
1941
|
-
kind: z.ZodLiteral<"source">;
|
|
1942
|
-
line: z.ZodNumber;
|
|
1943
|
-
column: z.ZodNumber;
|
|
1944
|
-
}, "strict", z.ZodTypeAny, {
|
|
1945
|
-
kind: "source";
|
|
1946
|
-
line: number;
|
|
1947
|
-
column: number;
|
|
1948
|
-
}, {
|
|
1949
|
-
kind: "source";
|
|
1950
|
-
line: number;
|
|
1951
|
-
column: number;
|
|
1952
|
-
}>, z.ZodObject<{
|
|
1953
|
-
kind: z.ZodLiteral<"block">;
|
|
1954
|
-
blockId: z.ZodString;
|
|
1955
|
-
nodeType: z.ZodString;
|
|
1956
|
-
}, "strict", z.ZodTypeAny, {
|
|
1957
|
-
kind: "block";
|
|
1958
|
-
blockId: string;
|
|
1959
|
-
nodeType: string;
|
|
1960
|
-
}, {
|
|
1961
|
-
kind: "block";
|
|
1962
|
-
blockId: string;
|
|
1963
|
-
nodeType: string;
|
|
1964
|
-
}>, z.ZodObject<{
|
|
1965
|
-
kind: z.ZodLiteral<"asset">;
|
|
1966
|
-
path: z.ZodEffects<z.ZodString, string, string>;
|
|
1967
|
-
}, "strict", z.ZodTypeAny, {
|
|
1968
|
-
path: string;
|
|
1969
|
-
kind: "asset";
|
|
1970
|
-
}, {
|
|
1971
|
-
path: string;
|
|
1972
|
-
kind: "asset";
|
|
1973
|
-
}>, z.ZodObject<{
|
|
1974
|
-
kind: z.ZodLiteral<"item">;
|
|
1975
|
-
itemKind: z.ZodEnum<["page", "slide", "sheet", "frame"]>;
|
|
1976
|
-
index: z.ZodNumber;
|
|
1977
|
-
}, "strict", z.ZodTypeAny, {
|
|
1978
|
-
kind: "item";
|
|
1979
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
1980
|
-
index: number;
|
|
1981
|
-
}, {
|
|
1982
|
-
kind: "item";
|
|
1983
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
1984
|
-
index: number;
|
|
1985
|
-
}>]>>;
|
|
1986
|
-
}, "strict", z.ZodTypeAny, {
|
|
1987
|
-
code: string;
|
|
1988
|
-
message: string;
|
|
1989
|
-
retryable: boolean;
|
|
1990
|
-
format: string | null;
|
|
1991
|
-
severity: "info" | "warning" | "error";
|
|
1992
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
1993
|
-
count: number;
|
|
1994
|
-
remediation: string | null;
|
|
1995
|
-
location: {
|
|
1996
|
-
kind: "source";
|
|
1997
|
-
line: number;
|
|
1998
|
-
column: number;
|
|
1999
|
-
} | {
|
|
2000
|
-
kind: "block";
|
|
2001
|
-
blockId: string;
|
|
2002
|
-
nodeType: string;
|
|
2003
|
-
} | {
|
|
2004
|
-
path: string;
|
|
2005
|
-
kind: "asset";
|
|
2006
|
-
} | {
|
|
2007
|
-
kind: "item";
|
|
2008
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2009
|
-
index: number;
|
|
2010
|
-
} | null;
|
|
2011
|
-
}, {
|
|
2012
|
-
code: string;
|
|
2013
|
-
message: string;
|
|
2014
|
-
retryable: boolean;
|
|
2015
|
-
format: string | null;
|
|
2016
|
-
severity: "info" | "warning" | "error";
|
|
2017
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2018
|
-
count: number;
|
|
2019
|
-
remediation: string | null;
|
|
2020
|
-
location: {
|
|
2021
|
-
kind: "source";
|
|
2022
|
-
line: number;
|
|
2023
|
-
column: number;
|
|
2024
|
-
} | {
|
|
2025
|
-
kind: "block";
|
|
2026
|
-
blockId: string;
|
|
2027
|
-
nodeType: string;
|
|
2028
|
-
} | {
|
|
2029
|
-
path: string;
|
|
2030
|
-
kind: "asset";
|
|
2031
|
-
} | {
|
|
2032
|
-
kind: "item";
|
|
2033
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2034
|
-
index: number;
|
|
2035
|
-
} | null;
|
|
2036
|
-
}>, "many">;
|
|
2037
|
-
}, "strict", z.ZodTypeAny, {
|
|
2038
|
-
sourceFormat: string;
|
|
2039
|
-
kind: "validation";
|
|
2040
|
-
version: 1;
|
|
2041
|
-
targetFormat: string | null;
|
|
2042
|
-
diagnostics: {
|
|
2043
|
-
code: string;
|
|
2044
|
-
message: string;
|
|
2045
|
-
retryable: boolean;
|
|
2046
|
-
format: string | null;
|
|
2047
|
-
severity: "info" | "warning" | "error";
|
|
2048
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2049
|
-
count: number;
|
|
2050
|
-
remediation: string | null;
|
|
2051
|
-
location: {
|
|
2052
|
-
kind: "source";
|
|
2053
|
-
line: number;
|
|
2054
|
-
column: number;
|
|
2055
|
-
} | {
|
|
2056
|
-
kind: "block";
|
|
2057
|
-
blockId: string;
|
|
2058
|
-
nodeType: string;
|
|
2059
|
-
} | {
|
|
2060
|
-
path: string;
|
|
2061
|
-
kind: "asset";
|
|
2062
|
-
} | {
|
|
2063
|
-
kind: "item";
|
|
2064
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2065
|
-
index: number;
|
|
2066
|
-
} | null;
|
|
2067
|
-
}[];
|
|
2068
|
-
valid: boolean;
|
|
2069
|
-
summary: {
|
|
2070
|
-
errorCount: number;
|
|
2071
|
-
warningCount: number;
|
|
2072
|
-
infoCount: number;
|
|
2073
|
-
};
|
|
2074
|
-
}, {
|
|
2075
|
-
sourceFormat: string;
|
|
2076
|
-
kind: "validation";
|
|
2077
|
-
version: 1;
|
|
2078
|
-
targetFormat: string | null;
|
|
2079
|
-
diagnostics: {
|
|
2080
|
-
code: string;
|
|
2081
|
-
message: string;
|
|
2082
|
-
retryable: boolean;
|
|
2083
|
-
format: string | null;
|
|
2084
|
-
severity: "info" | "warning" | "error";
|
|
2085
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2086
|
-
count: number;
|
|
2087
|
-
remediation: string | null;
|
|
2088
|
-
location: {
|
|
2089
|
-
kind: "source";
|
|
2090
|
-
line: number;
|
|
2091
|
-
column: number;
|
|
2092
|
-
} | {
|
|
2093
|
-
kind: "block";
|
|
2094
|
-
blockId: string;
|
|
2095
|
-
nodeType: string;
|
|
2096
|
-
} | {
|
|
2097
|
-
path: string;
|
|
2098
|
-
kind: "asset";
|
|
2099
|
-
} | {
|
|
2100
|
-
kind: "item";
|
|
2101
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2102
|
-
index: number;
|
|
2103
|
-
} | null;
|
|
2104
|
-
}[];
|
|
2105
|
-
valid: boolean;
|
|
2106
|
-
summary: {
|
|
2107
|
-
errorCount: number;
|
|
2108
|
-
warningCount: number;
|
|
2109
|
-
infoCount: number;
|
|
2110
|
-
};
|
|
2111
|
-
}>, {
|
|
2112
|
-
sourceFormat: string;
|
|
2113
|
-
kind: "validation";
|
|
2114
|
-
version: 1;
|
|
2115
|
-
targetFormat: string | null;
|
|
2116
|
-
diagnostics: {
|
|
2117
|
-
code: string;
|
|
2118
|
-
message: string;
|
|
2119
|
-
retryable: boolean;
|
|
2120
|
-
format: string | null;
|
|
2121
|
-
severity: "info" | "warning" | "error";
|
|
2122
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2123
|
-
count: number;
|
|
2124
|
-
remediation: string | null;
|
|
2125
|
-
location: {
|
|
2126
|
-
kind: "source";
|
|
2127
|
-
line: number;
|
|
2128
|
-
column: number;
|
|
2129
|
-
} | {
|
|
2130
|
-
kind: "block";
|
|
2131
|
-
blockId: string;
|
|
2132
|
-
nodeType: string;
|
|
2133
|
-
} | {
|
|
2134
|
-
path: string;
|
|
2135
|
-
kind: "asset";
|
|
2136
|
-
} | {
|
|
2137
|
-
kind: "item";
|
|
2138
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2139
|
-
index: number;
|
|
2140
|
-
} | null;
|
|
2141
|
-
}[];
|
|
2142
|
-
valid: boolean;
|
|
2143
|
-
summary: {
|
|
2144
|
-
errorCount: number;
|
|
2145
|
-
warningCount: number;
|
|
2146
|
-
infoCount: number;
|
|
2147
|
-
};
|
|
2148
|
-
}, {
|
|
2149
|
-
sourceFormat: string;
|
|
2150
|
-
kind: "validation";
|
|
2151
|
-
version: 1;
|
|
2152
|
-
targetFormat: string | null;
|
|
2153
|
-
diagnostics: {
|
|
2154
|
-
code: string;
|
|
2155
|
-
message: string;
|
|
2156
|
-
retryable: boolean;
|
|
2157
|
-
format: string | null;
|
|
2158
|
-
severity: "info" | "warning" | "error";
|
|
2159
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "validate" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2160
|
-
count: number;
|
|
2161
|
-
remediation: string | null;
|
|
2162
|
-
location: {
|
|
2163
|
-
kind: "source";
|
|
2164
|
-
line: number;
|
|
2165
|
-
column: number;
|
|
2166
|
-
} | {
|
|
2167
|
-
kind: "block";
|
|
2168
|
-
blockId: string;
|
|
2169
|
-
nodeType: string;
|
|
2170
|
-
} | {
|
|
2171
|
-
path: string;
|
|
2172
|
-
kind: "asset";
|
|
2173
|
-
} | {
|
|
2174
|
-
kind: "item";
|
|
2175
|
-
itemKind: "page" | "slide" | "sheet" | "frame";
|
|
2176
|
-
index: number;
|
|
2177
|
-
} | null;
|
|
2178
|
-
}[];
|
|
2179
|
-
valid: boolean;
|
|
2180
|
-
summary: {
|
|
2181
|
-
errorCount: number;
|
|
2182
|
-
warningCount: number;
|
|
2183
|
-
infoCount: number;
|
|
2184
|
-
};
|
|
2185
|
-
}>;
|
|
2186
1912
|
declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
2187
1913
|
version: z.ZodLiteral<1>;
|
|
2188
1914
|
kind: z.ZodLiteral<"preview">;
|
|
@@ -2367,7 +2093,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2367
2093
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
2368
2094
|
code: z.ZodString;
|
|
2369
2095
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
2370
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
2096
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
2371
2097
|
format: z.ZodNullable<z.ZodString>;
|
|
2372
2098
|
count: z.ZodNumber;
|
|
2373
2099
|
message: z.ZodString;
|
|
@@ -2425,7 +2151,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2425
2151
|
retryable: boolean;
|
|
2426
2152
|
format: string | null;
|
|
2427
2153
|
severity: "info" | "warning" | "error";
|
|
2428
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2154
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2429
2155
|
count: number;
|
|
2430
2156
|
remediation: string | null;
|
|
2431
2157
|
location: {
|
|
@@ -2450,7 +2176,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2450
2176
|
retryable: boolean;
|
|
2451
2177
|
format: string | null;
|
|
2452
2178
|
severity: "info" | "warning" | "error";
|
|
2453
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2179
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2454
2180
|
count: number;
|
|
2455
2181
|
remediation: string | null;
|
|
2456
2182
|
location: {
|
|
@@ -2480,7 +2206,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2480
2206
|
retryable: boolean;
|
|
2481
2207
|
format: string | null;
|
|
2482
2208
|
severity: "info" | "warning" | "error";
|
|
2483
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2209
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2484
2210
|
count: number;
|
|
2485
2211
|
remediation: string | null;
|
|
2486
2212
|
location: {
|
|
@@ -2541,7 +2267,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2541
2267
|
retryable: boolean;
|
|
2542
2268
|
format: string | null;
|
|
2543
2269
|
severity: "info" | "warning" | "error";
|
|
2544
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2270
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2545
2271
|
count: number;
|
|
2546
2272
|
remediation: string | null;
|
|
2547
2273
|
location: {
|
|
@@ -2602,7 +2328,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2602
2328
|
retryable: boolean;
|
|
2603
2329
|
format: string | null;
|
|
2604
2330
|
severity: "info" | "warning" | "error";
|
|
2605
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2331
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2606
2332
|
count: number;
|
|
2607
2333
|
remediation: string | null;
|
|
2608
2334
|
location: {
|
|
@@ -2663,7 +2389,7 @@ declare const previewResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2663
2389
|
retryable: boolean;
|
|
2664
2390
|
format: string | null;
|
|
2665
2391
|
severity: "info" | "warning" | "error";
|
|
2666
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2392
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2667
2393
|
count: number;
|
|
2668
2394
|
remediation: string | null;
|
|
2669
2395
|
location: {
|
|
@@ -2757,7 +2483,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2757
2483
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
2758
2484
|
code: z.ZodString;
|
|
2759
2485
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
2760
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
2486
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
2761
2487
|
format: z.ZodNullable<z.ZodString>;
|
|
2762
2488
|
count: z.ZodNumber;
|
|
2763
2489
|
message: z.ZodString;
|
|
@@ -2815,7 +2541,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2815
2541
|
retryable: boolean;
|
|
2816
2542
|
format: string | null;
|
|
2817
2543
|
severity: "info" | "warning" | "error";
|
|
2818
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2544
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2819
2545
|
count: number;
|
|
2820
2546
|
remediation: string | null;
|
|
2821
2547
|
location: {
|
|
@@ -2840,7 +2566,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2840
2566
|
retryable: boolean;
|
|
2841
2567
|
format: string | null;
|
|
2842
2568
|
severity: "info" | "warning" | "error";
|
|
2843
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2569
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2844
2570
|
count: number;
|
|
2845
2571
|
remediation: string | null;
|
|
2846
2572
|
location: {
|
|
@@ -2869,7 +2595,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2869
2595
|
retryable: boolean;
|
|
2870
2596
|
format: string | null;
|
|
2871
2597
|
severity: "info" | "warning" | "error";
|
|
2872
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2598
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2873
2599
|
count: number;
|
|
2874
2600
|
remediation: string | null;
|
|
2875
2601
|
location: {
|
|
@@ -2914,7 +2640,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2914
2640
|
retryable: boolean;
|
|
2915
2641
|
format: string | null;
|
|
2916
2642
|
severity: "info" | "warning" | "error";
|
|
2917
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2643
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2918
2644
|
count: number;
|
|
2919
2645
|
remediation: string | null;
|
|
2920
2646
|
location: {
|
|
@@ -2959,7 +2685,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2959
2685
|
retryable: boolean;
|
|
2960
2686
|
format: string | null;
|
|
2961
2687
|
severity: "info" | "warning" | "error";
|
|
2962
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2688
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
2963
2689
|
count: number;
|
|
2964
2690
|
remediation: string | null;
|
|
2965
2691
|
location: {
|
|
@@ -3004,7 +2730,7 @@ declare const comparisonResultSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3004
2730
|
retryable: boolean;
|
|
3005
2731
|
format: string | null;
|
|
3006
2732
|
severity: "info" | "warning" | "error";
|
|
3007
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2733
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3008
2734
|
count: number;
|
|
3009
2735
|
remediation: string | null;
|
|
3010
2736
|
location: {
|
|
@@ -3192,7 +2918,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3192
2918
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
3193
2919
|
code: z.ZodString;
|
|
3194
2920
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
3195
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
2921
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
3196
2922
|
format: z.ZodNullable<z.ZodString>;
|
|
3197
2923
|
count: z.ZodNumber;
|
|
3198
2924
|
message: z.ZodString;
|
|
@@ -3250,7 +2976,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3250
2976
|
retryable: boolean;
|
|
3251
2977
|
format: string | null;
|
|
3252
2978
|
severity: "info" | "warning" | "error";
|
|
3253
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
2979
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3254
2980
|
count: number;
|
|
3255
2981
|
remediation: string | null;
|
|
3256
2982
|
location: {
|
|
@@ -3275,7 +3001,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3275
3001
|
retryable: boolean;
|
|
3276
3002
|
format: string | null;
|
|
3277
3003
|
severity: "info" | "warning" | "error";
|
|
3278
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3004
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3279
3005
|
count: number;
|
|
3280
3006
|
remediation: string | null;
|
|
3281
3007
|
location: {
|
|
@@ -3340,7 +3066,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3340
3066
|
retryable: boolean;
|
|
3341
3067
|
format: string | null;
|
|
3342
3068
|
severity: "info" | "warning" | "error";
|
|
3343
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3069
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3344
3070
|
count: number;
|
|
3345
3071
|
remediation: string | null;
|
|
3346
3072
|
location: {
|
|
@@ -3405,7 +3131,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3405
3131
|
retryable: boolean;
|
|
3406
3132
|
format: string | null;
|
|
3407
3133
|
severity: "info" | "warning" | "error";
|
|
3408
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3134
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3409
3135
|
count: number;
|
|
3410
3136
|
remediation: string | null;
|
|
3411
3137
|
location: {
|
|
@@ -3470,7 +3196,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3470
3196
|
retryable: boolean;
|
|
3471
3197
|
format: string | null;
|
|
3472
3198
|
severity: "info" | "warning" | "error";
|
|
3473
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3199
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3474
3200
|
count: number;
|
|
3475
3201
|
remediation: string | null;
|
|
3476
3202
|
location: {
|
|
@@ -3535,7 +3261,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3535
3261
|
retryable: boolean;
|
|
3536
3262
|
format: string | null;
|
|
3537
3263
|
severity: "info" | "warning" | "error";
|
|
3538
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3264
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3539
3265
|
count: number;
|
|
3540
3266
|
remediation: string | null;
|
|
3541
3267
|
location: {
|
|
@@ -3602,7 +3328,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3602
3328
|
retryable: boolean;
|
|
3603
3329
|
format: string | null;
|
|
3604
3330
|
severity: "info" | "warning" | "error";
|
|
3605
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3331
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3606
3332
|
count: number;
|
|
3607
3333
|
remediation: string | null;
|
|
3608
3334
|
location: {
|
|
@@ -3669,7 +3395,7 @@ declare const convertDocumentResultSchema: z.ZodObject<{
|
|
|
3669
3395
|
retryable: boolean;
|
|
3670
3396
|
format: string | null;
|
|
3671
3397
|
severity: "info" | "warning" | "error";
|
|
3672
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
3398
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
3673
3399
|
count: number;
|
|
3674
3400
|
remediation: string | null;
|
|
3675
3401
|
location: {
|
|
@@ -5645,7 +5371,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5645
5371
|
diagnostics: z.ZodArray<z.ZodObject<{
|
|
5646
5372
|
code: z.ZodString;
|
|
5647
5373
|
severity: z.ZodEnum<["info", "warning", "error"]>;
|
|
5648
|
-
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "
|
|
5374
|
+
stage: z.ZodEnum<["resolve", "import", "parse", "inspect", "transform", "convert", "render", "export", "materialize", "compare"]>;
|
|
5649
5375
|
format: z.ZodNullable<z.ZodString>;
|
|
5650
5376
|
count: z.ZodNumber;
|
|
5651
5377
|
message: z.ZodString;
|
|
@@ -5703,7 +5429,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5703
5429
|
retryable: boolean;
|
|
5704
5430
|
format: string | null;
|
|
5705
5431
|
severity: "info" | "warning" | "error";
|
|
5706
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5432
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5707
5433
|
count: number;
|
|
5708
5434
|
remediation: string | null;
|
|
5709
5435
|
location: {
|
|
@@ -5728,7 +5454,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5728
5454
|
retryable: boolean;
|
|
5729
5455
|
format: string | null;
|
|
5730
5456
|
severity: "info" | "warning" | "error";
|
|
5731
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5457
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5732
5458
|
count: number;
|
|
5733
5459
|
remediation: string | null;
|
|
5734
5460
|
location: {
|
|
@@ -5793,7 +5519,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5793
5519
|
retryable: boolean;
|
|
5794
5520
|
format: string | null;
|
|
5795
5521
|
severity: "info" | "warning" | "error";
|
|
5796
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5522
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5797
5523
|
count: number;
|
|
5798
5524
|
remediation: string | null;
|
|
5799
5525
|
location: {
|
|
@@ -5858,7 +5584,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5858
5584
|
retryable: boolean;
|
|
5859
5585
|
format: string | null;
|
|
5860
5586
|
severity: "info" | "warning" | "error";
|
|
5861
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5587
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5862
5588
|
count: number;
|
|
5863
5589
|
remediation: string | null;
|
|
5864
5590
|
location: {
|
|
@@ -5923,7 +5649,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5923
5649
|
retryable: boolean;
|
|
5924
5650
|
format: string | null;
|
|
5925
5651
|
severity: "info" | "warning" | "error";
|
|
5926
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5652
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5927
5653
|
count: number;
|
|
5928
5654
|
remediation: string | null;
|
|
5929
5655
|
location: {
|
|
@@ -5988,7 +5714,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
5988
5714
|
retryable: boolean;
|
|
5989
5715
|
format: string | null;
|
|
5990
5716
|
severity: "info" | "warning" | "error";
|
|
5991
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5717
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
5992
5718
|
count: number;
|
|
5993
5719
|
remediation: string | null;
|
|
5994
5720
|
location: {
|
|
@@ -6123,7 +5849,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
6123
5849
|
retryable: boolean;
|
|
6124
5850
|
format: string | null;
|
|
6125
5851
|
severity: "info" | "warning" | "error";
|
|
6126
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5852
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
6127
5853
|
count: number;
|
|
6128
5854
|
remediation: string | null;
|
|
6129
5855
|
location: {
|
|
@@ -6206,7 +5932,7 @@ declare const applyInferredThemeResultSchema: z.ZodObject<{
|
|
|
6206
5932
|
retryable: boolean;
|
|
6207
5933
|
format: string | null;
|
|
6208
5934
|
severity: "info" | "warning" | "error";
|
|
6209
|
-
stage: "resolve" | "import" | "parse" | "inspect" | "
|
|
5935
|
+
stage: "resolve" | "import" | "parse" | "inspect" | "transform" | "convert" | "render" | "export" | "materialize" | "compare";
|
|
6210
5936
|
count: number;
|
|
6211
5937
|
remediation: string | null;
|
|
6212
5938
|
location: {
|
|
@@ -6267,4 +5993,4 @@ declare const materializationOptionsSchema: z.ZodDiscriminatedUnion<"ifExists",
|
|
|
6267
5993
|
expectedSha256: string;
|
|
6268
5994
|
}>]>;
|
|
6269
5995
|
|
|
6270
|
-
export { DOCBLOCKS_MCP_TOOL_OUTPUT_SCHEMAS, DOCBLOCKS_MCP_TOOL_RESULT_SCHEMAS, MAX_MARKDOWN_CHARACTERS, MAX_PATH_CHARACTERS, applyInferredThemeResultSchema, artifactRefSchema, artifactUriSchema, authoringContextResultSchema, authoringTemplateSummarySchema, bundleAssetSchema, bundleDocumentSourceSchema, comparisonResultSchema, conversionResultSchema, convertDocumentResultSchema, describeTemplateResultSchema, describeThemeResultSchema, diagnosticSchema, documentSourceSchema, formatCapabilitySummarySchema, formatDirectionCapabilitySchema, formatInputSchema, formatSchema, inferThemeResultSchema, inferredLayoutSummarySchema, inspectPptxLayoutsResultSchema, inspectionResultSchema, listFormatsResultSchema, listRootsResultSchema, listTemplatesResultSchema, listThemesResultSchema, listTransformStylesResultSchema, materializationOptionsSchema, mcpErrorDetailSchema, mcpErrorResultSchema, pptxLayoutSummarySchema, previewResultSchema, recommendTemplatesResultSchema, rootGrantSummarySchema, saveArtifactResultSchema, templateContentProfileSchema, templateInputSummarySchema, templateRecommendationSchema, templateSummarySchema, themeCatalogEntrySchema, themeDescriptionSchema, toolOutputSchema, transformStyleSummarySchema
|
|
5996
|
+
export { DOCBLOCKS_MCP_TOOL_OUTPUT_SCHEMAS, DOCBLOCKS_MCP_TOOL_RESULT_SCHEMAS, MAX_MARKDOWN_CHARACTERS, MAX_PATH_CHARACTERS, applyInferredThemeResultSchema, artifactRefSchema, artifactUriSchema, authoringContextResultSchema, authoringTemplateSummarySchema, bundleAssetSchema, bundleDocumentSourceSchema, comparisonResultSchema, conversionResultSchema, convertDocumentResultSchema, describeTemplateResultSchema, describeThemeResultSchema, diagnosticSchema, documentSourceSchema, formatCapabilitySummarySchema, formatDirectionCapabilitySchema, formatInputSchema, formatSchema, inferThemeResultSchema, inferredLayoutSummarySchema, inspectPptxLayoutsResultSchema, inspectionResultSchema, listFormatsResultSchema, listRootsResultSchema, listTemplatesResultSchema, listThemesResultSchema, listTransformStylesResultSchema, materializationOptionsSchema, mcpErrorDetailSchema, mcpErrorResultSchema, pptxLayoutSummarySchema, previewResultSchema, recommendTemplatesResultSchema, rootGrantSummarySchema, saveArtifactResultSchema, templateContentProfileSchema, templateInputSummarySchema, templateRecommendationSchema, templateSummarySchema, themeCatalogEntrySchema, themeDescriptionSchema, toolOutputSchema, transformStyleSummarySchema };
|