@supernova-studio/client 1.43.2 → 1.43.3
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 +198 -12
- package/dist/index.d.ts +198 -12
- package/dist/index.js +20 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -69916,10 +69916,19 @@ declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
|
|
|
69916
69916
|
type DTOFeatureIterationPromoteInput = z__default.infer<typeof DTOFeatureIterationPromoteInput>;
|
|
69917
69917
|
declare const DTOFeatureIterationSetLatestInput: z__default.ZodObject<{
|
|
69918
69918
|
id: z__default.ZodString;
|
|
69919
|
+
/**
|
|
69920
|
+
* Optional message ID to determine the context for setting this iteration as latest.
|
|
69921
|
+
* When provided, uses this message's parent as the tag context.
|
|
69922
|
+
* When undefined, uses the iteration's original startedFromMessage.
|
|
69923
|
+
* When null, explicitly excludes message context from the tag.
|
|
69924
|
+
*/
|
|
69925
|
+
contextMessageId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
69919
69926
|
}, "strip", z__default.ZodTypeAny, {
|
|
69920
69927
|
id: string;
|
|
69928
|
+
contextMessageId?: string | null | undefined;
|
|
69921
69929
|
}, {
|
|
69922
69930
|
id: string;
|
|
69931
|
+
contextMessageId?: string | null | undefined;
|
|
69923
69932
|
}>;
|
|
69924
69933
|
type DTOFeatureIterationSetLatestInput = z__default.infer<typeof DTOFeatureIterationSetLatestInput>;
|
|
69925
69934
|
declare const DTOFeatureIterationUpdateInput: z__default.ZodObject<{
|
|
@@ -70063,6 +70072,78 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
70063
70072
|
name?: string | undefined;
|
|
70064
70073
|
}>;
|
|
70065
70074
|
type DTOFeatureIterationUpdateArtifactsInput = z__default.infer<typeof DTOFeatureIterationUpdateArtifactsInput>;
|
|
70075
|
+
declare const DTOFeatureIterationUpdateArtifactsByMessageInput: z__default.ZodObject<{
|
|
70076
|
+
messageId: z__default.ZodString;
|
|
70077
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
70078
|
+
artifactDiff: z__default.ZodObject<{
|
|
70079
|
+
/**
|
|
70080
|
+
* Map of artifact key -> new key that describes artifacts that will be moved in this iteration
|
|
70081
|
+
*/
|
|
70082
|
+
move: z__default.ZodRecord<z__default.ZodString, z__default.ZodObject<{
|
|
70083
|
+
newKey: z__default.ZodString;
|
|
70084
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
70085
|
+
newKey: string;
|
|
70086
|
+
}, {
|
|
70087
|
+
newKey: string;
|
|
70088
|
+
}>>;
|
|
70089
|
+
/**
|
|
70090
|
+
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
70091
|
+
* create or updated in this iteration
|
|
70092
|
+
*/
|
|
70093
|
+
upsert: z__default.ZodRecord<z__default.ZodString, z__default.ZodObject<{
|
|
70094
|
+
artifactContent: z__default.ZodString;
|
|
70095
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
70096
|
+
artifactContent: string;
|
|
70097
|
+
}, {
|
|
70098
|
+
artifactContent: string;
|
|
70099
|
+
}>>;
|
|
70100
|
+
/**
|
|
70101
|
+
* List artifact keys to remove from this iteration
|
|
70102
|
+
*/
|
|
70103
|
+
remove: z__default.ZodArray<z__default.ZodString, "many">;
|
|
70104
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
70105
|
+
move: Record<string, {
|
|
70106
|
+
newKey: string;
|
|
70107
|
+
}>;
|
|
70108
|
+
upsert: Record<string, {
|
|
70109
|
+
artifactContent: string;
|
|
70110
|
+
}>;
|
|
70111
|
+
remove: string[];
|
|
70112
|
+
}, {
|
|
70113
|
+
move: Record<string, {
|
|
70114
|
+
newKey: string;
|
|
70115
|
+
}>;
|
|
70116
|
+
upsert: Record<string, {
|
|
70117
|
+
artifactContent: string;
|
|
70118
|
+
}>;
|
|
70119
|
+
remove: string[];
|
|
70120
|
+
}>;
|
|
70121
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
70122
|
+
messageId: string;
|
|
70123
|
+
artifactDiff: {
|
|
70124
|
+
move: Record<string, {
|
|
70125
|
+
newKey: string;
|
|
70126
|
+
}>;
|
|
70127
|
+
upsert: Record<string, {
|
|
70128
|
+
artifactContent: string;
|
|
70129
|
+
}>;
|
|
70130
|
+
remove: string[];
|
|
70131
|
+
};
|
|
70132
|
+
name?: string | undefined;
|
|
70133
|
+
}, {
|
|
70134
|
+
messageId: string;
|
|
70135
|
+
artifactDiff: {
|
|
70136
|
+
move: Record<string, {
|
|
70137
|
+
newKey: string;
|
|
70138
|
+
}>;
|
|
70139
|
+
upsert: Record<string, {
|
|
70140
|
+
artifactContent: string;
|
|
70141
|
+
}>;
|
|
70142
|
+
remove: string[];
|
|
70143
|
+
};
|
|
70144
|
+
name?: string | undefined;
|
|
70145
|
+
}>;
|
|
70146
|
+
type DTOFeatureIterationUpdateArtifactsByMessageInput = z__default.infer<typeof DTOFeatureIterationUpdateArtifactsByMessageInput>;
|
|
70066
70147
|
declare const DTOFeatureAgentWorkFinalizeInput: z__default.ZodObject<{
|
|
70067
70148
|
messageId: z__default.ZodString;
|
|
70068
70149
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -81580,9 +81661,10 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81580
81661
|
iterationId?: string | undefined;
|
|
81581
81662
|
}>>;
|
|
81582
81663
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81664
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
81583
81665
|
createdAt: z__default.ZodString;
|
|
81584
81666
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81585
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
81667
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
81586
81668
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81587
81669
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81588
81670
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -81603,6 +81685,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81603
81685
|
fileIds?: string[] | undefined;
|
|
81604
81686
|
iterationId?: string | undefined;
|
|
81605
81687
|
} | undefined;
|
|
81688
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81606
81689
|
}, {
|
|
81607
81690
|
id: string;
|
|
81608
81691
|
body: string;
|
|
@@ -81613,6 +81696,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81613
81696
|
fileIds?: string[] | undefined;
|
|
81614
81697
|
iterationId?: string | undefined;
|
|
81615
81698
|
} | undefined;
|
|
81699
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81616
81700
|
}>;
|
|
81617
81701
|
}, "strip", z__default.ZodTypeAny, {
|
|
81618
81702
|
id: string;
|
|
@@ -81627,6 +81711,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81627
81711
|
fileIds?: string[] | undefined;
|
|
81628
81712
|
iterationId?: string | undefined;
|
|
81629
81713
|
} | undefined;
|
|
81714
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81630
81715
|
};
|
|
81631
81716
|
name?: string | undefined;
|
|
81632
81717
|
sectionId?: string | undefined;
|
|
@@ -81644,6 +81729,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81644
81729
|
fileIds?: string[] | undefined;
|
|
81645
81730
|
iterationId?: string | undefined;
|
|
81646
81731
|
} | undefined;
|
|
81732
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81647
81733
|
};
|
|
81648
81734
|
name?: string | undefined;
|
|
81649
81735
|
sectionId?: string | undefined;
|
|
@@ -81664,6 +81750,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81664
81750
|
fileIds?: string[] | undefined;
|
|
81665
81751
|
iterationId?: string | undefined;
|
|
81666
81752
|
} | undefined;
|
|
81753
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81667
81754
|
};
|
|
81668
81755
|
name?: string | undefined;
|
|
81669
81756
|
sectionId?: string | undefined;
|
|
@@ -81684,6 +81771,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81684
81771
|
fileIds?: string[] | undefined;
|
|
81685
81772
|
iterationId?: string | undefined;
|
|
81686
81773
|
} | undefined;
|
|
81774
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81687
81775
|
};
|
|
81688
81776
|
name?: string | undefined;
|
|
81689
81777
|
sectionId?: string | undefined;
|
|
@@ -81905,9 +81993,10 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81905
81993
|
iterationId?: string | undefined;
|
|
81906
81994
|
}>>;
|
|
81907
81995
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81996
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
81908
81997
|
createdAt: z__default.ZodString;
|
|
81909
81998
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81910
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
81999
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
81911
82000
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81912
82001
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81913
82002
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -81928,6 +82017,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81928
82017
|
fileIds?: string[] | undefined;
|
|
81929
82018
|
iterationId?: string | undefined;
|
|
81930
82019
|
} | undefined;
|
|
82020
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81931
82021
|
}, {
|
|
81932
82022
|
id: string;
|
|
81933
82023
|
body: string;
|
|
@@ -81938,6 +82028,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81938
82028
|
fileIds?: string[] | undefined;
|
|
81939
82029
|
iterationId?: string | undefined;
|
|
81940
82030
|
} | undefined;
|
|
82031
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81941
82032
|
}>>;
|
|
81942
82033
|
}, "strip", z__default.ZodTypeAny, {
|
|
81943
82034
|
id: string;
|
|
@@ -81954,6 +82045,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81954
82045
|
fileIds?: string[] | undefined;
|
|
81955
82046
|
iterationId?: string | undefined;
|
|
81956
82047
|
} | undefined;
|
|
82048
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81957
82049
|
} | undefined;
|
|
81958
82050
|
}, {
|
|
81959
82051
|
id: string;
|
|
@@ -81970,6 +82062,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81970
82062
|
fileIds?: string[] | undefined;
|
|
81971
82063
|
iterationId?: string | undefined;
|
|
81972
82064
|
} | undefined;
|
|
82065
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81973
82066
|
} | undefined;
|
|
81974
82067
|
}>;
|
|
81975
82068
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -81989,6 +82082,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81989
82082
|
fileIds?: string[] | undefined;
|
|
81990
82083
|
iterationId?: string | undefined;
|
|
81991
82084
|
} | undefined;
|
|
82085
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
81992
82086
|
} | undefined;
|
|
81993
82087
|
};
|
|
81994
82088
|
}, {
|
|
@@ -82008,6 +82102,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
82008
82102
|
fileIds?: string[] | undefined;
|
|
82009
82103
|
iterationId?: string | undefined;
|
|
82010
82104
|
} | undefined;
|
|
82105
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82011
82106
|
} | undefined;
|
|
82012
82107
|
};
|
|
82013
82108
|
}>;
|
|
@@ -82350,9 +82445,10 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82350
82445
|
iterationId?: string | undefined;
|
|
82351
82446
|
}>>;
|
|
82352
82447
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
82448
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
82353
82449
|
createdAt: z__default.ZodString;
|
|
82354
82450
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
82355
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82451
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
82356
82452
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82357
82453
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82358
82454
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -82373,6 +82469,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82373
82469
|
fileIds?: string[] | undefined;
|
|
82374
82470
|
iterationId?: string | undefined;
|
|
82375
82471
|
} | undefined;
|
|
82472
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82376
82473
|
}, {
|
|
82377
82474
|
id: string;
|
|
82378
82475
|
body: string;
|
|
@@ -82383,6 +82480,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82383
82480
|
fileIds?: string[] | undefined;
|
|
82384
82481
|
iterationId?: string | undefined;
|
|
82385
82482
|
} | undefined;
|
|
82483
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82386
82484
|
}>;
|
|
82387
82485
|
}, "strip", z__default.ZodTypeAny, {
|
|
82388
82486
|
id: string;
|
|
@@ -82397,6 +82495,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82397
82495
|
fileIds?: string[] | undefined;
|
|
82398
82496
|
iterationId?: string | undefined;
|
|
82399
82497
|
} | undefined;
|
|
82498
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82400
82499
|
};
|
|
82401
82500
|
name?: string | undefined;
|
|
82402
82501
|
sectionId?: string | undefined;
|
|
@@ -82414,6 +82513,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82414
82513
|
fileIds?: string[] | undefined;
|
|
82415
82514
|
iterationId?: string | undefined;
|
|
82416
82515
|
} | undefined;
|
|
82516
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82417
82517
|
};
|
|
82418
82518
|
name?: string | undefined;
|
|
82419
82519
|
sectionId?: string | undefined;
|
|
@@ -82434,6 +82534,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82434
82534
|
fileIds?: string[] | undefined;
|
|
82435
82535
|
iterationId?: string | undefined;
|
|
82436
82536
|
} | undefined;
|
|
82537
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82437
82538
|
};
|
|
82438
82539
|
name?: string | undefined;
|
|
82439
82540
|
sectionId?: string | undefined;
|
|
@@ -82454,6 +82555,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82454
82555
|
fileIds?: string[] | undefined;
|
|
82455
82556
|
iterationId?: string | undefined;
|
|
82456
82557
|
} | undefined;
|
|
82558
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82457
82559
|
};
|
|
82458
82560
|
name?: string | undefined;
|
|
82459
82561
|
sectionId?: string | undefined;
|
|
@@ -82667,9 +82769,10 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82667
82769
|
iterationId?: string | undefined;
|
|
82668
82770
|
}>>;
|
|
82669
82771
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
82772
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
82670
82773
|
createdAt: z__default.ZodString;
|
|
82671
82774
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
82672
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82775
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
82673
82776
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82674
82777
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82675
82778
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -82690,6 +82793,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82690
82793
|
fileIds?: string[] | undefined;
|
|
82691
82794
|
iterationId?: string | undefined;
|
|
82692
82795
|
} | undefined;
|
|
82796
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82693
82797
|
}, {
|
|
82694
82798
|
id: string;
|
|
82695
82799
|
body: string;
|
|
@@ -82700,6 +82804,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82700
82804
|
fileIds?: string[] | undefined;
|
|
82701
82805
|
iterationId?: string | undefined;
|
|
82702
82806
|
} | undefined;
|
|
82807
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82703
82808
|
}>>;
|
|
82704
82809
|
}, "strip", z__default.ZodTypeAny, {
|
|
82705
82810
|
id: string;
|
|
@@ -82716,6 +82821,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82716
82821
|
fileIds?: string[] | undefined;
|
|
82717
82822
|
iterationId?: string | undefined;
|
|
82718
82823
|
} | undefined;
|
|
82824
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82719
82825
|
} | undefined;
|
|
82720
82826
|
}, {
|
|
82721
82827
|
id: string;
|
|
@@ -82732,6 +82838,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82732
82838
|
fileIds?: string[] | undefined;
|
|
82733
82839
|
iterationId?: string | undefined;
|
|
82734
82840
|
} | undefined;
|
|
82841
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82735
82842
|
} | undefined;
|
|
82736
82843
|
}>;
|
|
82737
82844
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -82751,6 +82858,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82751
82858
|
fileIds?: string[] | undefined;
|
|
82752
82859
|
iterationId?: string | undefined;
|
|
82753
82860
|
} | undefined;
|
|
82861
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82754
82862
|
} | undefined;
|
|
82755
82863
|
};
|
|
82756
82864
|
}, {
|
|
@@ -82770,6 +82878,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82770
82878
|
fileIds?: string[] | undefined;
|
|
82771
82879
|
iterationId?: string | undefined;
|
|
82772
82880
|
} | undefined;
|
|
82881
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
82773
82882
|
} | undefined;
|
|
82774
82883
|
};
|
|
82775
82884
|
}>, z__default.ZodObject<{
|
|
@@ -83182,9 +83291,10 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83182
83291
|
iterationId?: string | undefined;
|
|
83183
83292
|
}>>;
|
|
83184
83293
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
83294
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
83185
83295
|
createdAt: z$1.ZodString;
|
|
83186
83296
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
83187
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
83297
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
83188
83298
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
83189
83299
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
83190
83300
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -83205,6 +83315,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83205
83315
|
fileIds?: string[] | undefined;
|
|
83206
83316
|
iterationId?: string | undefined;
|
|
83207
83317
|
} | undefined;
|
|
83318
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
83208
83319
|
}, {
|
|
83209
83320
|
id: string;
|
|
83210
83321
|
body: string;
|
|
@@ -83215,6 +83326,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83215
83326
|
fileIds?: string[] | undefined;
|
|
83216
83327
|
iterationId?: string | undefined;
|
|
83217
83328
|
} | undefined;
|
|
83329
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
83218
83330
|
}>>;
|
|
83219
83331
|
}, "strip", z$1.ZodTypeAny, {
|
|
83220
83332
|
id: string;
|
|
@@ -83231,6 +83343,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83231
83343
|
fileIds?: string[] | undefined;
|
|
83232
83344
|
iterationId?: string | undefined;
|
|
83233
83345
|
} | undefined;
|
|
83346
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
83234
83347
|
} | undefined;
|
|
83235
83348
|
}, {
|
|
83236
83349
|
id: string;
|
|
@@ -83247,6 +83360,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
83247
83360
|
fileIds?: string[] | undefined;
|
|
83248
83361
|
iterationId?: string | undefined;
|
|
83249
83362
|
} | undefined;
|
|
83363
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
83250
83364
|
} | undefined;
|
|
83251
83365
|
}>;
|
|
83252
83366
|
type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
|
|
@@ -138501,9 +138615,10 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138501
138615
|
iterationId?: string | undefined;
|
|
138502
138616
|
}>>;
|
|
138503
138617
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
138618
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
138504
138619
|
createdAt: z__default.ZodString;
|
|
138505
138620
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
138506
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
138621
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
138507
138622
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138508
138623
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138509
138624
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -138524,6 +138639,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138524
138639
|
fileIds?: string[] | undefined;
|
|
138525
138640
|
iterationId?: string | undefined;
|
|
138526
138641
|
} | undefined;
|
|
138642
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138527
138643
|
}, {
|
|
138528
138644
|
id: string;
|
|
138529
138645
|
body: string;
|
|
@@ -138534,6 +138650,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138534
138650
|
fileIds?: string[] | undefined;
|
|
138535
138651
|
iterationId?: string | undefined;
|
|
138536
138652
|
} | undefined;
|
|
138653
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138537
138654
|
}>;
|
|
138538
138655
|
}, "strip", z__default.ZodTypeAny, {
|
|
138539
138656
|
id: string;
|
|
@@ -138548,6 +138665,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138548
138665
|
fileIds?: string[] | undefined;
|
|
138549
138666
|
iterationId?: string | undefined;
|
|
138550
138667
|
} | undefined;
|
|
138668
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138551
138669
|
};
|
|
138552
138670
|
name?: string | undefined;
|
|
138553
138671
|
sectionId?: string | undefined;
|
|
@@ -138565,6 +138683,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138565
138683
|
fileIds?: string[] | undefined;
|
|
138566
138684
|
iterationId?: string | undefined;
|
|
138567
138685
|
} | undefined;
|
|
138686
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138568
138687
|
};
|
|
138569
138688
|
name?: string | undefined;
|
|
138570
138689
|
sectionId?: string | undefined;
|
|
@@ -173324,9 +173443,10 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173324
173443
|
iterationId?: string | undefined;
|
|
173325
173444
|
}>>;
|
|
173326
173445
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
173446
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173327
173447
|
createdAt: z$1.ZodString;
|
|
173328
173448
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173329
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
173449
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173330
173450
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173331
173451
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173332
173452
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173347,6 +173467,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173347
173467
|
fileIds?: string[] | undefined;
|
|
173348
173468
|
iterationId?: string | undefined;
|
|
173349
173469
|
} | undefined;
|
|
173470
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173350
173471
|
}, {
|
|
173351
173472
|
id: string;
|
|
173352
173473
|
body: string;
|
|
@@ -173357,6 +173478,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173357
173478
|
fileIds?: string[] | undefined;
|
|
173358
173479
|
iterationId?: string | undefined;
|
|
173359
173480
|
} | undefined;
|
|
173481
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173360
173482
|
}>;
|
|
173361
173483
|
}, "strip", z$1.ZodTypeAny, {
|
|
173362
173484
|
id: string;
|
|
@@ -173371,6 +173493,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173371
173493
|
fileIds?: string[] | undefined;
|
|
173372
173494
|
iterationId?: string | undefined;
|
|
173373
173495
|
} | undefined;
|
|
173496
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173374
173497
|
};
|
|
173375
173498
|
name?: string | undefined;
|
|
173376
173499
|
sectionId?: string | undefined;
|
|
@@ -173388,6 +173511,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173388
173511
|
fileIds?: string[] | undefined;
|
|
173389
173512
|
iterationId?: string | undefined;
|
|
173390
173513
|
} | undefined;
|
|
173514
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173391
173515
|
};
|
|
173392
173516
|
name?: string | undefined;
|
|
173393
173517
|
sectionId?: string | undefined;
|
|
@@ -173512,9 +173636,10 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173512
173636
|
iterationId?: string | undefined;
|
|
173513
173637
|
}>>;
|
|
173514
173638
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
173639
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173515
173640
|
createdAt: z$1.ZodString;
|
|
173516
173641
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173517
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
173642
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173518
173643
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173519
173644
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173520
173645
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173535,6 +173660,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173535
173660
|
fileIds?: string[] | undefined;
|
|
173536
173661
|
iterationId?: string | undefined;
|
|
173537
173662
|
} | undefined;
|
|
173663
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173538
173664
|
}, {
|
|
173539
173665
|
id: string;
|
|
173540
173666
|
body: string;
|
|
@@ -173545,6 +173671,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173545
173671
|
fileIds?: string[] | undefined;
|
|
173546
173672
|
iterationId?: string | undefined;
|
|
173547
173673
|
} | undefined;
|
|
173674
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173548
173675
|
}>>;
|
|
173549
173676
|
}, "strip", z$1.ZodTypeAny, {
|
|
173550
173677
|
id: string;
|
|
@@ -173561,6 +173688,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173561
173688
|
fileIds?: string[] | undefined;
|
|
173562
173689
|
iterationId?: string | undefined;
|
|
173563
173690
|
} | undefined;
|
|
173691
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173564
173692
|
} | undefined;
|
|
173565
173693
|
}, {
|
|
173566
173694
|
id: string;
|
|
@@ -173577,6 +173705,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173577
173705
|
fileIds?: string[] | undefined;
|
|
173578
173706
|
iterationId?: string | undefined;
|
|
173579
173707
|
} | undefined;
|
|
173708
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173580
173709
|
} | undefined;
|
|
173581
173710
|
}>>;
|
|
173582
173711
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173611,6 +173740,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173611
173740
|
fileIds?: string[] | undefined;
|
|
173612
173741
|
iterationId?: string | undefined;
|
|
173613
173742
|
} | undefined;
|
|
173743
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173614
173744
|
};
|
|
173615
173745
|
name?: string | undefined;
|
|
173616
173746
|
sectionId?: string | undefined;
|
|
@@ -173631,6 +173761,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173631
173761
|
fileIds?: string[] | undefined;
|
|
173632
173762
|
iterationId?: string | undefined;
|
|
173633
173763
|
} | undefined;
|
|
173764
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173634
173765
|
} | undefined;
|
|
173635
173766
|
} | undefined;
|
|
173636
173767
|
}, {
|
|
@@ -173665,6 +173796,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173665
173796
|
fileIds?: string[] | undefined;
|
|
173666
173797
|
iterationId?: string | undefined;
|
|
173667
173798
|
} | undefined;
|
|
173799
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173668
173800
|
};
|
|
173669
173801
|
name?: string | undefined;
|
|
173670
173802
|
sectionId?: string | undefined;
|
|
@@ -173685,6 +173817,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173685
173817
|
fileIds?: string[] | undefined;
|
|
173686
173818
|
iterationId?: string | undefined;
|
|
173687
173819
|
} | undefined;
|
|
173820
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173688
173821
|
} | undefined;
|
|
173689
173822
|
} | undefined;
|
|
173690
173823
|
}>;
|
|
@@ -173829,9 +173962,10 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173829
173962
|
iterationId?: string | undefined;
|
|
173830
173963
|
}>>;
|
|
173831
173964
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
173965
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173832
173966
|
createdAt: z$1.ZodString;
|
|
173833
173967
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173834
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
173968
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173835
173969
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173836
173970
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173837
173971
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173852,6 +173986,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173852
173986
|
fileIds?: string[] | undefined;
|
|
173853
173987
|
iterationId?: string | undefined;
|
|
173854
173988
|
} | undefined;
|
|
173989
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173855
173990
|
}, {
|
|
173856
173991
|
id: string;
|
|
173857
173992
|
body: string;
|
|
@@ -173862,6 +173997,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173862
173997
|
fileIds?: string[] | undefined;
|
|
173863
173998
|
iterationId?: string | undefined;
|
|
173864
173999
|
} | undefined;
|
|
174000
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173865
174001
|
}>;
|
|
173866
174002
|
}, "strip", z$1.ZodTypeAny, {
|
|
173867
174003
|
id: string;
|
|
@@ -173876,6 +174012,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173876
174012
|
fileIds?: string[] | undefined;
|
|
173877
174013
|
iterationId?: string | undefined;
|
|
173878
174014
|
} | undefined;
|
|
174015
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173879
174016
|
};
|
|
173880
174017
|
name?: string | undefined;
|
|
173881
174018
|
sectionId?: string | undefined;
|
|
@@ -173893,6 +174030,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173893
174030
|
fileIds?: string[] | undefined;
|
|
173894
174031
|
iterationId?: string | undefined;
|
|
173895
174032
|
} | undefined;
|
|
174033
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173896
174034
|
};
|
|
173897
174035
|
name?: string | undefined;
|
|
173898
174036
|
sectionId?: string | undefined;
|
|
@@ -174017,9 +174155,10 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174017
174155
|
iterationId?: string | undefined;
|
|
174018
174156
|
}>>;
|
|
174019
174157
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
174158
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
174020
174159
|
createdAt: z$1.ZodString;
|
|
174021
174160
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
174022
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
174161
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
174023
174162
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
174024
174163
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
174025
174164
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -174040,6 +174179,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174040
174179
|
fileIds?: string[] | undefined;
|
|
174041
174180
|
iterationId?: string | undefined;
|
|
174042
174181
|
} | undefined;
|
|
174182
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174043
174183
|
}, {
|
|
174044
174184
|
id: string;
|
|
174045
174185
|
body: string;
|
|
@@ -174050,6 +174190,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174050
174190
|
fileIds?: string[] | undefined;
|
|
174051
174191
|
iterationId?: string | undefined;
|
|
174052
174192
|
} | undefined;
|
|
174193
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174053
174194
|
}>>;
|
|
174054
174195
|
}, "strip", z$1.ZodTypeAny, {
|
|
174055
174196
|
id: string;
|
|
@@ -174066,6 +174207,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174066
174207
|
fileIds?: string[] | undefined;
|
|
174067
174208
|
iterationId?: string | undefined;
|
|
174068
174209
|
} | undefined;
|
|
174210
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174069
174211
|
} | undefined;
|
|
174070
174212
|
}, {
|
|
174071
174213
|
id: string;
|
|
@@ -174082,6 +174224,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174082
174224
|
fileIds?: string[] | undefined;
|
|
174083
174225
|
iterationId?: string | undefined;
|
|
174084
174226
|
} | undefined;
|
|
174227
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174085
174228
|
} | undefined;
|
|
174086
174229
|
}>>>;
|
|
174087
174230
|
} & {
|
|
@@ -174116,6 +174259,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174116
174259
|
fileIds?: string[] | undefined;
|
|
174117
174260
|
iterationId?: string | undefined;
|
|
174118
174261
|
} | undefined;
|
|
174262
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174119
174263
|
};
|
|
174120
174264
|
name?: string | undefined;
|
|
174121
174265
|
sectionId?: string | undefined;
|
|
@@ -174136,6 +174280,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174136
174280
|
fileIds?: string[] | undefined;
|
|
174137
174281
|
iterationId?: string | undefined;
|
|
174138
174282
|
} | undefined;
|
|
174283
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174139
174284
|
} | undefined;
|
|
174140
174285
|
} | undefined;
|
|
174141
174286
|
}, {
|
|
@@ -174167,6 +174312,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174167
174312
|
fileIds?: string[] | undefined;
|
|
174168
174313
|
iterationId?: string | undefined;
|
|
174169
174314
|
} | undefined;
|
|
174315
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174170
174316
|
};
|
|
174171
174317
|
name?: string | undefined;
|
|
174172
174318
|
sectionId?: string | undefined;
|
|
@@ -174187,6 +174333,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174187
174333
|
fileIds?: string[] | undefined;
|
|
174188
174334
|
iterationId?: string | undefined;
|
|
174189
174335
|
} | undefined;
|
|
174336
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174190
174337
|
} | undefined;
|
|
174191
174338
|
} | undefined;
|
|
174192
174339
|
}>;
|
|
@@ -219271,6 +219418,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219271
219418
|
* If defined, this message is considered to be a reply to different message
|
|
219272
219419
|
*/
|
|
219273
219420
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
219421
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219274
219422
|
createdAt: z__default.ZodString;
|
|
219275
219423
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219276
219424
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219308,6 +219456,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219308
219456
|
iterationId?: string | undefined;
|
|
219309
219457
|
} | undefined;
|
|
219310
219458
|
replyToMessageId?: string | undefined;
|
|
219459
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219311
219460
|
}, {
|
|
219312
219461
|
id: string;
|
|
219313
219462
|
createdAt: string;
|
|
@@ -219343,6 +219492,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219343
219492
|
iterationId?: string | undefined;
|
|
219344
219493
|
} | undefined;
|
|
219345
219494
|
replyToMessageId?: string | undefined;
|
|
219495
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219346
219496
|
}>;
|
|
219347
219497
|
type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
|
|
219348
219498
|
declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
@@ -219592,9 +219742,10 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219592
219742
|
* If defined, this message is considered to be a reply to different message
|
|
219593
219743
|
*/
|
|
219594
219744
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
219745
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219595
219746
|
createdAt: z__default.ZodString;
|
|
219596
219747
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219597
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
219748
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
219598
219749
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
219599
219750
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
219600
219751
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -219615,6 +219766,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219615
219766
|
fileIds?: string[] | undefined;
|
|
219616
219767
|
iterationId?: string | undefined;
|
|
219617
219768
|
} | undefined;
|
|
219769
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219618
219770
|
}, {
|
|
219619
219771
|
id: string;
|
|
219620
219772
|
body: string;
|
|
@@ -219625,6 +219777,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219625
219777
|
fileIds?: string[] | undefined;
|
|
219626
219778
|
iterationId?: string | undefined;
|
|
219627
219779
|
} | undefined;
|
|
219780
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219628
219781
|
}>;
|
|
219629
219782
|
type DTOThreadMessageCreateInput = z__default.infer<typeof DTOThreadMessageCreateInput>;
|
|
219630
219783
|
declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
@@ -219763,6 +219916,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219763
219916
|
* If defined, this message is considered to be a reply to different message
|
|
219764
219917
|
*/
|
|
219765
219918
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
219919
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219766
219920
|
createdAt: z__default.ZodString;
|
|
219767
219921
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219768
219922
|
}, "id"> & {
|
|
@@ -220042,6 +220196,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220042
220196
|
* If defined, this message is considered to be a reply to different message
|
|
220043
220197
|
*/
|
|
220044
220198
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
220199
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220045
220200
|
createdAt: z__default.ZodString;
|
|
220046
220201
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220047
220202
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220079,6 +220234,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220079
220234
|
iterationId?: string | undefined;
|
|
220080
220235
|
} | undefined;
|
|
220081
220236
|
replyToMessageId?: string | undefined;
|
|
220237
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220082
220238
|
}, {
|
|
220083
220239
|
id: string;
|
|
220084
220240
|
createdAt: string;
|
|
@@ -220114,6 +220270,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220114
220270
|
iterationId?: string | undefined;
|
|
220115
220271
|
} | undefined;
|
|
220116
220272
|
replyToMessageId?: string | undefined;
|
|
220273
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220117
220274
|
}>;
|
|
220118
220275
|
}, "strip", z__default.ZodTypeAny, {
|
|
220119
220276
|
message: {
|
|
@@ -220151,6 +220308,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220151
220308
|
iterationId?: string | undefined;
|
|
220152
220309
|
} | undefined;
|
|
220153
220310
|
replyToMessageId?: string | undefined;
|
|
220311
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220154
220312
|
};
|
|
220155
220313
|
}, {
|
|
220156
220314
|
message: {
|
|
@@ -220188,6 +220346,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220188
220346
|
iterationId?: string | undefined;
|
|
220189
220347
|
} | undefined;
|
|
220190
220348
|
replyToMessageId?: string | undefined;
|
|
220349
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220191
220350
|
};
|
|
220192
220351
|
}>;
|
|
220193
220352
|
type DTOThreadMessageResponse = z__default.infer<typeof DTOThreadMessageResponse>;
|
|
@@ -220361,6 +220520,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220361
220520
|
* If defined, this message is considered to be a reply to different message
|
|
220362
220521
|
*/
|
|
220363
220522
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
220523
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220364
220524
|
createdAt: z__default.ZodString;
|
|
220365
220525
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220366
220526
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220398,6 +220558,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220398
220558
|
iterationId?: string | undefined;
|
|
220399
220559
|
} | undefined;
|
|
220400
220560
|
replyToMessageId?: string | undefined;
|
|
220561
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220401
220562
|
}, {
|
|
220402
220563
|
id: string;
|
|
220403
220564
|
createdAt: string;
|
|
@@ -220433,6 +220594,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220433
220594
|
iterationId?: string | undefined;
|
|
220434
220595
|
} | undefined;
|
|
220435
220596
|
replyToMessageId?: string | undefined;
|
|
220597
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220436
220598
|
}>, "many">;
|
|
220437
220599
|
reactions: z__default.ZodArray<z__default.ZodObject<{
|
|
220438
220600
|
messageId: z__default.ZodString;
|
|
@@ -220487,6 +220649,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220487
220649
|
iterationId?: string | undefined;
|
|
220488
220650
|
} | undefined;
|
|
220489
220651
|
replyToMessageId?: string | undefined;
|
|
220652
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220490
220653
|
}[];
|
|
220491
220654
|
reactions: {
|
|
220492
220655
|
createdAt: string;
|
|
@@ -220531,6 +220694,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220531
220694
|
iterationId?: string | undefined;
|
|
220532
220695
|
} | undefined;
|
|
220533
220696
|
replyToMessageId?: string | undefined;
|
|
220697
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220534
220698
|
}[];
|
|
220535
220699
|
reactions: {
|
|
220536
220700
|
createdAt: string;
|
|
@@ -220679,6 +220843,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220679
220843
|
* If defined, this message is considered to be a reply to different message
|
|
220680
220844
|
*/
|
|
220681
220845
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
220846
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220682
220847
|
createdAt: z__default.ZodString;
|
|
220683
220848
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220684
220849
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220716,6 +220881,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220716
220881
|
iterationId?: string | undefined;
|
|
220717
220882
|
} | undefined;
|
|
220718
220883
|
replyToMessageId?: string | undefined;
|
|
220884
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220719
220885
|
}, {
|
|
220720
220886
|
id: string;
|
|
220721
220887
|
createdAt: string;
|
|
@@ -220751,6 +220917,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220751
220917
|
iterationId?: string | undefined;
|
|
220752
220918
|
} | undefined;
|
|
220753
220919
|
replyToMessageId?: string | undefined;
|
|
220920
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220754
220921
|
}>, "many">;
|
|
220755
220922
|
}, "strip", z__default.ZodTypeAny, {
|
|
220756
220923
|
type: "MessagesSent";
|
|
@@ -220789,6 +220956,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220789
220956
|
iterationId?: string | undefined;
|
|
220790
220957
|
} | undefined;
|
|
220791
220958
|
replyToMessageId?: string | undefined;
|
|
220959
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220792
220960
|
}[];
|
|
220793
220961
|
}, {
|
|
220794
220962
|
type: "MessagesSent";
|
|
@@ -220827,6 +220995,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220827
220995
|
iterationId?: string | undefined;
|
|
220828
220996
|
} | undefined;
|
|
220829
220997
|
replyToMessageId?: string | undefined;
|
|
220998
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220830
220999
|
}[];
|
|
220831
221000
|
}>;
|
|
220832
221001
|
type DTOThreadEventMessagesSent = z__default.infer<typeof DTOThreadEventMessagesSent>;
|
|
@@ -220968,6 +221137,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220968
221137
|
* If defined, this message is considered to be a reply to different message
|
|
220969
221138
|
*/
|
|
220970
221139
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221140
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220971
221141
|
createdAt: z__default.ZodString;
|
|
220972
221142
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220973
221143
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221005,6 +221175,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221005
221175
|
iterationId?: string | undefined;
|
|
221006
221176
|
} | undefined;
|
|
221007
221177
|
replyToMessageId?: string | undefined;
|
|
221178
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221008
221179
|
}, {
|
|
221009
221180
|
id: string;
|
|
221010
221181
|
createdAt: string;
|
|
@@ -221040,6 +221211,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221040
221211
|
iterationId?: string | undefined;
|
|
221041
221212
|
} | undefined;
|
|
221042
221213
|
replyToMessageId?: string | undefined;
|
|
221214
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221043
221215
|
}>, "many">;
|
|
221044
221216
|
}, "strip", z__default.ZodTypeAny, {
|
|
221045
221217
|
type: "MessagesUpdated";
|
|
@@ -221078,6 +221250,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221078
221250
|
iterationId?: string | undefined;
|
|
221079
221251
|
} | undefined;
|
|
221080
221252
|
replyToMessageId?: string | undefined;
|
|
221253
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221081
221254
|
}[];
|
|
221082
221255
|
}, {
|
|
221083
221256
|
type: "MessagesUpdated";
|
|
@@ -221116,6 +221289,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221116
221289
|
iterationId?: string | undefined;
|
|
221117
221290
|
} | undefined;
|
|
221118
221291
|
replyToMessageId?: string | undefined;
|
|
221292
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221119
221293
|
}[];
|
|
221120
221294
|
}>;
|
|
221121
221295
|
type DTOThreadEventMessagesUpdated = z__default.infer<typeof DTOThreadEventMessagesUpdated>;
|
|
@@ -221329,6 +221503,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221329
221503
|
* If defined, this message is considered to be a reply to different message
|
|
221330
221504
|
*/
|
|
221331
221505
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221506
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
221332
221507
|
createdAt: z__default.ZodString;
|
|
221333
221508
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
221334
221509
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221366,6 +221541,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221366
221541
|
iterationId?: string | undefined;
|
|
221367
221542
|
} | undefined;
|
|
221368
221543
|
replyToMessageId?: string | undefined;
|
|
221544
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221369
221545
|
}, {
|
|
221370
221546
|
id: string;
|
|
221371
221547
|
createdAt: string;
|
|
@@ -221401,6 +221577,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221401
221577
|
iterationId?: string | undefined;
|
|
221402
221578
|
} | undefined;
|
|
221403
221579
|
replyToMessageId?: string | undefined;
|
|
221580
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221404
221581
|
}>, "many">;
|
|
221405
221582
|
}, "strip", z__default.ZodTypeAny, {
|
|
221406
221583
|
type: "MessagesSent";
|
|
@@ -221439,6 +221616,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221439
221616
|
iterationId?: string | undefined;
|
|
221440
221617
|
} | undefined;
|
|
221441
221618
|
replyToMessageId?: string | undefined;
|
|
221619
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221442
221620
|
}[];
|
|
221443
221621
|
}, {
|
|
221444
221622
|
type: "MessagesSent";
|
|
@@ -221477,6 +221655,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221477
221655
|
iterationId?: string | undefined;
|
|
221478
221656
|
} | undefined;
|
|
221479
221657
|
replyToMessageId?: string | undefined;
|
|
221658
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221480
221659
|
}[];
|
|
221481
221660
|
}>, z__default.ZodObject<{
|
|
221482
221661
|
type: z__default.ZodLiteral<"MessagesUpdated">;
|
|
@@ -221616,6 +221795,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221616
221795
|
* If defined, this message is considered to be a reply to different message
|
|
221617
221796
|
*/
|
|
221618
221797
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221798
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
221619
221799
|
createdAt: z__default.ZodString;
|
|
221620
221800
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
221621
221801
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221653,6 +221833,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221653
221833
|
iterationId?: string | undefined;
|
|
221654
221834
|
} | undefined;
|
|
221655
221835
|
replyToMessageId?: string | undefined;
|
|
221836
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221656
221837
|
}, {
|
|
221657
221838
|
id: string;
|
|
221658
221839
|
createdAt: string;
|
|
@@ -221688,6 +221869,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221688
221869
|
iterationId?: string | undefined;
|
|
221689
221870
|
} | undefined;
|
|
221690
221871
|
replyToMessageId?: string | undefined;
|
|
221872
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221691
221873
|
}>, "many">;
|
|
221692
221874
|
}, "strip", z__default.ZodTypeAny, {
|
|
221693
221875
|
type: "MessagesUpdated";
|
|
@@ -221726,6 +221908,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221726
221908
|
iterationId?: string | undefined;
|
|
221727
221909
|
} | undefined;
|
|
221728
221910
|
replyToMessageId?: string | undefined;
|
|
221911
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221729
221912
|
}[];
|
|
221730
221913
|
}, {
|
|
221731
221914
|
type: "MessagesUpdated";
|
|
@@ -221764,6 +221947,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221764
221947
|
iterationId?: string | undefined;
|
|
221765
221948
|
} | undefined;
|
|
221766
221949
|
replyToMessageId?: string | undefined;
|
|
221950
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221767
221951
|
}[];
|
|
221768
221952
|
}>, z__default.ZodObject<{
|
|
221769
221953
|
type: z__default.ZodLiteral<"ReactionsSent">;
|
|
@@ -250700,6 +250884,7 @@ declare class ThreadsEndpoint {
|
|
|
250700
250884
|
iterationId?: string | undefined;
|
|
250701
250885
|
} | undefined;
|
|
250702
250886
|
replyToMessageId?: string | undefined;
|
|
250887
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
250703
250888
|
}[];
|
|
250704
250889
|
reactions: {
|
|
250705
250890
|
createdAt: string;
|
|
@@ -250745,6 +250930,7 @@ declare class ThreadsEndpoint {
|
|
|
250745
250930
|
iterationId?: string | undefined;
|
|
250746
250931
|
} | undefined;
|
|
250747
250932
|
replyToMessageId?: string | undefined;
|
|
250933
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
250748
250934
|
}[];
|
|
250749
250935
|
reactions: {
|
|
250750
250936
|
createdAt: string;
|
|
@@ -253716,4 +253902,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
253716
253902
|
reason: ValidationErrorReason | undefined;
|
|
253717
253903
|
};
|
|
253718
253904
|
|
|
253719
|
-
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, DTOForgeRelation, 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, DTOTrailEventWithDetails, 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, DTOWorkspaceInvitation, 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 };
|
|
253905
|
+
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, DTOFeatureIterationUpdateArtifactsByMessageInput, 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, DTOForgeRelation, 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, DTOTrailEventWithDetails, 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, DTOWorkspaceInvitation, 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 };
|