@supernova-studio/client 1.42.7 → 1.42.9
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 +461 -314
- package/dist/index.d.ts +461 -314
- package/dist/index.js +29 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +69 -48
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1,
|
|
2
|
+
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection } from '@supernova-studio/model';
|
|
3
3
|
import * as z from 'zod';
|
|
4
4
|
import z__default, { z as z$1, ZodSchema, ZodTypeDef } from 'zod';
|
|
5
5
|
import * as Y from 'yjs';
|
|
@@ -66377,13 +66377,157 @@ declare const DTODownloadAssetsResponse: z$1.ZodObject<{
|
|
|
66377
66377
|
}>;
|
|
66378
66378
|
type DTODownloadAssetsResponse = z$1.infer<typeof DTODownloadAssetsResponse>;
|
|
66379
66379
|
|
|
66380
|
-
declare const
|
|
66381
|
-
|
|
66380
|
+
declare const DTOFigmaExportNodeFormat: z$1.ZodEnum<["HTML", "JSON"]>;
|
|
66381
|
+
type DTOFigmaExportNodeFormat = z$1.infer<typeof DTOFigmaExportNodeFormat>;
|
|
66382
|
+
declare const DTOFigmaExportNodeConfiguration: z$1.ZodObject<{
|
|
66383
|
+
format: z$1.ZodEnum<["HTML", "JSON"]>;
|
|
66384
|
+
minifyOutput: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
66385
|
+
customFontUrls: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
66386
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66387
|
+
format: "HTML" | "JSON";
|
|
66388
|
+
minifyOutput?: boolean | undefined;
|
|
66389
|
+
customFontUrls?: string[] | undefined;
|
|
66390
|
+
}, {
|
|
66391
|
+
format: "HTML" | "JSON";
|
|
66392
|
+
minifyOutput?: boolean | undefined;
|
|
66393
|
+
customFontUrls?: string[] | undefined;
|
|
66394
|
+
}>;
|
|
66395
|
+
type DTOFigmaExportNodeConfiguration = z$1.infer<typeof DTOFigmaExportNodeConfiguration>;
|
|
66396
|
+
declare const DTOFigmaExportNodePayload: z$1.ZodObject<{
|
|
66397
|
+
designSystemId: z$1.ZodString;
|
|
66398
|
+
versionId: z$1.ZodOptional<z$1.ZodString>;
|
|
66399
|
+
figmaUrl: z$1.ZodString;
|
|
66400
|
+
configuration: z$1.ZodObject<{
|
|
66401
|
+
format: z$1.ZodEnum<["HTML", "JSON"]>;
|
|
66402
|
+
minifyOutput: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
66403
|
+
customFontUrls: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
66404
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66405
|
+
format: "HTML" | "JSON";
|
|
66406
|
+
minifyOutput?: boolean | undefined;
|
|
66407
|
+
customFontUrls?: string[] | undefined;
|
|
66408
|
+
}, {
|
|
66409
|
+
format: "HTML" | "JSON";
|
|
66410
|
+
minifyOutput?: boolean | undefined;
|
|
66411
|
+
customFontUrls?: string[] | undefined;
|
|
66412
|
+
}>;
|
|
66413
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66414
|
+
designSystemId: string;
|
|
66415
|
+
configuration: {
|
|
66416
|
+
format: "HTML" | "JSON";
|
|
66417
|
+
minifyOutput?: boolean | undefined;
|
|
66418
|
+
customFontUrls?: string[] | undefined;
|
|
66419
|
+
};
|
|
66420
|
+
figmaUrl: string;
|
|
66421
|
+
versionId?: string | undefined;
|
|
66422
|
+
}, {
|
|
66423
|
+
designSystemId: string;
|
|
66424
|
+
configuration: {
|
|
66425
|
+
format: "HTML" | "JSON";
|
|
66426
|
+
minifyOutput?: boolean | undefined;
|
|
66427
|
+
customFontUrls?: string[] | undefined;
|
|
66428
|
+
};
|
|
66429
|
+
figmaUrl: string;
|
|
66430
|
+
versionId?: string | undefined;
|
|
66382
66431
|
}>;
|
|
66383
|
-
type
|
|
66384
|
-
|
|
66385
|
-
|
|
66432
|
+
type DTOFigmaExportNodePayload = z$1.infer<typeof DTOFigmaExportNodePayload>;
|
|
66433
|
+
declare const DTOFigmaExportNodeResponse: z$1.ZodObject<{
|
|
66434
|
+
file: z$1.ZodObject<{
|
|
66435
|
+
id: z$1.ZodString;
|
|
66436
|
+
name: z$1.ZodString;
|
|
66437
|
+
deduplicationKey: z$1.ZodString;
|
|
66438
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
66439
|
+
storagePath: z$1.ZodString;
|
|
66440
|
+
url: z$1.ZodString;
|
|
66441
|
+
size: z$1.ZodNumber;
|
|
66442
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
66443
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
66444
|
+
userId: z$1.ZodString;
|
|
66445
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66446
|
+
type: "UserUpload";
|
|
66447
|
+
userId: string;
|
|
66448
|
+
}, {
|
|
66449
|
+
type: "UserUpload";
|
|
66450
|
+
userId: string;
|
|
66451
|
+
}>, z$1.ZodObject<{
|
|
66452
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
66453
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66454
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66455
|
+
type: "Figma";
|
|
66456
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66457
|
+
}, {
|
|
66458
|
+
type: "Figma";
|
|
66459
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66460
|
+
}>]>>;
|
|
66461
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66462
|
+
id: string;
|
|
66463
|
+
name: string;
|
|
66464
|
+
url: string;
|
|
66465
|
+
size: number;
|
|
66466
|
+
deduplicationKey: string;
|
|
66467
|
+
storagePath: string;
|
|
66468
|
+
source?: {
|
|
66469
|
+
type: "UserUpload";
|
|
66470
|
+
userId: string;
|
|
66471
|
+
} | {
|
|
66472
|
+
type: "Figma";
|
|
66473
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66474
|
+
} | undefined;
|
|
66475
|
+
pendingUpload?: boolean | undefined;
|
|
66476
|
+
}, {
|
|
66477
|
+
id: string;
|
|
66478
|
+
name: string;
|
|
66479
|
+
url: string;
|
|
66480
|
+
size: number;
|
|
66481
|
+
deduplicationKey: string;
|
|
66482
|
+
storagePath: string;
|
|
66483
|
+
source?: {
|
|
66484
|
+
type: "UserUpload";
|
|
66485
|
+
userId: string;
|
|
66486
|
+
} | {
|
|
66487
|
+
type: "Figma";
|
|
66488
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66489
|
+
} | undefined;
|
|
66490
|
+
pendingUpload?: boolean | undefined;
|
|
66491
|
+
}>;
|
|
66492
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
66493
|
+
file: {
|
|
66494
|
+
id: string;
|
|
66495
|
+
name: string;
|
|
66496
|
+
url: string;
|
|
66497
|
+
size: number;
|
|
66498
|
+
deduplicationKey: string;
|
|
66499
|
+
storagePath: string;
|
|
66500
|
+
source?: {
|
|
66501
|
+
type: "UserUpload";
|
|
66502
|
+
userId: string;
|
|
66503
|
+
} | {
|
|
66504
|
+
type: "Figma";
|
|
66505
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66506
|
+
} | undefined;
|
|
66507
|
+
pendingUpload?: boolean | undefined;
|
|
66508
|
+
};
|
|
66509
|
+
}, {
|
|
66510
|
+
file: {
|
|
66511
|
+
id: string;
|
|
66512
|
+
name: string;
|
|
66513
|
+
url: string;
|
|
66514
|
+
size: number;
|
|
66515
|
+
deduplicationKey: string;
|
|
66516
|
+
storagePath: string;
|
|
66517
|
+
source?: {
|
|
66518
|
+
type: "UserUpload";
|
|
66519
|
+
userId: string;
|
|
66520
|
+
} | {
|
|
66521
|
+
type: "Figma";
|
|
66522
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66523
|
+
} | undefined;
|
|
66524
|
+
pendingUpload?: boolean | undefined;
|
|
66525
|
+
};
|
|
66526
|
+
}>;
|
|
66527
|
+
type DTOFigmaExportNodeResponse = z$1.infer<typeof DTOFigmaExportNodeResponse>;
|
|
66386
66528
|
|
|
66529
|
+
declare const DTOFileFigmaRenderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66530
|
+
type DTOFileFigmaRenderMode = z__default.infer<typeof DTOFileFigmaRenderMode>;
|
|
66387
66531
|
declare const DTOFileSourceUpload: z__default.ZodObject<{
|
|
66388
66532
|
type: z__default.ZodLiteral<"UserUpload">;
|
|
66389
66533
|
userId: z__default.ZodString;
|
|
@@ -66397,13 +66541,13 @@ declare const DTOFileSourceUpload: z__default.ZodObject<{
|
|
|
66397
66541
|
type DTOFileSourceUpload = z__default.infer<typeof DTOFileSourceUpload>;
|
|
66398
66542
|
declare const DTOFileSourceFigma: z__default.ZodObject<{
|
|
66399
66543
|
type: z__default.ZodLiteral<"Figma">;
|
|
66400
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66544
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66401
66545
|
}, "strip", z__default.ZodTypeAny, {
|
|
66402
66546
|
type: "Figma";
|
|
66403
|
-
renderMode: "Image" | "HTML";
|
|
66547
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66404
66548
|
}, {
|
|
66405
66549
|
type: "Figma";
|
|
66406
|
-
renderMode: "Image" | "HTML";
|
|
66550
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66407
66551
|
}>;
|
|
66408
66552
|
type DTOFileSourceFigma = z__default.infer<typeof DTOFileSourceFigma>;
|
|
66409
66553
|
declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
@@ -66417,13 +66561,13 @@ declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__defaul
|
|
|
66417
66561
|
userId: string;
|
|
66418
66562
|
}>, z__default.ZodObject<{
|
|
66419
66563
|
type: z__default.ZodLiteral<"Figma">;
|
|
66420
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66564
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66421
66565
|
}, "strip", z__default.ZodTypeAny, {
|
|
66422
66566
|
type: "Figma";
|
|
66423
|
-
renderMode: "Image" | "HTML";
|
|
66567
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66424
66568
|
}, {
|
|
66425
66569
|
type: "Figma";
|
|
66426
|
-
renderMode: "Image" | "HTML";
|
|
66570
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66427
66571
|
}>]>;
|
|
66428
66572
|
type DTOFileSource = z__default.infer<typeof DTOFileSource>;
|
|
66429
66573
|
declare const DTOFile: z__default.ZodObject<{
|
|
@@ -66449,13 +66593,13 @@ declare const DTOFile: z__default.ZodObject<{
|
|
|
66449
66593
|
userId: string;
|
|
66450
66594
|
}>, z__default.ZodObject<{
|
|
66451
66595
|
type: z__default.ZodLiteral<"Figma">;
|
|
66452
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66596
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66453
66597
|
}, "strip", z__default.ZodTypeAny, {
|
|
66454
66598
|
type: "Figma";
|
|
66455
|
-
renderMode: "Image" | "HTML";
|
|
66599
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66456
66600
|
}, {
|
|
66457
66601
|
type: "Figma";
|
|
66458
|
-
renderMode: "Image" | "HTML";
|
|
66602
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66459
66603
|
}>]>>;
|
|
66460
66604
|
}, "strip", z__default.ZodTypeAny, {
|
|
66461
66605
|
id: string;
|
|
@@ -66469,7 +66613,7 @@ declare const DTOFile: z__default.ZodObject<{
|
|
|
66469
66613
|
userId: string;
|
|
66470
66614
|
} | {
|
|
66471
66615
|
type: "Figma";
|
|
66472
|
-
renderMode: "Image" | "HTML";
|
|
66616
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66473
66617
|
} | undefined;
|
|
66474
66618
|
pendingUpload?: boolean | undefined;
|
|
66475
66619
|
}, {
|
|
@@ -66484,7 +66628,7 @@ declare const DTOFile: z__default.ZodObject<{
|
|
|
66484
66628
|
userId: string;
|
|
66485
66629
|
} | {
|
|
66486
66630
|
type: "Figma";
|
|
66487
|
-
renderMode: "Image" | "HTML";
|
|
66631
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66488
66632
|
} | undefined;
|
|
66489
66633
|
pendingUpload?: boolean | undefined;
|
|
66490
66634
|
}>;
|
|
@@ -66512,13 +66656,13 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
|
|
|
66512
66656
|
userId: string;
|
|
66513
66657
|
}>, z__default.ZodObject<{
|
|
66514
66658
|
type: z__default.ZodLiteral<"Figma">;
|
|
66515
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66659
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66516
66660
|
}, "strip", z__default.ZodTypeAny, {
|
|
66517
66661
|
type: "Figma";
|
|
66518
|
-
renderMode: "Image" | "HTML";
|
|
66662
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66519
66663
|
}, {
|
|
66520
66664
|
type: "Figma";
|
|
66521
|
-
renderMode: "Image" | "HTML";
|
|
66665
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66522
66666
|
}>]>>;
|
|
66523
66667
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
66524
66668
|
id: string;
|
|
@@ -66528,7 +66672,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
|
|
|
66528
66672
|
userId: string;
|
|
66529
66673
|
} | {
|
|
66530
66674
|
type: "Figma";
|
|
66531
|
-
renderMode: "Image" | "HTML";
|
|
66675
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66532
66676
|
} | undefined;
|
|
66533
66677
|
}, {
|
|
66534
66678
|
id: string;
|
|
@@ -66538,7 +66682,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
|
|
|
66538
66682
|
userId: string;
|
|
66539
66683
|
} | {
|
|
66540
66684
|
type: "Figma";
|
|
66541
|
-
renderMode: "Image" | "HTML";
|
|
66685
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66542
66686
|
} | undefined;
|
|
66543
66687
|
}>;
|
|
66544
66688
|
type DTOFileReference = z__default.infer<typeof DTOFileReference>;
|
|
@@ -66632,13 +66776,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
|
|
|
66632
66776
|
userId: string;
|
|
66633
66777
|
}>, z__default.ZodObject<{
|
|
66634
66778
|
type: z__default.ZodLiteral<"Figma">;
|
|
66635
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66779
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66636
66780
|
}, "strip", z__default.ZodTypeAny, {
|
|
66637
66781
|
type: "Figma";
|
|
66638
|
-
renderMode: "Image" | "HTML";
|
|
66782
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66639
66783
|
}, {
|
|
66640
66784
|
type: "Figma";
|
|
66641
|
-
renderMode: "Image" | "HTML";
|
|
66785
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66642
66786
|
}>]>>;
|
|
66643
66787
|
}, "strip", z__default.ZodTypeAny, {
|
|
66644
66788
|
id: string;
|
|
@@ -66652,7 +66796,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
|
|
|
66652
66796
|
userId: string;
|
|
66653
66797
|
} | {
|
|
66654
66798
|
type: "Figma";
|
|
66655
|
-
renderMode: "Image" | "HTML";
|
|
66799
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66656
66800
|
} | undefined;
|
|
66657
66801
|
pendingUpload?: boolean | undefined;
|
|
66658
66802
|
}, {
|
|
@@ -66667,7 +66811,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
|
|
|
66667
66811
|
userId: string;
|
|
66668
66812
|
} | {
|
|
66669
66813
|
type: "Figma";
|
|
66670
|
-
renderMode: "Image" | "HTML";
|
|
66814
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66671
66815
|
} | undefined;
|
|
66672
66816
|
pendingUpload?: boolean | undefined;
|
|
66673
66817
|
}>, "many">;
|
|
@@ -66684,7 +66828,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
|
|
|
66684
66828
|
userId: string;
|
|
66685
66829
|
} | {
|
|
66686
66830
|
type: "Figma";
|
|
66687
|
-
renderMode: "Image" | "HTML";
|
|
66831
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66688
66832
|
} | undefined;
|
|
66689
66833
|
pendingUpload?: boolean | undefined;
|
|
66690
66834
|
}[];
|
|
@@ -66701,7 +66845,7 @@ declare const DTOFileListResponse: z__default.ZodObject<{
|
|
|
66701
66845
|
userId: string;
|
|
66702
66846
|
} | {
|
|
66703
66847
|
type: "Figma";
|
|
66704
|
-
renderMode: "Image" | "HTML";
|
|
66848
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66705
66849
|
} | undefined;
|
|
66706
66850
|
pendingUpload?: boolean | undefined;
|
|
66707
66851
|
}[];
|
|
@@ -66731,13 +66875,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
|
|
|
66731
66875
|
userId: string;
|
|
66732
66876
|
}>, z__default.ZodObject<{
|
|
66733
66877
|
type: z__default.ZodLiteral<"Figma">;
|
|
66734
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66878
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66735
66879
|
}, "strip", z__default.ZodTypeAny, {
|
|
66736
66880
|
type: "Figma";
|
|
66737
|
-
renderMode: "Image" | "HTML";
|
|
66881
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66738
66882
|
}, {
|
|
66739
66883
|
type: "Figma";
|
|
66740
|
-
renderMode: "Image" | "HTML";
|
|
66884
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66741
66885
|
}>]>>;
|
|
66742
66886
|
}, "strip", z__default.ZodTypeAny, {
|
|
66743
66887
|
id: string;
|
|
@@ -66751,7 +66895,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
|
|
|
66751
66895
|
userId: string;
|
|
66752
66896
|
} | {
|
|
66753
66897
|
type: "Figma";
|
|
66754
|
-
renderMode: "Image" | "HTML";
|
|
66898
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66755
66899
|
} | undefined;
|
|
66756
66900
|
pendingUpload?: boolean | undefined;
|
|
66757
66901
|
}, {
|
|
@@ -66766,7 +66910,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
|
|
|
66766
66910
|
userId: string;
|
|
66767
66911
|
} | {
|
|
66768
66912
|
type: "Figma";
|
|
66769
|
-
renderMode: "Image" | "HTML";
|
|
66913
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66770
66914
|
} | undefined;
|
|
66771
66915
|
pendingUpload?: boolean | undefined;
|
|
66772
66916
|
}>, "many">;
|
|
@@ -66793,7 +66937,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
|
|
|
66793
66937
|
userId: string;
|
|
66794
66938
|
} | {
|
|
66795
66939
|
type: "Figma";
|
|
66796
|
-
renderMode: "Image" | "HTML";
|
|
66940
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66797
66941
|
} | undefined;
|
|
66798
66942
|
pendingUpload?: boolean | undefined;
|
|
66799
66943
|
}[];
|
|
@@ -66814,7 +66958,7 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
|
|
|
66814
66958
|
userId: string;
|
|
66815
66959
|
} | {
|
|
66816
66960
|
type: "Figma";
|
|
66817
|
-
renderMode: "Image" | "HTML";
|
|
66961
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66818
66962
|
} | undefined;
|
|
66819
66963
|
pendingUpload?: boolean | undefined;
|
|
66820
66964
|
}[];
|
|
@@ -66848,13 +66992,13 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
|
|
|
66848
66992
|
userId: string;
|
|
66849
66993
|
}>, z__default.ZodObject<{
|
|
66850
66994
|
type: z__default.ZodLiteral<"Figma">;
|
|
66851
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
66995
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
66852
66996
|
}, "strip", z__default.ZodTypeAny, {
|
|
66853
66997
|
type: "Figma";
|
|
66854
|
-
renderMode: "Image" | "HTML";
|
|
66998
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66855
66999
|
}, {
|
|
66856
67000
|
type: "Figma";
|
|
66857
|
-
renderMode: "Image" | "HTML";
|
|
67001
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66858
67002
|
}>]>>;
|
|
66859
67003
|
}, "strip", z__default.ZodTypeAny, {
|
|
66860
67004
|
id: string;
|
|
@@ -66868,7 +67012,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
|
|
|
66868
67012
|
userId: string;
|
|
66869
67013
|
} | {
|
|
66870
67014
|
type: "Figma";
|
|
66871
|
-
renderMode: "Image" | "HTML";
|
|
67015
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66872
67016
|
} | undefined;
|
|
66873
67017
|
pendingUpload?: boolean | undefined;
|
|
66874
67018
|
}, {
|
|
@@ -66883,7 +67027,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
|
|
|
66883
67027
|
userId: string;
|
|
66884
67028
|
} | {
|
|
66885
67029
|
type: "Figma";
|
|
66886
|
-
renderMode: "Image" | "HTML";
|
|
67030
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66887
67031
|
} | undefined;
|
|
66888
67032
|
pendingUpload?: boolean | undefined;
|
|
66889
67033
|
}>, "many">;
|
|
@@ -66900,7 +67044,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
|
|
|
66900
67044
|
userId: string;
|
|
66901
67045
|
} | {
|
|
66902
67046
|
type: "Figma";
|
|
66903
|
-
renderMode: "Image" | "HTML";
|
|
67047
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66904
67048
|
} | undefined;
|
|
66905
67049
|
pendingUpload?: boolean | undefined;
|
|
66906
67050
|
}[];
|
|
@@ -66917,7 +67061,7 @@ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
|
|
|
66917
67061
|
userId: string;
|
|
66918
67062
|
} | {
|
|
66919
67063
|
type: "Figma";
|
|
66920
|
-
renderMode: "Image" | "HTML";
|
|
67064
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
66921
67065
|
} | undefined;
|
|
66922
67066
|
pendingUpload?: boolean | undefined;
|
|
66923
67067
|
}[];
|
|
@@ -69344,13 +69488,13 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
69344
69488
|
userId: string;
|
|
69345
69489
|
}>, z__default.ZodObject<{
|
|
69346
69490
|
type: z__default.ZodLiteral<"Figma">;
|
|
69347
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
69491
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
69348
69492
|
}, "strip", z__default.ZodTypeAny, {
|
|
69349
69493
|
type: "Figma";
|
|
69350
|
-
renderMode: "Image" | "HTML";
|
|
69494
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69351
69495
|
}, {
|
|
69352
69496
|
type: "Figma";
|
|
69353
|
-
renderMode: "Image" | "HTML";
|
|
69497
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69354
69498
|
}>]>>;
|
|
69355
69499
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
69356
69500
|
id: string;
|
|
@@ -69360,7 +69504,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
69360
69504
|
userId: string;
|
|
69361
69505
|
} | {
|
|
69362
69506
|
type: "Figma";
|
|
69363
|
-
renderMode: "Image" | "HTML";
|
|
69507
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69364
69508
|
} | undefined;
|
|
69365
69509
|
}, {
|
|
69366
69510
|
id: string;
|
|
@@ -69370,7 +69514,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
69370
69514
|
userId: string;
|
|
69371
69515
|
} | {
|
|
69372
69516
|
type: "Figma";
|
|
69373
|
-
renderMode: "Image" | "HTML";
|
|
69517
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69374
69518
|
} | undefined;
|
|
69375
69519
|
}>>;
|
|
69376
69520
|
createdAt: z__default.ZodString;
|
|
@@ -69407,7 +69551,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
69407
69551
|
userId: string;
|
|
69408
69552
|
} | {
|
|
69409
69553
|
type: "Figma";
|
|
69410
|
-
renderMode: "Image" | "HTML";
|
|
69554
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69411
69555
|
} | undefined;
|
|
69412
69556
|
} | undefined;
|
|
69413
69557
|
artifactsDiff?: {
|
|
@@ -69434,7 +69578,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
69434
69578
|
userId: string;
|
|
69435
69579
|
} | {
|
|
69436
69580
|
type: "Figma";
|
|
69437
|
-
renderMode: "Image" | "HTML";
|
|
69581
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69438
69582
|
} | undefined;
|
|
69439
69583
|
} | undefined;
|
|
69440
69584
|
artifactsDiff?: {
|
|
@@ -69710,13 +69854,13 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
|
|
|
69710
69854
|
userId: string;
|
|
69711
69855
|
}>, z__default.ZodObject<{
|
|
69712
69856
|
type: z__default.ZodLiteral<"Figma">;
|
|
69713
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
69857
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
69714
69858
|
}, "strip", z__default.ZodTypeAny, {
|
|
69715
69859
|
type: "Figma";
|
|
69716
|
-
renderMode: "Image" | "HTML";
|
|
69860
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69717
69861
|
}, {
|
|
69718
69862
|
type: "Figma";
|
|
69719
|
-
renderMode: "Image" | "HTML";
|
|
69863
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69720
69864
|
}>]>>;
|
|
69721
69865
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
69722
69866
|
id: string;
|
|
@@ -69726,7 +69870,7 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
|
|
|
69726
69870
|
userId: string;
|
|
69727
69871
|
} | {
|
|
69728
69872
|
type: "Figma";
|
|
69729
|
-
renderMode: "Image" | "HTML";
|
|
69873
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69730
69874
|
} | undefined;
|
|
69731
69875
|
}, {
|
|
69732
69876
|
id: string;
|
|
@@ -69736,7 +69880,7 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
|
|
|
69736
69880
|
userId: string;
|
|
69737
69881
|
} | {
|
|
69738
69882
|
type: "Figma";
|
|
69739
|
-
renderMode: "Image" | "HTML";
|
|
69883
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
69740
69884
|
} | undefined;
|
|
69741
69885
|
}>>;
|
|
69742
69886
|
createdAt: z__default.ZodString;
|
|
@@ -70498,13 +70642,13 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70498
70642
|
userId: string;
|
|
70499
70643
|
}>, z__default.ZodObject<{
|
|
70500
70644
|
type: z__default.ZodLiteral<"Figma">;
|
|
70501
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
70645
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
70502
70646
|
}, "strip", z__default.ZodTypeAny, {
|
|
70503
70647
|
type: "Figma";
|
|
70504
|
-
renderMode: "Image" | "HTML";
|
|
70648
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70505
70649
|
}, {
|
|
70506
70650
|
type: "Figma";
|
|
70507
|
-
renderMode: "Image" | "HTML";
|
|
70651
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70508
70652
|
}>]>>;
|
|
70509
70653
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
70510
70654
|
id: string;
|
|
@@ -70514,7 +70658,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70514
70658
|
userId: string;
|
|
70515
70659
|
} | {
|
|
70516
70660
|
type: "Figma";
|
|
70517
|
-
renderMode: "Image" | "HTML";
|
|
70661
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70518
70662
|
} | undefined;
|
|
70519
70663
|
}, {
|
|
70520
70664
|
id: string;
|
|
@@ -70524,7 +70668,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70524
70668
|
userId: string;
|
|
70525
70669
|
} | {
|
|
70526
70670
|
type: "Figma";
|
|
70527
|
-
renderMode: "Image" | "HTML";
|
|
70671
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70528
70672
|
} | undefined;
|
|
70529
70673
|
}>>;
|
|
70530
70674
|
createdAt: z__default.ZodString;
|
|
@@ -70561,7 +70705,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70561
70705
|
userId: string;
|
|
70562
70706
|
} | {
|
|
70563
70707
|
type: "Figma";
|
|
70564
|
-
renderMode: "Image" | "HTML";
|
|
70708
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70565
70709
|
} | undefined;
|
|
70566
70710
|
} | undefined;
|
|
70567
70711
|
artifactsDiff?: {
|
|
@@ -70588,7 +70732,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70588
70732
|
userId: string;
|
|
70589
70733
|
} | {
|
|
70590
70734
|
type: "Figma";
|
|
70591
|
-
renderMode: "Image" | "HTML";
|
|
70735
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70592
70736
|
} | undefined;
|
|
70593
70737
|
} | undefined;
|
|
70594
70738
|
artifactsDiff?: {
|
|
@@ -70617,7 +70761,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70617
70761
|
userId: string;
|
|
70618
70762
|
} | {
|
|
70619
70763
|
type: "Figma";
|
|
70620
|
-
renderMode: "Image" | "HTML";
|
|
70764
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70621
70765
|
} | undefined;
|
|
70622
70766
|
} | undefined;
|
|
70623
70767
|
artifactsDiff?: {
|
|
@@ -70646,7 +70790,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
70646
70790
|
userId: string;
|
|
70647
70791
|
} | {
|
|
70648
70792
|
type: "Figma";
|
|
70649
|
-
renderMode: "Image" | "HTML";
|
|
70793
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70650
70794
|
} | undefined;
|
|
70651
70795
|
} | undefined;
|
|
70652
70796
|
artifactsDiff?: {
|
|
@@ -70708,13 +70852,13 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70708
70852
|
userId: string;
|
|
70709
70853
|
}>, z__default.ZodObject<{
|
|
70710
70854
|
type: z__default.ZodLiteral<"Figma">;
|
|
70711
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
70855
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
70712
70856
|
}, "strip", z__default.ZodTypeAny, {
|
|
70713
70857
|
type: "Figma";
|
|
70714
|
-
renderMode: "Image" | "HTML";
|
|
70858
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70715
70859
|
}, {
|
|
70716
70860
|
type: "Figma";
|
|
70717
|
-
renderMode: "Image" | "HTML";
|
|
70861
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70718
70862
|
}>]>>;
|
|
70719
70863
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
70720
70864
|
id: string;
|
|
@@ -70724,7 +70868,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70724
70868
|
userId: string;
|
|
70725
70869
|
} | {
|
|
70726
70870
|
type: "Figma";
|
|
70727
|
-
renderMode: "Image" | "HTML";
|
|
70871
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70728
70872
|
} | undefined;
|
|
70729
70873
|
}, {
|
|
70730
70874
|
id: string;
|
|
@@ -70734,7 +70878,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70734
70878
|
userId: string;
|
|
70735
70879
|
} | {
|
|
70736
70880
|
type: "Figma";
|
|
70737
|
-
renderMode: "Image" | "HTML";
|
|
70881
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70738
70882
|
} | undefined;
|
|
70739
70883
|
}>>;
|
|
70740
70884
|
createdAt: z__default.ZodString;
|
|
@@ -70771,7 +70915,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70771
70915
|
userId: string;
|
|
70772
70916
|
} | {
|
|
70773
70917
|
type: "Figma";
|
|
70774
|
-
renderMode: "Image" | "HTML";
|
|
70918
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70775
70919
|
} | undefined;
|
|
70776
70920
|
} | undefined;
|
|
70777
70921
|
artifactsDiff?: {
|
|
@@ -70798,7 +70942,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70798
70942
|
userId: string;
|
|
70799
70943
|
} | {
|
|
70800
70944
|
type: "Figma";
|
|
70801
|
-
renderMode: "Image" | "HTML";
|
|
70945
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70802
70946
|
} | undefined;
|
|
70803
70947
|
} | undefined;
|
|
70804
70948
|
artifactsDiff?: {
|
|
@@ -70827,7 +70971,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70827
70971
|
userId: string;
|
|
70828
70972
|
} | {
|
|
70829
70973
|
type: "Figma";
|
|
70830
|
-
renderMode: "Image" | "HTML";
|
|
70974
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70831
70975
|
} | undefined;
|
|
70832
70976
|
} | undefined;
|
|
70833
70977
|
artifactsDiff?: {
|
|
@@ -70856,7 +71000,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
70856
71000
|
userId: string;
|
|
70857
71001
|
} | {
|
|
70858
71002
|
type: "Figma";
|
|
70859
|
-
renderMode: "Image" | "HTML";
|
|
71003
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
70860
71004
|
} | undefined;
|
|
70861
71005
|
} | undefined;
|
|
70862
71006
|
artifactsDiff?: {
|
|
@@ -72420,7 +72564,6 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
|
|
|
72420
72564
|
id: string;
|
|
72421
72565
|
createdAt: Date;
|
|
72422
72566
|
type: "Note" | "Action" | "Steps";
|
|
72423
|
-
text: string;
|
|
72424
72567
|
projectIterationId: string;
|
|
72425
72568
|
participantId: string;
|
|
72426
72569
|
participant: {
|
|
@@ -72454,6 +72597,7 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
|
|
|
72454
72597
|
} | undefined;
|
|
72455
72598
|
agentId?: string | undefined;
|
|
72456
72599
|
};
|
|
72600
|
+
text: string;
|
|
72457
72601
|
steps?: {
|
|
72458
72602
|
status: "error" | "pending" | "started" | "completed";
|
|
72459
72603
|
name: string;
|
|
@@ -72463,7 +72607,6 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
|
|
|
72463
72607
|
id: string;
|
|
72464
72608
|
createdAt: Date;
|
|
72465
72609
|
type: "Note" | "Action" | "Steps";
|
|
72466
|
-
text: string;
|
|
72467
72610
|
projectIterationId: string;
|
|
72468
72611
|
participantId: string;
|
|
72469
72612
|
participant: {
|
|
@@ -72497,6 +72640,7 @@ declare const DTOForgeIterationMessage: z$1.ZodObject<Omit<{
|
|
|
72497
72640
|
} | undefined;
|
|
72498
72641
|
agentId?: string | undefined;
|
|
72499
72642
|
};
|
|
72643
|
+
text: string;
|
|
72500
72644
|
steps?: {
|
|
72501
72645
|
status: "error" | "pending" | "started" | "completed";
|
|
72502
72646
|
name: string;
|
|
@@ -73484,7 +73628,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73484
73628
|
id: string;
|
|
73485
73629
|
createdAt: Date;
|
|
73486
73630
|
type: "Note" | "Action" | "Steps";
|
|
73487
|
-
text: string;
|
|
73488
73631
|
projectIterationId: string;
|
|
73489
73632
|
participantId: string;
|
|
73490
73633
|
participant: {
|
|
@@ -73518,6 +73661,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73518
73661
|
} | undefined;
|
|
73519
73662
|
agentId?: string | undefined;
|
|
73520
73663
|
};
|
|
73664
|
+
text: string;
|
|
73521
73665
|
steps?: {
|
|
73522
73666
|
status: "error" | "pending" | "started" | "completed";
|
|
73523
73667
|
name: string;
|
|
@@ -73527,7 +73671,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73527
73671
|
id: string;
|
|
73528
73672
|
createdAt: Date;
|
|
73529
73673
|
type: "Note" | "Action" | "Steps";
|
|
73530
|
-
text: string;
|
|
73531
73674
|
projectIterationId: string;
|
|
73532
73675
|
participantId: string;
|
|
73533
73676
|
participant: {
|
|
@@ -73561,6 +73704,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73561
73704
|
} | undefined;
|
|
73562
73705
|
agentId?: string | undefined;
|
|
73563
73706
|
};
|
|
73707
|
+
text: string;
|
|
73564
73708
|
steps?: {
|
|
73565
73709
|
status: "error" | "pending" | "started" | "completed";
|
|
73566
73710
|
name: string;
|
|
@@ -73572,7 +73716,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73572
73716
|
id: string;
|
|
73573
73717
|
createdAt: Date;
|
|
73574
73718
|
type: "Note" | "Action" | "Steps";
|
|
73575
|
-
text: string;
|
|
73576
73719
|
projectIterationId: string;
|
|
73577
73720
|
participantId: string;
|
|
73578
73721
|
participant: {
|
|
@@ -73606,6 +73749,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73606
73749
|
} | undefined;
|
|
73607
73750
|
agentId?: string | undefined;
|
|
73608
73751
|
};
|
|
73752
|
+
text: string;
|
|
73609
73753
|
steps?: {
|
|
73610
73754
|
status: "error" | "pending" | "started" | "completed";
|
|
73611
73755
|
name: string;
|
|
@@ -73617,7 +73761,6 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73617
73761
|
id: string;
|
|
73618
73762
|
createdAt: Date;
|
|
73619
73763
|
type: "Note" | "Action" | "Steps";
|
|
73620
|
-
text: string;
|
|
73621
73764
|
projectIterationId: string;
|
|
73622
73765
|
participantId: string;
|
|
73623
73766
|
participant: {
|
|
@@ -73651,6 +73794,7 @@ declare const DTOGetForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
73651
73794
|
} | undefined;
|
|
73652
73795
|
agentId?: string | undefined;
|
|
73653
73796
|
};
|
|
73797
|
+
text: string;
|
|
73654
73798
|
steps?: {
|
|
73655
73799
|
status: "error" | "pending" | "started" | "completed";
|
|
73656
73800
|
name: string;
|
|
@@ -74639,7 +74783,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74639
74783
|
id: string;
|
|
74640
74784
|
createdAt: Date;
|
|
74641
74785
|
type: "Note" | "Action" | "Steps";
|
|
74642
|
-
text: string;
|
|
74643
74786
|
projectIterationId: string;
|
|
74644
74787
|
participantId: string;
|
|
74645
74788
|
participant: {
|
|
@@ -74673,6 +74816,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74673
74816
|
} | undefined;
|
|
74674
74817
|
agentId?: string | undefined;
|
|
74675
74818
|
};
|
|
74819
|
+
text: string;
|
|
74676
74820
|
steps?: {
|
|
74677
74821
|
status: "error" | "pending" | "started" | "completed";
|
|
74678
74822
|
name: string;
|
|
@@ -74682,7 +74826,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74682
74826
|
id: string;
|
|
74683
74827
|
createdAt: Date;
|
|
74684
74828
|
type: "Note" | "Action" | "Steps";
|
|
74685
|
-
text: string;
|
|
74686
74829
|
projectIterationId: string;
|
|
74687
74830
|
participantId: string;
|
|
74688
74831
|
participant: {
|
|
@@ -74716,6 +74859,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74716
74859
|
} | undefined;
|
|
74717
74860
|
agentId?: string | undefined;
|
|
74718
74861
|
};
|
|
74862
|
+
text: string;
|
|
74719
74863
|
steps?: {
|
|
74720
74864
|
status: "error" | "pending" | "started" | "completed";
|
|
74721
74865
|
name: string;
|
|
@@ -74727,7 +74871,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74727
74871
|
id: string;
|
|
74728
74872
|
createdAt: Date;
|
|
74729
74873
|
type: "Note" | "Action" | "Steps";
|
|
74730
|
-
text: string;
|
|
74731
74874
|
projectIterationId: string;
|
|
74732
74875
|
participantId: string;
|
|
74733
74876
|
participant: {
|
|
@@ -74761,6 +74904,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74761
74904
|
} | undefined;
|
|
74762
74905
|
agentId?: string | undefined;
|
|
74763
74906
|
};
|
|
74907
|
+
text: string;
|
|
74764
74908
|
steps?: {
|
|
74765
74909
|
status: "error" | "pending" | "started" | "completed";
|
|
74766
74910
|
name: string;
|
|
@@ -74772,7 +74916,6 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74772
74916
|
id: string;
|
|
74773
74917
|
createdAt: Date;
|
|
74774
74918
|
type: "Note" | "Action" | "Steps";
|
|
74775
|
-
text: string;
|
|
74776
74919
|
projectIterationId: string;
|
|
74777
74920
|
participantId: string;
|
|
74778
74921
|
participant: {
|
|
@@ -74806,6 +74949,7 @@ declare const DTOForgeIterationMessagesListResponse: z$1.ZodObject<{
|
|
|
74806
74949
|
} | undefined;
|
|
74807
74950
|
agentId?: string | undefined;
|
|
74808
74951
|
};
|
|
74952
|
+
text: string;
|
|
74809
74953
|
steps?: {
|
|
74810
74954
|
status: "error" | "pending" | "started" | "completed";
|
|
74811
74955
|
name: string;
|
|
@@ -75793,8 +75937,8 @@ declare const DTOCreateForgeIterationMessage: z$1.ZodObject<Omit<Omit<{
|
|
|
75793
75937
|
id: string;
|
|
75794
75938
|
createdAt: Date;
|
|
75795
75939
|
type: "Note" | "Action" | "Steps";
|
|
75796
|
-
text: string;
|
|
75797
75940
|
participantId: string;
|
|
75941
|
+
text: string;
|
|
75798
75942
|
steps?: {
|
|
75799
75943
|
status: "error" | "pending" | "started" | "completed";
|
|
75800
75944
|
name: string;
|
|
@@ -75804,8 +75948,8 @@ declare const DTOCreateForgeIterationMessage: z$1.ZodObject<Omit<Omit<{
|
|
|
75804
75948
|
id: string;
|
|
75805
75949
|
createdAt: Date;
|
|
75806
75950
|
type: "Note" | "Action" | "Steps";
|
|
75807
|
-
text: string;
|
|
75808
75951
|
participantId: string;
|
|
75952
|
+
text: string;
|
|
75809
75953
|
steps?: {
|
|
75810
75954
|
status: "error" | "pending" | "started" | "completed";
|
|
75811
75955
|
name: string;
|
|
@@ -75816,7 +75960,6 @@ type DTOCreateForgeIterationMessage = z$1.infer<typeof DTOCreateForgeIterationMe
|
|
|
75816
75960
|
declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
|
|
75817
75961
|
createdAt: z$1.ZodDate;
|
|
75818
75962
|
type: z$1.ZodEnum<["Note", "Action", "Steps"]>;
|
|
75819
|
-
text: z$1.ZodString;
|
|
75820
75963
|
participantId: z$1.ZodString;
|
|
75821
75964
|
steps: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
75822
75965
|
name: z$1.ZodString;
|
|
@@ -75831,14 +75974,15 @@ declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
|
|
|
75831
75974
|
name: string;
|
|
75832
75975
|
text: string;
|
|
75833
75976
|
}>, "many">>;
|
|
75977
|
+
text: z$1.ZodString;
|
|
75834
75978
|
} & {
|
|
75835
75979
|
id: z$1.ZodString;
|
|
75836
75980
|
}, "strip", z$1.ZodTypeAny, {
|
|
75837
75981
|
id: string;
|
|
75838
75982
|
createdAt: Date;
|
|
75839
75983
|
type: "Note" | "Action" | "Steps";
|
|
75840
|
-
text: string;
|
|
75841
75984
|
participantId: string;
|
|
75985
|
+
text: string;
|
|
75842
75986
|
steps?: {
|
|
75843
75987
|
status: "error" | "pending" | "started" | "completed";
|
|
75844
75988
|
name: string;
|
|
@@ -75848,8 +75992,8 @@ declare const DTOUpdateForgeIterationMessage: z$1.ZodObject<{
|
|
|
75848
75992
|
id: string;
|
|
75849
75993
|
createdAt: Date;
|
|
75850
75994
|
type: "Note" | "Action" | "Steps";
|
|
75851
|
-
text: string;
|
|
75852
75995
|
participantId: string;
|
|
75996
|
+
text: string;
|
|
75853
75997
|
steps?: {
|
|
75854
75998
|
status: "error" | "pending" | "started" | "completed";
|
|
75855
75999
|
name: string;
|
|
@@ -76837,7 +76981,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76837
76981
|
id: string;
|
|
76838
76982
|
createdAt: Date;
|
|
76839
76983
|
type: "Note" | "Action" | "Steps";
|
|
76840
|
-
text: string;
|
|
76841
76984
|
projectIterationId: string;
|
|
76842
76985
|
participantId: string;
|
|
76843
76986
|
participant: {
|
|
@@ -76871,6 +77014,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76871
77014
|
} | undefined;
|
|
76872
77015
|
agentId?: string | undefined;
|
|
76873
77016
|
};
|
|
77017
|
+
text: string;
|
|
76874
77018
|
steps?: {
|
|
76875
77019
|
status: "error" | "pending" | "started" | "completed";
|
|
76876
77020
|
name: string;
|
|
@@ -76880,7 +77024,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76880
77024
|
id: string;
|
|
76881
77025
|
createdAt: Date;
|
|
76882
77026
|
type: "Note" | "Action" | "Steps";
|
|
76883
|
-
text: string;
|
|
76884
77027
|
projectIterationId: string;
|
|
76885
77028
|
participantId: string;
|
|
76886
77029
|
participant: {
|
|
@@ -76914,6 +77057,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76914
77057
|
} | undefined;
|
|
76915
77058
|
agentId?: string | undefined;
|
|
76916
77059
|
};
|
|
77060
|
+
text: string;
|
|
76917
77061
|
steps?: {
|
|
76918
77062
|
status: "error" | "pending" | "started" | "completed";
|
|
76919
77063
|
name: string;
|
|
@@ -76925,7 +77069,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76925
77069
|
id: string;
|
|
76926
77070
|
createdAt: Date;
|
|
76927
77071
|
type: "Note" | "Action" | "Steps";
|
|
76928
|
-
text: string;
|
|
76929
77072
|
projectIterationId: string;
|
|
76930
77073
|
participantId: string;
|
|
76931
77074
|
participant: {
|
|
@@ -76959,6 +77102,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76959
77102
|
} | undefined;
|
|
76960
77103
|
agentId?: string | undefined;
|
|
76961
77104
|
};
|
|
77105
|
+
text: string;
|
|
76962
77106
|
steps?: {
|
|
76963
77107
|
status: "error" | "pending" | "started" | "completed";
|
|
76964
77108
|
name: string;
|
|
@@ -76970,7 +77114,6 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
76970
77114
|
id: string;
|
|
76971
77115
|
createdAt: Date;
|
|
76972
77116
|
type: "Note" | "Action" | "Steps";
|
|
76973
|
-
text: string;
|
|
76974
77117
|
projectIterationId: string;
|
|
76975
77118
|
participantId: string;
|
|
76976
77119
|
participant: {
|
|
@@ -77004,6 +77147,7 @@ declare const DTOCreateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
77004
77147
|
} | undefined;
|
|
77005
77148
|
agentId?: string | undefined;
|
|
77006
77149
|
};
|
|
77150
|
+
text: string;
|
|
77007
77151
|
steps?: {
|
|
77008
77152
|
status: "error" | "pending" | "started" | "completed";
|
|
77009
77153
|
name: string;
|
|
@@ -77992,7 +78136,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
77992
78136
|
id: string;
|
|
77993
78137
|
createdAt: Date;
|
|
77994
78138
|
type: "Note" | "Action" | "Steps";
|
|
77995
|
-
text: string;
|
|
77996
78139
|
projectIterationId: string;
|
|
77997
78140
|
participantId: string;
|
|
77998
78141
|
participant: {
|
|
@@ -78026,6 +78169,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78026
78169
|
} | undefined;
|
|
78027
78170
|
agentId?: string | undefined;
|
|
78028
78171
|
};
|
|
78172
|
+
text: string;
|
|
78029
78173
|
steps?: {
|
|
78030
78174
|
status: "error" | "pending" | "started" | "completed";
|
|
78031
78175
|
name: string;
|
|
@@ -78035,7 +78179,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78035
78179
|
id: string;
|
|
78036
78180
|
createdAt: Date;
|
|
78037
78181
|
type: "Note" | "Action" | "Steps";
|
|
78038
|
-
text: string;
|
|
78039
78182
|
projectIterationId: string;
|
|
78040
78183
|
participantId: string;
|
|
78041
78184
|
participant: {
|
|
@@ -78069,6 +78212,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78069
78212
|
} | undefined;
|
|
78070
78213
|
agentId?: string | undefined;
|
|
78071
78214
|
};
|
|
78215
|
+
text: string;
|
|
78072
78216
|
steps?: {
|
|
78073
78217
|
status: "error" | "pending" | "started" | "completed";
|
|
78074
78218
|
name: string;
|
|
@@ -78080,7 +78224,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78080
78224
|
id: string;
|
|
78081
78225
|
createdAt: Date;
|
|
78082
78226
|
type: "Note" | "Action" | "Steps";
|
|
78083
|
-
text: string;
|
|
78084
78227
|
projectIterationId: string;
|
|
78085
78228
|
participantId: string;
|
|
78086
78229
|
participant: {
|
|
@@ -78114,6 +78257,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78114
78257
|
} | undefined;
|
|
78115
78258
|
agentId?: string | undefined;
|
|
78116
78259
|
};
|
|
78260
|
+
text: string;
|
|
78117
78261
|
steps?: {
|
|
78118
78262
|
status: "error" | "pending" | "started" | "completed";
|
|
78119
78263
|
name: string;
|
|
@@ -78125,7 +78269,6 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78125
78269
|
id: string;
|
|
78126
78270
|
createdAt: Date;
|
|
78127
78271
|
type: "Note" | "Action" | "Steps";
|
|
78128
|
-
text: string;
|
|
78129
78272
|
projectIterationId: string;
|
|
78130
78273
|
participantId: string;
|
|
78131
78274
|
participant: {
|
|
@@ -78159,6 +78302,7 @@ declare const DTOUpdateForgeIterationMessageResponse: z$1.ZodObject<{
|
|
|
78159
78302
|
} | undefined;
|
|
78160
78303
|
agentId?: string | undefined;
|
|
78161
78304
|
};
|
|
78305
|
+
text: string;
|
|
78162
78306
|
steps?: {
|
|
78163
78307
|
status: "error" | "pending" | "started" | "completed";
|
|
78164
78308
|
name: string;
|
|
@@ -81379,13 +81523,13 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81379
81523
|
userId: string;
|
|
81380
81524
|
}>, z__default.ZodObject<{
|
|
81381
81525
|
type: z__default.ZodLiteral<"Figma">;
|
|
81382
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
81526
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
81383
81527
|
}, "strip", z__default.ZodTypeAny, {
|
|
81384
81528
|
type: "Figma";
|
|
81385
|
-
renderMode: "Image" | "HTML";
|
|
81529
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81386
81530
|
}, {
|
|
81387
81531
|
type: "Figma";
|
|
81388
|
-
renderMode: "Image" | "HTML";
|
|
81532
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81389
81533
|
}>]>>;
|
|
81390
81534
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
81391
81535
|
id: string;
|
|
@@ -81395,7 +81539,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81395
81539
|
userId: string;
|
|
81396
81540
|
} | {
|
|
81397
81541
|
type: "Figma";
|
|
81398
|
-
renderMode: "Image" | "HTML";
|
|
81542
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81399
81543
|
} | undefined;
|
|
81400
81544
|
}, {
|
|
81401
81545
|
id: string;
|
|
@@ -81405,7 +81549,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81405
81549
|
userId: string;
|
|
81406
81550
|
} | {
|
|
81407
81551
|
type: "Figma";
|
|
81408
|
-
renderMode: "Image" | "HTML";
|
|
81552
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81409
81553
|
} | undefined;
|
|
81410
81554
|
}>, "many">>;
|
|
81411
81555
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -81417,7 +81561,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81417
81561
|
userId: string;
|
|
81418
81562
|
} | {
|
|
81419
81563
|
type: "Figma";
|
|
81420
|
-
renderMode: "Image" | "HTML";
|
|
81564
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81421
81565
|
} | undefined;
|
|
81422
81566
|
}[] | undefined;
|
|
81423
81567
|
iterationId?: string | undefined;
|
|
@@ -81430,7 +81574,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81430
81574
|
userId: string;
|
|
81431
81575
|
} | {
|
|
81432
81576
|
type: "Figma";
|
|
81433
|
-
renderMode: "Image" | "HTML";
|
|
81577
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81434
81578
|
} | undefined;
|
|
81435
81579
|
}[] | undefined;
|
|
81436
81580
|
iterationId?: string | undefined;
|
|
@@ -81704,13 +81848,13 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81704
81848
|
userId: string;
|
|
81705
81849
|
}>, z__default.ZodObject<{
|
|
81706
81850
|
type: z__default.ZodLiteral<"Figma">;
|
|
81707
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
81851
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
81708
81852
|
}, "strip", z__default.ZodTypeAny, {
|
|
81709
81853
|
type: "Figma";
|
|
81710
|
-
renderMode: "Image" | "HTML";
|
|
81854
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81711
81855
|
}, {
|
|
81712
81856
|
type: "Figma";
|
|
81713
|
-
renderMode: "Image" | "HTML";
|
|
81857
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81714
81858
|
}>]>>;
|
|
81715
81859
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
81716
81860
|
id: string;
|
|
@@ -81720,7 +81864,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81720
81864
|
userId: string;
|
|
81721
81865
|
} | {
|
|
81722
81866
|
type: "Figma";
|
|
81723
|
-
renderMode: "Image" | "HTML";
|
|
81867
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81724
81868
|
} | undefined;
|
|
81725
81869
|
}, {
|
|
81726
81870
|
id: string;
|
|
@@ -81730,7 +81874,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81730
81874
|
userId: string;
|
|
81731
81875
|
} | {
|
|
81732
81876
|
type: "Figma";
|
|
81733
|
-
renderMode: "Image" | "HTML";
|
|
81877
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81734
81878
|
} | undefined;
|
|
81735
81879
|
}>, "many">>;
|
|
81736
81880
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -81742,7 +81886,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81742
81886
|
userId: string;
|
|
81743
81887
|
} | {
|
|
81744
81888
|
type: "Figma";
|
|
81745
|
-
renderMode: "Image" | "HTML";
|
|
81889
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81746
81890
|
} | undefined;
|
|
81747
81891
|
}[] | undefined;
|
|
81748
81892
|
iterationId?: string | undefined;
|
|
@@ -81755,7 +81899,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81755
81899
|
userId: string;
|
|
81756
81900
|
} | {
|
|
81757
81901
|
type: "Figma";
|
|
81758
|
-
renderMode: "Image" | "HTML";
|
|
81902
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
81759
81903
|
} | undefined;
|
|
81760
81904
|
}[] | undefined;
|
|
81761
81905
|
iterationId?: string | undefined;
|
|
@@ -82149,13 +82293,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82149
82293
|
userId: string;
|
|
82150
82294
|
}>, z__default.ZodObject<{
|
|
82151
82295
|
type: z__default.ZodLiteral<"Figma">;
|
|
82152
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
82296
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
82153
82297
|
}, "strip", z__default.ZodTypeAny, {
|
|
82154
82298
|
type: "Figma";
|
|
82155
|
-
renderMode: "Image" | "HTML";
|
|
82299
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82156
82300
|
}, {
|
|
82157
82301
|
type: "Figma";
|
|
82158
|
-
renderMode: "Image" | "HTML";
|
|
82302
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82159
82303
|
}>]>>;
|
|
82160
82304
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
82161
82305
|
id: string;
|
|
@@ -82165,7 +82309,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82165
82309
|
userId: string;
|
|
82166
82310
|
} | {
|
|
82167
82311
|
type: "Figma";
|
|
82168
|
-
renderMode: "Image" | "HTML";
|
|
82312
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82169
82313
|
} | undefined;
|
|
82170
82314
|
}, {
|
|
82171
82315
|
id: string;
|
|
@@ -82175,7 +82319,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82175
82319
|
userId: string;
|
|
82176
82320
|
} | {
|
|
82177
82321
|
type: "Figma";
|
|
82178
|
-
renderMode: "Image" | "HTML";
|
|
82322
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82179
82323
|
} | undefined;
|
|
82180
82324
|
}>, "many">>;
|
|
82181
82325
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -82187,7 +82331,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82187
82331
|
userId: string;
|
|
82188
82332
|
} | {
|
|
82189
82333
|
type: "Figma";
|
|
82190
|
-
renderMode: "Image" | "HTML";
|
|
82334
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82191
82335
|
} | undefined;
|
|
82192
82336
|
}[] | undefined;
|
|
82193
82337
|
iterationId?: string | undefined;
|
|
@@ -82200,7 +82344,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82200
82344
|
userId: string;
|
|
82201
82345
|
} | {
|
|
82202
82346
|
type: "Figma";
|
|
82203
|
-
renderMode: "Image" | "HTML";
|
|
82347
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82204
82348
|
} | undefined;
|
|
82205
82349
|
}[] | undefined;
|
|
82206
82350
|
iterationId?: string | undefined;
|
|
@@ -82466,13 +82610,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82466
82610
|
userId: string;
|
|
82467
82611
|
}>, z__default.ZodObject<{
|
|
82468
82612
|
type: z__default.ZodLiteral<"Figma">;
|
|
82469
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
82613
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
82470
82614
|
}, "strip", z__default.ZodTypeAny, {
|
|
82471
82615
|
type: "Figma";
|
|
82472
|
-
renderMode: "Image" | "HTML";
|
|
82616
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82473
82617
|
}, {
|
|
82474
82618
|
type: "Figma";
|
|
82475
|
-
renderMode: "Image" | "HTML";
|
|
82619
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82476
82620
|
}>]>>;
|
|
82477
82621
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
82478
82622
|
id: string;
|
|
@@ -82482,7 +82626,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82482
82626
|
userId: string;
|
|
82483
82627
|
} | {
|
|
82484
82628
|
type: "Figma";
|
|
82485
|
-
renderMode: "Image" | "HTML";
|
|
82629
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82486
82630
|
} | undefined;
|
|
82487
82631
|
}, {
|
|
82488
82632
|
id: string;
|
|
@@ -82492,7 +82636,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82492
82636
|
userId: string;
|
|
82493
82637
|
} | {
|
|
82494
82638
|
type: "Figma";
|
|
82495
|
-
renderMode: "Image" | "HTML";
|
|
82639
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82496
82640
|
} | undefined;
|
|
82497
82641
|
}>, "many">>;
|
|
82498
82642
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -82504,7 +82648,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82504
82648
|
userId: string;
|
|
82505
82649
|
} | {
|
|
82506
82650
|
type: "Figma";
|
|
82507
|
-
renderMode: "Image" | "HTML";
|
|
82651
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82508
82652
|
} | undefined;
|
|
82509
82653
|
}[] | undefined;
|
|
82510
82654
|
iterationId?: string | undefined;
|
|
@@ -82517,7 +82661,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82517
82661
|
userId: string;
|
|
82518
82662
|
} | {
|
|
82519
82663
|
type: "Figma";
|
|
82520
|
-
renderMode: "Image" | "HTML";
|
|
82664
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82521
82665
|
} | undefined;
|
|
82522
82666
|
}[] | undefined;
|
|
82523
82667
|
iterationId?: string | undefined;
|
|
@@ -82981,13 +83125,13 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
82981
83125
|
userId: string;
|
|
82982
83126
|
}>, z$1.ZodObject<{
|
|
82983
83127
|
type: z$1.ZodLiteral<"Figma">;
|
|
82984
|
-
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
83128
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
82985
83129
|
}, "strip", z$1.ZodTypeAny, {
|
|
82986
83130
|
type: "Figma";
|
|
82987
|
-
renderMode: "Image" | "HTML";
|
|
83131
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82988
83132
|
}, {
|
|
82989
83133
|
type: "Figma";
|
|
82990
|
-
renderMode: "Image" | "HTML";
|
|
83134
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
82991
83135
|
}>]>>;
|
|
82992
83136
|
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
82993
83137
|
id: string;
|
|
@@ -82997,7 +83141,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
82997
83141
|
userId: string;
|
|
82998
83142
|
} | {
|
|
82999
83143
|
type: "Figma";
|
|
83000
|
-
renderMode: "Image" | "HTML";
|
|
83144
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
83001
83145
|
} | undefined;
|
|
83002
83146
|
}, {
|
|
83003
83147
|
id: string;
|
|
@@ -83007,7 +83151,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83007
83151
|
userId: string;
|
|
83008
83152
|
} | {
|
|
83009
83153
|
type: "Figma";
|
|
83010
|
-
renderMode: "Image" | "HTML";
|
|
83154
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
83011
83155
|
} | undefined;
|
|
83012
83156
|
}>, "many">>;
|
|
83013
83157
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -83019,7 +83163,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83019
83163
|
userId: string;
|
|
83020
83164
|
} | {
|
|
83021
83165
|
type: "Figma";
|
|
83022
|
-
renderMode: "Image" | "HTML";
|
|
83166
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
83023
83167
|
} | undefined;
|
|
83024
83168
|
}[] | undefined;
|
|
83025
83169
|
iterationId?: string | undefined;
|
|
@@ -83032,7 +83176,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83032
83176
|
userId: string;
|
|
83033
83177
|
} | {
|
|
83034
83178
|
type: "Figma";
|
|
83035
|
-
renderMode: "Image" | "HTML";
|
|
83179
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
83036
83180
|
} | undefined;
|
|
83037
83181
|
}[] | undefined;
|
|
83038
83182
|
iterationId?: string | undefined;
|
|
@@ -138300,13 +138444,13 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138300
138444
|
userId: string;
|
|
138301
138445
|
}>, z__default.ZodObject<{
|
|
138302
138446
|
type: z__default.ZodLiteral<"Figma">;
|
|
138303
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
138447
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
138304
138448
|
}, "strip", z__default.ZodTypeAny, {
|
|
138305
138449
|
type: "Figma";
|
|
138306
|
-
renderMode: "Image" | "HTML";
|
|
138450
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138307
138451
|
}, {
|
|
138308
138452
|
type: "Figma";
|
|
138309
|
-
renderMode: "Image" | "HTML";
|
|
138453
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138310
138454
|
}>]>>;
|
|
138311
138455
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
138312
138456
|
id: string;
|
|
@@ -138316,7 +138460,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138316
138460
|
userId: string;
|
|
138317
138461
|
} | {
|
|
138318
138462
|
type: "Figma";
|
|
138319
|
-
renderMode: "Image" | "HTML";
|
|
138463
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138320
138464
|
} | undefined;
|
|
138321
138465
|
}, {
|
|
138322
138466
|
id: string;
|
|
@@ -138326,7 +138470,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138326
138470
|
userId: string;
|
|
138327
138471
|
} | {
|
|
138328
138472
|
type: "Figma";
|
|
138329
|
-
renderMode: "Image" | "HTML";
|
|
138473
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138330
138474
|
} | undefined;
|
|
138331
138475
|
}>, "many">>;
|
|
138332
138476
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -138338,7 +138482,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138338
138482
|
userId: string;
|
|
138339
138483
|
} | {
|
|
138340
138484
|
type: "Figma";
|
|
138341
|
-
renderMode: "Image" | "HTML";
|
|
138485
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138342
138486
|
} | undefined;
|
|
138343
138487
|
}[] | undefined;
|
|
138344
138488
|
iterationId?: string | undefined;
|
|
@@ -138351,7 +138495,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138351
138495
|
userId: string;
|
|
138352
138496
|
} | {
|
|
138353
138497
|
type: "Figma";
|
|
138354
|
-
renderMode: "Image" | "HTML";
|
|
138498
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
138355
138499
|
} | undefined;
|
|
138356
138500
|
}[] | undefined;
|
|
138357
138501
|
iterationId?: string | undefined;
|
|
@@ -141056,7 +141200,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141056
141200
|
id: string;
|
|
141057
141201
|
createdAt: Date;
|
|
141058
141202
|
type: "Note" | "Action" | "Steps";
|
|
141059
|
-
text: string;
|
|
141060
141203
|
projectIterationId: string;
|
|
141061
141204
|
participantId: string;
|
|
141062
141205
|
participant: {
|
|
@@ -141090,6 +141233,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141090
141233
|
} | undefined;
|
|
141091
141234
|
agentId?: string | undefined;
|
|
141092
141235
|
};
|
|
141236
|
+
text: string;
|
|
141093
141237
|
steps?: {
|
|
141094
141238
|
status: "error" | "pending" | "started" | "completed";
|
|
141095
141239
|
name: string;
|
|
@@ -141099,7 +141243,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141099
141243
|
id: string;
|
|
141100
141244
|
createdAt: Date;
|
|
141101
141245
|
type: "Note" | "Action" | "Steps";
|
|
141102
|
-
text: string;
|
|
141103
141246
|
projectIterationId: string;
|
|
141104
141247
|
participantId: string;
|
|
141105
141248
|
participant: {
|
|
@@ -141133,6 +141276,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141133
141276
|
} | undefined;
|
|
141134
141277
|
agentId?: string | undefined;
|
|
141135
141278
|
};
|
|
141279
|
+
text: string;
|
|
141136
141280
|
steps?: {
|
|
141137
141281
|
status: "error" | "pending" | "started" | "completed";
|
|
141138
141282
|
name: string;
|
|
@@ -141195,7 +141339,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141195
141339
|
id: string;
|
|
141196
141340
|
createdAt: Date;
|
|
141197
141341
|
type: "Note" | "Action" | "Steps";
|
|
141198
|
-
text: string;
|
|
141199
141342
|
projectIterationId: string;
|
|
141200
141343
|
participantId: string;
|
|
141201
141344
|
participant: {
|
|
@@ -141229,6 +141372,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141229
141372
|
} | undefined;
|
|
141230
141373
|
agentId?: string | undefined;
|
|
141231
141374
|
};
|
|
141375
|
+
text: string;
|
|
141232
141376
|
steps?: {
|
|
141233
141377
|
status: "error" | "pending" | "started" | "completed";
|
|
141234
141378
|
name: string;
|
|
@@ -141290,7 +141434,6 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141290
141434
|
id: string;
|
|
141291
141435
|
createdAt: Date;
|
|
141292
141436
|
type: "Note" | "Action" | "Steps";
|
|
141293
|
-
text: string;
|
|
141294
141437
|
projectIterationId: string;
|
|
141295
141438
|
participantId: string;
|
|
141296
141439
|
participant: {
|
|
@@ -141324,6 +141467,7 @@ declare const DTOForgeProjectIteration: z$1.ZodObject<Omit<{
|
|
|
141324
141467
|
} | undefined;
|
|
141325
141468
|
agentId?: string | undefined;
|
|
141326
141469
|
};
|
|
141470
|
+
text: string;
|
|
141327
141471
|
steps?: {
|
|
141328
141472
|
status: "error" | "pending" | "started" | "completed";
|
|
141329
141473
|
name: string;
|
|
@@ -143258,7 +143402,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143258
143402
|
id: string;
|
|
143259
143403
|
createdAt: Date;
|
|
143260
143404
|
type: "Note" | "Action" | "Steps";
|
|
143261
|
-
text: string;
|
|
143262
143405
|
projectIterationId: string;
|
|
143263
143406
|
participantId: string;
|
|
143264
143407
|
participant: {
|
|
@@ -143292,6 +143435,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143292
143435
|
} | undefined;
|
|
143293
143436
|
agentId?: string | undefined;
|
|
143294
143437
|
};
|
|
143438
|
+
text: string;
|
|
143295
143439
|
steps?: {
|
|
143296
143440
|
status: "error" | "pending" | "started" | "completed";
|
|
143297
143441
|
name: string;
|
|
@@ -143301,7 +143445,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143301
143445
|
id: string;
|
|
143302
143446
|
createdAt: Date;
|
|
143303
143447
|
type: "Note" | "Action" | "Steps";
|
|
143304
|
-
text: string;
|
|
143305
143448
|
projectIterationId: string;
|
|
143306
143449
|
participantId: string;
|
|
143307
143450
|
participant: {
|
|
@@ -143335,6 +143478,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143335
143478
|
} | undefined;
|
|
143336
143479
|
agentId?: string | undefined;
|
|
143337
143480
|
};
|
|
143481
|
+
text: string;
|
|
143338
143482
|
steps?: {
|
|
143339
143483
|
status: "error" | "pending" | "started" | "completed";
|
|
143340
143484
|
name: string;
|
|
@@ -143397,7 +143541,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143397
143541
|
id: string;
|
|
143398
143542
|
createdAt: Date;
|
|
143399
143543
|
type: "Note" | "Action" | "Steps";
|
|
143400
|
-
text: string;
|
|
143401
143544
|
projectIterationId: string;
|
|
143402
143545
|
participantId: string;
|
|
143403
143546
|
participant: {
|
|
@@ -143431,6 +143574,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143431
143574
|
} | undefined;
|
|
143432
143575
|
agentId?: string | undefined;
|
|
143433
143576
|
};
|
|
143577
|
+
text: string;
|
|
143434
143578
|
steps?: {
|
|
143435
143579
|
status: "error" | "pending" | "started" | "completed";
|
|
143436
143580
|
name: string;
|
|
@@ -143492,7 +143636,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143492
143636
|
id: string;
|
|
143493
143637
|
createdAt: Date;
|
|
143494
143638
|
type: "Note" | "Action" | "Steps";
|
|
143495
|
-
text: string;
|
|
143496
143639
|
projectIterationId: string;
|
|
143497
143640
|
participantId: string;
|
|
143498
143641
|
participant: {
|
|
@@ -143526,6 +143669,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143526
143669
|
} | undefined;
|
|
143527
143670
|
agentId?: string | undefined;
|
|
143528
143671
|
};
|
|
143672
|
+
text: string;
|
|
143529
143673
|
steps?: {
|
|
143530
143674
|
status: "error" | "pending" | "started" | "completed";
|
|
143531
143675
|
name: string;
|
|
@@ -143589,7 +143733,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143589
143733
|
id: string;
|
|
143590
143734
|
createdAt: Date;
|
|
143591
143735
|
type: "Note" | "Action" | "Steps";
|
|
143592
|
-
text: string;
|
|
143593
143736
|
projectIterationId: string;
|
|
143594
143737
|
participantId: string;
|
|
143595
143738
|
participant: {
|
|
@@ -143623,6 +143766,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143623
143766
|
} | undefined;
|
|
143624
143767
|
agentId?: string | undefined;
|
|
143625
143768
|
};
|
|
143769
|
+
text: string;
|
|
143626
143770
|
steps?: {
|
|
143627
143771
|
status: "error" | "pending" | "started" | "completed";
|
|
143628
143772
|
name: string;
|
|
@@ -143686,7 +143830,6 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143686
143830
|
id: string;
|
|
143687
143831
|
createdAt: Date;
|
|
143688
143832
|
type: "Note" | "Action" | "Steps";
|
|
143689
|
-
text: string;
|
|
143690
143833
|
projectIterationId: string;
|
|
143691
143834
|
participantId: string;
|
|
143692
143835
|
participant: {
|
|
@@ -143720,6 +143863,7 @@ declare const DTOForgeProjectIterationListResponse: z$1.ZodObject<{
|
|
|
143720
143863
|
} | undefined;
|
|
143721
143864
|
agentId?: string | undefined;
|
|
143722
143865
|
};
|
|
143866
|
+
text: string;
|
|
143723
143867
|
steps?: {
|
|
143724
143868
|
status: "error" | "pending" | "started" | "completed";
|
|
143725
143869
|
name: string;
|
|
@@ -145655,7 +145799,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145655
145799
|
id: string;
|
|
145656
145800
|
createdAt: Date;
|
|
145657
145801
|
type: "Note" | "Action" | "Steps";
|
|
145658
|
-
text: string;
|
|
145659
145802
|
projectIterationId: string;
|
|
145660
145803
|
participantId: string;
|
|
145661
145804
|
participant: {
|
|
@@ -145689,6 +145832,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145689
145832
|
} | undefined;
|
|
145690
145833
|
agentId?: string | undefined;
|
|
145691
145834
|
};
|
|
145835
|
+
text: string;
|
|
145692
145836
|
steps?: {
|
|
145693
145837
|
status: "error" | "pending" | "started" | "completed";
|
|
145694
145838
|
name: string;
|
|
@@ -145698,7 +145842,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145698
145842
|
id: string;
|
|
145699
145843
|
createdAt: Date;
|
|
145700
145844
|
type: "Note" | "Action" | "Steps";
|
|
145701
|
-
text: string;
|
|
145702
145845
|
projectIterationId: string;
|
|
145703
145846
|
participantId: string;
|
|
145704
145847
|
participant: {
|
|
@@ -145732,6 +145875,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145732
145875
|
} | undefined;
|
|
145733
145876
|
agentId?: string | undefined;
|
|
145734
145877
|
};
|
|
145878
|
+
text: string;
|
|
145735
145879
|
steps?: {
|
|
145736
145880
|
status: "error" | "pending" | "started" | "completed";
|
|
145737
145881
|
name: string;
|
|
@@ -145794,7 +145938,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145794
145938
|
id: string;
|
|
145795
145939
|
createdAt: Date;
|
|
145796
145940
|
type: "Note" | "Action" | "Steps";
|
|
145797
|
-
text: string;
|
|
145798
145941
|
projectIterationId: string;
|
|
145799
145942
|
participantId: string;
|
|
145800
145943
|
participant: {
|
|
@@ -145828,6 +145971,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145828
145971
|
} | undefined;
|
|
145829
145972
|
agentId?: string | undefined;
|
|
145830
145973
|
};
|
|
145974
|
+
text: string;
|
|
145831
145975
|
steps?: {
|
|
145832
145976
|
status: "error" | "pending" | "started" | "completed";
|
|
145833
145977
|
name: string;
|
|
@@ -145889,7 +146033,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145889
146033
|
id: string;
|
|
145890
146034
|
createdAt: Date;
|
|
145891
146035
|
type: "Note" | "Action" | "Steps";
|
|
145892
|
-
text: string;
|
|
145893
146036
|
projectIterationId: string;
|
|
145894
146037
|
participantId: string;
|
|
145895
146038
|
participant: {
|
|
@@ -145923,6 +146066,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145923
146066
|
} | undefined;
|
|
145924
146067
|
agentId?: string | undefined;
|
|
145925
146068
|
};
|
|
146069
|
+
text: string;
|
|
145926
146070
|
steps?: {
|
|
145927
146071
|
status: "error" | "pending" | "started" | "completed";
|
|
145928
146072
|
name: string;
|
|
@@ -145986,7 +146130,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
145986
146130
|
id: string;
|
|
145987
146131
|
createdAt: Date;
|
|
145988
146132
|
type: "Note" | "Action" | "Steps";
|
|
145989
|
-
text: string;
|
|
145990
146133
|
projectIterationId: string;
|
|
145991
146134
|
participantId: string;
|
|
145992
146135
|
participant: {
|
|
@@ -146020,6 +146163,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
146020
146163
|
} | undefined;
|
|
146021
146164
|
agentId?: string | undefined;
|
|
146022
146165
|
};
|
|
146166
|
+
text: string;
|
|
146023
146167
|
steps?: {
|
|
146024
146168
|
status: "error" | "pending" | "started" | "completed";
|
|
146025
146169
|
name: string;
|
|
@@ -146083,7 +146227,6 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
146083
146227
|
id: string;
|
|
146084
146228
|
createdAt: Date;
|
|
146085
146229
|
type: "Note" | "Action" | "Steps";
|
|
146086
|
-
text: string;
|
|
146087
146230
|
projectIterationId: string;
|
|
146088
146231
|
participantId: string;
|
|
146089
146232
|
participant: {
|
|
@@ -146117,6 +146260,7 @@ declare const DTOGetForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
146117
146260
|
} | undefined;
|
|
146118
146261
|
agentId?: string | undefined;
|
|
146119
146262
|
};
|
|
146263
|
+
text: string;
|
|
146120
146264
|
steps?: {
|
|
146121
146265
|
status: "error" | "pending" | "started" | "completed";
|
|
146122
146266
|
name: string;
|
|
@@ -148051,7 +148195,6 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
|
|
|
148051
148195
|
id: string;
|
|
148052
148196
|
createdAt: Date;
|
|
148053
148197
|
type: "Note" | "Action" | "Steps";
|
|
148054
|
-
text: string;
|
|
148055
148198
|
projectIterationId: string;
|
|
148056
148199
|
participantId: string;
|
|
148057
148200
|
participant: {
|
|
@@ -148085,6 +148228,7 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
|
|
|
148085
148228
|
} | undefined;
|
|
148086
148229
|
agentId?: string | undefined;
|
|
148087
148230
|
};
|
|
148231
|
+
text: string;
|
|
148088
148232
|
steps?: {
|
|
148089
148233
|
status: "error" | "pending" | "started" | "completed";
|
|
148090
148234
|
name: string;
|
|
@@ -148094,7 +148238,6 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
|
|
|
148094
148238
|
id: string;
|
|
148095
148239
|
createdAt: Date;
|
|
148096
148240
|
type: "Note" | "Action" | "Steps";
|
|
148097
|
-
text: string;
|
|
148098
148241
|
projectIterationId: string;
|
|
148099
148242
|
participantId: string;
|
|
148100
148243
|
participant: {
|
|
@@ -148128,6 +148271,7 @@ declare const DTOCreateForgeProjectIteration: z$1.ZodObject<Omit<Omit<{
|
|
|
148128
148271
|
} | undefined;
|
|
148129
148272
|
agentId?: string | undefined;
|
|
148130
148273
|
};
|
|
148274
|
+
text: string;
|
|
148131
148275
|
steps?: {
|
|
148132
148276
|
status: "error" | "pending" | "started" | "completed";
|
|
148133
148277
|
name: string;
|
|
@@ -150096,7 +150240,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150096
150240
|
id: string;
|
|
150097
150241
|
createdAt: Date;
|
|
150098
150242
|
type: "Note" | "Action" | "Steps";
|
|
150099
|
-
text: string;
|
|
150100
150243
|
projectIterationId: string;
|
|
150101
150244
|
participantId: string;
|
|
150102
150245
|
participant: {
|
|
@@ -150130,6 +150273,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150130
150273
|
} | undefined;
|
|
150131
150274
|
agentId?: string | undefined;
|
|
150132
150275
|
};
|
|
150276
|
+
text: string;
|
|
150133
150277
|
steps?: {
|
|
150134
150278
|
status: "error" | "pending" | "started" | "completed";
|
|
150135
150279
|
name: string;
|
|
@@ -150139,7 +150283,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150139
150283
|
id: string;
|
|
150140
150284
|
createdAt: Date;
|
|
150141
150285
|
type: "Note" | "Action" | "Steps";
|
|
150142
|
-
text: string;
|
|
150143
150286
|
projectIterationId: string;
|
|
150144
150287
|
participantId: string;
|
|
150145
150288
|
participant: {
|
|
@@ -150173,6 +150316,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150173
150316
|
} | undefined;
|
|
150174
150317
|
agentId?: string | undefined;
|
|
150175
150318
|
};
|
|
150319
|
+
text: string;
|
|
150176
150320
|
steps?: {
|
|
150177
150321
|
status: "error" | "pending" | "started" | "completed";
|
|
150178
150322
|
name: string;
|
|
@@ -150235,7 +150379,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150235
150379
|
id: string;
|
|
150236
150380
|
createdAt: Date;
|
|
150237
150381
|
type: "Note" | "Action" | "Steps";
|
|
150238
|
-
text: string;
|
|
150239
150382
|
projectIterationId: string;
|
|
150240
150383
|
participantId: string;
|
|
150241
150384
|
participant: {
|
|
@@ -150269,6 +150412,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150269
150412
|
} | undefined;
|
|
150270
150413
|
agentId?: string | undefined;
|
|
150271
150414
|
};
|
|
150415
|
+
text: string;
|
|
150272
150416
|
steps?: {
|
|
150273
150417
|
status: "error" | "pending" | "started" | "completed";
|
|
150274
150418
|
name: string;
|
|
@@ -150330,7 +150474,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150330
150474
|
id: string;
|
|
150331
150475
|
createdAt: Date;
|
|
150332
150476
|
type: "Note" | "Action" | "Steps";
|
|
150333
|
-
text: string;
|
|
150334
150477
|
projectIterationId: string;
|
|
150335
150478
|
participantId: string;
|
|
150336
150479
|
participant: {
|
|
@@ -150364,6 +150507,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150364
150507
|
} | undefined;
|
|
150365
150508
|
agentId?: string | undefined;
|
|
150366
150509
|
};
|
|
150510
|
+
text: string;
|
|
150367
150511
|
steps?: {
|
|
150368
150512
|
status: "error" | "pending" | "started" | "completed";
|
|
150369
150513
|
name: string;
|
|
@@ -150427,7 +150571,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150427
150571
|
id: string;
|
|
150428
150572
|
createdAt: Date;
|
|
150429
150573
|
type: "Note" | "Action" | "Steps";
|
|
150430
|
-
text: string;
|
|
150431
150574
|
projectIterationId: string;
|
|
150432
150575
|
participantId: string;
|
|
150433
150576
|
participant: {
|
|
@@ -150461,6 +150604,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150461
150604
|
} | undefined;
|
|
150462
150605
|
agentId?: string | undefined;
|
|
150463
150606
|
};
|
|
150607
|
+
text: string;
|
|
150464
150608
|
steps?: {
|
|
150465
150609
|
status: "error" | "pending" | "started" | "completed";
|
|
150466
150610
|
name: string;
|
|
@@ -150524,7 +150668,6 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150524
150668
|
id: string;
|
|
150525
150669
|
createdAt: Date;
|
|
150526
150670
|
type: "Note" | "Action" | "Steps";
|
|
150527
|
-
text: string;
|
|
150528
150671
|
projectIterationId: string;
|
|
150529
150672
|
participantId: string;
|
|
150530
150673
|
participant: {
|
|
@@ -150558,6 +150701,7 @@ declare const DTOCreateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
150558
150701
|
} | undefined;
|
|
150559
150702
|
agentId?: string | undefined;
|
|
150560
150703
|
};
|
|
150704
|
+
text: string;
|
|
150561
150705
|
steps?: {
|
|
150562
150706
|
status: "error" | "pending" | "started" | "completed";
|
|
150563
150707
|
name: string;
|
|
@@ -152493,7 +152637,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152493
152637
|
id: string;
|
|
152494
152638
|
createdAt: Date;
|
|
152495
152639
|
type: "Note" | "Action" | "Steps";
|
|
152496
|
-
text: string;
|
|
152497
152640
|
projectIterationId: string;
|
|
152498
152641
|
participantId: string;
|
|
152499
152642
|
participant: {
|
|
@@ -152527,6 +152670,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152527
152670
|
} | undefined;
|
|
152528
152671
|
agentId?: string | undefined;
|
|
152529
152672
|
};
|
|
152673
|
+
text: string;
|
|
152530
152674
|
steps?: {
|
|
152531
152675
|
status: "error" | "pending" | "started" | "completed";
|
|
152532
152676
|
name: string;
|
|
@@ -152536,7 +152680,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152536
152680
|
id: string;
|
|
152537
152681
|
createdAt: Date;
|
|
152538
152682
|
type: "Note" | "Action" | "Steps";
|
|
152539
|
-
text: string;
|
|
152540
152683
|
projectIterationId: string;
|
|
152541
152684
|
participantId: string;
|
|
152542
152685
|
participant: {
|
|
@@ -152570,6 +152713,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152570
152713
|
} | undefined;
|
|
152571
152714
|
agentId?: string | undefined;
|
|
152572
152715
|
};
|
|
152716
|
+
text: string;
|
|
152573
152717
|
steps?: {
|
|
152574
152718
|
status: "error" | "pending" | "started" | "completed";
|
|
152575
152719
|
name: string;
|
|
@@ -152632,7 +152776,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152632
152776
|
id: string;
|
|
152633
152777
|
createdAt: Date;
|
|
152634
152778
|
type: "Note" | "Action" | "Steps";
|
|
152635
|
-
text: string;
|
|
152636
152779
|
projectIterationId: string;
|
|
152637
152780
|
participantId: string;
|
|
152638
152781
|
participant: {
|
|
@@ -152666,6 +152809,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152666
152809
|
} | undefined;
|
|
152667
152810
|
agentId?: string | undefined;
|
|
152668
152811
|
};
|
|
152812
|
+
text: string;
|
|
152669
152813
|
steps?: {
|
|
152670
152814
|
status: "error" | "pending" | "started" | "completed";
|
|
152671
152815
|
name: string;
|
|
@@ -152727,7 +152871,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152727
152871
|
id: string;
|
|
152728
152872
|
createdAt: Date;
|
|
152729
152873
|
type: "Note" | "Action" | "Steps";
|
|
152730
|
-
text: string;
|
|
152731
152874
|
projectIterationId: string;
|
|
152732
152875
|
participantId: string;
|
|
152733
152876
|
participant: {
|
|
@@ -152761,6 +152904,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152761
152904
|
} | undefined;
|
|
152762
152905
|
agentId?: string | undefined;
|
|
152763
152906
|
};
|
|
152907
|
+
text: string;
|
|
152764
152908
|
steps?: {
|
|
152765
152909
|
status: "error" | "pending" | "started" | "completed";
|
|
152766
152910
|
name: string;
|
|
@@ -152824,7 +152968,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152824
152968
|
id: string;
|
|
152825
152969
|
createdAt: Date;
|
|
152826
152970
|
type: "Note" | "Action" | "Steps";
|
|
152827
|
-
text: string;
|
|
152828
152971
|
projectIterationId: string;
|
|
152829
152972
|
participantId: string;
|
|
152830
152973
|
participant: {
|
|
@@ -152858,6 +153001,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152858
153001
|
} | undefined;
|
|
152859
153002
|
agentId?: string | undefined;
|
|
152860
153003
|
};
|
|
153004
|
+
text: string;
|
|
152861
153005
|
steps?: {
|
|
152862
153006
|
status: "error" | "pending" | "started" | "completed";
|
|
152863
153007
|
name: string;
|
|
@@ -152921,7 +153065,6 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152921
153065
|
id: string;
|
|
152922
153066
|
createdAt: Date;
|
|
152923
153067
|
type: "Note" | "Action" | "Steps";
|
|
152924
|
-
text: string;
|
|
152925
153068
|
projectIterationId: string;
|
|
152926
153069
|
participantId: string;
|
|
152927
153070
|
participant: {
|
|
@@ -152955,6 +153098,7 @@ declare const DTOUpdateForgeProjectIterationResponse: z$1.ZodObject<{
|
|
|
152955
153098
|
} | undefined;
|
|
152956
153099
|
agentId?: string | undefined;
|
|
152957
153100
|
};
|
|
153101
|
+
text: string;
|
|
152958
153102
|
steps?: {
|
|
152959
153103
|
status: "error" | "pending" | "started" | "completed";
|
|
152960
153104
|
name: string;
|
|
@@ -173119,13 +173263,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173119
173263
|
userId: string;
|
|
173120
173264
|
}>, z$1.ZodObject<{
|
|
173121
173265
|
type: z$1.ZodLiteral<"Figma">;
|
|
173122
|
-
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
173266
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
173123
173267
|
}, "strip", z$1.ZodTypeAny, {
|
|
173124
173268
|
type: "Figma";
|
|
173125
|
-
renderMode: "Image" | "HTML";
|
|
173269
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173126
173270
|
}, {
|
|
173127
173271
|
type: "Figma";
|
|
173128
|
-
renderMode: "Image" | "HTML";
|
|
173272
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173129
173273
|
}>]>>;
|
|
173130
173274
|
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
173131
173275
|
id: string;
|
|
@@ -173135,7 +173279,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173135
173279
|
userId: string;
|
|
173136
173280
|
} | {
|
|
173137
173281
|
type: "Figma";
|
|
173138
|
-
renderMode: "Image" | "HTML";
|
|
173282
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173139
173283
|
} | undefined;
|
|
173140
173284
|
}, {
|
|
173141
173285
|
id: string;
|
|
@@ -173145,7 +173289,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173145
173289
|
userId: string;
|
|
173146
173290
|
} | {
|
|
173147
173291
|
type: "Figma";
|
|
173148
|
-
renderMode: "Image" | "HTML";
|
|
173292
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173149
173293
|
} | undefined;
|
|
173150
173294
|
}>, "many">>;
|
|
173151
173295
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173157,7 +173301,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173157
173301
|
userId: string;
|
|
173158
173302
|
} | {
|
|
173159
173303
|
type: "Figma";
|
|
173160
|
-
renderMode: "Image" | "HTML";
|
|
173304
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173161
173305
|
} | undefined;
|
|
173162
173306
|
}[] | undefined;
|
|
173163
173307
|
iterationId?: string | undefined;
|
|
@@ -173170,7 +173314,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173170
173314
|
userId: string;
|
|
173171
173315
|
} | {
|
|
173172
173316
|
type: "Figma";
|
|
173173
|
-
renderMode: "Image" | "HTML";
|
|
173317
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173174
173318
|
} | undefined;
|
|
173175
173319
|
}[] | undefined;
|
|
173176
173320
|
iterationId?: string | undefined;
|
|
@@ -173307,13 +173451,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173307
173451
|
userId: string;
|
|
173308
173452
|
}>, z$1.ZodObject<{
|
|
173309
173453
|
type: z$1.ZodLiteral<"Figma">;
|
|
173310
|
-
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
173454
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
173311
173455
|
}, "strip", z$1.ZodTypeAny, {
|
|
173312
173456
|
type: "Figma";
|
|
173313
|
-
renderMode: "Image" | "HTML";
|
|
173457
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173314
173458
|
}, {
|
|
173315
173459
|
type: "Figma";
|
|
173316
|
-
renderMode: "Image" | "HTML";
|
|
173460
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173317
173461
|
}>]>>;
|
|
173318
173462
|
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
173319
173463
|
id: string;
|
|
@@ -173323,7 +173467,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173323
173467
|
userId: string;
|
|
173324
173468
|
} | {
|
|
173325
173469
|
type: "Figma";
|
|
173326
|
-
renderMode: "Image" | "HTML";
|
|
173470
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173327
173471
|
} | undefined;
|
|
173328
173472
|
}, {
|
|
173329
173473
|
id: string;
|
|
@@ -173333,7 +173477,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173333
173477
|
userId: string;
|
|
173334
173478
|
} | {
|
|
173335
173479
|
type: "Figma";
|
|
173336
|
-
renderMode: "Image" | "HTML";
|
|
173480
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173337
173481
|
} | undefined;
|
|
173338
173482
|
}>, "many">>;
|
|
173339
173483
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173345,7 +173489,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173345
173489
|
userId: string;
|
|
173346
173490
|
} | {
|
|
173347
173491
|
type: "Figma";
|
|
173348
|
-
renderMode: "Image" | "HTML";
|
|
173492
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173349
173493
|
} | undefined;
|
|
173350
173494
|
}[] | undefined;
|
|
173351
173495
|
iterationId?: string | undefined;
|
|
@@ -173358,7 +173502,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173358
173502
|
userId: string;
|
|
173359
173503
|
} | {
|
|
173360
173504
|
type: "Figma";
|
|
173361
|
-
renderMode: "Image" | "HTML";
|
|
173505
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173362
173506
|
} | undefined;
|
|
173363
173507
|
}[] | undefined;
|
|
173364
173508
|
iterationId?: string | undefined;
|
|
@@ -173624,13 +173768,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173624
173768
|
userId: string;
|
|
173625
173769
|
}>, z$1.ZodObject<{
|
|
173626
173770
|
type: z$1.ZodLiteral<"Figma">;
|
|
173627
|
-
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
173771
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
173628
173772
|
}, "strip", z$1.ZodTypeAny, {
|
|
173629
173773
|
type: "Figma";
|
|
173630
|
-
renderMode: "Image" | "HTML";
|
|
173774
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173631
173775
|
}, {
|
|
173632
173776
|
type: "Figma";
|
|
173633
|
-
renderMode: "Image" | "HTML";
|
|
173777
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173634
173778
|
}>]>>;
|
|
173635
173779
|
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
173636
173780
|
id: string;
|
|
@@ -173640,7 +173784,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173640
173784
|
userId: string;
|
|
173641
173785
|
} | {
|
|
173642
173786
|
type: "Figma";
|
|
173643
|
-
renderMode: "Image" | "HTML";
|
|
173787
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173644
173788
|
} | undefined;
|
|
173645
173789
|
}, {
|
|
173646
173790
|
id: string;
|
|
@@ -173650,7 +173794,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173650
173794
|
userId: string;
|
|
173651
173795
|
} | {
|
|
173652
173796
|
type: "Figma";
|
|
173653
|
-
renderMode: "Image" | "HTML";
|
|
173797
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173654
173798
|
} | undefined;
|
|
173655
173799
|
}>, "many">>;
|
|
173656
173800
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173662,7 +173806,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173662
173806
|
userId: string;
|
|
173663
173807
|
} | {
|
|
173664
173808
|
type: "Figma";
|
|
173665
|
-
renderMode: "Image" | "HTML";
|
|
173809
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173666
173810
|
} | undefined;
|
|
173667
173811
|
}[] | undefined;
|
|
173668
173812
|
iterationId?: string | undefined;
|
|
@@ -173675,7 +173819,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173675
173819
|
userId: string;
|
|
173676
173820
|
} | {
|
|
173677
173821
|
type: "Figma";
|
|
173678
|
-
renderMode: "Image" | "HTML";
|
|
173822
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173679
173823
|
} | undefined;
|
|
173680
173824
|
}[] | undefined;
|
|
173681
173825
|
iterationId?: string | undefined;
|
|
@@ -173812,13 +173956,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173812
173956
|
userId: string;
|
|
173813
173957
|
}>, z$1.ZodObject<{
|
|
173814
173958
|
type: z$1.ZodLiteral<"Figma">;
|
|
173815
|
-
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
173959
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
173816
173960
|
}, "strip", z$1.ZodTypeAny, {
|
|
173817
173961
|
type: "Figma";
|
|
173818
|
-
renderMode: "Image" | "HTML";
|
|
173962
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173819
173963
|
}, {
|
|
173820
173964
|
type: "Figma";
|
|
173821
|
-
renderMode: "Image" | "HTML";
|
|
173965
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173822
173966
|
}>]>>;
|
|
173823
173967
|
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
173824
173968
|
id: string;
|
|
@@ -173828,7 +173972,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173828
173972
|
userId: string;
|
|
173829
173973
|
} | {
|
|
173830
173974
|
type: "Figma";
|
|
173831
|
-
renderMode: "Image" | "HTML";
|
|
173975
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173832
173976
|
} | undefined;
|
|
173833
173977
|
}, {
|
|
173834
173978
|
id: string;
|
|
@@ -173838,7 +173982,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173838
173982
|
userId: string;
|
|
173839
173983
|
} | {
|
|
173840
173984
|
type: "Figma";
|
|
173841
|
-
renderMode: "Image" | "HTML";
|
|
173985
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173842
173986
|
} | undefined;
|
|
173843
173987
|
}>, "many">>;
|
|
173844
173988
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173850,7 +173994,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173850
173994
|
userId: string;
|
|
173851
173995
|
} | {
|
|
173852
173996
|
type: "Figma";
|
|
173853
|
-
renderMode: "Image" | "HTML";
|
|
173997
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173854
173998
|
} | undefined;
|
|
173855
173999
|
}[] | undefined;
|
|
173856
174000
|
iterationId?: string | undefined;
|
|
@@ -173863,7 +174007,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173863
174007
|
userId: string;
|
|
173864
174008
|
} | {
|
|
173865
174009
|
type: "Figma";
|
|
173866
|
-
renderMode: "Image" | "HTML";
|
|
174010
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
173867
174011
|
} | undefined;
|
|
173868
174012
|
}[] | undefined;
|
|
173869
174013
|
iterationId?: string | undefined;
|
|
@@ -173938,6 +174082,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173938
174082
|
}>>>;
|
|
173939
174083
|
} & {
|
|
173940
174084
|
id: z$1.ZodString;
|
|
174085
|
+
isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
173941
174086
|
}, "strip", z$1.ZodTypeAny, {
|
|
173942
174087
|
id: string;
|
|
173943
174088
|
name?: string | undefined;
|
|
@@ -173949,6 +174094,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173949
174094
|
emoji?: string | undefined;
|
|
173950
174095
|
tags?: string[] | undefined;
|
|
173951
174096
|
accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
174097
|
+
isArchived?: boolean | undefined;
|
|
173952
174098
|
projectContextId?: string | undefined;
|
|
173953
174099
|
instruction?: string | null | undefined;
|
|
173954
174100
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
@@ -173999,6 +174145,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173999
174145
|
emoji?: string | undefined;
|
|
174000
174146
|
tags?: string[] | undefined;
|
|
174001
174147
|
accessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
174148
|
+
isArchived?: boolean | undefined;
|
|
174002
174149
|
projectContextId?: string | undefined;
|
|
174003
174150
|
instruction?: string | null | undefined;
|
|
174004
174151
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
@@ -219023,13 +219170,13 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219023
219170
|
userId: string;
|
|
219024
219171
|
}>, z__default.ZodObject<{
|
|
219025
219172
|
type: z__default.ZodLiteral<"Figma">;
|
|
219026
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219173
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219027
219174
|
}, "strip", z__default.ZodTypeAny, {
|
|
219028
219175
|
type: "Figma";
|
|
219029
|
-
renderMode: "Image" | "HTML";
|
|
219176
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219030
219177
|
}, {
|
|
219031
219178
|
type: "Figma";
|
|
219032
|
-
renderMode: "Image" | "HTML";
|
|
219179
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219033
219180
|
}>]>>;
|
|
219034
219181
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219035
219182
|
id: string;
|
|
@@ -219039,7 +219186,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219039
219186
|
userId: string;
|
|
219040
219187
|
} | {
|
|
219041
219188
|
type: "Figma";
|
|
219042
|
-
renderMode: "Image" | "HTML";
|
|
219189
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219043
219190
|
} | undefined;
|
|
219044
219191
|
}, {
|
|
219045
219192
|
id: string;
|
|
@@ -219049,7 +219196,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219049
219196
|
userId: string;
|
|
219050
219197
|
} | {
|
|
219051
219198
|
type: "Figma";
|
|
219052
|
-
renderMode: "Image" | "HTML";
|
|
219199
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219053
219200
|
} | undefined;
|
|
219054
219201
|
}>, "many">>;
|
|
219055
219202
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219061,7 +219208,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219061
219208
|
userId: string;
|
|
219062
219209
|
} | {
|
|
219063
219210
|
type: "Figma";
|
|
219064
|
-
renderMode: "Image" | "HTML";
|
|
219211
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219065
219212
|
} | undefined;
|
|
219066
219213
|
}[] | undefined;
|
|
219067
219214
|
iterationId?: string | undefined;
|
|
@@ -219074,7 +219221,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219074
219221
|
userId: string;
|
|
219075
219222
|
} | {
|
|
219076
219223
|
type: "Figma";
|
|
219077
|
-
renderMode: "Image" | "HTML";
|
|
219224
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219078
219225
|
} | undefined;
|
|
219079
219226
|
}[] | undefined;
|
|
219080
219227
|
iterationId?: string | undefined;
|
|
@@ -219114,7 +219261,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219114
219261
|
userId: string;
|
|
219115
219262
|
} | {
|
|
219116
219263
|
type: "Figma";
|
|
219117
|
-
renderMode: "Image" | "HTML";
|
|
219264
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219118
219265
|
} | undefined;
|
|
219119
219266
|
}[] | undefined;
|
|
219120
219267
|
iterationId?: string | undefined;
|
|
@@ -219149,7 +219296,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219149
219296
|
userId: string;
|
|
219150
219297
|
} | {
|
|
219151
219298
|
type: "Figma";
|
|
219152
|
-
renderMode: "Image" | "HTML";
|
|
219299
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219153
219300
|
} | undefined;
|
|
219154
219301
|
}[] | undefined;
|
|
219155
219302
|
iterationId?: string | undefined;
|
|
@@ -219178,13 +219325,13 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
|
219178
219325
|
userId: string;
|
|
219179
219326
|
}>, z__default.ZodObject<{
|
|
219180
219327
|
type: z__default.ZodLiteral<"Figma">;
|
|
219181
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219328
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219182
219329
|
}, "strip", z__default.ZodTypeAny, {
|
|
219183
219330
|
type: "Figma";
|
|
219184
|
-
renderMode: "Image" | "HTML";
|
|
219331
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219185
219332
|
}, {
|
|
219186
219333
|
type: "Figma";
|
|
219187
|
-
renderMode: "Image" | "HTML";
|
|
219334
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219188
219335
|
}>]>>;
|
|
219189
219336
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219190
219337
|
id: string;
|
|
@@ -219194,7 +219341,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
|
219194
219341
|
userId: string;
|
|
219195
219342
|
} | {
|
|
219196
219343
|
type: "Figma";
|
|
219197
|
-
renderMode: "Image" | "HTML";
|
|
219344
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219198
219345
|
} | undefined;
|
|
219199
219346
|
}, {
|
|
219200
219347
|
id: string;
|
|
@@ -219204,7 +219351,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
|
219204
219351
|
userId: string;
|
|
219205
219352
|
} | {
|
|
219206
219353
|
type: "Figma";
|
|
219207
|
-
renderMode: "Image" | "HTML";
|
|
219354
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219208
219355
|
} | undefined;
|
|
219209
219356
|
}>, "many">>;
|
|
219210
219357
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219216,7 +219363,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
|
219216
219363
|
userId: string;
|
|
219217
219364
|
} | {
|
|
219218
219365
|
type: "Figma";
|
|
219219
|
-
renderMode: "Image" | "HTML";
|
|
219366
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219220
219367
|
} | undefined;
|
|
219221
219368
|
}[] | undefined;
|
|
219222
219369
|
iterationId?: string | undefined;
|
|
@@ -219229,7 +219376,7 @@ declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
|
219229
219376
|
userId: string;
|
|
219230
219377
|
} | {
|
|
219231
219378
|
type: "Figma";
|
|
219232
|
-
renderMode: "Image" | "HTML";
|
|
219379
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219233
219380
|
} | undefined;
|
|
219234
219381
|
}[] | undefined;
|
|
219235
219382
|
iterationId?: string | undefined;
|
|
@@ -219344,13 +219491,13 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219344
219491
|
userId: string;
|
|
219345
219492
|
}>, z__default.ZodObject<{
|
|
219346
219493
|
type: z__default.ZodLiteral<"Figma">;
|
|
219347
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219494
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219348
219495
|
}, "strip", z__default.ZodTypeAny, {
|
|
219349
219496
|
type: "Figma";
|
|
219350
|
-
renderMode: "Image" | "HTML";
|
|
219497
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219351
219498
|
}, {
|
|
219352
219499
|
type: "Figma";
|
|
219353
|
-
renderMode: "Image" | "HTML";
|
|
219500
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219354
219501
|
}>]>>;
|
|
219355
219502
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219356
219503
|
id: string;
|
|
@@ -219360,7 +219507,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219360
219507
|
userId: string;
|
|
219361
219508
|
} | {
|
|
219362
219509
|
type: "Figma";
|
|
219363
|
-
renderMode: "Image" | "HTML";
|
|
219510
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219364
219511
|
} | undefined;
|
|
219365
219512
|
}, {
|
|
219366
219513
|
id: string;
|
|
@@ -219370,7 +219517,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219370
219517
|
userId: string;
|
|
219371
219518
|
} | {
|
|
219372
219519
|
type: "Figma";
|
|
219373
|
-
renderMode: "Image" | "HTML";
|
|
219520
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219374
219521
|
} | undefined;
|
|
219375
219522
|
}>, "many">>;
|
|
219376
219523
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219382,7 +219529,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219382
219529
|
userId: string;
|
|
219383
219530
|
} | {
|
|
219384
219531
|
type: "Figma";
|
|
219385
|
-
renderMode: "Image" | "HTML";
|
|
219532
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219386
219533
|
} | undefined;
|
|
219387
219534
|
}[] | undefined;
|
|
219388
219535
|
iterationId?: string | undefined;
|
|
@@ -219395,7 +219542,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219395
219542
|
userId: string;
|
|
219396
219543
|
} | {
|
|
219397
219544
|
type: "Figma";
|
|
219398
|
-
renderMode: "Image" | "HTML";
|
|
219545
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219399
219546
|
} | undefined;
|
|
219400
219547
|
}[] | undefined;
|
|
219401
219548
|
iterationId?: string | undefined;
|
|
@@ -219515,13 +219662,13 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219515
219662
|
userId: string;
|
|
219516
219663
|
}>, z__default.ZodObject<{
|
|
219517
219664
|
type: z__default.ZodLiteral<"Figma">;
|
|
219518
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219665
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219519
219666
|
}, "strip", z__default.ZodTypeAny, {
|
|
219520
219667
|
type: "Figma";
|
|
219521
|
-
renderMode: "Image" | "HTML";
|
|
219668
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219522
219669
|
}, {
|
|
219523
219670
|
type: "Figma";
|
|
219524
|
-
renderMode: "Image" | "HTML";
|
|
219671
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219525
219672
|
}>]>>;
|
|
219526
219673
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219527
219674
|
id: string;
|
|
@@ -219531,7 +219678,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219531
219678
|
userId: string;
|
|
219532
219679
|
} | {
|
|
219533
219680
|
type: "Figma";
|
|
219534
|
-
renderMode: "Image" | "HTML";
|
|
219681
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219535
219682
|
} | undefined;
|
|
219536
219683
|
}, {
|
|
219537
219684
|
id: string;
|
|
@@ -219541,7 +219688,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219541
219688
|
userId: string;
|
|
219542
219689
|
} | {
|
|
219543
219690
|
type: "Figma";
|
|
219544
|
-
renderMode: "Image" | "HTML";
|
|
219691
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219545
219692
|
} | undefined;
|
|
219546
219693
|
}>, "many">>;
|
|
219547
219694
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219553,7 +219700,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219553
219700
|
userId: string;
|
|
219554
219701
|
} | {
|
|
219555
219702
|
type: "Figma";
|
|
219556
|
-
renderMode: "Image" | "HTML";
|
|
219703
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219557
219704
|
} | undefined;
|
|
219558
219705
|
}[] | undefined;
|
|
219559
219706
|
iterationId?: string | undefined;
|
|
@@ -219566,7 +219713,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219566
219713
|
userId: string;
|
|
219567
219714
|
} | {
|
|
219568
219715
|
type: "Figma";
|
|
219569
|
-
renderMode: "Image" | "HTML";
|
|
219716
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219570
219717
|
} | undefined;
|
|
219571
219718
|
}[] | undefined;
|
|
219572
219719
|
iterationId?: string | undefined;
|
|
@@ -219600,13 +219747,13 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219600
219747
|
userId: string;
|
|
219601
219748
|
}>, z__default.ZodObject<{
|
|
219602
219749
|
type: z__default.ZodLiteral<"Figma">;
|
|
219603
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219750
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219604
219751
|
}, "strip", z__default.ZodTypeAny, {
|
|
219605
219752
|
type: "Figma";
|
|
219606
|
-
renderMode: "Image" | "HTML";
|
|
219753
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219607
219754
|
}, {
|
|
219608
219755
|
type: "Figma";
|
|
219609
|
-
renderMode: "Image" | "HTML";
|
|
219756
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219610
219757
|
}>]>>;
|
|
219611
219758
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219612
219759
|
id: string;
|
|
@@ -219616,7 +219763,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219616
219763
|
userId: string;
|
|
219617
219764
|
} | {
|
|
219618
219765
|
type: "Figma";
|
|
219619
|
-
renderMode: "Image" | "HTML";
|
|
219766
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219620
219767
|
} | undefined;
|
|
219621
219768
|
}, {
|
|
219622
219769
|
id: string;
|
|
@@ -219626,7 +219773,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219626
219773
|
userId: string;
|
|
219627
219774
|
} | {
|
|
219628
219775
|
type: "Figma";
|
|
219629
|
-
renderMode: "Image" | "HTML";
|
|
219776
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219630
219777
|
} | undefined;
|
|
219631
219778
|
}>, "many">>;
|
|
219632
219779
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219638,7 +219785,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219638
219785
|
userId: string;
|
|
219639
219786
|
} | {
|
|
219640
219787
|
type: "Figma";
|
|
219641
|
-
renderMode: "Image" | "HTML";
|
|
219788
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219642
219789
|
} | undefined;
|
|
219643
219790
|
}[] | undefined;
|
|
219644
219791
|
iterationId?: string | undefined;
|
|
@@ -219651,7 +219798,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219651
219798
|
userId: string;
|
|
219652
219799
|
} | {
|
|
219653
219800
|
type: "Figma";
|
|
219654
|
-
renderMode: "Image" | "HTML";
|
|
219801
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219655
219802
|
} | undefined;
|
|
219656
219803
|
}[] | undefined;
|
|
219657
219804
|
iterationId?: string | undefined;
|
|
@@ -219670,7 +219817,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219670
219817
|
userId: string;
|
|
219671
219818
|
} | {
|
|
219672
219819
|
type: "Figma";
|
|
219673
|
-
renderMode: "Image" | "HTML";
|
|
219820
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219674
219821
|
} | undefined;
|
|
219675
219822
|
}[] | undefined;
|
|
219676
219823
|
iterationId?: string | undefined;
|
|
@@ -219688,7 +219835,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219688
219835
|
userId: string;
|
|
219689
219836
|
} | {
|
|
219690
219837
|
type: "Figma";
|
|
219691
|
-
renderMode: "Image" | "HTML";
|
|
219838
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219692
219839
|
} | undefined;
|
|
219693
219840
|
}[] | undefined;
|
|
219694
219841
|
iterationId?: string | undefined;
|
|
@@ -219794,13 +219941,13 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219794
219941
|
userId: string;
|
|
219795
219942
|
}>, z__default.ZodObject<{
|
|
219796
219943
|
type: z__default.ZodLiteral<"Figma">;
|
|
219797
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
219944
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
219798
219945
|
}, "strip", z__default.ZodTypeAny, {
|
|
219799
219946
|
type: "Figma";
|
|
219800
|
-
renderMode: "Image" | "HTML";
|
|
219947
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219801
219948
|
}, {
|
|
219802
219949
|
type: "Figma";
|
|
219803
|
-
renderMode: "Image" | "HTML";
|
|
219950
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219804
219951
|
}>]>>;
|
|
219805
219952
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
219806
219953
|
id: string;
|
|
@@ -219810,7 +219957,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219810
219957
|
userId: string;
|
|
219811
219958
|
} | {
|
|
219812
219959
|
type: "Figma";
|
|
219813
|
-
renderMode: "Image" | "HTML";
|
|
219960
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219814
219961
|
} | undefined;
|
|
219815
219962
|
}, {
|
|
219816
219963
|
id: string;
|
|
@@ -219820,7 +219967,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219820
219967
|
userId: string;
|
|
219821
219968
|
} | {
|
|
219822
219969
|
type: "Figma";
|
|
219823
|
-
renderMode: "Image" | "HTML";
|
|
219970
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219824
219971
|
} | undefined;
|
|
219825
219972
|
}>, "many">>;
|
|
219826
219973
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219832,7 +219979,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219832
219979
|
userId: string;
|
|
219833
219980
|
} | {
|
|
219834
219981
|
type: "Figma";
|
|
219835
|
-
renderMode: "Image" | "HTML";
|
|
219982
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219836
219983
|
} | undefined;
|
|
219837
219984
|
}[] | undefined;
|
|
219838
219985
|
iterationId?: string | undefined;
|
|
@@ -219845,7 +219992,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219845
219992
|
userId: string;
|
|
219846
219993
|
} | {
|
|
219847
219994
|
type: "Figma";
|
|
219848
|
-
renderMode: "Image" | "HTML";
|
|
219995
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219849
219996
|
} | undefined;
|
|
219850
219997
|
}[] | undefined;
|
|
219851
219998
|
iterationId?: string | undefined;
|
|
@@ -219885,7 +220032,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219885
220032
|
userId: string;
|
|
219886
220033
|
} | {
|
|
219887
220034
|
type: "Figma";
|
|
219888
|
-
renderMode: "Image" | "HTML";
|
|
220035
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219889
220036
|
} | undefined;
|
|
219890
220037
|
}[] | undefined;
|
|
219891
220038
|
iterationId?: string | undefined;
|
|
@@ -219920,7 +220067,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219920
220067
|
userId: string;
|
|
219921
220068
|
} | {
|
|
219922
220069
|
type: "Figma";
|
|
219923
|
-
renderMode: "Image" | "HTML";
|
|
220070
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219924
220071
|
} | undefined;
|
|
219925
220072
|
}[] | undefined;
|
|
219926
220073
|
iterationId?: string | undefined;
|
|
@@ -219957,7 +220104,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219957
220104
|
userId: string;
|
|
219958
220105
|
} | {
|
|
219959
220106
|
type: "Figma";
|
|
219960
|
-
renderMode: "Image" | "HTML";
|
|
220107
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219961
220108
|
} | undefined;
|
|
219962
220109
|
}[] | undefined;
|
|
219963
220110
|
iterationId?: string | undefined;
|
|
@@ -219994,7 +220141,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
219994
220141
|
userId: string;
|
|
219995
220142
|
} | {
|
|
219996
220143
|
type: "Figma";
|
|
219997
|
-
renderMode: "Image" | "HTML";
|
|
220144
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
219998
220145
|
} | undefined;
|
|
219999
220146
|
}[] | undefined;
|
|
220000
220147
|
iterationId?: string | undefined;
|
|
@@ -220113,13 +220260,13 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220113
220260
|
userId: string;
|
|
220114
220261
|
}>, z__default.ZodObject<{
|
|
220115
220262
|
type: z__default.ZodLiteral<"Figma">;
|
|
220116
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
220263
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
220117
220264
|
}, "strip", z__default.ZodTypeAny, {
|
|
220118
220265
|
type: "Figma";
|
|
220119
|
-
renderMode: "Image" | "HTML";
|
|
220266
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220120
220267
|
}, {
|
|
220121
220268
|
type: "Figma";
|
|
220122
|
-
renderMode: "Image" | "HTML";
|
|
220269
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220123
220270
|
}>]>>;
|
|
220124
220271
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
220125
220272
|
id: string;
|
|
@@ -220129,7 +220276,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220129
220276
|
userId: string;
|
|
220130
220277
|
} | {
|
|
220131
220278
|
type: "Figma";
|
|
220132
|
-
renderMode: "Image" | "HTML";
|
|
220279
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220133
220280
|
} | undefined;
|
|
220134
220281
|
}, {
|
|
220135
220282
|
id: string;
|
|
@@ -220139,7 +220286,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220139
220286
|
userId: string;
|
|
220140
220287
|
} | {
|
|
220141
220288
|
type: "Figma";
|
|
220142
|
-
renderMode: "Image" | "HTML";
|
|
220289
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220143
220290
|
} | undefined;
|
|
220144
220291
|
}>, "many">>;
|
|
220145
220292
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220151,7 +220298,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220151
220298
|
userId: string;
|
|
220152
220299
|
} | {
|
|
220153
220300
|
type: "Figma";
|
|
220154
|
-
renderMode: "Image" | "HTML";
|
|
220301
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220155
220302
|
} | undefined;
|
|
220156
220303
|
}[] | undefined;
|
|
220157
220304
|
iterationId?: string | undefined;
|
|
@@ -220164,7 +220311,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220164
220311
|
userId: string;
|
|
220165
220312
|
} | {
|
|
220166
220313
|
type: "Figma";
|
|
220167
|
-
renderMode: "Image" | "HTML";
|
|
220314
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220168
220315
|
} | undefined;
|
|
220169
220316
|
}[] | undefined;
|
|
220170
220317
|
iterationId?: string | undefined;
|
|
@@ -220204,7 +220351,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220204
220351
|
userId: string;
|
|
220205
220352
|
} | {
|
|
220206
220353
|
type: "Figma";
|
|
220207
|
-
renderMode: "Image" | "HTML";
|
|
220354
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220208
220355
|
} | undefined;
|
|
220209
220356
|
}[] | undefined;
|
|
220210
220357
|
iterationId?: string | undefined;
|
|
@@ -220239,7 +220386,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220239
220386
|
userId: string;
|
|
220240
220387
|
} | {
|
|
220241
220388
|
type: "Figma";
|
|
220242
|
-
renderMode: "Image" | "HTML";
|
|
220389
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220243
220390
|
} | undefined;
|
|
220244
220391
|
}[] | undefined;
|
|
220245
220392
|
iterationId?: string | undefined;
|
|
@@ -220293,7 +220440,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220293
220440
|
userId: string;
|
|
220294
220441
|
} | {
|
|
220295
220442
|
type: "Figma";
|
|
220296
|
-
renderMode: "Image" | "HTML";
|
|
220443
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220297
220444
|
} | undefined;
|
|
220298
220445
|
}[] | undefined;
|
|
220299
220446
|
iterationId?: string | undefined;
|
|
@@ -220337,7 +220484,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220337
220484
|
userId: string;
|
|
220338
220485
|
} | {
|
|
220339
220486
|
type: "Figma";
|
|
220340
|
-
renderMode: "Image" | "HTML";
|
|
220487
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220341
220488
|
} | undefined;
|
|
220342
220489
|
}[] | undefined;
|
|
220343
220490
|
iterationId?: string | undefined;
|
|
@@ -220431,13 +220578,13 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220431
220578
|
userId: string;
|
|
220432
220579
|
}>, z__default.ZodObject<{
|
|
220433
220580
|
type: z__default.ZodLiteral<"Figma">;
|
|
220434
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
220581
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
220435
220582
|
}, "strip", z__default.ZodTypeAny, {
|
|
220436
220583
|
type: "Figma";
|
|
220437
|
-
renderMode: "Image" | "HTML";
|
|
220584
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220438
220585
|
}, {
|
|
220439
220586
|
type: "Figma";
|
|
220440
|
-
renderMode: "Image" | "HTML";
|
|
220587
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220441
220588
|
}>]>>;
|
|
220442
220589
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
220443
220590
|
id: string;
|
|
@@ -220447,7 +220594,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220447
220594
|
userId: string;
|
|
220448
220595
|
} | {
|
|
220449
220596
|
type: "Figma";
|
|
220450
|
-
renderMode: "Image" | "HTML";
|
|
220597
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220451
220598
|
} | undefined;
|
|
220452
220599
|
}, {
|
|
220453
220600
|
id: string;
|
|
@@ -220457,7 +220604,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220457
220604
|
userId: string;
|
|
220458
220605
|
} | {
|
|
220459
220606
|
type: "Figma";
|
|
220460
|
-
renderMode: "Image" | "HTML";
|
|
220607
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220461
220608
|
} | undefined;
|
|
220462
220609
|
}>, "many">>;
|
|
220463
220610
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220469,7 +220616,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220469
220616
|
userId: string;
|
|
220470
220617
|
} | {
|
|
220471
220618
|
type: "Figma";
|
|
220472
|
-
renderMode: "Image" | "HTML";
|
|
220619
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220473
220620
|
} | undefined;
|
|
220474
220621
|
}[] | undefined;
|
|
220475
220622
|
iterationId?: string | undefined;
|
|
@@ -220482,7 +220629,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220482
220629
|
userId: string;
|
|
220483
220630
|
} | {
|
|
220484
220631
|
type: "Figma";
|
|
220485
|
-
renderMode: "Image" | "HTML";
|
|
220632
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220486
220633
|
} | undefined;
|
|
220487
220634
|
}[] | undefined;
|
|
220488
220635
|
iterationId?: string | undefined;
|
|
@@ -220522,7 +220669,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220522
220669
|
userId: string;
|
|
220523
220670
|
} | {
|
|
220524
220671
|
type: "Figma";
|
|
220525
|
-
renderMode: "Image" | "HTML";
|
|
220672
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220526
220673
|
} | undefined;
|
|
220527
220674
|
}[] | undefined;
|
|
220528
220675
|
iterationId?: string | undefined;
|
|
@@ -220557,7 +220704,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220557
220704
|
userId: string;
|
|
220558
220705
|
} | {
|
|
220559
220706
|
type: "Figma";
|
|
220560
|
-
renderMode: "Image" | "HTML";
|
|
220707
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220561
220708
|
} | undefined;
|
|
220562
220709
|
}[] | undefined;
|
|
220563
220710
|
iterationId?: string | undefined;
|
|
@@ -220595,7 +220742,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220595
220742
|
userId: string;
|
|
220596
220743
|
} | {
|
|
220597
220744
|
type: "Figma";
|
|
220598
|
-
renderMode: "Image" | "HTML";
|
|
220745
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220599
220746
|
} | undefined;
|
|
220600
220747
|
}[] | undefined;
|
|
220601
220748
|
iterationId?: string | undefined;
|
|
@@ -220633,7 +220780,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220633
220780
|
userId: string;
|
|
220634
220781
|
} | {
|
|
220635
220782
|
type: "Figma";
|
|
220636
|
-
renderMode: "Image" | "HTML";
|
|
220783
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220637
220784
|
} | undefined;
|
|
220638
220785
|
}[] | undefined;
|
|
220639
220786
|
iterationId?: string | undefined;
|
|
@@ -220720,13 +220867,13 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220720
220867
|
userId: string;
|
|
220721
220868
|
}>, z__default.ZodObject<{
|
|
220722
220869
|
type: z__default.ZodLiteral<"Figma">;
|
|
220723
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
220870
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
220724
220871
|
}, "strip", z__default.ZodTypeAny, {
|
|
220725
220872
|
type: "Figma";
|
|
220726
|
-
renderMode: "Image" | "HTML";
|
|
220873
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220727
220874
|
}, {
|
|
220728
220875
|
type: "Figma";
|
|
220729
|
-
renderMode: "Image" | "HTML";
|
|
220876
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220730
220877
|
}>]>>;
|
|
220731
220878
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
220732
220879
|
id: string;
|
|
@@ -220736,7 +220883,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220736
220883
|
userId: string;
|
|
220737
220884
|
} | {
|
|
220738
220885
|
type: "Figma";
|
|
220739
|
-
renderMode: "Image" | "HTML";
|
|
220886
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220740
220887
|
} | undefined;
|
|
220741
220888
|
}, {
|
|
220742
220889
|
id: string;
|
|
@@ -220746,7 +220893,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220746
220893
|
userId: string;
|
|
220747
220894
|
} | {
|
|
220748
220895
|
type: "Figma";
|
|
220749
|
-
renderMode: "Image" | "HTML";
|
|
220896
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220750
220897
|
} | undefined;
|
|
220751
220898
|
}>, "many">>;
|
|
220752
220899
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220758,7 +220905,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220758
220905
|
userId: string;
|
|
220759
220906
|
} | {
|
|
220760
220907
|
type: "Figma";
|
|
220761
|
-
renderMode: "Image" | "HTML";
|
|
220908
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220762
220909
|
} | undefined;
|
|
220763
220910
|
}[] | undefined;
|
|
220764
220911
|
iterationId?: string | undefined;
|
|
@@ -220771,7 +220918,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220771
220918
|
userId: string;
|
|
220772
220919
|
} | {
|
|
220773
220920
|
type: "Figma";
|
|
220774
|
-
renderMode: "Image" | "HTML";
|
|
220921
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220775
220922
|
} | undefined;
|
|
220776
220923
|
}[] | undefined;
|
|
220777
220924
|
iterationId?: string | undefined;
|
|
@@ -220811,7 +220958,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220811
220958
|
userId: string;
|
|
220812
220959
|
} | {
|
|
220813
220960
|
type: "Figma";
|
|
220814
|
-
renderMode: "Image" | "HTML";
|
|
220961
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220815
220962
|
} | undefined;
|
|
220816
220963
|
}[] | undefined;
|
|
220817
220964
|
iterationId?: string | undefined;
|
|
@@ -220846,7 +220993,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220846
220993
|
userId: string;
|
|
220847
220994
|
} | {
|
|
220848
220995
|
type: "Figma";
|
|
220849
|
-
renderMode: "Image" | "HTML";
|
|
220996
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220850
220997
|
} | undefined;
|
|
220851
220998
|
}[] | undefined;
|
|
220852
220999
|
iterationId?: string | undefined;
|
|
@@ -220884,7 +221031,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220884
221031
|
userId: string;
|
|
220885
221032
|
} | {
|
|
220886
221033
|
type: "Figma";
|
|
220887
|
-
renderMode: "Image" | "HTML";
|
|
221034
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220888
221035
|
} | undefined;
|
|
220889
221036
|
}[] | undefined;
|
|
220890
221037
|
iterationId?: string | undefined;
|
|
@@ -220922,7 +221069,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220922
221069
|
userId: string;
|
|
220923
221070
|
} | {
|
|
220924
221071
|
type: "Figma";
|
|
220925
|
-
renderMode: "Image" | "HTML";
|
|
221072
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
220926
221073
|
} | undefined;
|
|
220927
221074
|
}[] | undefined;
|
|
220928
221075
|
iterationId?: string | undefined;
|
|
@@ -221081,13 +221228,13 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221081
221228
|
userId: string;
|
|
221082
221229
|
}>, z__default.ZodObject<{
|
|
221083
221230
|
type: z__default.ZodLiteral<"Figma">;
|
|
221084
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
221231
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
221085
221232
|
}, "strip", z__default.ZodTypeAny, {
|
|
221086
221233
|
type: "Figma";
|
|
221087
|
-
renderMode: "Image" | "HTML";
|
|
221234
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221088
221235
|
}, {
|
|
221089
221236
|
type: "Figma";
|
|
221090
|
-
renderMode: "Image" | "HTML";
|
|
221237
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221091
221238
|
}>]>>;
|
|
221092
221239
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
221093
221240
|
id: string;
|
|
@@ -221097,7 +221244,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221097
221244
|
userId: string;
|
|
221098
221245
|
} | {
|
|
221099
221246
|
type: "Figma";
|
|
221100
|
-
renderMode: "Image" | "HTML";
|
|
221247
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221101
221248
|
} | undefined;
|
|
221102
221249
|
}, {
|
|
221103
221250
|
id: string;
|
|
@@ -221107,7 +221254,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221107
221254
|
userId: string;
|
|
221108
221255
|
} | {
|
|
221109
221256
|
type: "Figma";
|
|
221110
|
-
renderMode: "Image" | "HTML";
|
|
221257
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221111
221258
|
} | undefined;
|
|
221112
221259
|
}>, "many">>;
|
|
221113
221260
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221119,7 +221266,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221119
221266
|
userId: string;
|
|
221120
221267
|
} | {
|
|
221121
221268
|
type: "Figma";
|
|
221122
|
-
renderMode: "Image" | "HTML";
|
|
221269
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221123
221270
|
} | undefined;
|
|
221124
221271
|
}[] | undefined;
|
|
221125
221272
|
iterationId?: string | undefined;
|
|
@@ -221132,7 +221279,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221132
221279
|
userId: string;
|
|
221133
221280
|
} | {
|
|
221134
221281
|
type: "Figma";
|
|
221135
|
-
renderMode: "Image" | "HTML";
|
|
221282
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221136
221283
|
} | undefined;
|
|
221137
221284
|
}[] | undefined;
|
|
221138
221285
|
iterationId?: string | undefined;
|
|
@@ -221172,7 +221319,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221172
221319
|
userId: string;
|
|
221173
221320
|
} | {
|
|
221174
221321
|
type: "Figma";
|
|
221175
|
-
renderMode: "Image" | "HTML";
|
|
221322
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221176
221323
|
} | undefined;
|
|
221177
221324
|
}[] | undefined;
|
|
221178
221325
|
iterationId?: string | undefined;
|
|
@@ -221207,7 +221354,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221207
221354
|
userId: string;
|
|
221208
221355
|
} | {
|
|
221209
221356
|
type: "Figma";
|
|
221210
|
-
renderMode: "Image" | "HTML";
|
|
221357
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221211
221358
|
} | undefined;
|
|
221212
221359
|
}[] | undefined;
|
|
221213
221360
|
iterationId?: string | undefined;
|
|
@@ -221245,7 +221392,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221245
221392
|
userId: string;
|
|
221246
221393
|
} | {
|
|
221247
221394
|
type: "Figma";
|
|
221248
|
-
renderMode: "Image" | "HTML";
|
|
221395
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221249
221396
|
} | undefined;
|
|
221250
221397
|
}[] | undefined;
|
|
221251
221398
|
iterationId?: string | undefined;
|
|
@@ -221283,7 +221430,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221283
221430
|
userId: string;
|
|
221284
221431
|
} | {
|
|
221285
221432
|
type: "Figma";
|
|
221286
|
-
renderMode: "Image" | "HTML";
|
|
221433
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221287
221434
|
} | undefined;
|
|
221288
221435
|
}[] | undefined;
|
|
221289
221436
|
iterationId?: string | undefined;
|
|
@@ -221368,13 +221515,13 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221368
221515
|
userId: string;
|
|
221369
221516
|
}>, z__default.ZodObject<{
|
|
221370
221517
|
type: z__default.ZodLiteral<"Figma">;
|
|
221371
|
-
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
221518
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
221372
221519
|
}, "strip", z__default.ZodTypeAny, {
|
|
221373
221520
|
type: "Figma";
|
|
221374
|
-
renderMode: "Image" | "HTML";
|
|
221521
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221375
221522
|
}, {
|
|
221376
221523
|
type: "Figma";
|
|
221377
|
-
renderMode: "Image" | "HTML";
|
|
221524
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221378
221525
|
}>]>>;
|
|
221379
221526
|
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
221380
221527
|
id: string;
|
|
@@ -221384,7 +221531,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221384
221531
|
userId: string;
|
|
221385
221532
|
} | {
|
|
221386
221533
|
type: "Figma";
|
|
221387
|
-
renderMode: "Image" | "HTML";
|
|
221534
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221388
221535
|
} | undefined;
|
|
221389
221536
|
}, {
|
|
221390
221537
|
id: string;
|
|
@@ -221394,7 +221541,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221394
221541
|
userId: string;
|
|
221395
221542
|
} | {
|
|
221396
221543
|
type: "Figma";
|
|
221397
|
-
renderMode: "Image" | "HTML";
|
|
221544
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221398
221545
|
} | undefined;
|
|
221399
221546
|
}>, "many">>;
|
|
221400
221547
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221406,7 +221553,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221406
221553
|
userId: string;
|
|
221407
221554
|
} | {
|
|
221408
221555
|
type: "Figma";
|
|
221409
|
-
renderMode: "Image" | "HTML";
|
|
221556
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221410
221557
|
} | undefined;
|
|
221411
221558
|
}[] | undefined;
|
|
221412
221559
|
iterationId?: string | undefined;
|
|
@@ -221419,7 +221566,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221419
221566
|
userId: string;
|
|
221420
221567
|
} | {
|
|
221421
221568
|
type: "Figma";
|
|
221422
|
-
renderMode: "Image" | "HTML";
|
|
221569
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221423
221570
|
} | undefined;
|
|
221424
221571
|
}[] | undefined;
|
|
221425
221572
|
iterationId?: string | undefined;
|
|
@@ -221459,7 +221606,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221459
221606
|
userId: string;
|
|
221460
221607
|
} | {
|
|
221461
221608
|
type: "Figma";
|
|
221462
|
-
renderMode: "Image" | "HTML";
|
|
221609
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221463
221610
|
} | undefined;
|
|
221464
221611
|
}[] | undefined;
|
|
221465
221612
|
iterationId?: string | undefined;
|
|
@@ -221494,7 +221641,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221494
221641
|
userId: string;
|
|
221495
221642
|
} | {
|
|
221496
221643
|
type: "Figma";
|
|
221497
|
-
renderMode: "Image" | "HTML";
|
|
221644
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221498
221645
|
} | undefined;
|
|
221499
221646
|
}[] | undefined;
|
|
221500
221647
|
iterationId?: string | undefined;
|
|
@@ -221532,7 +221679,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221532
221679
|
userId: string;
|
|
221533
221680
|
} | {
|
|
221534
221681
|
type: "Figma";
|
|
221535
|
-
renderMode: "Image" | "HTML";
|
|
221682
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221536
221683
|
} | undefined;
|
|
221537
221684
|
}[] | undefined;
|
|
221538
221685
|
iterationId?: string | undefined;
|
|
@@ -221570,7 +221717,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221570
221717
|
userId: string;
|
|
221571
221718
|
} | {
|
|
221572
221719
|
type: "Figma";
|
|
221573
|
-
renderMode: "Image" | "HTML";
|
|
221720
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
221574
221721
|
} | undefined;
|
|
221575
221722
|
}[] | undefined;
|
|
221576
221723
|
iterationId?: string | undefined;
|
|
@@ -243307,7 +243454,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
243307
243454
|
userId: string;
|
|
243308
243455
|
} | {
|
|
243309
243456
|
type: "Figma";
|
|
243310
|
-
renderMode: "Image" | "HTML";
|
|
243457
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
243311
243458
|
} | undefined;
|
|
243312
243459
|
} | undefined;
|
|
243313
243460
|
artifactsDiff?: {
|
|
@@ -243466,7 +243613,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
243466
243613
|
userId: string;
|
|
243467
243614
|
} | {
|
|
243468
243615
|
type: "Figma";
|
|
243469
|
-
renderMode: "Image" | "HTML";
|
|
243616
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
243470
243617
|
} | undefined;
|
|
243471
243618
|
} | undefined;
|
|
243472
243619
|
artifactsDiff?: {
|
|
@@ -248817,7 +248964,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
248817
248964
|
id: string;
|
|
248818
248965
|
createdAt: Date;
|
|
248819
248966
|
type: "Note" | "Action" | "Steps";
|
|
248820
|
-
text: string;
|
|
248821
248967
|
projectIterationId: string;
|
|
248822
248968
|
participantId: string;
|
|
248823
248969
|
participant: {
|
|
@@ -248851,6 +248997,7 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
248851
248997
|
} | undefined;
|
|
248852
248998
|
agentId?: string | undefined;
|
|
248853
248999
|
};
|
|
249000
|
+
text: string;
|
|
248854
249001
|
steps?: {
|
|
248855
249002
|
status: "error" | "pending" | "started" | "completed";
|
|
248856
249003
|
name: string;
|
|
@@ -248915,7 +249062,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
248915
249062
|
id: string;
|
|
248916
249063
|
createdAt: Date;
|
|
248917
249064
|
type: "Note" | "Action" | "Steps";
|
|
248918
|
-
text: string;
|
|
248919
249065
|
projectIterationId: string;
|
|
248920
249066
|
participantId: string;
|
|
248921
249067
|
participant: {
|
|
@@ -248949,6 +249095,7 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
248949
249095
|
} | undefined;
|
|
248950
249096
|
agentId?: string | undefined;
|
|
248951
249097
|
};
|
|
249098
|
+
text: string;
|
|
248952
249099
|
steps?: {
|
|
248953
249100
|
status: "error" | "pending" | "started" | "completed";
|
|
248954
249101
|
name: string;
|
|
@@ -249013,7 +249160,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
249013
249160
|
id: string;
|
|
249014
249161
|
createdAt: Date;
|
|
249015
249162
|
type: "Note" | "Action" | "Steps";
|
|
249016
|
-
text: string;
|
|
249017
249163
|
projectIterationId: string;
|
|
249018
249164
|
participantId: string;
|
|
249019
249165
|
participant: {
|
|
@@ -249047,6 +249193,7 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
249047
249193
|
} | undefined;
|
|
249048
249194
|
agentId?: string | undefined;
|
|
249049
249195
|
};
|
|
249196
|
+
text: string;
|
|
249050
249197
|
steps?: {
|
|
249051
249198
|
status: "error" | "pending" | "started" | "completed";
|
|
249052
249199
|
name: string;
|
|
@@ -249111,7 +249258,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
249111
249258
|
id: string;
|
|
249112
249259
|
createdAt: Date;
|
|
249113
249260
|
type: "Note" | "Action" | "Steps";
|
|
249114
|
-
text: string;
|
|
249115
249261
|
projectIterationId: string;
|
|
249116
249262
|
participantId: string;
|
|
249117
249263
|
participant: {
|
|
@@ -249145,6 +249291,7 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
249145
249291
|
} | undefined;
|
|
249146
249292
|
agentId?: string | undefined;
|
|
249147
249293
|
};
|
|
249294
|
+
text: string;
|
|
249148
249295
|
steps?: {
|
|
249149
249296
|
status: "error" | "pending" | "started" | "completed";
|
|
249150
249297
|
name: string;
|
|
@@ -250044,7 +250191,7 @@ declare class FilesEndpoint {
|
|
|
250044
250191
|
userId: string;
|
|
250045
250192
|
} | {
|
|
250046
250193
|
type: "Figma";
|
|
250047
|
-
renderMode: "Image" | "HTML";
|
|
250194
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250048
250195
|
} | undefined;
|
|
250049
250196
|
pendingUpload?: boolean | undefined;
|
|
250050
250197
|
}[];
|
|
@@ -250066,7 +250213,7 @@ declare class FilesEndpoint {
|
|
|
250066
250213
|
userId: string;
|
|
250067
250214
|
} | {
|
|
250068
250215
|
type: "Figma";
|
|
250069
|
-
renderMode: "Image" | "HTML";
|
|
250216
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250070
250217
|
} | undefined;
|
|
250071
250218
|
pendingUpload?: boolean | undefined;
|
|
250072
250219
|
}[];
|
|
@@ -250114,7 +250261,7 @@ declare class ThreadsEndpoint {
|
|
|
250114
250261
|
userId: string;
|
|
250115
250262
|
} | {
|
|
250116
250263
|
type: "Figma";
|
|
250117
|
-
renderMode: "Image" | "HTML";
|
|
250264
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250118
250265
|
} | undefined;
|
|
250119
250266
|
}[] | undefined;
|
|
250120
250267
|
iterationId?: string | undefined;
|
|
@@ -250159,7 +250306,7 @@ declare class ThreadsEndpoint {
|
|
|
250159
250306
|
userId: string;
|
|
250160
250307
|
} | {
|
|
250161
250308
|
type: "Figma";
|
|
250162
|
-
renderMode: "Image" | "HTML";
|
|
250309
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250163
250310
|
} | undefined;
|
|
250164
250311
|
}[] | undefined;
|
|
250165
250312
|
iterationId?: string | undefined;
|
|
@@ -252099,9 +252246,9 @@ declare const DocumentationPageEditorModel: z$1.ZodObject<{
|
|
|
252099
252246
|
}>;
|
|
252100
252247
|
type DocumentationPageEditorModel = z$1.infer<typeof DocumentationPageEditorModel>;
|
|
252101
252248
|
|
|
252102
|
-
declare const innerEditorProsemirrorSchema: Schema<"text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList", "code" | "
|
|
252249
|
+
declare const innerEditorProsemirrorSchema: Schema<"text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList", "code" | "bold" | "link" | "strike" | "italic">;
|
|
252103
252250
|
|
|
252104
|
-
declare const mainEditorProsemirrorSchema: Schema<"image" | "text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList" | "table" | "tableContainer" | "blockquote" | "sectionItem" | "sectionItemColumn" | "callout" | "reactComponent" | "tableRow" | "tableCell" | "tableHeader" | "heading" | "horizontalRule" | "plainSection" | "tabsSection" | "blockNode", "code" | "
|
|
252251
|
+
declare const mainEditorProsemirrorSchema: Schema<"image" | "text" | "doc" | "paragraph" | "listItem" | "hardBreak" | "bulletList" | "orderedList" | "table" | "tableContainer" | "blockquote" | "sectionItem" | "sectionItemColumn" | "callout" | "reactComponent" | "tableRow" | "tableCell" | "tableHeader" | "heading" | "horizontalRule" | "plainSection" | "tabsSection" | "blockNode", "code" | "bold" | "link" | "strike" | "italic" | "commentHighlight">;
|
|
252105
252252
|
|
|
252106
252253
|
type ProsemirrorNode = {
|
|
252107
252254
|
type: string;
|
|
@@ -253136,4 +253283,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
253136
253283
|
reason: ValidationErrorReason | undefined;
|
|
253137
253284
|
};
|
|
253138
253285
|
|
|
253139
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
253286
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|