@supernova-studio/client 1.43.2 → 1.43.4
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 +1284 -12
- package/dist/index.d.ts +1284 -12
- package/dist/index.js +25 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
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>;
|
|
@@ -83620,6 +83734,1092 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
83620
83734
|
}[];
|
|
83621
83735
|
}>;
|
|
83622
83736
|
type DTOForgeProjectArtifactsListResponse = z$1.infer<typeof DTOForgeProjectArtifactsListResponse>;
|
|
83737
|
+
declare const DTOForgeProjectArtifactContentResponse: z$1.ZodObject<{
|
|
83738
|
+
artifactId: z$1.ZodString;
|
|
83739
|
+
content: z$1.ZodObject<{
|
|
83740
|
+
items: z$1.ZodArray<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
83741
|
+
id: z$1.ZodString;
|
|
83742
|
+
type: z$1.ZodLiteral<"Block">;
|
|
83743
|
+
data: z$1.ZodObject<{
|
|
83744
|
+
packageId: z$1.ZodString;
|
|
83745
|
+
variantId: z$1.ZodOptional<z$1.ZodString>;
|
|
83746
|
+
indentLevel: z$1.ZodNumber;
|
|
83747
|
+
appearance: z$1.ZodOptional<z$1.ZodObject<{
|
|
83748
|
+
itemBackgroundColor: z$1.ZodOptional<z$1.ZodObject<{
|
|
83749
|
+
value: z$1.ZodString;
|
|
83750
|
+
referencedTokenId: z$1.ZodOptional<z$1.ZodString>;
|
|
83751
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83752
|
+
value: string;
|
|
83753
|
+
referencedTokenId?: string | undefined;
|
|
83754
|
+
}, {
|
|
83755
|
+
value: string;
|
|
83756
|
+
referencedTokenId?: string | undefined;
|
|
83757
|
+
}>>;
|
|
83758
|
+
numberOfColumns: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83759
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83760
|
+
numberOfColumns?: number | undefined;
|
|
83761
|
+
itemBackgroundColor?: {
|
|
83762
|
+
value: string;
|
|
83763
|
+
referencedTokenId?: string | undefined;
|
|
83764
|
+
} | undefined;
|
|
83765
|
+
}, {
|
|
83766
|
+
numberOfColumns?: number | undefined;
|
|
83767
|
+
itemBackgroundColor?: {
|
|
83768
|
+
value: string;
|
|
83769
|
+
referencedTokenId?: string | undefined;
|
|
83770
|
+
} | undefined;
|
|
83771
|
+
}>>;
|
|
83772
|
+
items: z$1.ZodArray<z$1.ZodObject<{
|
|
83773
|
+
id: z$1.ZodString;
|
|
83774
|
+
linksTo: z$1.ZodOptional<z$1.ZodObject<{
|
|
83775
|
+
type: z$1.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
83776
|
+
documentationItemId: z$1.ZodOptional<z$1.ZodString>;
|
|
83777
|
+
pageHeadingId: z$1.ZodOptional<z$1.ZodString>;
|
|
83778
|
+
url: z$1.ZodOptional<z$1.ZodString>;
|
|
83779
|
+
openInNewTab: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83780
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83781
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83782
|
+
url?: string | undefined;
|
|
83783
|
+
documentationItemId?: string | undefined;
|
|
83784
|
+
pageHeadingId?: string | undefined;
|
|
83785
|
+
openInNewTab?: boolean | undefined;
|
|
83786
|
+
}, {
|
|
83787
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83788
|
+
url?: string | undefined;
|
|
83789
|
+
documentationItemId?: string | undefined;
|
|
83790
|
+
pageHeadingId?: string | undefined;
|
|
83791
|
+
openInNewTab?: boolean | undefined;
|
|
83792
|
+
}>>;
|
|
83793
|
+
props: z$1.ZodRecord<z$1.ZodString, z$1.ZodIntersection<z$1.ZodObject<{
|
|
83794
|
+
value: z$1.ZodAny;
|
|
83795
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83796
|
+
value?: any;
|
|
83797
|
+
}, {
|
|
83798
|
+
value?: any;
|
|
83799
|
+
}>, z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>>;
|
|
83800
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83801
|
+
id: string;
|
|
83802
|
+
props: Record<string, {
|
|
83803
|
+
value?: any;
|
|
83804
|
+
} & Record<string, any>>;
|
|
83805
|
+
linksTo?: {
|
|
83806
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83807
|
+
url?: string | undefined;
|
|
83808
|
+
documentationItemId?: string | undefined;
|
|
83809
|
+
pageHeadingId?: string | undefined;
|
|
83810
|
+
openInNewTab?: boolean | undefined;
|
|
83811
|
+
} | undefined;
|
|
83812
|
+
}, {
|
|
83813
|
+
id: string;
|
|
83814
|
+
props: Record<string, {
|
|
83815
|
+
value?: any;
|
|
83816
|
+
} & Record<string, any>>;
|
|
83817
|
+
linksTo?: {
|
|
83818
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83819
|
+
url?: string | undefined;
|
|
83820
|
+
documentationItemId?: string | undefined;
|
|
83821
|
+
pageHeadingId?: string | undefined;
|
|
83822
|
+
openInNewTab?: boolean | undefined;
|
|
83823
|
+
} | undefined;
|
|
83824
|
+
}>, "many">;
|
|
83825
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83826
|
+
items: {
|
|
83827
|
+
id: string;
|
|
83828
|
+
props: Record<string, {
|
|
83829
|
+
value?: any;
|
|
83830
|
+
} & Record<string, any>>;
|
|
83831
|
+
linksTo?: {
|
|
83832
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83833
|
+
url?: string | undefined;
|
|
83834
|
+
documentationItemId?: string | undefined;
|
|
83835
|
+
pageHeadingId?: string | undefined;
|
|
83836
|
+
openInNewTab?: boolean | undefined;
|
|
83837
|
+
} | undefined;
|
|
83838
|
+
}[];
|
|
83839
|
+
packageId: string;
|
|
83840
|
+
indentLevel: number;
|
|
83841
|
+
appearance?: {
|
|
83842
|
+
numberOfColumns?: number | undefined;
|
|
83843
|
+
itemBackgroundColor?: {
|
|
83844
|
+
value: string;
|
|
83845
|
+
referencedTokenId?: string | undefined;
|
|
83846
|
+
} | undefined;
|
|
83847
|
+
} | undefined;
|
|
83848
|
+
variantId?: string | undefined;
|
|
83849
|
+
}, {
|
|
83850
|
+
items: {
|
|
83851
|
+
id: string;
|
|
83852
|
+
props: Record<string, {
|
|
83853
|
+
value?: any;
|
|
83854
|
+
} & Record<string, any>>;
|
|
83855
|
+
linksTo?: {
|
|
83856
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83857
|
+
url?: string | undefined;
|
|
83858
|
+
documentationItemId?: string | undefined;
|
|
83859
|
+
pageHeadingId?: string | undefined;
|
|
83860
|
+
openInNewTab?: boolean | undefined;
|
|
83861
|
+
} | undefined;
|
|
83862
|
+
}[];
|
|
83863
|
+
packageId: string;
|
|
83864
|
+
indentLevel: number;
|
|
83865
|
+
appearance?: {
|
|
83866
|
+
numberOfColumns?: number | undefined;
|
|
83867
|
+
itemBackgroundColor?: {
|
|
83868
|
+
value: string;
|
|
83869
|
+
referencedTokenId?: string | undefined;
|
|
83870
|
+
} | undefined;
|
|
83871
|
+
} | undefined;
|
|
83872
|
+
variantId?: string | undefined;
|
|
83873
|
+
}>;
|
|
83874
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83875
|
+
type: "Block";
|
|
83876
|
+
data: {
|
|
83877
|
+
items: {
|
|
83878
|
+
id: string;
|
|
83879
|
+
props: Record<string, {
|
|
83880
|
+
value?: any;
|
|
83881
|
+
} & Record<string, any>>;
|
|
83882
|
+
linksTo?: {
|
|
83883
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83884
|
+
url?: string | undefined;
|
|
83885
|
+
documentationItemId?: string | undefined;
|
|
83886
|
+
pageHeadingId?: string | undefined;
|
|
83887
|
+
openInNewTab?: boolean | undefined;
|
|
83888
|
+
} | undefined;
|
|
83889
|
+
}[];
|
|
83890
|
+
packageId: string;
|
|
83891
|
+
indentLevel: number;
|
|
83892
|
+
appearance?: {
|
|
83893
|
+
numberOfColumns?: number | undefined;
|
|
83894
|
+
itemBackgroundColor?: {
|
|
83895
|
+
value: string;
|
|
83896
|
+
referencedTokenId?: string | undefined;
|
|
83897
|
+
} | undefined;
|
|
83898
|
+
} | undefined;
|
|
83899
|
+
variantId?: string | undefined;
|
|
83900
|
+
};
|
|
83901
|
+
id: string;
|
|
83902
|
+
}, {
|
|
83903
|
+
type: "Block";
|
|
83904
|
+
data: {
|
|
83905
|
+
items: {
|
|
83906
|
+
id: string;
|
|
83907
|
+
props: Record<string, {
|
|
83908
|
+
value?: any;
|
|
83909
|
+
} & Record<string, any>>;
|
|
83910
|
+
linksTo?: {
|
|
83911
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
83912
|
+
url?: string | undefined;
|
|
83913
|
+
documentationItemId?: string | undefined;
|
|
83914
|
+
pageHeadingId?: string | undefined;
|
|
83915
|
+
openInNewTab?: boolean | undefined;
|
|
83916
|
+
} | undefined;
|
|
83917
|
+
}[];
|
|
83918
|
+
packageId: string;
|
|
83919
|
+
indentLevel: number;
|
|
83920
|
+
appearance?: {
|
|
83921
|
+
numberOfColumns?: number | undefined;
|
|
83922
|
+
itemBackgroundColor?: {
|
|
83923
|
+
value: string;
|
|
83924
|
+
referencedTokenId?: string | undefined;
|
|
83925
|
+
} | undefined;
|
|
83926
|
+
} | undefined;
|
|
83927
|
+
variantId?: string | undefined;
|
|
83928
|
+
};
|
|
83929
|
+
id: string;
|
|
83930
|
+
}>, z$1.ZodObject<{
|
|
83931
|
+
id: z$1.ZodString;
|
|
83932
|
+
type: z$1.ZodLiteral<"Section">;
|
|
83933
|
+
variantId: z$1.ZodOptional<z$1.ZodString>;
|
|
83934
|
+
sectionType: z$1.ZodEnum<["Tabs"]>;
|
|
83935
|
+
appearance: z$1.ZodObject<{
|
|
83936
|
+
expandToEdges: z$1.ZodBoolean;
|
|
83937
|
+
contentExpandToEdges: z$1.ZodBoolean;
|
|
83938
|
+
backgroundColor: z$1.ZodOptional<z$1.ZodObject<{
|
|
83939
|
+
value: z$1.ZodString;
|
|
83940
|
+
referencedTokenId: z$1.ZodOptional<z$1.ZodString>;
|
|
83941
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83942
|
+
value: string;
|
|
83943
|
+
referencedTokenId?: string | undefined;
|
|
83944
|
+
}, {
|
|
83945
|
+
value: string;
|
|
83946
|
+
referencedTokenId?: string | undefined;
|
|
83947
|
+
}>>;
|
|
83948
|
+
foregroundColor: z$1.ZodOptional<z$1.ZodObject<{
|
|
83949
|
+
value: z$1.ZodString;
|
|
83950
|
+
referencedTokenId: z$1.ZodOptional<z$1.ZodString>;
|
|
83951
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83952
|
+
value: string;
|
|
83953
|
+
referencedTokenId?: string | undefined;
|
|
83954
|
+
}, {
|
|
83955
|
+
value: string;
|
|
83956
|
+
referencedTokenId?: string | undefined;
|
|
83957
|
+
}>>;
|
|
83958
|
+
padding: z$1.ZodOptional<z$1.ZodObject<{
|
|
83959
|
+
top: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83960
|
+
bottom: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83961
|
+
left: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83962
|
+
right: z$1.ZodOptional<z$1.ZodNumber>;
|
|
83963
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83964
|
+
top?: number | undefined;
|
|
83965
|
+
bottom?: number | undefined;
|
|
83966
|
+
left?: number | undefined;
|
|
83967
|
+
right?: number | undefined;
|
|
83968
|
+
}, {
|
|
83969
|
+
top?: number | undefined;
|
|
83970
|
+
bottom?: number | undefined;
|
|
83971
|
+
left?: number | undefined;
|
|
83972
|
+
right?: number | undefined;
|
|
83973
|
+
}>>;
|
|
83974
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
83975
|
+
expandToEdges: boolean;
|
|
83976
|
+
contentExpandToEdges: boolean;
|
|
83977
|
+
backgroundColor?: {
|
|
83978
|
+
value: string;
|
|
83979
|
+
referencedTokenId?: string | undefined;
|
|
83980
|
+
} | undefined;
|
|
83981
|
+
foregroundColor?: {
|
|
83982
|
+
value: string;
|
|
83983
|
+
referencedTokenId?: string | undefined;
|
|
83984
|
+
} | undefined;
|
|
83985
|
+
padding?: {
|
|
83986
|
+
top?: number | undefined;
|
|
83987
|
+
bottom?: number | undefined;
|
|
83988
|
+
left?: number | undefined;
|
|
83989
|
+
right?: number | undefined;
|
|
83990
|
+
} | undefined;
|
|
83991
|
+
}, {
|
|
83992
|
+
expandToEdges: boolean;
|
|
83993
|
+
contentExpandToEdges: boolean;
|
|
83994
|
+
backgroundColor?: {
|
|
83995
|
+
value: string;
|
|
83996
|
+
referencedTokenId?: string | undefined;
|
|
83997
|
+
} | undefined;
|
|
83998
|
+
foregroundColor?: {
|
|
83999
|
+
value: string;
|
|
84000
|
+
referencedTokenId?: string | undefined;
|
|
84001
|
+
} | undefined;
|
|
84002
|
+
padding?: {
|
|
84003
|
+
top?: number | undefined;
|
|
84004
|
+
bottom?: number | undefined;
|
|
84005
|
+
left?: number | undefined;
|
|
84006
|
+
right?: number | undefined;
|
|
84007
|
+
} | undefined;
|
|
84008
|
+
}>;
|
|
84009
|
+
items: z$1.ZodArray<z$1.ZodObject<{
|
|
84010
|
+
id: z$1.ZodString;
|
|
84011
|
+
title: z$1.ZodString;
|
|
84012
|
+
columns: z$1.ZodArray<z$1.ZodObject<{
|
|
84013
|
+
id: z$1.ZodString;
|
|
84014
|
+
blocks: z$1.ZodArray<z$1.ZodObject<{
|
|
84015
|
+
id: z$1.ZodString;
|
|
84016
|
+
type: z$1.ZodLiteral<"Block">;
|
|
84017
|
+
data: z$1.ZodObject<{
|
|
84018
|
+
packageId: z$1.ZodString;
|
|
84019
|
+
variantId: z$1.ZodOptional<z$1.ZodString>;
|
|
84020
|
+
indentLevel: z$1.ZodNumber;
|
|
84021
|
+
appearance: z$1.ZodOptional<z$1.ZodObject<{
|
|
84022
|
+
itemBackgroundColor: z$1.ZodOptional<z$1.ZodObject<{
|
|
84023
|
+
value: z$1.ZodString;
|
|
84024
|
+
referencedTokenId: z$1.ZodOptional<z$1.ZodString>;
|
|
84025
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84026
|
+
value: string;
|
|
84027
|
+
referencedTokenId?: string | undefined;
|
|
84028
|
+
}, {
|
|
84029
|
+
value: string;
|
|
84030
|
+
referencedTokenId?: string | undefined;
|
|
84031
|
+
}>>;
|
|
84032
|
+
numberOfColumns: z$1.ZodOptional<z$1.ZodNumber>;
|
|
84033
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84034
|
+
numberOfColumns?: number | undefined;
|
|
84035
|
+
itemBackgroundColor?: {
|
|
84036
|
+
value: string;
|
|
84037
|
+
referencedTokenId?: string | undefined;
|
|
84038
|
+
} | undefined;
|
|
84039
|
+
}, {
|
|
84040
|
+
numberOfColumns?: number | undefined;
|
|
84041
|
+
itemBackgroundColor?: {
|
|
84042
|
+
value: string;
|
|
84043
|
+
referencedTokenId?: string | undefined;
|
|
84044
|
+
} | undefined;
|
|
84045
|
+
}>>;
|
|
84046
|
+
items: z$1.ZodArray<z$1.ZodObject<{
|
|
84047
|
+
id: z$1.ZodString;
|
|
84048
|
+
linksTo: z$1.ZodOptional<z$1.ZodObject<{
|
|
84049
|
+
type: z$1.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
84050
|
+
documentationItemId: z$1.ZodOptional<z$1.ZodString>;
|
|
84051
|
+
pageHeadingId: z$1.ZodOptional<z$1.ZodString>;
|
|
84052
|
+
url: z$1.ZodOptional<z$1.ZodString>;
|
|
84053
|
+
openInNewTab: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
84054
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84055
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84056
|
+
url?: string | undefined;
|
|
84057
|
+
documentationItemId?: string | undefined;
|
|
84058
|
+
pageHeadingId?: string | undefined;
|
|
84059
|
+
openInNewTab?: boolean | undefined;
|
|
84060
|
+
}, {
|
|
84061
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84062
|
+
url?: string | undefined;
|
|
84063
|
+
documentationItemId?: string | undefined;
|
|
84064
|
+
pageHeadingId?: string | undefined;
|
|
84065
|
+
openInNewTab?: boolean | undefined;
|
|
84066
|
+
}>>;
|
|
84067
|
+
props: z$1.ZodRecord<z$1.ZodString, z$1.ZodIntersection<z$1.ZodObject<{
|
|
84068
|
+
value: z$1.ZodAny;
|
|
84069
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84070
|
+
value?: any;
|
|
84071
|
+
}, {
|
|
84072
|
+
value?: any;
|
|
84073
|
+
}>, z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>>;
|
|
84074
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84075
|
+
id: string;
|
|
84076
|
+
props: Record<string, {
|
|
84077
|
+
value?: any;
|
|
84078
|
+
} & Record<string, any>>;
|
|
84079
|
+
linksTo?: {
|
|
84080
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84081
|
+
url?: string | undefined;
|
|
84082
|
+
documentationItemId?: string | undefined;
|
|
84083
|
+
pageHeadingId?: string | undefined;
|
|
84084
|
+
openInNewTab?: boolean | undefined;
|
|
84085
|
+
} | undefined;
|
|
84086
|
+
}, {
|
|
84087
|
+
id: string;
|
|
84088
|
+
props: Record<string, {
|
|
84089
|
+
value?: any;
|
|
84090
|
+
} & Record<string, any>>;
|
|
84091
|
+
linksTo?: {
|
|
84092
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84093
|
+
url?: string | undefined;
|
|
84094
|
+
documentationItemId?: string | undefined;
|
|
84095
|
+
pageHeadingId?: string | undefined;
|
|
84096
|
+
openInNewTab?: boolean | undefined;
|
|
84097
|
+
} | undefined;
|
|
84098
|
+
}>, "many">;
|
|
84099
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84100
|
+
items: {
|
|
84101
|
+
id: string;
|
|
84102
|
+
props: Record<string, {
|
|
84103
|
+
value?: any;
|
|
84104
|
+
} & Record<string, any>>;
|
|
84105
|
+
linksTo?: {
|
|
84106
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84107
|
+
url?: string | undefined;
|
|
84108
|
+
documentationItemId?: string | undefined;
|
|
84109
|
+
pageHeadingId?: string | undefined;
|
|
84110
|
+
openInNewTab?: boolean | undefined;
|
|
84111
|
+
} | undefined;
|
|
84112
|
+
}[];
|
|
84113
|
+
packageId: string;
|
|
84114
|
+
indentLevel: number;
|
|
84115
|
+
appearance?: {
|
|
84116
|
+
numberOfColumns?: number | undefined;
|
|
84117
|
+
itemBackgroundColor?: {
|
|
84118
|
+
value: string;
|
|
84119
|
+
referencedTokenId?: string | undefined;
|
|
84120
|
+
} | undefined;
|
|
84121
|
+
} | undefined;
|
|
84122
|
+
variantId?: string | undefined;
|
|
84123
|
+
}, {
|
|
84124
|
+
items: {
|
|
84125
|
+
id: string;
|
|
84126
|
+
props: Record<string, {
|
|
84127
|
+
value?: any;
|
|
84128
|
+
} & Record<string, any>>;
|
|
84129
|
+
linksTo?: {
|
|
84130
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84131
|
+
url?: string | undefined;
|
|
84132
|
+
documentationItemId?: string | undefined;
|
|
84133
|
+
pageHeadingId?: string | undefined;
|
|
84134
|
+
openInNewTab?: boolean | undefined;
|
|
84135
|
+
} | undefined;
|
|
84136
|
+
}[];
|
|
84137
|
+
packageId: string;
|
|
84138
|
+
indentLevel: number;
|
|
84139
|
+
appearance?: {
|
|
84140
|
+
numberOfColumns?: number | undefined;
|
|
84141
|
+
itemBackgroundColor?: {
|
|
84142
|
+
value: string;
|
|
84143
|
+
referencedTokenId?: string | undefined;
|
|
84144
|
+
} | undefined;
|
|
84145
|
+
} | undefined;
|
|
84146
|
+
variantId?: string | undefined;
|
|
84147
|
+
}>;
|
|
84148
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84149
|
+
type: "Block";
|
|
84150
|
+
data: {
|
|
84151
|
+
items: {
|
|
84152
|
+
id: string;
|
|
84153
|
+
props: Record<string, {
|
|
84154
|
+
value?: any;
|
|
84155
|
+
} & Record<string, any>>;
|
|
84156
|
+
linksTo?: {
|
|
84157
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84158
|
+
url?: string | undefined;
|
|
84159
|
+
documentationItemId?: string | undefined;
|
|
84160
|
+
pageHeadingId?: string | undefined;
|
|
84161
|
+
openInNewTab?: boolean | undefined;
|
|
84162
|
+
} | undefined;
|
|
84163
|
+
}[];
|
|
84164
|
+
packageId: string;
|
|
84165
|
+
indentLevel: number;
|
|
84166
|
+
appearance?: {
|
|
84167
|
+
numberOfColumns?: number | undefined;
|
|
84168
|
+
itemBackgroundColor?: {
|
|
84169
|
+
value: string;
|
|
84170
|
+
referencedTokenId?: string | undefined;
|
|
84171
|
+
} | undefined;
|
|
84172
|
+
} | undefined;
|
|
84173
|
+
variantId?: string | undefined;
|
|
84174
|
+
};
|
|
84175
|
+
id: string;
|
|
84176
|
+
}, {
|
|
84177
|
+
type: "Block";
|
|
84178
|
+
data: {
|
|
84179
|
+
items: {
|
|
84180
|
+
id: string;
|
|
84181
|
+
props: Record<string, {
|
|
84182
|
+
value?: any;
|
|
84183
|
+
} & Record<string, any>>;
|
|
84184
|
+
linksTo?: {
|
|
84185
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84186
|
+
url?: string | undefined;
|
|
84187
|
+
documentationItemId?: string | undefined;
|
|
84188
|
+
pageHeadingId?: string | undefined;
|
|
84189
|
+
openInNewTab?: boolean | undefined;
|
|
84190
|
+
} | undefined;
|
|
84191
|
+
}[];
|
|
84192
|
+
packageId: string;
|
|
84193
|
+
indentLevel: number;
|
|
84194
|
+
appearance?: {
|
|
84195
|
+
numberOfColumns?: number | undefined;
|
|
84196
|
+
itemBackgroundColor?: {
|
|
84197
|
+
value: string;
|
|
84198
|
+
referencedTokenId?: string | undefined;
|
|
84199
|
+
} | undefined;
|
|
84200
|
+
} | undefined;
|
|
84201
|
+
variantId?: string | undefined;
|
|
84202
|
+
};
|
|
84203
|
+
id: string;
|
|
84204
|
+
}>, "many">;
|
|
84205
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84206
|
+
id: string;
|
|
84207
|
+
blocks: {
|
|
84208
|
+
type: "Block";
|
|
84209
|
+
data: {
|
|
84210
|
+
items: {
|
|
84211
|
+
id: string;
|
|
84212
|
+
props: Record<string, {
|
|
84213
|
+
value?: any;
|
|
84214
|
+
} & Record<string, any>>;
|
|
84215
|
+
linksTo?: {
|
|
84216
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84217
|
+
url?: string | undefined;
|
|
84218
|
+
documentationItemId?: string | undefined;
|
|
84219
|
+
pageHeadingId?: string | undefined;
|
|
84220
|
+
openInNewTab?: boolean | undefined;
|
|
84221
|
+
} | undefined;
|
|
84222
|
+
}[];
|
|
84223
|
+
packageId: string;
|
|
84224
|
+
indentLevel: number;
|
|
84225
|
+
appearance?: {
|
|
84226
|
+
numberOfColumns?: number | undefined;
|
|
84227
|
+
itemBackgroundColor?: {
|
|
84228
|
+
value: string;
|
|
84229
|
+
referencedTokenId?: string | undefined;
|
|
84230
|
+
} | undefined;
|
|
84231
|
+
} | undefined;
|
|
84232
|
+
variantId?: string | undefined;
|
|
84233
|
+
};
|
|
84234
|
+
id: string;
|
|
84235
|
+
}[];
|
|
84236
|
+
}, {
|
|
84237
|
+
id: string;
|
|
84238
|
+
blocks: {
|
|
84239
|
+
type: "Block";
|
|
84240
|
+
data: {
|
|
84241
|
+
items: {
|
|
84242
|
+
id: string;
|
|
84243
|
+
props: Record<string, {
|
|
84244
|
+
value?: any;
|
|
84245
|
+
} & Record<string, any>>;
|
|
84246
|
+
linksTo?: {
|
|
84247
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84248
|
+
url?: string | undefined;
|
|
84249
|
+
documentationItemId?: string | undefined;
|
|
84250
|
+
pageHeadingId?: string | undefined;
|
|
84251
|
+
openInNewTab?: boolean | undefined;
|
|
84252
|
+
} | undefined;
|
|
84253
|
+
}[];
|
|
84254
|
+
packageId: string;
|
|
84255
|
+
indentLevel: number;
|
|
84256
|
+
appearance?: {
|
|
84257
|
+
numberOfColumns?: number | undefined;
|
|
84258
|
+
itemBackgroundColor?: {
|
|
84259
|
+
value: string;
|
|
84260
|
+
referencedTokenId?: string | undefined;
|
|
84261
|
+
} | undefined;
|
|
84262
|
+
} | undefined;
|
|
84263
|
+
variantId?: string | undefined;
|
|
84264
|
+
};
|
|
84265
|
+
id: string;
|
|
84266
|
+
}[];
|
|
84267
|
+
}>, "many">;
|
|
84268
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84269
|
+
id: string;
|
|
84270
|
+
title: string;
|
|
84271
|
+
columns: {
|
|
84272
|
+
id: string;
|
|
84273
|
+
blocks: {
|
|
84274
|
+
type: "Block";
|
|
84275
|
+
data: {
|
|
84276
|
+
items: {
|
|
84277
|
+
id: string;
|
|
84278
|
+
props: Record<string, {
|
|
84279
|
+
value?: any;
|
|
84280
|
+
} & Record<string, any>>;
|
|
84281
|
+
linksTo?: {
|
|
84282
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84283
|
+
url?: string | undefined;
|
|
84284
|
+
documentationItemId?: string | undefined;
|
|
84285
|
+
pageHeadingId?: string | undefined;
|
|
84286
|
+
openInNewTab?: boolean | undefined;
|
|
84287
|
+
} | undefined;
|
|
84288
|
+
}[];
|
|
84289
|
+
packageId: string;
|
|
84290
|
+
indentLevel: number;
|
|
84291
|
+
appearance?: {
|
|
84292
|
+
numberOfColumns?: number | undefined;
|
|
84293
|
+
itemBackgroundColor?: {
|
|
84294
|
+
value: string;
|
|
84295
|
+
referencedTokenId?: string | undefined;
|
|
84296
|
+
} | undefined;
|
|
84297
|
+
} | undefined;
|
|
84298
|
+
variantId?: string | undefined;
|
|
84299
|
+
};
|
|
84300
|
+
id: string;
|
|
84301
|
+
}[];
|
|
84302
|
+
}[];
|
|
84303
|
+
}, {
|
|
84304
|
+
id: string;
|
|
84305
|
+
title: string;
|
|
84306
|
+
columns: {
|
|
84307
|
+
id: string;
|
|
84308
|
+
blocks: {
|
|
84309
|
+
type: "Block";
|
|
84310
|
+
data: {
|
|
84311
|
+
items: {
|
|
84312
|
+
id: string;
|
|
84313
|
+
props: Record<string, {
|
|
84314
|
+
value?: any;
|
|
84315
|
+
} & Record<string, any>>;
|
|
84316
|
+
linksTo?: {
|
|
84317
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84318
|
+
url?: string | undefined;
|
|
84319
|
+
documentationItemId?: string | undefined;
|
|
84320
|
+
pageHeadingId?: string | undefined;
|
|
84321
|
+
openInNewTab?: boolean | undefined;
|
|
84322
|
+
} | undefined;
|
|
84323
|
+
}[];
|
|
84324
|
+
packageId: string;
|
|
84325
|
+
indentLevel: number;
|
|
84326
|
+
appearance?: {
|
|
84327
|
+
numberOfColumns?: number | undefined;
|
|
84328
|
+
itemBackgroundColor?: {
|
|
84329
|
+
value: string;
|
|
84330
|
+
referencedTokenId?: string | undefined;
|
|
84331
|
+
} | undefined;
|
|
84332
|
+
} | undefined;
|
|
84333
|
+
variantId?: string | undefined;
|
|
84334
|
+
};
|
|
84335
|
+
id: string;
|
|
84336
|
+
}[];
|
|
84337
|
+
}[];
|
|
84338
|
+
}>, "many">;
|
|
84339
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84340
|
+
type: "Section";
|
|
84341
|
+
id: string;
|
|
84342
|
+
items: {
|
|
84343
|
+
id: string;
|
|
84344
|
+
title: string;
|
|
84345
|
+
columns: {
|
|
84346
|
+
id: string;
|
|
84347
|
+
blocks: {
|
|
84348
|
+
type: "Block";
|
|
84349
|
+
data: {
|
|
84350
|
+
items: {
|
|
84351
|
+
id: string;
|
|
84352
|
+
props: Record<string, {
|
|
84353
|
+
value?: any;
|
|
84354
|
+
} & Record<string, any>>;
|
|
84355
|
+
linksTo?: {
|
|
84356
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84357
|
+
url?: string | undefined;
|
|
84358
|
+
documentationItemId?: string | undefined;
|
|
84359
|
+
pageHeadingId?: string | undefined;
|
|
84360
|
+
openInNewTab?: boolean | undefined;
|
|
84361
|
+
} | undefined;
|
|
84362
|
+
}[];
|
|
84363
|
+
packageId: string;
|
|
84364
|
+
indentLevel: number;
|
|
84365
|
+
appearance?: {
|
|
84366
|
+
numberOfColumns?: number | undefined;
|
|
84367
|
+
itemBackgroundColor?: {
|
|
84368
|
+
value: string;
|
|
84369
|
+
referencedTokenId?: string | undefined;
|
|
84370
|
+
} | undefined;
|
|
84371
|
+
} | undefined;
|
|
84372
|
+
variantId?: string | undefined;
|
|
84373
|
+
};
|
|
84374
|
+
id: string;
|
|
84375
|
+
}[];
|
|
84376
|
+
}[];
|
|
84377
|
+
}[];
|
|
84378
|
+
appearance: {
|
|
84379
|
+
expandToEdges: boolean;
|
|
84380
|
+
contentExpandToEdges: boolean;
|
|
84381
|
+
backgroundColor?: {
|
|
84382
|
+
value: string;
|
|
84383
|
+
referencedTokenId?: string | undefined;
|
|
84384
|
+
} | undefined;
|
|
84385
|
+
foregroundColor?: {
|
|
84386
|
+
value: string;
|
|
84387
|
+
referencedTokenId?: string | undefined;
|
|
84388
|
+
} | undefined;
|
|
84389
|
+
padding?: {
|
|
84390
|
+
top?: number | undefined;
|
|
84391
|
+
bottom?: number | undefined;
|
|
84392
|
+
left?: number | undefined;
|
|
84393
|
+
right?: number | undefined;
|
|
84394
|
+
} | undefined;
|
|
84395
|
+
};
|
|
84396
|
+
sectionType: "Tabs";
|
|
84397
|
+
variantId?: string | undefined;
|
|
84398
|
+
}, {
|
|
84399
|
+
type: "Section";
|
|
84400
|
+
id: string;
|
|
84401
|
+
items: {
|
|
84402
|
+
id: string;
|
|
84403
|
+
title: string;
|
|
84404
|
+
columns: {
|
|
84405
|
+
id: string;
|
|
84406
|
+
blocks: {
|
|
84407
|
+
type: "Block";
|
|
84408
|
+
data: {
|
|
84409
|
+
items: {
|
|
84410
|
+
id: string;
|
|
84411
|
+
props: Record<string, {
|
|
84412
|
+
value?: any;
|
|
84413
|
+
} & Record<string, any>>;
|
|
84414
|
+
linksTo?: {
|
|
84415
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84416
|
+
url?: string | undefined;
|
|
84417
|
+
documentationItemId?: string | undefined;
|
|
84418
|
+
pageHeadingId?: string | undefined;
|
|
84419
|
+
openInNewTab?: boolean | undefined;
|
|
84420
|
+
} | undefined;
|
|
84421
|
+
}[];
|
|
84422
|
+
packageId: string;
|
|
84423
|
+
indentLevel: number;
|
|
84424
|
+
appearance?: {
|
|
84425
|
+
numberOfColumns?: number | undefined;
|
|
84426
|
+
itemBackgroundColor?: {
|
|
84427
|
+
value: string;
|
|
84428
|
+
referencedTokenId?: string | undefined;
|
|
84429
|
+
} | undefined;
|
|
84430
|
+
} | undefined;
|
|
84431
|
+
variantId?: string | undefined;
|
|
84432
|
+
};
|
|
84433
|
+
id: string;
|
|
84434
|
+
}[];
|
|
84435
|
+
}[];
|
|
84436
|
+
}[];
|
|
84437
|
+
appearance: {
|
|
84438
|
+
expandToEdges: boolean;
|
|
84439
|
+
contentExpandToEdges: boolean;
|
|
84440
|
+
backgroundColor?: {
|
|
84441
|
+
value: string;
|
|
84442
|
+
referencedTokenId?: string | undefined;
|
|
84443
|
+
} | undefined;
|
|
84444
|
+
foregroundColor?: {
|
|
84445
|
+
value: string;
|
|
84446
|
+
referencedTokenId?: string | undefined;
|
|
84447
|
+
} | undefined;
|
|
84448
|
+
padding?: {
|
|
84449
|
+
top?: number | undefined;
|
|
84450
|
+
bottom?: number | undefined;
|
|
84451
|
+
left?: number | undefined;
|
|
84452
|
+
right?: number | undefined;
|
|
84453
|
+
} | undefined;
|
|
84454
|
+
};
|
|
84455
|
+
sectionType: "Tabs";
|
|
84456
|
+
variantId?: string | undefined;
|
|
84457
|
+
}>]>, "many">;
|
|
84458
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84459
|
+
items: ({
|
|
84460
|
+
type: "Block";
|
|
84461
|
+
data: {
|
|
84462
|
+
items: {
|
|
84463
|
+
id: string;
|
|
84464
|
+
props: Record<string, {
|
|
84465
|
+
value?: any;
|
|
84466
|
+
} & Record<string, any>>;
|
|
84467
|
+
linksTo?: {
|
|
84468
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84469
|
+
url?: string | undefined;
|
|
84470
|
+
documentationItemId?: string | undefined;
|
|
84471
|
+
pageHeadingId?: string | undefined;
|
|
84472
|
+
openInNewTab?: boolean | undefined;
|
|
84473
|
+
} | undefined;
|
|
84474
|
+
}[];
|
|
84475
|
+
packageId: string;
|
|
84476
|
+
indentLevel: number;
|
|
84477
|
+
appearance?: {
|
|
84478
|
+
numberOfColumns?: number | undefined;
|
|
84479
|
+
itemBackgroundColor?: {
|
|
84480
|
+
value: string;
|
|
84481
|
+
referencedTokenId?: string | undefined;
|
|
84482
|
+
} | undefined;
|
|
84483
|
+
} | undefined;
|
|
84484
|
+
variantId?: string | undefined;
|
|
84485
|
+
};
|
|
84486
|
+
id: string;
|
|
84487
|
+
} | {
|
|
84488
|
+
type: "Section";
|
|
84489
|
+
id: string;
|
|
84490
|
+
items: {
|
|
84491
|
+
id: string;
|
|
84492
|
+
title: string;
|
|
84493
|
+
columns: {
|
|
84494
|
+
id: string;
|
|
84495
|
+
blocks: {
|
|
84496
|
+
type: "Block";
|
|
84497
|
+
data: {
|
|
84498
|
+
items: {
|
|
84499
|
+
id: string;
|
|
84500
|
+
props: Record<string, {
|
|
84501
|
+
value?: any;
|
|
84502
|
+
} & Record<string, any>>;
|
|
84503
|
+
linksTo?: {
|
|
84504
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84505
|
+
url?: string | undefined;
|
|
84506
|
+
documentationItemId?: string | undefined;
|
|
84507
|
+
pageHeadingId?: string | undefined;
|
|
84508
|
+
openInNewTab?: boolean | undefined;
|
|
84509
|
+
} | undefined;
|
|
84510
|
+
}[];
|
|
84511
|
+
packageId: string;
|
|
84512
|
+
indentLevel: number;
|
|
84513
|
+
appearance?: {
|
|
84514
|
+
numberOfColumns?: number | undefined;
|
|
84515
|
+
itemBackgroundColor?: {
|
|
84516
|
+
value: string;
|
|
84517
|
+
referencedTokenId?: string | undefined;
|
|
84518
|
+
} | undefined;
|
|
84519
|
+
} | undefined;
|
|
84520
|
+
variantId?: string | undefined;
|
|
84521
|
+
};
|
|
84522
|
+
id: string;
|
|
84523
|
+
}[];
|
|
84524
|
+
}[];
|
|
84525
|
+
}[];
|
|
84526
|
+
appearance: {
|
|
84527
|
+
expandToEdges: boolean;
|
|
84528
|
+
contentExpandToEdges: boolean;
|
|
84529
|
+
backgroundColor?: {
|
|
84530
|
+
value: string;
|
|
84531
|
+
referencedTokenId?: string | undefined;
|
|
84532
|
+
} | undefined;
|
|
84533
|
+
foregroundColor?: {
|
|
84534
|
+
value: string;
|
|
84535
|
+
referencedTokenId?: string | undefined;
|
|
84536
|
+
} | undefined;
|
|
84537
|
+
padding?: {
|
|
84538
|
+
top?: number | undefined;
|
|
84539
|
+
bottom?: number | undefined;
|
|
84540
|
+
left?: number | undefined;
|
|
84541
|
+
right?: number | undefined;
|
|
84542
|
+
} | undefined;
|
|
84543
|
+
};
|
|
84544
|
+
sectionType: "Tabs";
|
|
84545
|
+
variantId?: string | undefined;
|
|
84546
|
+
})[];
|
|
84547
|
+
}, {
|
|
84548
|
+
items: ({
|
|
84549
|
+
type: "Block";
|
|
84550
|
+
data: {
|
|
84551
|
+
items: {
|
|
84552
|
+
id: string;
|
|
84553
|
+
props: Record<string, {
|
|
84554
|
+
value?: any;
|
|
84555
|
+
} & Record<string, any>>;
|
|
84556
|
+
linksTo?: {
|
|
84557
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84558
|
+
url?: string | undefined;
|
|
84559
|
+
documentationItemId?: string | undefined;
|
|
84560
|
+
pageHeadingId?: string | undefined;
|
|
84561
|
+
openInNewTab?: boolean | undefined;
|
|
84562
|
+
} | undefined;
|
|
84563
|
+
}[];
|
|
84564
|
+
packageId: string;
|
|
84565
|
+
indentLevel: number;
|
|
84566
|
+
appearance?: {
|
|
84567
|
+
numberOfColumns?: number | undefined;
|
|
84568
|
+
itemBackgroundColor?: {
|
|
84569
|
+
value: string;
|
|
84570
|
+
referencedTokenId?: string | undefined;
|
|
84571
|
+
} | undefined;
|
|
84572
|
+
} | undefined;
|
|
84573
|
+
variantId?: string | undefined;
|
|
84574
|
+
};
|
|
84575
|
+
id: string;
|
|
84576
|
+
} | {
|
|
84577
|
+
type: "Section";
|
|
84578
|
+
id: string;
|
|
84579
|
+
items: {
|
|
84580
|
+
id: string;
|
|
84581
|
+
title: string;
|
|
84582
|
+
columns: {
|
|
84583
|
+
id: string;
|
|
84584
|
+
blocks: {
|
|
84585
|
+
type: "Block";
|
|
84586
|
+
data: {
|
|
84587
|
+
items: {
|
|
84588
|
+
id: string;
|
|
84589
|
+
props: Record<string, {
|
|
84590
|
+
value?: any;
|
|
84591
|
+
} & Record<string, any>>;
|
|
84592
|
+
linksTo?: {
|
|
84593
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84594
|
+
url?: string | undefined;
|
|
84595
|
+
documentationItemId?: string | undefined;
|
|
84596
|
+
pageHeadingId?: string | undefined;
|
|
84597
|
+
openInNewTab?: boolean | undefined;
|
|
84598
|
+
} | undefined;
|
|
84599
|
+
}[];
|
|
84600
|
+
packageId: string;
|
|
84601
|
+
indentLevel: number;
|
|
84602
|
+
appearance?: {
|
|
84603
|
+
numberOfColumns?: number | undefined;
|
|
84604
|
+
itemBackgroundColor?: {
|
|
84605
|
+
value: string;
|
|
84606
|
+
referencedTokenId?: string | undefined;
|
|
84607
|
+
} | undefined;
|
|
84608
|
+
} | undefined;
|
|
84609
|
+
variantId?: string | undefined;
|
|
84610
|
+
};
|
|
84611
|
+
id: string;
|
|
84612
|
+
}[];
|
|
84613
|
+
}[];
|
|
84614
|
+
}[];
|
|
84615
|
+
appearance: {
|
|
84616
|
+
expandToEdges: boolean;
|
|
84617
|
+
contentExpandToEdges: boolean;
|
|
84618
|
+
backgroundColor?: {
|
|
84619
|
+
value: string;
|
|
84620
|
+
referencedTokenId?: string | undefined;
|
|
84621
|
+
} | undefined;
|
|
84622
|
+
foregroundColor?: {
|
|
84623
|
+
value: string;
|
|
84624
|
+
referencedTokenId?: string | undefined;
|
|
84625
|
+
} | undefined;
|
|
84626
|
+
padding?: {
|
|
84627
|
+
top?: number | undefined;
|
|
84628
|
+
bottom?: number | undefined;
|
|
84629
|
+
left?: number | undefined;
|
|
84630
|
+
right?: number | undefined;
|
|
84631
|
+
} | undefined;
|
|
84632
|
+
};
|
|
84633
|
+
sectionType: "Tabs";
|
|
84634
|
+
variantId?: string | undefined;
|
|
84635
|
+
})[];
|
|
84636
|
+
}>;
|
|
84637
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
84638
|
+
artifactId: string;
|
|
84639
|
+
content: {
|
|
84640
|
+
items: ({
|
|
84641
|
+
type: "Block";
|
|
84642
|
+
data: {
|
|
84643
|
+
items: {
|
|
84644
|
+
id: string;
|
|
84645
|
+
props: Record<string, {
|
|
84646
|
+
value?: any;
|
|
84647
|
+
} & Record<string, any>>;
|
|
84648
|
+
linksTo?: {
|
|
84649
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84650
|
+
url?: string | undefined;
|
|
84651
|
+
documentationItemId?: string | undefined;
|
|
84652
|
+
pageHeadingId?: string | undefined;
|
|
84653
|
+
openInNewTab?: boolean | undefined;
|
|
84654
|
+
} | undefined;
|
|
84655
|
+
}[];
|
|
84656
|
+
packageId: string;
|
|
84657
|
+
indentLevel: number;
|
|
84658
|
+
appearance?: {
|
|
84659
|
+
numberOfColumns?: number | undefined;
|
|
84660
|
+
itemBackgroundColor?: {
|
|
84661
|
+
value: string;
|
|
84662
|
+
referencedTokenId?: string | undefined;
|
|
84663
|
+
} | undefined;
|
|
84664
|
+
} | undefined;
|
|
84665
|
+
variantId?: string | undefined;
|
|
84666
|
+
};
|
|
84667
|
+
id: string;
|
|
84668
|
+
} | {
|
|
84669
|
+
type: "Section";
|
|
84670
|
+
id: string;
|
|
84671
|
+
items: {
|
|
84672
|
+
id: string;
|
|
84673
|
+
title: string;
|
|
84674
|
+
columns: {
|
|
84675
|
+
id: string;
|
|
84676
|
+
blocks: {
|
|
84677
|
+
type: "Block";
|
|
84678
|
+
data: {
|
|
84679
|
+
items: {
|
|
84680
|
+
id: string;
|
|
84681
|
+
props: Record<string, {
|
|
84682
|
+
value?: any;
|
|
84683
|
+
} & Record<string, any>>;
|
|
84684
|
+
linksTo?: {
|
|
84685
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84686
|
+
url?: string | undefined;
|
|
84687
|
+
documentationItemId?: string | undefined;
|
|
84688
|
+
pageHeadingId?: string | undefined;
|
|
84689
|
+
openInNewTab?: boolean | undefined;
|
|
84690
|
+
} | undefined;
|
|
84691
|
+
}[];
|
|
84692
|
+
packageId: string;
|
|
84693
|
+
indentLevel: number;
|
|
84694
|
+
appearance?: {
|
|
84695
|
+
numberOfColumns?: number | undefined;
|
|
84696
|
+
itemBackgroundColor?: {
|
|
84697
|
+
value: string;
|
|
84698
|
+
referencedTokenId?: string | undefined;
|
|
84699
|
+
} | undefined;
|
|
84700
|
+
} | undefined;
|
|
84701
|
+
variantId?: string | undefined;
|
|
84702
|
+
};
|
|
84703
|
+
id: string;
|
|
84704
|
+
}[];
|
|
84705
|
+
}[];
|
|
84706
|
+
}[];
|
|
84707
|
+
appearance: {
|
|
84708
|
+
expandToEdges: boolean;
|
|
84709
|
+
contentExpandToEdges: boolean;
|
|
84710
|
+
backgroundColor?: {
|
|
84711
|
+
value: string;
|
|
84712
|
+
referencedTokenId?: string | undefined;
|
|
84713
|
+
} | undefined;
|
|
84714
|
+
foregroundColor?: {
|
|
84715
|
+
value: string;
|
|
84716
|
+
referencedTokenId?: string | undefined;
|
|
84717
|
+
} | undefined;
|
|
84718
|
+
padding?: {
|
|
84719
|
+
top?: number | undefined;
|
|
84720
|
+
bottom?: number | undefined;
|
|
84721
|
+
left?: number | undefined;
|
|
84722
|
+
right?: number | undefined;
|
|
84723
|
+
} | undefined;
|
|
84724
|
+
};
|
|
84725
|
+
sectionType: "Tabs";
|
|
84726
|
+
variantId?: string | undefined;
|
|
84727
|
+
})[];
|
|
84728
|
+
};
|
|
84729
|
+
}, {
|
|
84730
|
+
artifactId: string;
|
|
84731
|
+
content: {
|
|
84732
|
+
items: ({
|
|
84733
|
+
type: "Block";
|
|
84734
|
+
data: {
|
|
84735
|
+
items: {
|
|
84736
|
+
id: string;
|
|
84737
|
+
props: Record<string, {
|
|
84738
|
+
value?: any;
|
|
84739
|
+
} & Record<string, any>>;
|
|
84740
|
+
linksTo?: {
|
|
84741
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84742
|
+
url?: string | undefined;
|
|
84743
|
+
documentationItemId?: string | undefined;
|
|
84744
|
+
pageHeadingId?: string | undefined;
|
|
84745
|
+
openInNewTab?: boolean | undefined;
|
|
84746
|
+
} | undefined;
|
|
84747
|
+
}[];
|
|
84748
|
+
packageId: string;
|
|
84749
|
+
indentLevel: number;
|
|
84750
|
+
appearance?: {
|
|
84751
|
+
numberOfColumns?: number | undefined;
|
|
84752
|
+
itemBackgroundColor?: {
|
|
84753
|
+
value: string;
|
|
84754
|
+
referencedTokenId?: string | undefined;
|
|
84755
|
+
} | undefined;
|
|
84756
|
+
} | undefined;
|
|
84757
|
+
variantId?: string | undefined;
|
|
84758
|
+
};
|
|
84759
|
+
id: string;
|
|
84760
|
+
} | {
|
|
84761
|
+
type: "Section";
|
|
84762
|
+
id: string;
|
|
84763
|
+
items: {
|
|
84764
|
+
id: string;
|
|
84765
|
+
title: string;
|
|
84766
|
+
columns: {
|
|
84767
|
+
id: string;
|
|
84768
|
+
blocks: {
|
|
84769
|
+
type: "Block";
|
|
84770
|
+
data: {
|
|
84771
|
+
items: {
|
|
84772
|
+
id: string;
|
|
84773
|
+
props: Record<string, {
|
|
84774
|
+
value?: any;
|
|
84775
|
+
} & Record<string, any>>;
|
|
84776
|
+
linksTo?: {
|
|
84777
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
84778
|
+
url?: string | undefined;
|
|
84779
|
+
documentationItemId?: string | undefined;
|
|
84780
|
+
pageHeadingId?: string | undefined;
|
|
84781
|
+
openInNewTab?: boolean | undefined;
|
|
84782
|
+
} | undefined;
|
|
84783
|
+
}[];
|
|
84784
|
+
packageId: string;
|
|
84785
|
+
indentLevel: number;
|
|
84786
|
+
appearance?: {
|
|
84787
|
+
numberOfColumns?: number | undefined;
|
|
84788
|
+
itemBackgroundColor?: {
|
|
84789
|
+
value: string;
|
|
84790
|
+
referencedTokenId?: string | undefined;
|
|
84791
|
+
} | undefined;
|
|
84792
|
+
} | undefined;
|
|
84793
|
+
variantId?: string | undefined;
|
|
84794
|
+
};
|
|
84795
|
+
id: string;
|
|
84796
|
+
}[];
|
|
84797
|
+
}[];
|
|
84798
|
+
}[];
|
|
84799
|
+
appearance: {
|
|
84800
|
+
expandToEdges: boolean;
|
|
84801
|
+
contentExpandToEdges: boolean;
|
|
84802
|
+
backgroundColor?: {
|
|
84803
|
+
value: string;
|
|
84804
|
+
referencedTokenId?: string | undefined;
|
|
84805
|
+
} | undefined;
|
|
84806
|
+
foregroundColor?: {
|
|
84807
|
+
value: string;
|
|
84808
|
+
referencedTokenId?: string | undefined;
|
|
84809
|
+
} | undefined;
|
|
84810
|
+
padding?: {
|
|
84811
|
+
top?: number | undefined;
|
|
84812
|
+
bottom?: number | undefined;
|
|
84813
|
+
left?: number | undefined;
|
|
84814
|
+
right?: number | undefined;
|
|
84815
|
+
} | undefined;
|
|
84816
|
+
};
|
|
84817
|
+
sectionType: "Tabs";
|
|
84818
|
+
variantId?: string | undefined;
|
|
84819
|
+
})[];
|
|
84820
|
+
};
|
|
84821
|
+
}>;
|
|
84822
|
+
type DTOForgeProjectArtifactContentResponse = z$1.infer<typeof DTOForgeProjectArtifactContentResponse>;
|
|
83623
84823
|
|
|
83624
84824
|
declare const DTOForgeComponentSet: z$1.ZodObject<{
|
|
83625
84825
|
type: z$1.ZodEnum<["Shadcn"]>;
|
|
@@ -138501,9 +139701,10 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138501
139701
|
iterationId?: string | undefined;
|
|
138502
139702
|
}>>;
|
|
138503
139703
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
139704
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
138504
139705
|
createdAt: z__default.ZodString;
|
|
138505
139706
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
138506
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
139707
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
138507
139708
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138508
139709
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138509
139710
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -138524,6 +139725,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138524
139725
|
fileIds?: string[] | undefined;
|
|
138525
139726
|
iterationId?: string | undefined;
|
|
138526
139727
|
} | undefined;
|
|
139728
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138527
139729
|
}, {
|
|
138528
139730
|
id: string;
|
|
138529
139731
|
body: string;
|
|
@@ -138534,6 +139736,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138534
139736
|
fileIds?: string[] | undefined;
|
|
138535
139737
|
iterationId?: string | undefined;
|
|
138536
139738
|
} | undefined;
|
|
139739
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138537
139740
|
}>;
|
|
138538
139741
|
}, "strip", z__default.ZodTypeAny, {
|
|
138539
139742
|
id: string;
|
|
@@ -138548,6 +139751,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138548
139751
|
fileIds?: string[] | undefined;
|
|
138549
139752
|
iterationId?: string | undefined;
|
|
138550
139753
|
} | undefined;
|
|
139754
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138551
139755
|
};
|
|
138552
139756
|
name?: string | undefined;
|
|
138553
139757
|
sectionId?: string | undefined;
|
|
@@ -138565,6 +139769,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138565
139769
|
fileIds?: string[] | undefined;
|
|
138566
139770
|
iterationId?: string | undefined;
|
|
138567
139771
|
} | undefined;
|
|
139772
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
138568
139773
|
};
|
|
138569
139774
|
name?: string | undefined;
|
|
138570
139775
|
sectionId?: string | undefined;
|
|
@@ -173324,9 +174529,10 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173324
174529
|
iterationId?: string | undefined;
|
|
173325
174530
|
}>>;
|
|
173326
174531
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
174532
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173327
174533
|
createdAt: z$1.ZodString;
|
|
173328
174534
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173329
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
174535
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173330
174536
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173331
174537
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173332
174538
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173347,6 +174553,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173347
174553
|
fileIds?: string[] | undefined;
|
|
173348
174554
|
iterationId?: string | undefined;
|
|
173349
174555
|
} | undefined;
|
|
174556
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173350
174557
|
}, {
|
|
173351
174558
|
id: string;
|
|
173352
174559
|
body: string;
|
|
@@ -173357,6 +174564,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173357
174564
|
fileIds?: string[] | undefined;
|
|
173358
174565
|
iterationId?: string | undefined;
|
|
173359
174566
|
} | undefined;
|
|
174567
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173360
174568
|
}>;
|
|
173361
174569
|
}, "strip", z$1.ZodTypeAny, {
|
|
173362
174570
|
id: string;
|
|
@@ -173371,6 +174579,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173371
174579
|
fileIds?: string[] | undefined;
|
|
173372
174580
|
iterationId?: string | undefined;
|
|
173373
174581
|
} | undefined;
|
|
174582
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173374
174583
|
};
|
|
173375
174584
|
name?: string | undefined;
|
|
173376
174585
|
sectionId?: string | undefined;
|
|
@@ -173388,6 +174597,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173388
174597
|
fileIds?: string[] | undefined;
|
|
173389
174598
|
iterationId?: string | undefined;
|
|
173390
174599
|
} | undefined;
|
|
174600
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173391
174601
|
};
|
|
173392
174602
|
name?: string | undefined;
|
|
173393
174603
|
sectionId?: string | undefined;
|
|
@@ -173512,9 +174722,10 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173512
174722
|
iterationId?: string | undefined;
|
|
173513
174723
|
}>>;
|
|
173514
174724
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
174725
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173515
174726
|
createdAt: z$1.ZodString;
|
|
173516
174727
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173517
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
174728
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173518
174729
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173519
174730
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173520
174731
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173535,6 +174746,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173535
174746
|
fileIds?: string[] | undefined;
|
|
173536
174747
|
iterationId?: string | undefined;
|
|
173537
174748
|
} | undefined;
|
|
174749
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173538
174750
|
}, {
|
|
173539
174751
|
id: string;
|
|
173540
174752
|
body: string;
|
|
@@ -173545,6 +174757,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173545
174757
|
fileIds?: string[] | undefined;
|
|
173546
174758
|
iterationId?: string | undefined;
|
|
173547
174759
|
} | undefined;
|
|
174760
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173548
174761
|
}>>;
|
|
173549
174762
|
}, "strip", z$1.ZodTypeAny, {
|
|
173550
174763
|
id: string;
|
|
@@ -173561,6 +174774,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173561
174774
|
fileIds?: string[] | undefined;
|
|
173562
174775
|
iterationId?: string | undefined;
|
|
173563
174776
|
} | undefined;
|
|
174777
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173564
174778
|
} | undefined;
|
|
173565
174779
|
}, {
|
|
173566
174780
|
id: string;
|
|
@@ -173577,6 +174791,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173577
174791
|
fileIds?: string[] | undefined;
|
|
173578
174792
|
iterationId?: string | undefined;
|
|
173579
174793
|
} | undefined;
|
|
174794
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173580
174795
|
} | undefined;
|
|
173581
174796
|
}>>;
|
|
173582
174797
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -173611,6 +174826,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173611
174826
|
fileIds?: string[] | undefined;
|
|
173612
174827
|
iterationId?: string | undefined;
|
|
173613
174828
|
} | undefined;
|
|
174829
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173614
174830
|
};
|
|
173615
174831
|
name?: string | undefined;
|
|
173616
174832
|
sectionId?: string | undefined;
|
|
@@ -173631,6 +174847,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173631
174847
|
fileIds?: string[] | undefined;
|
|
173632
174848
|
iterationId?: string | undefined;
|
|
173633
174849
|
} | undefined;
|
|
174850
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173634
174851
|
} | undefined;
|
|
173635
174852
|
} | undefined;
|
|
173636
174853
|
}, {
|
|
@@ -173665,6 +174882,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173665
174882
|
fileIds?: string[] | undefined;
|
|
173666
174883
|
iterationId?: string | undefined;
|
|
173667
174884
|
} | undefined;
|
|
174885
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173668
174886
|
};
|
|
173669
174887
|
name?: string | undefined;
|
|
173670
174888
|
sectionId?: string | undefined;
|
|
@@ -173685,6 +174903,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
173685
174903
|
fileIds?: string[] | undefined;
|
|
173686
174904
|
iterationId?: string | undefined;
|
|
173687
174905
|
} | undefined;
|
|
174906
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173688
174907
|
} | undefined;
|
|
173689
174908
|
} | undefined;
|
|
173690
174909
|
}>;
|
|
@@ -173829,9 +175048,10 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173829
175048
|
iterationId?: string | undefined;
|
|
173830
175049
|
}>>;
|
|
173831
175050
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
175051
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
173832
175052
|
createdAt: z$1.ZodString;
|
|
173833
175053
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
173834
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
175054
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
173835
175055
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
173836
175056
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
173837
175057
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -173852,6 +175072,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173852
175072
|
fileIds?: string[] | undefined;
|
|
173853
175073
|
iterationId?: string | undefined;
|
|
173854
175074
|
} | undefined;
|
|
175075
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173855
175076
|
}, {
|
|
173856
175077
|
id: string;
|
|
173857
175078
|
body: string;
|
|
@@ -173862,6 +175083,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173862
175083
|
fileIds?: string[] | undefined;
|
|
173863
175084
|
iterationId?: string | undefined;
|
|
173864
175085
|
} | undefined;
|
|
175086
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173865
175087
|
}>;
|
|
173866
175088
|
}, "strip", z$1.ZodTypeAny, {
|
|
173867
175089
|
id: string;
|
|
@@ -173876,6 +175098,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173876
175098
|
fileIds?: string[] | undefined;
|
|
173877
175099
|
iterationId?: string | undefined;
|
|
173878
175100
|
} | undefined;
|
|
175101
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173879
175102
|
};
|
|
173880
175103
|
name?: string | undefined;
|
|
173881
175104
|
sectionId?: string | undefined;
|
|
@@ -173893,6 +175116,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
173893
175116
|
fileIds?: string[] | undefined;
|
|
173894
175117
|
iterationId?: string | undefined;
|
|
173895
175118
|
} | undefined;
|
|
175119
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
173896
175120
|
};
|
|
173897
175121
|
name?: string | undefined;
|
|
173898
175122
|
sectionId?: string | undefined;
|
|
@@ -174017,9 +175241,10 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174017
175241
|
iterationId?: string | undefined;
|
|
174018
175242
|
}>>;
|
|
174019
175243
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
175244
|
+
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
174020
175245
|
createdAt: z$1.ZodString;
|
|
174021
175246
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
174022
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
175247
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
174023
175248
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
174024
175249
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
174025
175250
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
@@ -174040,6 +175265,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174040
175265
|
fileIds?: string[] | undefined;
|
|
174041
175266
|
iterationId?: string | undefined;
|
|
174042
175267
|
} | undefined;
|
|
175268
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174043
175269
|
}, {
|
|
174044
175270
|
id: string;
|
|
174045
175271
|
body: string;
|
|
@@ -174050,6 +175276,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174050
175276
|
fileIds?: string[] | undefined;
|
|
174051
175277
|
iterationId?: string | undefined;
|
|
174052
175278
|
} | undefined;
|
|
175279
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174053
175280
|
}>>;
|
|
174054
175281
|
}, "strip", z$1.ZodTypeAny, {
|
|
174055
175282
|
id: string;
|
|
@@ -174066,6 +175293,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174066
175293
|
fileIds?: string[] | undefined;
|
|
174067
175294
|
iterationId?: string | undefined;
|
|
174068
175295
|
} | undefined;
|
|
175296
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174069
175297
|
} | undefined;
|
|
174070
175298
|
}, {
|
|
174071
175299
|
id: string;
|
|
@@ -174082,6 +175310,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174082
175310
|
fileIds?: string[] | undefined;
|
|
174083
175311
|
iterationId?: string | undefined;
|
|
174084
175312
|
} | undefined;
|
|
175313
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174085
175314
|
} | undefined;
|
|
174086
175315
|
}>>>;
|
|
174087
175316
|
} & {
|
|
@@ -174116,6 +175345,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174116
175345
|
fileIds?: string[] | undefined;
|
|
174117
175346
|
iterationId?: string | undefined;
|
|
174118
175347
|
} | undefined;
|
|
175348
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174119
175349
|
};
|
|
174120
175350
|
name?: string | undefined;
|
|
174121
175351
|
sectionId?: string | undefined;
|
|
@@ -174136,6 +175366,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174136
175366
|
fileIds?: string[] | undefined;
|
|
174137
175367
|
iterationId?: string | undefined;
|
|
174138
175368
|
} | undefined;
|
|
175369
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174139
175370
|
} | undefined;
|
|
174140
175371
|
} | undefined;
|
|
174141
175372
|
}, {
|
|
@@ -174167,6 +175398,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174167
175398
|
fileIds?: string[] | undefined;
|
|
174168
175399
|
iterationId?: string | undefined;
|
|
174169
175400
|
} | undefined;
|
|
175401
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174170
175402
|
};
|
|
174171
175403
|
name?: string | undefined;
|
|
174172
175404
|
sectionId?: string | undefined;
|
|
@@ -174187,6 +175419,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
174187
175419
|
fileIds?: string[] | undefined;
|
|
174188
175420
|
iterationId?: string | undefined;
|
|
174189
175421
|
} | undefined;
|
|
175422
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
174190
175423
|
} | undefined;
|
|
174191
175424
|
} | undefined;
|
|
174192
175425
|
}>;
|
|
@@ -219271,6 +220504,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219271
220504
|
* If defined, this message is considered to be a reply to different message
|
|
219272
220505
|
*/
|
|
219273
220506
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
220507
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219274
220508
|
createdAt: z__default.ZodString;
|
|
219275
220509
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219276
220510
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -219308,6 +220542,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219308
220542
|
iterationId?: string | undefined;
|
|
219309
220543
|
} | undefined;
|
|
219310
220544
|
replyToMessageId?: string | undefined;
|
|
220545
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219311
220546
|
}, {
|
|
219312
220547
|
id: string;
|
|
219313
220548
|
createdAt: string;
|
|
@@ -219343,6 +220578,7 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
219343
220578
|
iterationId?: string | undefined;
|
|
219344
220579
|
} | undefined;
|
|
219345
220580
|
replyToMessageId?: string | undefined;
|
|
220581
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219346
220582
|
}>;
|
|
219347
220583
|
type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
|
|
219348
220584
|
declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
@@ -219592,9 +220828,10 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219592
220828
|
* If defined, this message is considered to be a reply to different message
|
|
219593
220829
|
*/
|
|
219594
220830
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
220831
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219595
220832
|
createdAt: z__default.ZodString;
|
|
219596
220833
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219597
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
220834
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "promptMetadata"> & {
|
|
219598
220835
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
219599
220836
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
219600
220837
|
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
@@ -219615,6 +220852,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219615
220852
|
fileIds?: string[] | undefined;
|
|
219616
220853
|
iterationId?: string | undefined;
|
|
219617
220854
|
} | undefined;
|
|
220855
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219618
220856
|
}, {
|
|
219619
220857
|
id: string;
|
|
219620
220858
|
body: string;
|
|
@@ -219625,6 +220863,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
219625
220863
|
fileIds?: string[] | undefined;
|
|
219626
220864
|
iterationId?: string | undefined;
|
|
219627
220865
|
} | undefined;
|
|
220866
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
219628
220867
|
}>;
|
|
219629
220868
|
type DTOThreadMessageCreateInput = z__default.infer<typeof DTOThreadMessageCreateInput>;
|
|
219630
220869
|
declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
@@ -219763,6 +221002,7 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
219763
221002
|
* If defined, this message is considered to be a reply to different message
|
|
219764
221003
|
*/
|
|
219765
221004
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221005
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
219766
221006
|
createdAt: z__default.ZodString;
|
|
219767
221007
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
219768
221008
|
}, "id"> & {
|
|
@@ -220042,6 +221282,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220042
221282
|
* If defined, this message is considered to be a reply to different message
|
|
220043
221283
|
*/
|
|
220044
221284
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221285
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220045
221286
|
createdAt: z__default.ZodString;
|
|
220046
221287
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220047
221288
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220079,6 +221320,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220079
221320
|
iterationId?: string | undefined;
|
|
220080
221321
|
} | undefined;
|
|
220081
221322
|
replyToMessageId?: string | undefined;
|
|
221323
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220082
221324
|
}, {
|
|
220083
221325
|
id: string;
|
|
220084
221326
|
createdAt: string;
|
|
@@ -220114,6 +221356,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220114
221356
|
iterationId?: string | undefined;
|
|
220115
221357
|
} | undefined;
|
|
220116
221358
|
replyToMessageId?: string | undefined;
|
|
221359
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220117
221360
|
}>;
|
|
220118
221361
|
}, "strip", z__default.ZodTypeAny, {
|
|
220119
221362
|
message: {
|
|
@@ -220151,6 +221394,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220151
221394
|
iterationId?: string | undefined;
|
|
220152
221395
|
} | undefined;
|
|
220153
221396
|
replyToMessageId?: string | undefined;
|
|
221397
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220154
221398
|
};
|
|
220155
221399
|
}, {
|
|
220156
221400
|
message: {
|
|
@@ -220188,6 +221432,7 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
220188
221432
|
iterationId?: string | undefined;
|
|
220189
221433
|
} | undefined;
|
|
220190
221434
|
replyToMessageId?: string | undefined;
|
|
221435
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220191
221436
|
};
|
|
220192
221437
|
}>;
|
|
220193
221438
|
type DTOThreadMessageResponse = z__default.infer<typeof DTOThreadMessageResponse>;
|
|
@@ -220361,6 +221606,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220361
221606
|
* If defined, this message is considered to be a reply to different message
|
|
220362
221607
|
*/
|
|
220363
221608
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221609
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220364
221610
|
createdAt: z__default.ZodString;
|
|
220365
221611
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220366
221612
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220398,6 +221644,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220398
221644
|
iterationId?: string | undefined;
|
|
220399
221645
|
} | undefined;
|
|
220400
221646
|
replyToMessageId?: string | undefined;
|
|
221647
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220401
221648
|
}, {
|
|
220402
221649
|
id: string;
|
|
220403
221650
|
createdAt: string;
|
|
@@ -220433,6 +221680,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220433
221680
|
iterationId?: string | undefined;
|
|
220434
221681
|
} | undefined;
|
|
220435
221682
|
replyToMessageId?: string | undefined;
|
|
221683
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220436
221684
|
}>, "many">;
|
|
220437
221685
|
reactions: z__default.ZodArray<z__default.ZodObject<{
|
|
220438
221686
|
messageId: z__default.ZodString;
|
|
@@ -220487,6 +221735,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220487
221735
|
iterationId?: string | undefined;
|
|
220488
221736
|
} | undefined;
|
|
220489
221737
|
replyToMessageId?: string | undefined;
|
|
221738
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220490
221739
|
}[];
|
|
220491
221740
|
reactions: {
|
|
220492
221741
|
createdAt: string;
|
|
@@ -220531,6 +221780,7 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
220531
221780
|
iterationId?: string | undefined;
|
|
220532
221781
|
} | undefined;
|
|
220533
221782
|
replyToMessageId?: string | undefined;
|
|
221783
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220534
221784
|
}[];
|
|
220535
221785
|
reactions: {
|
|
220536
221786
|
createdAt: string;
|
|
@@ -220679,6 +221929,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220679
221929
|
* If defined, this message is considered to be a reply to different message
|
|
220680
221930
|
*/
|
|
220681
221931
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
221932
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220682
221933
|
createdAt: z__default.ZodString;
|
|
220683
221934
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220684
221935
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -220716,6 +221967,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220716
221967
|
iterationId?: string | undefined;
|
|
220717
221968
|
} | undefined;
|
|
220718
221969
|
replyToMessageId?: string | undefined;
|
|
221970
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220719
221971
|
}, {
|
|
220720
221972
|
id: string;
|
|
220721
221973
|
createdAt: string;
|
|
@@ -220751,6 +222003,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220751
222003
|
iterationId?: string | undefined;
|
|
220752
222004
|
} | undefined;
|
|
220753
222005
|
replyToMessageId?: string | undefined;
|
|
222006
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220754
222007
|
}>, "many">;
|
|
220755
222008
|
}, "strip", z__default.ZodTypeAny, {
|
|
220756
222009
|
type: "MessagesSent";
|
|
@@ -220789,6 +222042,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220789
222042
|
iterationId?: string | undefined;
|
|
220790
222043
|
} | undefined;
|
|
220791
222044
|
replyToMessageId?: string | undefined;
|
|
222045
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220792
222046
|
}[];
|
|
220793
222047
|
}, {
|
|
220794
222048
|
type: "MessagesSent";
|
|
@@ -220827,6 +222081,7 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
220827
222081
|
iterationId?: string | undefined;
|
|
220828
222082
|
} | undefined;
|
|
220829
222083
|
replyToMessageId?: string | undefined;
|
|
222084
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
220830
222085
|
}[];
|
|
220831
222086
|
}>;
|
|
220832
222087
|
type DTOThreadEventMessagesSent = z__default.infer<typeof DTOThreadEventMessagesSent>;
|
|
@@ -220968,6 +222223,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
220968
222223
|
* If defined, this message is considered to be a reply to different message
|
|
220969
222224
|
*/
|
|
220970
222225
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
222226
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
220971
222227
|
createdAt: z__default.ZodString;
|
|
220972
222228
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
220973
222229
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221005,6 +222261,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221005
222261
|
iterationId?: string | undefined;
|
|
221006
222262
|
} | undefined;
|
|
221007
222263
|
replyToMessageId?: string | undefined;
|
|
222264
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221008
222265
|
}, {
|
|
221009
222266
|
id: string;
|
|
221010
222267
|
createdAt: string;
|
|
@@ -221040,6 +222297,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221040
222297
|
iterationId?: string | undefined;
|
|
221041
222298
|
} | undefined;
|
|
221042
222299
|
replyToMessageId?: string | undefined;
|
|
222300
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221043
222301
|
}>, "many">;
|
|
221044
222302
|
}, "strip", z__default.ZodTypeAny, {
|
|
221045
222303
|
type: "MessagesUpdated";
|
|
@@ -221078,6 +222336,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221078
222336
|
iterationId?: string | undefined;
|
|
221079
222337
|
} | undefined;
|
|
221080
222338
|
replyToMessageId?: string | undefined;
|
|
222339
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221081
222340
|
}[];
|
|
221082
222341
|
}, {
|
|
221083
222342
|
type: "MessagesUpdated";
|
|
@@ -221116,6 +222375,7 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
221116
222375
|
iterationId?: string | undefined;
|
|
221117
222376
|
} | undefined;
|
|
221118
222377
|
replyToMessageId?: string | undefined;
|
|
222378
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221119
222379
|
}[];
|
|
221120
222380
|
}>;
|
|
221121
222381
|
type DTOThreadEventMessagesUpdated = z__default.infer<typeof DTOThreadEventMessagesUpdated>;
|
|
@@ -221329,6 +222589,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221329
222589
|
* If defined, this message is considered to be a reply to different message
|
|
221330
222590
|
*/
|
|
221331
222591
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
222592
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
221332
222593
|
createdAt: z__default.ZodString;
|
|
221333
222594
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
221334
222595
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221366,6 +222627,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221366
222627
|
iterationId?: string | undefined;
|
|
221367
222628
|
} | undefined;
|
|
221368
222629
|
replyToMessageId?: string | undefined;
|
|
222630
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221369
222631
|
}, {
|
|
221370
222632
|
id: string;
|
|
221371
222633
|
createdAt: string;
|
|
@@ -221401,6 +222663,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221401
222663
|
iterationId?: string | undefined;
|
|
221402
222664
|
} | undefined;
|
|
221403
222665
|
replyToMessageId?: string | undefined;
|
|
222666
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221404
222667
|
}>, "many">;
|
|
221405
222668
|
}, "strip", z__default.ZodTypeAny, {
|
|
221406
222669
|
type: "MessagesSent";
|
|
@@ -221439,6 +222702,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221439
222702
|
iterationId?: string | undefined;
|
|
221440
222703
|
} | undefined;
|
|
221441
222704
|
replyToMessageId?: string | undefined;
|
|
222705
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221442
222706
|
}[];
|
|
221443
222707
|
}, {
|
|
221444
222708
|
type: "MessagesSent";
|
|
@@ -221477,6 +222741,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221477
222741
|
iterationId?: string | undefined;
|
|
221478
222742
|
} | undefined;
|
|
221479
222743
|
replyToMessageId?: string | undefined;
|
|
222744
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221480
222745
|
}[];
|
|
221481
222746
|
}>, z__default.ZodObject<{
|
|
221482
222747
|
type: z__default.ZodLiteral<"MessagesUpdated">;
|
|
@@ -221616,6 +222881,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221616
222881
|
* If defined, this message is considered to be a reply to different message
|
|
221617
222882
|
*/
|
|
221618
222883
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
222884
|
+
promptMetadata: z__default.ZodOptional<z__default.ZodRecord<z__default.ZodString, z__default.ZodAny>>;
|
|
221619
222885
|
createdAt: z__default.ZodString;
|
|
221620
222886
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
221621
222887
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -221653,6 +222919,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221653
222919
|
iterationId?: string | undefined;
|
|
221654
222920
|
} | undefined;
|
|
221655
222921
|
replyToMessageId?: string | undefined;
|
|
222922
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221656
222923
|
}, {
|
|
221657
222924
|
id: string;
|
|
221658
222925
|
createdAt: string;
|
|
@@ -221688,6 +222955,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221688
222955
|
iterationId?: string | undefined;
|
|
221689
222956
|
} | undefined;
|
|
221690
222957
|
replyToMessageId?: string | undefined;
|
|
222958
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221691
222959
|
}>, "many">;
|
|
221692
222960
|
}, "strip", z__default.ZodTypeAny, {
|
|
221693
222961
|
type: "MessagesUpdated";
|
|
@@ -221726,6 +222994,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221726
222994
|
iterationId?: string | undefined;
|
|
221727
222995
|
} | undefined;
|
|
221728
222996
|
replyToMessageId?: string | undefined;
|
|
222997
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221729
222998
|
}[];
|
|
221730
222999
|
}, {
|
|
221731
223000
|
type: "MessagesUpdated";
|
|
@@ -221764,6 +223033,7 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
221764
223033
|
iterationId?: string | undefined;
|
|
221765
223034
|
} | undefined;
|
|
221766
223035
|
replyToMessageId?: string | undefined;
|
|
223036
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
221767
223037
|
}[];
|
|
221768
223038
|
}>, z__default.ZodObject<{
|
|
221769
223039
|
type: z__default.ZodLiteral<"ReactionsSent">;
|
|
@@ -250700,6 +251970,7 @@ declare class ThreadsEndpoint {
|
|
|
250700
251970
|
iterationId?: string | undefined;
|
|
250701
251971
|
} | undefined;
|
|
250702
251972
|
replyToMessageId?: string | undefined;
|
|
251973
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
250703
251974
|
}[];
|
|
250704
251975
|
reactions: {
|
|
250705
251976
|
createdAt: string;
|
|
@@ -250745,6 +252016,7 @@ declare class ThreadsEndpoint {
|
|
|
250745
252016
|
iterationId?: string | undefined;
|
|
250746
252017
|
} | undefined;
|
|
250747
252018
|
replyToMessageId?: string | undefined;
|
|
252019
|
+
promptMetadata?: Record<string, any> | undefined;
|
|
250748
252020
|
}[];
|
|
250749
252021
|
reactions: {
|
|
250750
252022
|
createdAt: string;
|
|
@@ -253716,4 +254988,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
253716
254988
|
reason: ValidationErrorReason | undefined;
|
|
253717
254989
|
};
|
|
253718
254990
|
|
|
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 };
|
|
254991
|
+
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, DTOForgeProjectArtifactContentResponse, 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 };
|