@supernova-studio/client 1.41.1 → 1.41.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +734 -2
- package/dist/index.d.ts +734 -2
- package/dist/index.js +151 -144
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +407 -400
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -81313,16 +81313,134 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81313
81313
|
title: z__default.ZodString;
|
|
81314
81314
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
81315
81315
|
afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81316
|
+
initialMessage: z__default.ZodOptional<z__default.ZodObject<Pick<{
|
|
81317
|
+
id: z__default.ZodString;
|
|
81318
|
+
threadId: z__default.ZodString;
|
|
81319
|
+
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81320
|
+
type: z__default.ZodLiteral<"User">;
|
|
81321
|
+
userId: z__default.ZodString;
|
|
81322
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81323
|
+
type: "User";
|
|
81324
|
+
userId: string;
|
|
81325
|
+
}, {
|
|
81326
|
+
type: "User";
|
|
81327
|
+
userId: string;
|
|
81328
|
+
}>, z__default.ZodObject<{
|
|
81329
|
+
type: z__default.ZodLiteral<"Agent">;
|
|
81330
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
81331
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81332
|
+
type: "Agent";
|
|
81333
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81334
|
+
}, {
|
|
81335
|
+
type: "Agent";
|
|
81336
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81337
|
+
}>, z__default.ZodObject<{
|
|
81338
|
+
type: z__default.ZodLiteral<"System">;
|
|
81339
|
+
onBehalfOfUserId: z__default.ZodString;
|
|
81340
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81341
|
+
type: "System";
|
|
81342
|
+
onBehalfOfUserId: string;
|
|
81343
|
+
}, {
|
|
81344
|
+
type: "System";
|
|
81345
|
+
onBehalfOfUserId: string;
|
|
81346
|
+
}>]>;
|
|
81347
|
+
body: z__default.ZodString;
|
|
81348
|
+
isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81349
|
+
startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81350
|
+
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81351
|
+
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81352
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81353
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81354
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
81355
|
+
fileId: z__default.ZodString;
|
|
81356
|
+
fileUrl: z__default.ZodString;
|
|
81357
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81358
|
+
fileId: string;
|
|
81359
|
+
fileUrl: string;
|
|
81360
|
+
}, {
|
|
81361
|
+
fileId: string;
|
|
81362
|
+
fileUrl: string;
|
|
81363
|
+
}>, "many">>;
|
|
81364
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81365
|
+
files?: {
|
|
81366
|
+
fileId: string;
|
|
81367
|
+
fileUrl: string;
|
|
81368
|
+
}[] | undefined;
|
|
81369
|
+
iterationId?: string | undefined;
|
|
81370
|
+
}, {
|
|
81371
|
+
files?: {
|
|
81372
|
+
fileId: string;
|
|
81373
|
+
fileUrl: string;
|
|
81374
|
+
}[] | undefined;
|
|
81375
|
+
iterationId?: string | undefined;
|
|
81376
|
+
}>>;
|
|
81377
|
+
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81378
|
+
createdAt: z__default.ZodString;
|
|
81379
|
+
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81380
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
81381
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81382
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81383
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
81384
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81385
|
+
fileIds?: string[] | undefined;
|
|
81386
|
+
iterationId?: string | undefined;
|
|
81387
|
+
}, {
|
|
81388
|
+
fileIds?: string[] | undefined;
|
|
81389
|
+
iterationId?: string | undefined;
|
|
81390
|
+
}>>;
|
|
81391
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81392
|
+
id: string;
|
|
81393
|
+
body: string;
|
|
81394
|
+
isPrompt?: boolean | undefined;
|
|
81395
|
+
startsNewThread?: boolean | undefined;
|
|
81396
|
+
parentMessageId?: string | undefined;
|
|
81397
|
+
attachments?: {
|
|
81398
|
+
fileIds?: string[] | undefined;
|
|
81399
|
+
iterationId?: string | undefined;
|
|
81400
|
+
} | undefined;
|
|
81401
|
+
}, {
|
|
81402
|
+
id: string;
|
|
81403
|
+
body: string;
|
|
81404
|
+
isPrompt?: boolean | undefined;
|
|
81405
|
+
startsNewThread?: boolean | undefined;
|
|
81406
|
+
parentMessageId?: string | undefined;
|
|
81407
|
+
attachments?: {
|
|
81408
|
+
fileIds?: string[] | undefined;
|
|
81409
|
+
iterationId?: string | undefined;
|
|
81410
|
+
} | undefined;
|
|
81411
|
+
}>>;
|
|
81316
81412
|
}, "strip", z__default.ZodTypeAny, {
|
|
81317
81413
|
id: string;
|
|
81318
81414
|
title: string;
|
|
81319
81415
|
sectionId?: string | undefined;
|
|
81320
81416
|
afterArtifactId?: string | null | undefined;
|
|
81417
|
+
initialMessage?: {
|
|
81418
|
+
id: string;
|
|
81419
|
+
body: string;
|
|
81420
|
+
isPrompt?: boolean | undefined;
|
|
81421
|
+
startsNewThread?: boolean | undefined;
|
|
81422
|
+
parentMessageId?: string | undefined;
|
|
81423
|
+
attachments?: {
|
|
81424
|
+
fileIds?: string[] | undefined;
|
|
81425
|
+
iterationId?: string | undefined;
|
|
81426
|
+
} | undefined;
|
|
81427
|
+
} | undefined;
|
|
81321
81428
|
}, {
|
|
81322
81429
|
id: string;
|
|
81323
81430
|
title: string;
|
|
81324
81431
|
sectionId?: string | undefined;
|
|
81325
81432
|
afterArtifactId?: string | null | undefined;
|
|
81433
|
+
initialMessage?: {
|
|
81434
|
+
id: string;
|
|
81435
|
+
body: string;
|
|
81436
|
+
isPrompt?: boolean | undefined;
|
|
81437
|
+
startsNewThread?: boolean | undefined;
|
|
81438
|
+
parentMessageId?: string | undefined;
|
|
81439
|
+
attachments?: {
|
|
81440
|
+
fileIds?: string[] | undefined;
|
|
81441
|
+
iterationId?: string | undefined;
|
|
81442
|
+
} | undefined;
|
|
81443
|
+
} | undefined;
|
|
81326
81444
|
}>;
|
|
81327
81445
|
}, "strip", z__default.ZodTypeAny, {
|
|
81328
81446
|
type: "ArtifactCreate";
|
|
@@ -81331,6 +81449,17 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81331
81449
|
title: string;
|
|
81332
81450
|
sectionId?: string | undefined;
|
|
81333
81451
|
afterArtifactId?: string | null | undefined;
|
|
81452
|
+
initialMessage?: {
|
|
81453
|
+
id: string;
|
|
81454
|
+
body: string;
|
|
81455
|
+
isPrompt?: boolean | undefined;
|
|
81456
|
+
startsNewThread?: boolean | undefined;
|
|
81457
|
+
parentMessageId?: string | undefined;
|
|
81458
|
+
attachments?: {
|
|
81459
|
+
fileIds?: string[] | undefined;
|
|
81460
|
+
iterationId?: string | undefined;
|
|
81461
|
+
} | undefined;
|
|
81462
|
+
} | undefined;
|
|
81334
81463
|
};
|
|
81335
81464
|
}, {
|
|
81336
81465
|
type: "ArtifactCreate";
|
|
@@ -81339,6 +81468,17 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
|
81339
81468
|
title: string;
|
|
81340
81469
|
sectionId?: string | undefined;
|
|
81341
81470
|
afterArtifactId?: string | null | undefined;
|
|
81471
|
+
initialMessage?: {
|
|
81472
|
+
id: string;
|
|
81473
|
+
body: string;
|
|
81474
|
+
isPrompt?: boolean | undefined;
|
|
81475
|
+
startsNewThread?: boolean | undefined;
|
|
81476
|
+
parentMessageId?: string | undefined;
|
|
81477
|
+
attachments?: {
|
|
81478
|
+
fileIds?: string[] | undefined;
|
|
81479
|
+
iterationId?: string | undefined;
|
|
81480
|
+
} | undefined;
|
|
81481
|
+
} | undefined;
|
|
81342
81482
|
};
|
|
81343
81483
|
}>;
|
|
81344
81484
|
type DTOForgeProjectActionArtifactCreate = z__default.infer<typeof DTOForgeProjectActionArtifactCreate>;
|
|
@@ -81792,16 +81932,134 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
81792
81932
|
title: z__default.ZodString;
|
|
81793
81933
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
81794
81934
|
afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81935
|
+
initialMessage: z__default.ZodOptional<z__default.ZodObject<Pick<{
|
|
81936
|
+
id: z__default.ZodString;
|
|
81937
|
+
threadId: z__default.ZodString;
|
|
81938
|
+
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81939
|
+
type: z__default.ZodLiteral<"User">;
|
|
81940
|
+
userId: z__default.ZodString;
|
|
81941
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81942
|
+
type: "User";
|
|
81943
|
+
userId: string;
|
|
81944
|
+
}, {
|
|
81945
|
+
type: "User";
|
|
81946
|
+
userId: string;
|
|
81947
|
+
}>, z__default.ZodObject<{
|
|
81948
|
+
type: z__default.ZodLiteral<"Agent">;
|
|
81949
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
81950
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81951
|
+
type: "Agent";
|
|
81952
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81953
|
+
}, {
|
|
81954
|
+
type: "Agent";
|
|
81955
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81956
|
+
}>, z__default.ZodObject<{
|
|
81957
|
+
type: z__default.ZodLiteral<"System">;
|
|
81958
|
+
onBehalfOfUserId: z__default.ZodString;
|
|
81959
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81960
|
+
type: "System";
|
|
81961
|
+
onBehalfOfUserId: string;
|
|
81962
|
+
}, {
|
|
81963
|
+
type: "System";
|
|
81964
|
+
onBehalfOfUserId: string;
|
|
81965
|
+
}>]>;
|
|
81966
|
+
body: z__default.ZodString;
|
|
81967
|
+
isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81968
|
+
startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81969
|
+
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81970
|
+
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81971
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81972
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81973
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
81974
|
+
fileId: z__default.ZodString;
|
|
81975
|
+
fileUrl: z__default.ZodString;
|
|
81976
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81977
|
+
fileId: string;
|
|
81978
|
+
fileUrl: string;
|
|
81979
|
+
}, {
|
|
81980
|
+
fileId: string;
|
|
81981
|
+
fileUrl: string;
|
|
81982
|
+
}>, "many">>;
|
|
81983
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81984
|
+
files?: {
|
|
81985
|
+
fileId: string;
|
|
81986
|
+
fileUrl: string;
|
|
81987
|
+
}[] | undefined;
|
|
81988
|
+
iterationId?: string | undefined;
|
|
81989
|
+
}, {
|
|
81990
|
+
files?: {
|
|
81991
|
+
fileId: string;
|
|
81992
|
+
fileUrl: string;
|
|
81993
|
+
}[] | undefined;
|
|
81994
|
+
iterationId?: string | undefined;
|
|
81995
|
+
}>>;
|
|
81996
|
+
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81997
|
+
createdAt: z__default.ZodString;
|
|
81998
|
+
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81999
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82000
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82001
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82002
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
82003
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82004
|
+
fileIds?: string[] | undefined;
|
|
82005
|
+
iterationId?: string | undefined;
|
|
82006
|
+
}, {
|
|
82007
|
+
fileIds?: string[] | undefined;
|
|
82008
|
+
iterationId?: string | undefined;
|
|
82009
|
+
}>>;
|
|
82010
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82011
|
+
id: string;
|
|
82012
|
+
body: string;
|
|
82013
|
+
isPrompt?: boolean | undefined;
|
|
82014
|
+
startsNewThread?: boolean | undefined;
|
|
82015
|
+
parentMessageId?: string | undefined;
|
|
82016
|
+
attachments?: {
|
|
82017
|
+
fileIds?: string[] | undefined;
|
|
82018
|
+
iterationId?: string | undefined;
|
|
82019
|
+
} | undefined;
|
|
82020
|
+
}, {
|
|
82021
|
+
id: string;
|
|
82022
|
+
body: string;
|
|
82023
|
+
isPrompt?: boolean | undefined;
|
|
82024
|
+
startsNewThread?: boolean | undefined;
|
|
82025
|
+
parentMessageId?: string | undefined;
|
|
82026
|
+
attachments?: {
|
|
82027
|
+
fileIds?: string[] | undefined;
|
|
82028
|
+
iterationId?: string | undefined;
|
|
82029
|
+
} | undefined;
|
|
82030
|
+
}>>;
|
|
81795
82031
|
}, "strip", z__default.ZodTypeAny, {
|
|
81796
82032
|
id: string;
|
|
81797
82033
|
title: string;
|
|
81798
82034
|
sectionId?: string | undefined;
|
|
81799
82035
|
afterArtifactId?: string | null | undefined;
|
|
82036
|
+
initialMessage?: {
|
|
82037
|
+
id: string;
|
|
82038
|
+
body: string;
|
|
82039
|
+
isPrompt?: boolean | undefined;
|
|
82040
|
+
startsNewThread?: boolean | undefined;
|
|
82041
|
+
parentMessageId?: string | undefined;
|
|
82042
|
+
attachments?: {
|
|
82043
|
+
fileIds?: string[] | undefined;
|
|
82044
|
+
iterationId?: string | undefined;
|
|
82045
|
+
} | undefined;
|
|
82046
|
+
} | undefined;
|
|
81800
82047
|
}, {
|
|
81801
82048
|
id: string;
|
|
81802
82049
|
title: string;
|
|
81803
82050
|
sectionId?: string | undefined;
|
|
81804
82051
|
afterArtifactId?: string | null | undefined;
|
|
82052
|
+
initialMessage?: {
|
|
82053
|
+
id: string;
|
|
82054
|
+
body: string;
|
|
82055
|
+
isPrompt?: boolean | undefined;
|
|
82056
|
+
startsNewThread?: boolean | undefined;
|
|
82057
|
+
parentMessageId?: string | undefined;
|
|
82058
|
+
attachments?: {
|
|
82059
|
+
fileIds?: string[] | undefined;
|
|
82060
|
+
iterationId?: string | undefined;
|
|
82061
|
+
} | undefined;
|
|
82062
|
+
} | undefined;
|
|
81805
82063
|
}>;
|
|
81806
82064
|
}, "strip", z__default.ZodTypeAny, {
|
|
81807
82065
|
type: "ArtifactCreate";
|
|
@@ -81810,6 +82068,17 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
81810
82068
|
title: string;
|
|
81811
82069
|
sectionId?: string | undefined;
|
|
81812
82070
|
afterArtifactId?: string | null | undefined;
|
|
82071
|
+
initialMessage?: {
|
|
82072
|
+
id: string;
|
|
82073
|
+
body: string;
|
|
82074
|
+
isPrompt?: boolean | undefined;
|
|
82075
|
+
startsNewThread?: boolean | undefined;
|
|
82076
|
+
parentMessageId?: string | undefined;
|
|
82077
|
+
attachments?: {
|
|
82078
|
+
fileIds?: string[] | undefined;
|
|
82079
|
+
iterationId?: string | undefined;
|
|
82080
|
+
} | undefined;
|
|
82081
|
+
} | undefined;
|
|
81813
82082
|
};
|
|
81814
82083
|
}, {
|
|
81815
82084
|
type: "ArtifactCreate";
|
|
@@ -81818,6 +82087,17 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
81818
82087
|
title: string;
|
|
81819
82088
|
sectionId?: string | undefined;
|
|
81820
82089
|
afterArtifactId?: string | null | undefined;
|
|
82090
|
+
initialMessage?: {
|
|
82091
|
+
id: string;
|
|
82092
|
+
body: string;
|
|
82093
|
+
isPrompt?: boolean | undefined;
|
|
82094
|
+
startsNewThread?: boolean | undefined;
|
|
82095
|
+
parentMessageId?: string | undefined;
|
|
82096
|
+
attachments?: {
|
|
82097
|
+
fileIds?: string[] | undefined;
|
|
82098
|
+
iterationId?: string | undefined;
|
|
82099
|
+
} | undefined;
|
|
82100
|
+
} | undefined;
|
|
81821
82101
|
};
|
|
81822
82102
|
}>, z__default.ZodObject<{
|
|
81823
82103
|
type: z__default.ZodLiteral<"ArtifactUpdate">;
|
|
@@ -82115,16 +82395,134 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
|
82115
82395
|
title: z$1.ZodString;
|
|
82116
82396
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
82117
82397
|
afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
82398
|
+
initialMessage: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
82399
|
+
id: z$1.ZodString;
|
|
82400
|
+
threadId: z$1.ZodString;
|
|
82401
|
+
sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
82402
|
+
type: z$1.ZodLiteral<"User">;
|
|
82403
|
+
userId: z$1.ZodString;
|
|
82404
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82405
|
+
type: "User";
|
|
82406
|
+
userId: string;
|
|
82407
|
+
}, {
|
|
82408
|
+
type: "User";
|
|
82409
|
+
userId: string;
|
|
82410
|
+
}>, z$1.ZodObject<{
|
|
82411
|
+
type: z$1.ZodLiteral<"Agent">;
|
|
82412
|
+
agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
82413
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82414
|
+
type: "Agent";
|
|
82415
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82416
|
+
}, {
|
|
82417
|
+
type: "Agent";
|
|
82418
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82419
|
+
}>, z$1.ZodObject<{
|
|
82420
|
+
type: z$1.ZodLiteral<"System">;
|
|
82421
|
+
onBehalfOfUserId: z$1.ZodString;
|
|
82422
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82423
|
+
type: "System";
|
|
82424
|
+
onBehalfOfUserId: string;
|
|
82425
|
+
}, {
|
|
82426
|
+
type: "System";
|
|
82427
|
+
onBehalfOfUserId: string;
|
|
82428
|
+
}>]>;
|
|
82429
|
+
body: z$1.ZodString;
|
|
82430
|
+
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82431
|
+
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82432
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
82433
|
+
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
82434
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
82435
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
82436
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
82437
|
+
fileId: z$1.ZodString;
|
|
82438
|
+
fileUrl: z$1.ZodString;
|
|
82439
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82440
|
+
fileId: string;
|
|
82441
|
+
fileUrl: string;
|
|
82442
|
+
}, {
|
|
82443
|
+
fileId: string;
|
|
82444
|
+
fileUrl: string;
|
|
82445
|
+
}>, "many">>;
|
|
82446
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82447
|
+
files?: {
|
|
82448
|
+
fileId: string;
|
|
82449
|
+
fileUrl: string;
|
|
82450
|
+
}[] | undefined;
|
|
82451
|
+
iterationId?: string | undefined;
|
|
82452
|
+
}, {
|
|
82453
|
+
files?: {
|
|
82454
|
+
fileId: string;
|
|
82455
|
+
fileUrl: string;
|
|
82456
|
+
}[] | undefined;
|
|
82457
|
+
iterationId?: string | undefined;
|
|
82458
|
+
}>>;
|
|
82459
|
+
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
82460
|
+
createdAt: z$1.ZodString;
|
|
82461
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
82462
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82463
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
82464
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
82465
|
+
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
82466
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82467
|
+
fileIds?: string[] | undefined;
|
|
82468
|
+
iterationId?: string | undefined;
|
|
82469
|
+
}, {
|
|
82470
|
+
fileIds?: string[] | undefined;
|
|
82471
|
+
iterationId?: string | undefined;
|
|
82472
|
+
}>>;
|
|
82473
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
82474
|
+
id: string;
|
|
82475
|
+
body: string;
|
|
82476
|
+
isPrompt?: boolean | undefined;
|
|
82477
|
+
startsNewThread?: boolean | undefined;
|
|
82478
|
+
parentMessageId?: string | undefined;
|
|
82479
|
+
attachments?: {
|
|
82480
|
+
fileIds?: string[] | undefined;
|
|
82481
|
+
iterationId?: string | undefined;
|
|
82482
|
+
} | undefined;
|
|
82483
|
+
}, {
|
|
82484
|
+
id: string;
|
|
82485
|
+
body: string;
|
|
82486
|
+
isPrompt?: boolean | undefined;
|
|
82487
|
+
startsNewThread?: boolean | undefined;
|
|
82488
|
+
parentMessageId?: string | undefined;
|
|
82489
|
+
attachments?: {
|
|
82490
|
+
fileIds?: string[] | undefined;
|
|
82491
|
+
iterationId?: string | undefined;
|
|
82492
|
+
} | undefined;
|
|
82493
|
+
}>>;
|
|
82118
82494
|
}, "strip", z$1.ZodTypeAny, {
|
|
82119
82495
|
id: string;
|
|
82120
82496
|
title: string;
|
|
82121
82497
|
sectionId?: string | undefined;
|
|
82122
82498
|
afterArtifactId?: string | null | undefined;
|
|
82499
|
+
initialMessage?: {
|
|
82500
|
+
id: string;
|
|
82501
|
+
body: string;
|
|
82502
|
+
isPrompt?: boolean | undefined;
|
|
82503
|
+
startsNewThread?: boolean | undefined;
|
|
82504
|
+
parentMessageId?: string | undefined;
|
|
82505
|
+
attachments?: {
|
|
82506
|
+
fileIds?: string[] | undefined;
|
|
82507
|
+
iterationId?: string | undefined;
|
|
82508
|
+
} | undefined;
|
|
82509
|
+
} | undefined;
|
|
82123
82510
|
}, {
|
|
82124
82511
|
id: string;
|
|
82125
82512
|
title: string;
|
|
82126
82513
|
sectionId?: string | undefined;
|
|
82127
82514
|
afterArtifactId?: string | null | undefined;
|
|
82515
|
+
initialMessage?: {
|
|
82516
|
+
id: string;
|
|
82517
|
+
body: string;
|
|
82518
|
+
isPrompt?: boolean | undefined;
|
|
82519
|
+
startsNewThread?: boolean | undefined;
|
|
82520
|
+
parentMessageId?: string | undefined;
|
|
82521
|
+
attachments?: {
|
|
82522
|
+
fileIds?: string[] | undefined;
|
|
82523
|
+
iterationId?: string | undefined;
|
|
82524
|
+
} | undefined;
|
|
82525
|
+
} | undefined;
|
|
82128
82526
|
}>;
|
|
82129
82527
|
type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
|
|
82130
82528
|
declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
|
|
@@ -233464,9 +233862,27 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
233464
233862
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
233465
233863
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
233466
233864
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
233865
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
233866
|
+
fileId: z__default.ZodString;
|
|
233867
|
+
fileUrl: z__default.ZodString;
|
|
233868
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
233869
|
+
fileId: string;
|
|
233870
|
+
fileUrl: string;
|
|
233871
|
+
}, {
|
|
233872
|
+
fileId: string;
|
|
233873
|
+
fileUrl: string;
|
|
233874
|
+
}>, "many">>;
|
|
233467
233875
|
}, "strip", z__default.ZodTypeAny, {
|
|
233876
|
+
files?: {
|
|
233877
|
+
fileId: string;
|
|
233878
|
+
fileUrl: string;
|
|
233879
|
+
}[] | undefined;
|
|
233468
233880
|
iterationId?: string | undefined;
|
|
233469
233881
|
}, {
|
|
233882
|
+
files?: {
|
|
233883
|
+
fileId: string;
|
|
233884
|
+
fileUrl: string;
|
|
233885
|
+
}[] | undefined;
|
|
233470
233886
|
iterationId?: string | undefined;
|
|
233471
233887
|
}>>;
|
|
233472
233888
|
/**
|
|
@@ -233496,6 +233912,10 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
233496
233912
|
parentMessageId?: string | undefined;
|
|
233497
233913
|
agentResponseTrackerId?: string | null | undefined;
|
|
233498
233914
|
attachments?: {
|
|
233915
|
+
files?: {
|
|
233916
|
+
fileId: string;
|
|
233917
|
+
fileUrl: string;
|
|
233918
|
+
}[] | undefined;
|
|
233499
233919
|
iterationId?: string | undefined;
|
|
233500
233920
|
} | undefined;
|
|
233501
233921
|
replyToMessageId?: string | undefined;
|
|
@@ -233520,6 +233940,10 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
233520
233940
|
parentMessageId?: string | undefined;
|
|
233521
233941
|
agentResponseTrackerId?: string | null | undefined;
|
|
233522
233942
|
attachments?: {
|
|
233943
|
+
files?: {
|
|
233944
|
+
fileId: string;
|
|
233945
|
+
fileUrl: string;
|
|
233946
|
+
}[] | undefined;
|
|
233523
233947
|
iterationId?: string | undefined;
|
|
233524
233948
|
} | undefined;
|
|
233525
233949
|
replyToMessageId?: string | undefined;
|
|
@@ -233527,9 +233951,27 @@ declare const DTOThreadMessage: z__default.ZodObject<{
|
|
|
233527
233951
|
type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
|
|
233528
233952
|
declare const DTOThreadMessageAttachments: z__default.ZodObject<{
|
|
233529
233953
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
233954
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
233955
|
+
fileId: z__default.ZodString;
|
|
233956
|
+
fileUrl: z__default.ZodString;
|
|
233957
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
233958
|
+
fileId: string;
|
|
233959
|
+
fileUrl: string;
|
|
233960
|
+
}, {
|
|
233961
|
+
fileId: string;
|
|
233962
|
+
fileUrl: string;
|
|
233963
|
+
}>, "many">>;
|
|
233530
233964
|
}, "strip", z__default.ZodTypeAny, {
|
|
233965
|
+
files?: {
|
|
233966
|
+
fileId: string;
|
|
233967
|
+
fileUrl: string;
|
|
233968
|
+
}[] | undefined;
|
|
233531
233969
|
iterationId?: string | undefined;
|
|
233532
233970
|
}, {
|
|
233971
|
+
files?: {
|
|
233972
|
+
fileId: string;
|
|
233973
|
+
fileUrl: string;
|
|
233974
|
+
}[] | undefined;
|
|
233533
233975
|
iterationId?: string | undefined;
|
|
233534
233976
|
}>;
|
|
233535
233977
|
type DTOThreadMessageAttachments = z__default.infer<typeof DTOThreadMessageAttachments>;
|
|
@@ -233544,6 +233986,17 @@ declare const DTOThreadAgentResponseTracker: z__default.ZodObject<{
|
|
|
233544
233986
|
currentBody?: string | undefined;
|
|
233545
233987
|
}>;
|
|
233546
233988
|
type DTOThreadAgentResponseTracker = z__default.infer<typeof DTOThreadAgentResponseTracker>;
|
|
233989
|
+
declare const DTOThreadMessageAttachmentsCreateInput: z__default.ZodObject<{
|
|
233990
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
233991
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
233992
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
233993
|
+
fileIds?: string[] | undefined;
|
|
233994
|
+
iterationId?: string | undefined;
|
|
233995
|
+
}, {
|
|
233996
|
+
fileIds?: string[] | undefined;
|
|
233997
|
+
iterationId?: string | undefined;
|
|
233998
|
+
}>;
|
|
233999
|
+
type DTOThreadMessageAttachmentsCreateInput = z__default.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
|
|
233547
234000
|
declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
|
|
233548
234001
|
messageId: z__default.ZodString;
|
|
233549
234002
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -233609,9 +234062,27 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
233609
234062
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
233610
234063
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
233611
234064
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234065
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234066
|
+
fileId: z__default.ZodString;
|
|
234067
|
+
fileUrl: z__default.ZodString;
|
|
234068
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234069
|
+
fileId: string;
|
|
234070
|
+
fileUrl: string;
|
|
234071
|
+
}, {
|
|
234072
|
+
fileId: string;
|
|
234073
|
+
fileUrl: string;
|
|
234074
|
+
}>, "many">>;
|
|
233612
234075
|
}, "strip", z__default.ZodTypeAny, {
|
|
234076
|
+
files?: {
|
|
234077
|
+
fileId: string;
|
|
234078
|
+
fileUrl: string;
|
|
234079
|
+
}[] | undefined;
|
|
233613
234080
|
iterationId?: string | undefined;
|
|
233614
234081
|
}, {
|
|
234082
|
+
files?: {
|
|
234083
|
+
fileId: string;
|
|
234084
|
+
fileUrl: string;
|
|
234085
|
+
}[] | undefined;
|
|
233615
234086
|
iterationId?: string | undefined;
|
|
233616
234087
|
}>>;
|
|
233617
234088
|
/**
|
|
@@ -233620,13 +234091,25 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
233620
234091
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
233621
234092
|
createdAt: z__default.ZodString;
|
|
233622
234093
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
233623
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
234094
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
234095
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234096
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234097
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
234098
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234099
|
+
fileIds?: string[] | undefined;
|
|
234100
|
+
iterationId?: string | undefined;
|
|
234101
|
+
}, {
|
|
234102
|
+
fileIds?: string[] | undefined;
|
|
234103
|
+
iterationId?: string | undefined;
|
|
234104
|
+
}>>;
|
|
234105
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
233624
234106
|
id: string;
|
|
233625
234107
|
body: string;
|
|
233626
234108
|
isPrompt?: boolean | undefined;
|
|
233627
234109
|
startsNewThread?: boolean | undefined;
|
|
233628
234110
|
parentMessageId?: string | undefined;
|
|
233629
234111
|
attachments?: {
|
|
234112
|
+
fileIds?: string[] | undefined;
|
|
233630
234113
|
iterationId?: string | undefined;
|
|
233631
234114
|
} | undefined;
|
|
233632
234115
|
}, {
|
|
@@ -233636,6 +234119,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
233636
234119
|
startsNewThread?: boolean | undefined;
|
|
233637
234120
|
parentMessageId?: string | undefined;
|
|
233638
234121
|
attachments?: {
|
|
234122
|
+
fileIds?: string[] | undefined;
|
|
233639
234123
|
iterationId?: string | undefined;
|
|
233640
234124
|
} | undefined;
|
|
233641
234125
|
}>;
|
|
@@ -233697,9 +234181,27 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
233697
234181
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
233698
234182
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
233699
234183
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234184
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234185
|
+
fileId: z__default.ZodString;
|
|
234186
|
+
fileUrl: z__default.ZodString;
|
|
234187
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234188
|
+
fileId: string;
|
|
234189
|
+
fileUrl: string;
|
|
234190
|
+
}, {
|
|
234191
|
+
fileId: string;
|
|
234192
|
+
fileUrl: string;
|
|
234193
|
+
}>, "many">>;
|
|
233700
234194
|
}, "strip", z__default.ZodTypeAny, {
|
|
234195
|
+
files?: {
|
|
234196
|
+
fileId: string;
|
|
234197
|
+
fileUrl: string;
|
|
234198
|
+
}[] | undefined;
|
|
233701
234199
|
iterationId?: string | undefined;
|
|
233702
234200
|
}, {
|
|
234201
|
+
files?: {
|
|
234202
|
+
fileId: string;
|
|
234203
|
+
fileUrl: string;
|
|
234204
|
+
}[] | undefined;
|
|
233703
234205
|
iterationId?: string | undefined;
|
|
233704
234206
|
}>>;
|
|
233705
234207
|
/**
|
|
@@ -233712,9 +234214,27 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
233712
234214
|
body: z__default.ZodOptional<z__default.ZodString>;
|
|
233713
234215
|
attachments: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodObject<{
|
|
233714
234216
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234217
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234218
|
+
fileId: z__default.ZodString;
|
|
234219
|
+
fileUrl: z__default.ZodString;
|
|
234220
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234221
|
+
fileId: string;
|
|
234222
|
+
fileUrl: string;
|
|
234223
|
+
}, {
|
|
234224
|
+
fileId: string;
|
|
234225
|
+
fileUrl: string;
|
|
234226
|
+
}>, "many">>;
|
|
233715
234227
|
}, "strip", z__default.ZodTypeAny, {
|
|
234228
|
+
files?: {
|
|
234229
|
+
fileId: string;
|
|
234230
|
+
fileUrl: string;
|
|
234231
|
+
}[] | undefined;
|
|
233716
234232
|
iterationId?: string | undefined;
|
|
233717
234233
|
}, {
|
|
234234
|
+
files?: {
|
|
234235
|
+
fileId: string;
|
|
234236
|
+
fileUrl: string;
|
|
234237
|
+
}[] | undefined;
|
|
233718
234238
|
iterationId?: string | undefined;
|
|
233719
234239
|
}>>>;
|
|
233720
234240
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>>>;
|
|
@@ -233723,6 +234243,10 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
233723
234243
|
body?: string | undefined;
|
|
233724
234244
|
agentResponseTrackerId?: string | null | undefined;
|
|
233725
234245
|
attachments?: {
|
|
234246
|
+
files?: {
|
|
234247
|
+
fileId: string;
|
|
234248
|
+
fileUrl: string;
|
|
234249
|
+
}[] | undefined;
|
|
233726
234250
|
iterationId?: string | undefined;
|
|
233727
234251
|
} | undefined;
|
|
233728
234252
|
}, {
|
|
@@ -233730,6 +234254,10 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
|
|
|
233730
234254
|
body?: string | undefined;
|
|
233731
234255
|
agentResponseTrackerId?: string | null | undefined;
|
|
233732
234256
|
attachments?: {
|
|
234257
|
+
files?: {
|
|
234258
|
+
fileId: string;
|
|
234259
|
+
fileUrl: string;
|
|
234260
|
+
}[] | undefined;
|
|
233733
234261
|
iterationId?: string | undefined;
|
|
233734
234262
|
} | undefined;
|
|
233735
234263
|
}>;
|
|
@@ -233814,9 +234342,27 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
233814
234342
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
233815
234343
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
233816
234344
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234345
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234346
|
+
fileId: z__default.ZodString;
|
|
234347
|
+
fileUrl: z__default.ZodString;
|
|
234348
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234349
|
+
fileId: string;
|
|
234350
|
+
fileUrl: string;
|
|
234351
|
+
}, {
|
|
234352
|
+
fileId: string;
|
|
234353
|
+
fileUrl: string;
|
|
234354
|
+
}>, "many">>;
|
|
233817
234355
|
}, "strip", z__default.ZodTypeAny, {
|
|
234356
|
+
files?: {
|
|
234357
|
+
fileId: string;
|
|
234358
|
+
fileUrl: string;
|
|
234359
|
+
}[] | undefined;
|
|
233818
234360
|
iterationId?: string | undefined;
|
|
233819
234361
|
}, {
|
|
234362
|
+
files?: {
|
|
234363
|
+
fileId: string;
|
|
234364
|
+
fileUrl: string;
|
|
234365
|
+
}[] | undefined;
|
|
233820
234366
|
iterationId?: string | undefined;
|
|
233821
234367
|
}>>;
|
|
233822
234368
|
/**
|
|
@@ -233846,6 +234392,10 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
233846
234392
|
parentMessageId?: string | undefined;
|
|
233847
234393
|
agentResponseTrackerId?: string | null | undefined;
|
|
233848
234394
|
attachments?: {
|
|
234395
|
+
files?: {
|
|
234396
|
+
fileId: string;
|
|
234397
|
+
fileUrl: string;
|
|
234398
|
+
}[] | undefined;
|
|
233849
234399
|
iterationId?: string | undefined;
|
|
233850
234400
|
} | undefined;
|
|
233851
234401
|
replyToMessageId?: string | undefined;
|
|
@@ -233870,6 +234420,10 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
233870
234420
|
parentMessageId?: string | undefined;
|
|
233871
234421
|
agentResponseTrackerId?: string | null | undefined;
|
|
233872
234422
|
attachments?: {
|
|
234423
|
+
files?: {
|
|
234424
|
+
fileId: string;
|
|
234425
|
+
fileUrl: string;
|
|
234426
|
+
}[] | undefined;
|
|
233873
234427
|
iterationId?: string | undefined;
|
|
233874
234428
|
} | undefined;
|
|
233875
234429
|
replyToMessageId?: string | undefined;
|
|
@@ -233896,6 +234450,10 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
233896
234450
|
parentMessageId?: string | undefined;
|
|
233897
234451
|
agentResponseTrackerId?: string | null | undefined;
|
|
233898
234452
|
attachments?: {
|
|
234453
|
+
files?: {
|
|
234454
|
+
fileId: string;
|
|
234455
|
+
fileUrl: string;
|
|
234456
|
+
}[] | undefined;
|
|
233899
234457
|
iterationId?: string | undefined;
|
|
233900
234458
|
} | undefined;
|
|
233901
234459
|
replyToMessageId?: string | undefined;
|
|
@@ -233922,6 +234480,10 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
|
|
|
233922
234480
|
parentMessageId?: string | undefined;
|
|
233923
234481
|
agentResponseTrackerId?: string | null | undefined;
|
|
233924
234482
|
attachments?: {
|
|
234483
|
+
files?: {
|
|
234484
|
+
fileId: string;
|
|
234485
|
+
fileUrl: string;
|
|
234486
|
+
}[] | undefined;
|
|
233925
234487
|
iterationId?: string | undefined;
|
|
233926
234488
|
} | undefined;
|
|
233927
234489
|
replyToMessageId?: string | undefined;
|
|
@@ -234019,9 +234581,27 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
234019
234581
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
234020
234582
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234021
234583
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234584
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234585
|
+
fileId: z__default.ZodString;
|
|
234586
|
+
fileUrl: z__default.ZodString;
|
|
234587
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234588
|
+
fileId: string;
|
|
234589
|
+
fileUrl: string;
|
|
234590
|
+
}, {
|
|
234591
|
+
fileId: string;
|
|
234592
|
+
fileUrl: string;
|
|
234593
|
+
}>, "many">>;
|
|
234022
234594
|
}, "strip", z__default.ZodTypeAny, {
|
|
234595
|
+
files?: {
|
|
234596
|
+
fileId: string;
|
|
234597
|
+
fileUrl: string;
|
|
234598
|
+
}[] | undefined;
|
|
234023
234599
|
iterationId?: string | undefined;
|
|
234024
234600
|
}, {
|
|
234601
|
+
files?: {
|
|
234602
|
+
fileId: string;
|
|
234603
|
+
fileUrl: string;
|
|
234604
|
+
}[] | undefined;
|
|
234025
234605
|
iterationId?: string | undefined;
|
|
234026
234606
|
}>>;
|
|
234027
234607
|
/**
|
|
@@ -234051,6 +234631,10 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
234051
234631
|
parentMessageId?: string | undefined;
|
|
234052
234632
|
agentResponseTrackerId?: string | null | undefined;
|
|
234053
234633
|
attachments?: {
|
|
234634
|
+
files?: {
|
|
234635
|
+
fileId: string;
|
|
234636
|
+
fileUrl: string;
|
|
234637
|
+
}[] | undefined;
|
|
234054
234638
|
iterationId?: string | undefined;
|
|
234055
234639
|
} | undefined;
|
|
234056
234640
|
replyToMessageId?: string | undefined;
|
|
@@ -234075,6 +234659,10 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
234075
234659
|
parentMessageId?: string | undefined;
|
|
234076
234660
|
agentResponseTrackerId?: string | null | undefined;
|
|
234077
234661
|
attachments?: {
|
|
234662
|
+
files?: {
|
|
234663
|
+
fileId: string;
|
|
234664
|
+
fileUrl: string;
|
|
234665
|
+
}[] | undefined;
|
|
234078
234666
|
iterationId?: string | undefined;
|
|
234079
234667
|
} | undefined;
|
|
234080
234668
|
replyToMessageId?: string | undefined;
|
|
@@ -234118,6 +234706,10 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
234118
234706
|
parentMessageId?: string | undefined;
|
|
234119
234707
|
agentResponseTrackerId?: string | null | undefined;
|
|
234120
234708
|
attachments?: {
|
|
234709
|
+
files?: {
|
|
234710
|
+
fileId: string;
|
|
234711
|
+
fileUrl: string;
|
|
234712
|
+
}[] | undefined;
|
|
234121
234713
|
iterationId?: string | undefined;
|
|
234122
234714
|
} | undefined;
|
|
234123
234715
|
replyToMessageId?: string | undefined;
|
|
@@ -234151,6 +234743,10 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
|
|
|
234151
234743
|
parentMessageId?: string | undefined;
|
|
234152
234744
|
agentResponseTrackerId?: string | null | undefined;
|
|
234153
234745
|
attachments?: {
|
|
234746
|
+
files?: {
|
|
234747
|
+
fileId: string;
|
|
234748
|
+
fileUrl: string;
|
|
234749
|
+
}[] | undefined;
|
|
234154
234750
|
iterationId?: string | undefined;
|
|
234155
234751
|
} | undefined;
|
|
234156
234752
|
replyToMessageId?: string | undefined;
|
|
@@ -234223,9 +234819,27 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
234223
234819
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
234224
234820
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234225
234821
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
234822
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
234823
|
+
fileId: z__default.ZodString;
|
|
234824
|
+
fileUrl: z__default.ZodString;
|
|
234825
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
234826
|
+
fileId: string;
|
|
234827
|
+
fileUrl: string;
|
|
234828
|
+
}, {
|
|
234829
|
+
fileId: string;
|
|
234830
|
+
fileUrl: string;
|
|
234831
|
+
}>, "many">>;
|
|
234226
234832
|
}, "strip", z__default.ZodTypeAny, {
|
|
234833
|
+
files?: {
|
|
234834
|
+
fileId: string;
|
|
234835
|
+
fileUrl: string;
|
|
234836
|
+
}[] | undefined;
|
|
234227
234837
|
iterationId?: string | undefined;
|
|
234228
234838
|
}, {
|
|
234839
|
+
files?: {
|
|
234840
|
+
fileId: string;
|
|
234841
|
+
fileUrl: string;
|
|
234842
|
+
}[] | undefined;
|
|
234229
234843
|
iterationId?: string | undefined;
|
|
234230
234844
|
}>>;
|
|
234231
234845
|
/**
|
|
@@ -234255,6 +234869,10 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
234255
234869
|
parentMessageId?: string | undefined;
|
|
234256
234870
|
agentResponseTrackerId?: string | null | undefined;
|
|
234257
234871
|
attachments?: {
|
|
234872
|
+
files?: {
|
|
234873
|
+
fileId: string;
|
|
234874
|
+
fileUrl: string;
|
|
234875
|
+
}[] | undefined;
|
|
234258
234876
|
iterationId?: string | undefined;
|
|
234259
234877
|
} | undefined;
|
|
234260
234878
|
replyToMessageId?: string | undefined;
|
|
@@ -234279,6 +234897,10 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
234279
234897
|
parentMessageId?: string | undefined;
|
|
234280
234898
|
agentResponseTrackerId?: string | null | undefined;
|
|
234281
234899
|
attachments?: {
|
|
234900
|
+
files?: {
|
|
234901
|
+
fileId: string;
|
|
234902
|
+
fileUrl: string;
|
|
234903
|
+
}[] | undefined;
|
|
234282
234904
|
iterationId?: string | undefined;
|
|
234283
234905
|
} | undefined;
|
|
234284
234906
|
replyToMessageId?: string | undefined;
|
|
@@ -234306,6 +234928,10 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
234306
234928
|
parentMessageId?: string | undefined;
|
|
234307
234929
|
agentResponseTrackerId?: string | null | undefined;
|
|
234308
234930
|
attachments?: {
|
|
234931
|
+
files?: {
|
|
234932
|
+
fileId: string;
|
|
234933
|
+
fileUrl: string;
|
|
234934
|
+
}[] | undefined;
|
|
234309
234935
|
iterationId?: string | undefined;
|
|
234310
234936
|
} | undefined;
|
|
234311
234937
|
replyToMessageId?: string | undefined;
|
|
@@ -234333,6 +234959,10 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
|
|
|
234333
234959
|
parentMessageId?: string | undefined;
|
|
234334
234960
|
agentResponseTrackerId?: string | null | undefined;
|
|
234335
234961
|
attachments?: {
|
|
234962
|
+
files?: {
|
|
234963
|
+
fileId: string;
|
|
234964
|
+
fileUrl: string;
|
|
234965
|
+
}[] | undefined;
|
|
234336
234966
|
iterationId?: string | undefined;
|
|
234337
234967
|
} | undefined;
|
|
234338
234968
|
replyToMessageId?: string | undefined;
|
|
@@ -234398,9 +235028,27 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
234398
235028
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
234399
235029
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234400
235030
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
235031
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
235032
|
+
fileId: z__default.ZodString;
|
|
235033
|
+
fileUrl: z__default.ZodString;
|
|
235034
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
235035
|
+
fileId: string;
|
|
235036
|
+
fileUrl: string;
|
|
235037
|
+
}, {
|
|
235038
|
+
fileId: string;
|
|
235039
|
+
fileUrl: string;
|
|
235040
|
+
}>, "many">>;
|
|
234401
235041
|
}, "strip", z__default.ZodTypeAny, {
|
|
235042
|
+
files?: {
|
|
235043
|
+
fileId: string;
|
|
235044
|
+
fileUrl: string;
|
|
235045
|
+
}[] | undefined;
|
|
234402
235046
|
iterationId?: string | undefined;
|
|
234403
235047
|
}, {
|
|
235048
|
+
files?: {
|
|
235049
|
+
fileId: string;
|
|
235050
|
+
fileUrl: string;
|
|
235051
|
+
}[] | undefined;
|
|
234404
235052
|
iterationId?: string | undefined;
|
|
234405
235053
|
}>>;
|
|
234406
235054
|
/**
|
|
@@ -234430,6 +235078,10 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
234430
235078
|
parentMessageId?: string | undefined;
|
|
234431
235079
|
agentResponseTrackerId?: string | null | undefined;
|
|
234432
235080
|
attachments?: {
|
|
235081
|
+
files?: {
|
|
235082
|
+
fileId: string;
|
|
235083
|
+
fileUrl: string;
|
|
235084
|
+
}[] | undefined;
|
|
234433
235085
|
iterationId?: string | undefined;
|
|
234434
235086
|
} | undefined;
|
|
234435
235087
|
replyToMessageId?: string | undefined;
|
|
@@ -234454,6 +235106,10 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
234454
235106
|
parentMessageId?: string | undefined;
|
|
234455
235107
|
agentResponseTrackerId?: string | null | undefined;
|
|
234456
235108
|
attachments?: {
|
|
235109
|
+
files?: {
|
|
235110
|
+
fileId: string;
|
|
235111
|
+
fileUrl: string;
|
|
235112
|
+
}[] | undefined;
|
|
234457
235113
|
iterationId?: string | undefined;
|
|
234458
235114
|
} | undefined;
|
|
234459
235115
|
replyToMessageId?: string | undefined;
|
|
@@ -234481,6 +235137,10 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
234481
235137
|
parentMessageId?: string | undefined;
|
|
234482
235138
|
agentResponseTrackerId?: string | null | undefined;
|
|
234483
235139
|
attachments?: {
|
|
235140
|
+
files?: {
|
|
235141
|
+
fileId: string;
|
|
235142
|
+
fileUrl: string;
|
|
235143
|
+
}[] | undefined;
|
|
234484
235144
|
iterationId?: string | undefined;
|
|
234485
235145
|
} | undefined;
|
|
234486
235146
|
replyToMessageId?: string | undefined;
|
|
@@ -234508,6 +235168,10 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
|
|
|
234508
235168
|
parentMessageId?: string | undefined;
|
|
234509
235169
|
agentResponseTrackerId?: string | null | undefined;
|
|
234510
235170
|
attachments?: {
|
|
235171
|
+
files?: {
|
|
235172
|
+
fileId: string;
|
|
235173
|
+
fileUrl: string;
|
|
235174
|
+
}[] | undefined;
|
|
234511
235175
|
iterationId?: string | undefined;
|
|
234512
235176
|
} | undefined;
|
|
234513
235177
|
replyToMessageId?: string | undefined;
|
|
@@ -234645,9 +235309,27 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234645
235309
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
234646
235310
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234647
235311
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
235312
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
235313
|
+
fileId: z__default.ZodString;
|
|
235314
|
+
fileUrl: z__default.ZodString;
|
|
235315
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
235316
|
+
fileId: string;
|
|
235317
|
+
fileUrl: string;
|
|
235318
|
+
}, {
|
|
235319
|
+
fileId: string;
|
|
235320
|
+
fileUrl: string;
|
|
235321
|
+
}>, "many">>;
|
|
234648
235322
|
}, "strip", z__default.ZodTypeAny, {
|
|
235323
|
+
files?: {
|
|
235324
|
+
fileId: string;
|
|
235325
|
+
fileUrl: string;
|
|
235326
|
+
}[] | undefined;
|
|
234649
235327
|
iterationId?: string | undefined;
|
|
234650
235328
|
}, {
|
|
235329
|
+
files?: {
|
|
235330
|
+
fileId: string;
|
|
235331
|
+
fileUrl: string;
|
|
235332
|
+
}[] | undefined;
|
|
234651
235333
|
iterationId?: string | undefined;
|
|
234652
235334
|
}>>;
|
|
234653
235335
|
/**
|
|
@@ -234677,6 +235359,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234677
235359
|
parentMessageId?: string | undefined;
|
|
234678
235360
|
agentResponseTrackerId?: string | null | undefined;
|
|
234679
235361
|
attachments?: {
|
|
235362
|
+
files?: {
|
|
235363
|
+
fileId: string;
|
|
235364
|
+
fileUrl: string;
|
|
235365
|
+
}[] | undefined;
|
|
234680
235366
|
iterationId?: string | undefined;
|
|
234681
235367
|
} | undefined;
|
|
234682
235368
|
replyToMessageId?: string | undefined;
|
|
@@ -234701,6 +235387,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234701
235387
|
parentMessageId?: string | undefined;
|
|
234702
235388
|
agentResponseTrackerId?: string | null | undefined;
|
|
234703
235389
|
attachments?: {
|
|
235390
|
+
files?: {
|
|
235391
|
+
fileId: string;
|
|
235392
|
+
fileUrl: string;
|
|
235393
|
+
}[] | undefined;
|
|
234704
235394
|
iterationId?: string | undefined;
|
|
234705
235395
|
} | undefined;
|
|
234706
235396
|
replyToMessageId?: string | undefined;
|
|
@@ -234728,6 +235418,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234728
235418
|
parentMessageId?: string | undefined;
|
|
234729
235419
|
agentResponseTrackerId?: string | null | undefined;
|
|
234730
235420
|
attachments?: {
|
|
235421
|
+
files?: {
|
|
235422
|
+
fileId: string;
|
|
235423
|
+
fileUrl: string;
|
|
235424
|
+
}[] | undefined;
|
|
234731
235425
|
iterationId?: string | undefined;
|
|
234732
235426
|
} | undefined;
|
|
234733
235427
|
replyToMessageId?: string | undefined;
|
|
@@ -234755,6 +235449,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234755
235449
|
parentMessageId?: string | undefined;
|
|
234756
235450
|
agentResponseTrackerId?: string | null | undefined;
|
|
234757
235451
|
attachments?: {
|
|
235452
|
+
files?: {
|
|
235453
|
+
fileId: string;
|
|
235454
|
+
fileUrl: string;
|
|
235455
|
+
}[] | undefined;
|
|
234758
235456
|
iterationId?: string | undefined;
|
|
234759
235457
|
} | undefined;
|
|
234760
235458
|
replyToMessageId?: string | undefined;
|
|
@@ -234818,9 +235516,27 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234818
235516
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
234819
235517
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
234820
235518
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
235519
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
235520
|
+
fileId: z__default.ZodString;
|
|
235521
|
+
fileUrl: z__default.ZodString;
|
|
235522
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
235523
|
+
fileId: string;
|
|
235524
|
+
fileUrl: string;
|
|
235525
|
+
}, {
|
|
235526
|
+
fileId: string;
|
|
235527
|
+
fileUrl: string;
|
|
235528
|
+
}>, "many">>;
|
|
234821
235529
|
}, "strip", z__default.ZodTypeAny, {
|
|
235530
|
+
files?: {
|
|
235531
|
+
fileId: string;
|
|
235532
|
+
fileUrl: string;
|
|
235533
|
+
}[] | undefined;
|
|
234822
235534
|
iterationId?: string | undefined;
|
|
234823
235535
|
}, {
|
|
235536
|
+
files?: {
|
|
235537
|
+
fileId: string;
|
|
235538
|
+
fileUrl: string;
|
|
235539
|
+
}[] | undefined;
|
|
234824
235540
|
iterationId?: string | undefined;
|
|
234825
235541
|
}>>;
|
|
234826
235542
|
/**
|
|
@@ -234850,6 +235566,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234850
235566
|
parentMessageId?: string | undefined;
|
|
234851
235567
|
agentResponseTrackerId?: string | null | undefined;
|
|
234852
235568
|
attachments?: {
|
|
235569
|
+
files?: {
|
|
235570
|
+
fileId: string;
|
|
235571
|
+
fileUrl: string;
|
|
235572
|
+
}[] | undefined;
|
|
234853
235573
|
iterationId?: string | undefined;
|
|
234854
235574
|
} | undefined;
|
|
234855
235575
|
replyToMessageId?: string | undefined;
|
|
@@ -234874,6 +235594,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234874
235594
|
parentMessageId?: string | undefined;
|
|
234875
235595
|
agentResponseTrackerId?: string | null | undefined;
|
|
234876
235596
|
attachments?: {
|
|
235597
|
+
files?: {
|
|
235598
|
+
fileId: string;
|
|
235599
|
+
fileUrl: string;
|
|
235600
|
+
}[] | undefined;
|
|
234877
235601
|
iterationId?: string | undefined;
|
|
234878
235602
|
} | undefined;
|
|
234879
235603
|
replyToMessageId?: string | undefined;
|
|
@@ -234901,6 +235625,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234901
235625
|
parentMessageId?: string | undefined;
|
|
234902
235626
|
agentResponseTrackerId?: string | null | undefined;
|
|
234903
235627
|
attachments?: {
|
|
235628
|
+
files?: {
|
|
235629
|
+
fileId: string;
|
|
235630
|
+
fileUrl: string;
|
|
235631
|
+
}[] | undefined;
|
|
234904
235632
|
iterationId?: string | undefined;
|
|
234905
235633
|
} | undefined;
|
|
234906
235634
|
replyToMessageId?: string | undefined;
|
|
@@ -234928,6 +235656,10 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
|
|
|
234928
235656
|
parentMessageId?: string | undefined;
|
|
234929
235657
|
agentResponseTrackerId?: string | null | undefined;
|
|
234930
235658
|
attachments?: {
|
|
235659
|
+
files?: {
|
|
235660
|
+
fileId: string;
|
|
235661
|
+
fileUrl: string;
|
|
235662
|
+
}[] | undefined;
|
|
234931
235663
|
iterationId?: string | undefined;
|
|
234932
235664
|
} | undefined;
|
|
234933
235665
|
replyToMessageId?: string | undefined;
|
|
@@ -264244,4 +264976,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
264244
264976
|
reason: ValidationErrorReason | undefined;
|
|
264245
264977
|
};
|
|
264246
264978
|
|
|
264247
|
-
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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileUploadBulkInput, 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, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, 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, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, 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, 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 };
|
|
264979
|
+
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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileUploadBulkInput, 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, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, 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, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, 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, 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 };
|