@supernova-studio/client 1.47.1 → 1.47.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 +203 -2
- package/dist/index.d.ts +203 -2
- package/dist/index.js +43 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +42 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -69501,6 +69501,11 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69501
69501
|
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
69502
69502
|
*/
|
|
69503
69503
|
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
69504
|
+
/**
|
|
69505
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
69506
|
+
* To be used for "fix with AI"
|
|
69507
|
+
*/
|
|
69508
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
69504
69509
|
/**
|
|
69505
69510
|
* URL of a static preview of the feature
|
|
69506
69511
|
*/
|
|
@@ -69591,6 +69596,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69591
69596
|
thumbnailUrl?: string | undefined;
|
|
69592
69597
|
baseIterationId?: string | undefined;
|
|
69593
69598
|
isInProgress?: boolean | undefined;
|
|
69599
|
+
errorDescription?: string | null | undefined;
|
|
69594
69600
|
staticPreviewUrl?: string | undefined;
|
|
69595
69601
|
isBookmarked?: boolean | undefined;
|
|
69596
69602
|
thumbnail?: {
|
|
@@ -69620,6 +69626,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69620
69626
|
thumbnailUrl?: string | undefined;
|
|
69621
69627
|
baseIterationId?: string | undefined;
|
|
69622
69628
|
isInProgress?: boolean | undefined;
|
|
69629
|
+
errorDescription?: string | null | undefined;
|
|
69623
69630
|
staticPreviewUrl?: string | undefined;
|
|
69624
69631
|
isBookmarked?: boolean | undefined;
|
|
69625
69632
|
thumbnail?: {
|
|
@@ -69665,23 +69672,56 @@ declare const DTOFeatureIterationTag: z$1.ZodObject<{
|
|
|
69665
69672
|
messageId?: string | undefined;
|
|
69666
69673
|
}>;
|
|
69667
69674
|
type DTOFeatureIterationTag = z$1.infer<typeof DTOFeatureIterationTag>;
|
|
69675
|
+
declare const DTOSandboxError: z$1.ZodObject<{
|
|
69676
|
+
/** At what stage the error has occured */
|
|
69677
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
69678
|
+
/** We will use this in "fix with AI" */
|
|
69679
|
+
errorDescription: z$1.ZodString;
|
|
69680
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
69681
|
+
errorDescription: string;
|
|
69682
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69683
|
+
}, {
|
|
69684
|
+
errorDescription: string;
|
|
69685
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69686
|
+
}>;
|
|
69687
|
+
type DTOSandboxError = z$1.infer<typeof DTOSandboxError>;
|
|
69668
69688
|
declare const DTOFeatureSandbox: z$1.ZodObject<{
|
|
69669
69689
|
id: z$1.ZodString;
|
|
69670
69690
|
url: z$1.ZodString;
|
|
69671
69691
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
69672
69692
|
currentIterationId: z$1.ZodString;
|
|
69673
69693
|
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
69694
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
69695
|
+
/** At what stage the error has occured */
|
|
69696
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
69697
|
+
/** We will use this in "fix with AI" */
|
|
69698
|
+
errorDescription: z$1.ZodString;
|
|
69699
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
69700
|
+
errorDescription: string;
|
|
69701
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69702
|
+
}, {
|
|
69703
|
+
errorDescription: string;
|
|
69704
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69705
|
+
}>>;
|
|
69674
69706
|
}, "strip", z$1.ZodTypeAny, {
|
|
69675
69707
|
id: string;
|
|
69676
69708
|
url: string;
|
|
69677
69709
|
currentIterationId: string;
|
|
69678
69710
|
expiresAt?: string | undefined;
|
|
69711
|
+
error?: {
|
|
69712
|
+
errorDescription: string;
|
|
69713
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69714
|
+
} | undefined;
|
|
69679
69715
|
parentMessageId?: string | undefined;
|
|
69680
69716
|
}, {
|
|
69681
69717
|
id: string;
|
|
69682
69718
|
url: string;
|
|
69683
69719
|
currentIterationId: string;
|
|
69684
69720
|
expiresAt?: string | undefined;
|
|
69721
|
+
error?: {
|
|
69722
|
+
errorDescription: string;
|
|
69723
|
+
stage: "Unknown" | "Build" | "PackageInstall" | "HealthCheck";
|
|
69724
|
+
} | undefined;
|
|
69685
69725
|
parentMessageId?: string | undefined;
|
|
69686
69726
|
}>;
|
|
69687
69727
|
type DTOFeatureSandbox = z$1.infer<typeof DTOFeatureSandbox>;
|
|
@@ -69887,6 +69927,11 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
69887
69927
|
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
69888
69928
|
*/
|
|
69889
69929
|
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
69930
|
+
/**
|
|
69931
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
69932
|
+
* To be used for "fix with AI"
|
|
69933
|
+
*/
|
|
69934
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
69890
69935
|
/**
|
|
69891
69936
|
* URL of a static preview of the feature
|
|
69892
69937
|
*/
|
|
@@ -70772,6 +70817,11 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70772
70817
|
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
70773
70818
|
*/
|
|
70774
70819
|
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
70820
|
+
/**
|
|
70821
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
70822
|
+
* To be used for "fix with AI"
|
|
70823
|
+
*/
|
|
70824
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
70775
70825
|
/**
|
|
70776
70826
|
* URL of a static preview of the feature
|
|
70777
70827
|
*/
|
|
@@ -70862,6 +70912,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70862
70912
|
thumbnailUrl?: string | undefined;
|
|
70863
70913
|
baseIterationId?: string | undefined;
|
|
70864
70914
|
isInProgress?: boolean | undefined;
|
|
70915
|
+
errorDescription?: string | null | undefined;
|
|
70865
70916
|
staticPreviewUrl?: string | undefined;
|
|
70866
70917
|
isBookmarked?: boolean | undefined;
|
|
70867
70918
|
thumbnail?: {
|
|
@@ -70891,6 +70942,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70891
70942
|
thumbnailUrl?: string | undefined;
|
|
70892
70943
|
baseIterationId?: string | undefined;
|
|
70893
70944
|
isInProgress?: boolean | undefined;
|
|
70945
|
+
errorDescription?: string | null | undefined;
|
|
70894
70946
|
staticPreviewUrl?: string | undefined;
|
|
70895
70947
|
isBookmarked?: boolean | undefined;
|
|
70896
70948
|
thumbnail?: {
|
|
@@ -70922,6 +70974,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70922
70974
|
thumbnailUrl?: string | undefined;
|
|
70923
70975
|
baseIterationId?: string | undefined;
|
|
70924
70976
|
isInProgress?: boolean | undefined;
|
|
70977
|
+
errorDescription?: string | null | undefined;
|
|
70925
70978
|
staticPreviewUrl?: string | undefined;
|
|
70926
70979
|
isBookmarked?: boolean | undefined;
|
|
70927
70980
|
thumbnail?: {
|
|
@@ -70953,6 +71006,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70953
71006
|
thumbnailUrl?: string | undefined;
|
|
70954
71007
|
baseIterationId?: string | undefined;
|
|
70955
71008
|
isInProgress?: boolean | undefined;
|
|
71009
|
+
errorDescription?: string | null | undefined;
|
|
70956
71010
|
staticPreviewUrl?: string | undefined;
|
|
70957
71011
|
isBookmarked?: boolean | undefined;
|
|
70958
71012
|
thumbnail?: {
|
|
@@ -71006,6 +71060,11 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71006
71060
|
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
71007
71061
|
*/
|
|
71008
71062
|
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
71063
|
+
/**
|
|
71064
|
+
* Description of a sandbox error if there were any (such as during `npm i` or `npm run dev`).
|
|
71065
|
+
* To be used for "fix with AI"
|
|
71066
|
+
*/
|
|
71067
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
71009
71068
|
/**
|
|
71010
71069
|
* URL of a static preview of the feature
|
|
71011
71070
|
*/
|
|
@@ -71096,6 +71155,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71096
71155
|
thumbnailUrl?: string | undefined;
|
|
71097
71156
|
baseIterationId?: string | undefined;
|
|
71098
71157
|
isInProgress?: boolean | undefined;
|
|
71158
|
+
errorDescription?: string | null | undefined;
|
|
71099
71159
|
staticPreviewUrl?: string | undefined;
|
|
71100
71160
|
isBookmarked?: boolean | undefined;
|
|
71101
71161
|
thumbnail?: {
|
|
@@ -71125,6 +71185,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71125
71185
|
thumbnailUrl?: string | undefined;
|
|
71126
71186
|
baseIterationId?: string | undefined;
|
|
71127
71187
|
isInProgress?: boolean | undefined;
|
|
71188
|
+
errorDescription?: string | null | undefined;
|
|
71128
71189
|
staticPreviewUrl?: string | undefined;
|
|
71129
71190
|
isBookmarked?: boolean | undefined;
|
|
71130
71191
|
thumbnail?: {
|
|
@@ -71156,6 +71217,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71156
71217
|
thumbnailUrl?: string | undefined;
|
|
71157
71218
|
baseIterationId?: string | undefined;
|
|
71158
71219
|
isInProgress?: boolean | undefined;
|
|
71220
|
+
errorDescription?: string | null | undefined;
|
|
71159
71221
|
staticPreviewUrl?: string | undefined;
|
|
71160
71222
|
isBookmarked?: boolean | undefined;
|
|
71161
71223
|
thumbnail?: {
|
|
@@ -71187,6 +71249,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71187
71249
|
thumbnailUrl?: string | undefined;
|
|
71188
71250
|
baseIterationId?: string | undefined;
|
|
71189
71251
|
isInProgress?: boolean | undefined;
|
|
71252
|
+
errorDescription?: string | null | undefined;
|
|
71190
71253
|
staticPreviewUrl?: string | undefined;
|
|
71191
71254
|
isBookmarked?: boolean | undefined;
|
|
71192
71255
|
thumbnail?: {
|
|
@@ -82489,6 +82552,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
82489
82552
|
}>]>;
|
|
82490
82553
|
body: z$1.ZodString;
|
|
82491
82554
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82555
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82492
82556
|
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82493
82557
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
82494
82558
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -82827,6 +82891,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
82827
82891
|
}>]>;
|
|
82828
82892
|
body: z$1.ZodString;
|
|
82829
82893
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82894
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82830
82895
|
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
82831
82896
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
82832
82897
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -83290,6 +83355,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
83290
83355
|
}>]>;
|
|
83291
83356
|
body: z$1.ZodString;
|
|
83292
83357
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83358
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83293
83359
|
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83294
83360
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
83295
83361
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -83620,6 +83686,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
83620
83686
|
}>]>;
|
|
83621
83687
|
body: z$1.ZodString;
|
|
83622
83688
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83689
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83623
83690
|
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
83624
83691
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
83625
83692
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -84235,6 +84302,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
84235
84302
|
}>]>;
|
|
84236
84303
|
body: z.ZodString;
|
|
84237
84304
|
isPrompt: z.ZodOptional<z.ZodBoolean>;
|
|
84305
|
+
isRetry: z.ZodOptional<z.ZodBoolean>;
|
|
84238
84306
|
startsNewThread: z.ZodOptional<z.ZodBoolean>;
|
|
84239
84307
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
84240
84308
|
agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -141536,6 +141604,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
141536
141604
|
}>]>;
|
|
141537
141605
|
body: z$1.ZodString;
|
|
141538
141606
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
141607
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
141539
141608
|
startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
141540
141609
|
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
141541
141610
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -158323,6 +158392,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
158323
158392
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
158324
158393
|
isArchived: z.ZodBoolean;
|
|
158325
158394
|
emoji: z.ZodOptional<z.ZodString>;
|
|
158395
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
158326
158396
|
createdAt: z.ZodDate;
|
|
158327
158397
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158328
158398
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -168138,6 +168208,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168138
168208
|
tokenThemeIds: string[];
|
|
168139
168209
|
}[] | undefined;
|
|
168140
168210
|
} | undefined;
|
|
168211
|
+
tokenThemeSetId?: string | undefined;
|
|
168141
168212
|
lastUserActivityAt?: Date | undefined;
|
|
168142
168213
|
numberOfDocuments?: number | undefined;
|
|
168143
168214
|
}, {
|
|
@@ -169172,6 +169243,7 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
169172
169243
|
}[] | undefined;
|
|
169173
169244
|
} | undefined;
|
|
169174
169245
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
169246
|
+
tokenThemeSetId?: string | undefined;
|
|
169175
169247
|
lastUserActivityAt?: Date | undefined;
|
|
169176
169248
|
numberOfDocuments?: number | undefined;
|
|
169177
169249
|
}>;
|
|
@@ -169188,6 +169260,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
169188
169260
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
169189
169261
|
isArchived: z.ZodBoolean;
|
|
169190
169262
|
emoji: z.ZodOptional<z.ZodString>;
|
|
169263
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
169191
169264
|
createdAt: z.ZodDate;
|
|
169192
169265
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
169193
169266
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -177971,7 +178044,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
177971
178044
|
tokenThemeIds: string[];
|
|
177972
178045
|
}[] | undefined;
|
|
177973
178046
|
}>>;
|
|
177974
|
-
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole"> & {
|
|
178047
|
+
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole" | "tokenThemeSetId"> & {
|
|
177975
178048
|
/** @deprecated use `name` and `description` properties on project */
|
|
177976
178049
|
meta: z.ZodOptional<z.ZodObject<{
|
|
177977
178050
|
name: z.ZodString;
|
|
@@ -178044,6 +178117,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178044
178117
|
}>]>;
|
|
178045
178118
|
body: z.ZodString;
|
|
178046
178119
|
isPrompt: z.ZodOptional<z.ZodBoolean>;
|
|
178120
|
+
isRetry: z.ZodOptional<z.ZodBoolean>;
|
|
178047
178121
|
startsNewThread: z.ZodOptional<z.ZodBoolean>;
|
|
178048
178122
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
178049
178123
|
agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -178243,6 +178317,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178243
178317
|
}>]>;
|
|
178244
178318
|
body: z.ZodString;
|
|
178245
178319
|
isPrompt: z.ZodOptional<z.ZodBoolean>;
|
|
178320
|
+
isRetry: z.ZodOptional<z.ZodBoolean>;
|
|
178246
178321
|
startsNewThread: z.ZodOptional<z.ZodBoolean>;
|
|
178247
178322
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
178248
178323
|
agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -178420,6 +178495,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178420
178495
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
178421
178496
|
}[] | undefined;
|
|
178422
178497
|
projectContextId?: string | undefined;
|
|
178498
|
+
tokenThemeSetId?: string | undefined;
|
|
178423
178499
|
fpContextId?: string | undefined;
|
|
178424
178500
|
initialFeature?: {
|
|
178425
178501
|
id: string;
|
|
@@ -178476,6 +178552,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178476
178552
|
}[] | undefined;
|
|
178477
178553
|
projectContextId?: string | undefined;
|
|
178478
178554
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
178555
|
+
tokenThemeSetId?: string | undefined;
|
|
178479
178556
|
fpContextId?: string | undefined;
|
|
178480
178557
|
initialFeature?: {
|
|
178481
178558
|
id: string;
|
|
@@ -178535,6 +178612,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178535
178612
|
projectContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178536
178613
|
instruction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178537
178614
|
defaultRole: z.ZodOptional<z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>>;
|
|
178615
|
+
tokenThemeSetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178538
178616
|
fpContextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
178539
178617
|
initialFeature: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
178540
178618
|
id: z.ZodString;
|
|
@@ -178575,6 +178653,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178575
178653
|
}>]>;
|
|
178576
178654
|
body: z.ZodString;
|
|
178577
178655
|
isPrompt: z.ZodOptional<z.ZodBoolean>;
|
|
178656
|
+
isRetry: z.ZodOptional<z.ZodBoolean>;
|
|
178578
178657
|
startsNewThread: z.ZodOptional<z.ZodBoolean>;
|
|
178579
178658
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
178580
178659
|
agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -178774,6 +178853,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178774
178853
|
}>]>;
|
|
178775
178854
|
body: z.ZodString;
|
|
178776
178855
|
isPrompt: z.ZodOptional<z.ZodBoolean>;
|
|
178856
|
+
isRetry: z.ZodOptional<z.ZodBoolean>;
|
|
178777
178857
|
startsNewThread: z.ZodOptional<z.ZodBoolean>;
|
|
178778
178858
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
178779
178859
|
agentResponseTrackerId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -178951,6 +179031,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
178951
179031
|
projectContextId?: string | undefined;
|
|
178952
179032
|
instruction?: string | null | undefined;
|
|
178953
179033
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179034
|
+
tokenThemeSetId?: string | undefined;
|
|
178954
179035
|
fpContextId?: string | undefined;
|
|
178955
179036
|
initialFeature?: {
|
|
178956
179037
|
id: string;
|
|
@@ -179004,6 +179085,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
179004
179085
|
projectContextId?: string | undefined;
|
|
179005
179086
|
instruction?: string | null | undefined;
|
|
179006
179087
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
179088
|
+
tokenThemeSetId?: string | undefined;
|
|
179007
179089
|
fpContextId?: string | undefined;
|
|
179008
179090
|
initialFeature?: {
|
|
179009
179091
|
id: string;
|
|
@@ -179057,6 +179139,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
179057
179139
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
179058
179140
|
isArchived: z.ZodBoolean;
|
|
179059
179141
|
emoji: z.ZodOptional<z.ZodString>;
|
|
179142
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
179060
179143
|
createdAt: z.ZodDate;
|
|
179061
179144
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
179062
179145
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -188875,6 +188958,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188875
188958
|
tokenThemeIds: string[];
|
|
188876
188959
|
}[] | undefined;
|
|
188877
188960
|
} | undefined;
|
|
188961
|
+
tokenThemeSetId?: string | undefined;
|
|
188878
188962
|
lastUserActivityAt?: Date | undefined;
|
|
188879
188963
|
numberOfDocuments?: number | undefined;
|
|
188880
188964
|
}, {
|
|
@@ -189910,6 +189994,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189910
189994
|
}[] | undefined;
|
|
189911
189995
|
} | undefined;
|
|
189912
189996
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
189997
|
+
tokenThemeSetId?: string | undefined;
|
|
189913
189998
|
lastUserActivityAt?: Date | undefined;
|
|
189914
189999
|
numberOfDocuments?: number | undefined;
|
|
189915
190000
|
}>;
|
|
@@ -190947,6 +191032,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
190947
191032
|
tokenThemeIds: string[];
|
|
190948
191033
|
}[] | undefined;
|
|
190949
191034
|
} | undefined;
|
|
191035
|
+
tokenThemeSetId?: string | undefined;
|
|
190950
191036
|
lastUserActivityAt?: Date | undefined;
|
|
190951
191037
|
numberOfDocuments?: number | undefined;
|
|
190952
191038
|
};
|
|
@@ -191984,6 +192070,7 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
191984
192070
|
}[] | undefined;
|
|
191985
192071
|
} | undefined;
|
|
191986
192072
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
192073
|
+
tokenThemeSetId?: string | undefined;
|
|
191987
192074
|
lastUserActivityAt?: Date | undefined;
|
|
191988
192075
|
numberOfDocuments?: number | undefined;
|
|
191989
192076
|
};
|
|
@@ -192002,6 +192089,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
192002
192089
|
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
192003
192090
|
isArchived: z.ZodBoolean;
|
|
192004
192091
|
emoji: z.ZodOptional<z.ZodString>;
|
|
192092
|
+
tokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
192005
192093
|
createdAt: z.ZodDate;
|
|
192006
192094
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
192007
192095
|
lastUserActivityAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -201820,6 +201908,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201820
201908
|
tokenThemeIds: string[];
|
|
201821
201909
|
}[] | undefined;
|
|
201822
201910
|
} | undefined;
|
|
201911
|
+
tokenThemeSetId?: string | undefined;
|
|
201823
201912
|
lastUserActivityAt?: Date | undefined;
|
|
201824
201913
|
numberOfDocuments?: number | undefined;
|
|
201825
201914
|
}, {
|
|
@@ -202855,6 +202944,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202855
202944
|
}[] | undefined;
|
|
202856
202945
|
} | undefined;
|
|
202857
202946
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
202947
|
+
tokenThemeSetId?: string | undefined;
|
|
202858
202948
|
lastUserActivityAt?: Date | undefined;
|
|
202859
202949
|
numberOfDocuments?: number | undefined;
|
|
202860
202950
|
}>, "many">;
|
|
@@ -203892,6 +203982,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203892
203982
|
tokenThemeIds: string[];
|
|
203893
203983
|
}[] | undefined;
|
|
203894
203984
|
} | undefined;
|
|
203985
|
+
tokenThemeSetId?: string | undefined;
|
|
203895
203986
|
lastUserActivityAt?: Date | undefined;
|
|
203896
203987
|
numberOfDocuments?: number | undefined;
|
|
203897
203988
|
}[];
|
|
@@ -204929,6 +205020,7 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
204929
205020
|
}[] | undefined;
|
|
204930
205021
|
} | undefined;
|
|
204931
205022
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
205023
|
+
tokenThemeSetId?: string | undefined;
|
|
204932
205024
|
lastUserActivityAt?: Date | undefined;
|
|
204933
205025
|
numberOfDocuments?: number | undefined;
|
|
204934
205026
|
}[];
|
|
@@ -224921,6 +225013,10 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
224921
225013
|
* AI agent to generate a response and perform an action within the feature
|
|
224922
225014
|
*/
|
|
224923
225015
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225016
|
+
/**
|
|
225017
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
225018
|
+
*/
|
|
225019
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
224924
225020
|
/**
|
|
224925
225021
|
* Indicates if the sender requested agent to reply in a thread
|
|
224926
225022
|
*/
|
|
@@ -225059,6 +225155,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
225059
225155
|
iterationId?: string | undefined;
|
|
225060
225156
|
} | undefined;
|
|
225061
225157
|
replyToMessageId?: string | undefined;
|
|
225158
|
+
isRetry?: boolean | undefined;
|
|
225062
225159
|
promptMetadata?: Record<string, any> | undefined;
|
|
225063
225160
|
}, {
|
|
225064
225161
|
id: string;
|
|
@@ -225096,6 +225193,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
225096
225193
|
iterationId?: string | undefined;
|
|
225097
225194
|
} | undefined;
|
|
225098
225195
|
replyToMessageId?: string | undefined;
|
|
225196
|
+
isRetry?: boolean | undefined;
|
|
225099
225197
|
promptMetadata?: Record<string, any> | undefined;
|
|
225100
225198
|
}>;
|
|
225101
225199
|
type DTOThreadMessage = z$1.infer<typeof DTOThreadMessage>;
|
|
@@ -225219,6 +225317,14 @@ declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
|
|
|
225219
225317
|
promptState?: "Success" | "Error" | "Timeout" | undefined;
|
|
225220
225318
|
}>;
|
|
225221
225319
|
type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
225320
|
+
declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
225321
|
+
agentMessageId: z$1.ZodString;
|
|
225322
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
225323
|
+
agentMessageId: string;
|
|
225324
|
+
}, {
|
|
225325
|
+
agentMessageId: string;
|
|
225326
|
+
}>;
|
|
225327
|
+
type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
|
|
225222
225328
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
225223
225329
|
id: z$1.ZodString;
|
|
225224
225330
|
threadId: z$1.ZodString;
|
|
@@ -225262,6 +225368,10 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
225262
225368
|
* AI agent to generate a response and perform an action within the feature
|
|
225263
225369
|
*/
|
|
225264
225370
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225371
|
+
/**
|
|
225372
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
225373
|
+
*/
|
|
225374
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225265
225375
|
/**
|
|
225266
225376
|
* Indicates if the sender requested agent to reply in a thread
|
|
225267
225377
|
*/
|
|
@@ -225442,6 +225552,10 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
|
|
|
225442
225552
|
* AI agent to generate a response and perform an action within the feature
|
|
225443
225553
|
*/
|
|
225444
225554
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225555
|
+
/**
|
|
225556
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
225557
|
+
*/
|
|
225558
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225445
225559
|
/**
|
|
225446
225560
|
* Indicates if the sender requested agent to reply in a thread
|
|
225447
225561
|
*/
|
|
@@ -225736,6 +225850,10 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
225736
225850
|
* AI agent to generate a response and perform an action within the feature
|
|
225737
225851
|
*/
|
|
225738
225852
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225853
|
+
/**
|
|
225854
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
225855
|
+
*/
|
|
225856
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
225739
225857
|
/**
|
|
225740
225858
|
* Indicates if the sender requested agent to reply in a thread
|
|
225741
225859
|
*/
|
|
@@ -225874,6 +225992,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
225874
225992
|
iterationId?: string | undefined;
|
|
225875
225993
|
} | undefined;
|
|
225876
225994
|
replyToMessageId?: string | undefined;
|
|
225995
|
+
isRetry?: boolean | undefined;
|
|
225877
225996
|
promptMetadata?: Record<string, any> | undefined;
|
|
225878
225997
|
}, {
|
|
225879
225998
|
id: string;
|
|
@@ -225911,6 +226030,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
225911
226030
|
iterationId?: string | undefined;
|
|
225912
226031
|
} | undefined;
|
|
225913
226032
|
replyToMessageId?: string | undefined;
|
|
226033
|
+
isRetry?: boolean | undefined;
|
|
225914
226034
|
promptMetadata?: Record<string, any> | undefined;
|
|
225915
226035
|
}>;
|
|
225916
226036
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -225950,6 +226070,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
225950
226070
|
iterationId?: string | undefined;
|
|
225951
226071
|
} | undefined;
|
|
225952
226072
|
replyToMessageId?: string | undefined;
|
|
226073
|
+
isRetry?: boolean | undefined;
|
|
225953
226074
|
promptMetadata?: Record<string, any> | undefined;
|
|
225954
226075
|
};
|
|
225955
226076
|
}, {
|
|
@@ -225989,6 +226110,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
225989
226110
|
iterationId?: string | undefined;
|
|
225990
226111
|
} | undefined;
|
|
225991
226112
|
replyToMessageId?: string | undefined;
|
|
226113
|
+
isRetry?: boolean | undefined;
|
|
225992
226114
|
promptMetadata?: Record<string, any> | undefined;
|
|
225993
226115
|
};
|
|
225994
226116
|
}>;
|
|
@@ -226070,6 +226192,10 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
226070
226192
|
* AI agent to generate a response and perform an action within the feature
|
|
226071
226193
|
*/
|
|
226072
226194
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226195
|
+
/**
|
|
226196
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
226197
|
+
*/
|
|
226198
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226073
226199
|
/**
|
|
226074
226200
|
* Indicates if the sender requested agent to reply in a thread
|
|
226075
226201
|
*/
|
|
@@ -226208,6 +226334,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
226208
226334
|
iterationId?: string | undefined;
|
|
226209
226335
|
} | undefined;
|
|
226210
226336
|
replyToMessageId?: string | undefined;
|
|
226337
|
+
isRetry?: boolean | undefined;
|
|
226211
226338
|
promptMetadata?: Record<string, any> | undefined;
|
|
226212
226339
|
}, {
|
|
226213
226340
|
id: string;
|
|
@@ -226245,6 +226372,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
226245
226372
|
iterationId?: string | undefined;
|
|
226246
226373
|
} | undefined;
|
|
226247
226374
|
replyToMessageId?: string | undefined;
|
|
226375
|
+
isRetry?: boolean | undefined;
|
|
226248
226376
|
promptMetadata?: Record<string, any> | undefined;
|
|
226249
226377
|
}>, "many">;
|
|
226250
226378
|
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -226301,6 +226429,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
226301
226429
|
iterationId?: string | undefined;
|
|
226302
226430
|
} | undefined;
|
|
226303
226431
|
replyToMessageId?: string | undefined;
|
|
226432
|
+
isRetry?: boolean | undefined;
|
|
226304
226433
|
promptMetadata?: Record<string, any> | undefined;
|
|
226305
226434
|
}[];
|
|
226306
226435
|
reactions: {
|
|
@@ -226347,6 +226476,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
226347
226476
|
iterationId?: string | undefined;
|
|
226348
226477
|
} | undefined;
|
|
226349
226478
|
replyToMessageId?: string | undefined;
|
|
226479
|
+
isRetry?: boolean | undefined;
|
|
226350
226480
|
promptMetadata?: Record<string, any> | undefined;
|
|
226351
226481
|
}[];
|
|
226352
226482
|
reactions: {
|
|
@@ -226403,6 +226533,10 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
226403
226533
|
* AI agent to generate a response and perform an action within the feature
|
|
226404
226534
|
*/
|
|
226405
226535
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226536
|
+
/**
|
|
226537
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
226538
|
+
*/
|
|
226539
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226406
226540
|
/**
|
|
226407
226541
|
* Indicates if the sender requested agent to reply in a thread
|
|
226408
226542
|
*/
|
|
@@ -226541,6 +226675,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
226541
226675
|
iterationId?: string | undefined;
|
|
226542
226676
|
} | undefined;
|
|
226543
226677
|
replyToMessageId?: string | undefined;
|
|
226678
|
+
isRetry?: boolean | undefined;
|
|
226544
226679
|
promptMetadata?: Record<string, any> | undefined;
|
|
226545
226680
|
}, {
|
|
226546
226681
|
id: string;
|
|
@@ -226578,6 +226713,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
226578
226713
|
iterationId?: string | undefined;
|
|
226579
226714
|
} | undefined;
|
|
226580
226715
|
replyToMessageId?: string | undefined;
|
|
226716
|
+
isRetry?: boolean | undefined;
|
|
226581
226717
|
promptMetadata?: Record<string, any> | undefined;
|
|
226582
226718
|
}>, "many">;
|
|
226583
226719
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -226618,6 +226754,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
226618
226754
|
iterationId?: string | undefined;
|
|
226619
226755
|
} | undefined;
|
|
226620
226756
|
replyToMessageId?: string | undefined;
|
|
226757
|
+
isRetry?: boolean | undefined;
|
|
226621
226758
|
promptMetadata?: Record<string, any> | undefined;
|
|
226622
226759
|
}[];
|
|
226623
226760
|
}, {
|
|
@@ -226658,6 +226795,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
226658
226795
|
iterationId?: string | undefined;
|
|
226659
226796
|
} | undefined;
|
|
226660
226797
|
replyToMessageId?: string | undefined;
|
|
226798
|
+
isRetry?: boolean | undefined;
|
|
226661
226799
|
promptMetadata?: Record<string, any> | undefined;
|
|
226662
226800
|
}[];
|
|
226663
226801
|
}>;
|
|
@@ -226707,6 +226845,10 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
226707
226845
|
* AI agent to generate a response and perform an action within the feature
|
|
226708
226846
|
*/
|
|
226709
226847
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226848
|
+
/**
|
|
226849
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
226850
|
+
*/
|
|
226851
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
226710
226852
|
/**
|
|
226711
226853
|
* Indicates if the sender requested agent to reply in a thread
|
|
226712
226854
|
*/
|
|
@@ -226845,6 +226987,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
226845
226987
|
iterationId?: string | undefined;
|
|
226846
226988
|
} | undefined;
|
|
226847
226989
|
replyToMessageId?: string | undefined;
|
|
226990
|
+
isRetry?: boolean | undefined;
|
|
226848
226991
|
promptMetadata?: Record<string, any> | undefined;
|
|
226849
226992
|
}, {
|
|
226850
226993
|
id: string;
|
|
@@ -226882,6 +227025,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
226882
227025
|
iterationId?: string | undefined;
|
|
226883
227026
|
} | undefined;
|
|
226884
227027
|
replyToMessageId?: string | undefined;
|
|
227028
|
+
isRetry?: boolean | undefined;
|
|
226885
227029
|
promptMetadata?: Record<string, any> | undefined;
|
|
226886
227030
|
}>, "many">;
|
|
226887
227031
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -226922,6 +227066,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
226922
227066
|
iterationId?: string | undefined;
|
|
226923
227067
|
} | undefined;
|
|
226924
227068
|
replyToMessageId?: string | undefined;
|
|
227069
|
+
isRetry?: boolean | undefined;
|
|
226925
227070
|
promptMetadata?: Record<string, any> | undefined;
|
|
226926
227071
|
}[];
|
|
226927
227072
|
}, {
|
|
@@ -226962,6 +227107,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
226962
227107
|
iterationId?: string | undefined;
|
|
226963
227108
|
} | undefined;
|
|
226964
227109
|
replyToMessageId?: string | undefined;
|
|
227110
|
+
isRetry?: boolean | undefined;
|
|
226965
227111
|
promptMetadata?: Record<string, any> | undefined;
|
|
226966
227112
|
}[];
|
|
226967
227113
|
}>;
|
|
@@ -227083,6 +227229,10 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227083
227229
|
* AI agent to generate a response and perform an action within the feature
|
|
227084
227230
|
*/
|
|
227085
227231
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
227232
|
+
/**
|
|
227233
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
227234
|
+
*/
|
|
227235
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
227086
227236
|
/**
|
|
227087
227237
|
* Indicates if the sender requested agent to reply in a thread
|
|
227088
227238
|
*/
|
|
@@ -227221,6 +227371,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227221
227371
|
iterationId?: string | undefined;
|
|
227222
227372
|
} | undefined;
|
|
227223
227373
|
replyToMessageId?: string | undefined;
|
|
227374
|
+
isRetry?: boolean | undefined;
|
|
227224
227375
|
promptMetadata?: Record<string, any> | undefined;
|
|
227225
227376
|
}, {
|
|
227226
227377
|
id: string;
|
|
@@ -227258,6 +227409,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227258
227409
|
iterationId?: string | undefined;
|
|
227259
227410
|
} | undefined;
|
|
227260
227411
|
replyToMessageId?: string | undefined;
|
|
227412
|
+
isRetry?: boolean | undefined;
|
|
227261
227413
|
promptMetadata?: Record<string, any> | undefined;
|
|
227262
227414
|
}>, "many">;
|
|
227263
227415
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -227298,6 +227450,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227298
227450
|
iterationId?: string | undefined;
|
|
227299
227451
|
} | undefined;
|
|
227300
227452
|
replyToMessageId?: string | undefined;
|
|
227453
|
+
isRetry?: boolean | undefined;
|
|
227301
227454
|
promptMetadata?: Record<string, any> | undefined;
|
|
227302
227455
|
}[];
|
|
227303
227456
|
}, {
|
|
@@ -227338,6 +227491,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227338
227491
|
iterationId?: string | undefined;
|
|
227339
227492
|
} | undefined;
|
|
227340
227493
|
replyToMessageId?: string | undefined;
|
|
227494
|
+
isRetry?: boolean | undefined;
|
|
227341
227495
|
promptMetadata?: Record<string, any> | undefined;
|
|
227342
227496
|
}[];
|
|
227343
227497
|
}>, z$1.ZodObject<{
|
|
@@ -227385,6 +227539,10 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227385
227539
|
* AI agent to generate a response and perform an action within the feature
|
|
227386
227540
|
*/
|
|
227387
227541
|
isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
227542
|
+
/**
|
|
227543
|
+
* Indicates if the message is an attempt to retry agent message. Only available for agent messages.
|
|
227544
|
+
*/
|
|
227545
|
+
isRetry: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
227388
227546
|
/**
|
|
227389
227547
|
* Indicates if the sender requested agent to reply in a thread
|
|
227390
227548
|
*/
|
|
@@ -227523,6 +227681,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227523
227681
|
iterationId?: string | undefined;
|
|
227524
227682
|
} | undefined;
|
|
227525
227683
|
replyToMessageId?: string | undefined;
|
|
227684
|
+
isRetry?: boolean | undefined;
|
|
227526
227685
|
promptMetadata?: Record<string, any> | undefined;
|
|
227527
227686
|
}, {
|
|
227528
227687
|
id: string;
|
|
@@ -227560,6 +227719,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227560
227719
|
iterationId?: string | undefined;
|
|
227561
227720
|
} | undefined;
|
|
227562
227721
|
replyToMessageId?: string | undefined;
|
|
227722
|
+
isRetry?: boolean | undefined;
|
|
227563
227723
|
promptMetadata?: Record<string, any> | undefined;
|
|
227564
227724
|
}>, "many">;
|
|
227565
227725
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -227600,6 +227760,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227600
227760
|
iterationId?: string | undefined;
|
|
227601
227761
|
} | undefined;
|
|
227602
227762
|
replyToMessageId?: string | undefined;
|
|
227763
|
+
isRetry?: boolean | undefined;
|
|
227603
227764
|
promptMetadata?: Record<string, any> | undefined;
|
|
227604
227765
|
}[];
|
|
227605
227766
|
}, {
|
|
@@ -227640,6 +227801,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
227640
227801
|
iterationId?: string | undefined;
|
|
227641
227802
|
} | undefined;
|
|
227642
227803
|
replyToMessageId?: string | undefined;
|
|
227804
|
+
isRetry?: boolean | undefined;
|
|
227643
227805
|
promptMetadata?: Record<string, any> | undefined;
|
|
227644
227806
|
}[];
|
|
227645
227807
|
}>, z$1.ZodObject<{
|
|
@@ -236225,15 +236387,30 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
236225
236387
|
max?: number | undefined;
|
|
236226
236388
|
};
|
|
236227
236389
|
}>>;
|
|
236390
|
+
/**
|
|
236391
|
+
* @deprecated get available-products for this information
|
|
236392
|
+
*/
|
|
236228
236393
|
stripeProductDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
236394
|
+
/**
|
|
236395
|
+
* @deprecated get available-products for this information
|
|
236396
|
+
*/
|
|
236229
236397
|
stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
236398
|
+
/**
|
|
236399
|
+
* @deprecated get available-products for this information
|
|
236400
|
+
*/
|
|
236230
236401
|
stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
236402
|
+
/**
|
|
236403
|
+
* @deprecated always undefined
|
|
236404
|
+
*/
|
|
236231
236405
|
stripeSubscriptionMainItemId: z$1.ZodOptional<z$1.ZodString>;
|
|
236232
236406
|
/**
|
|
236233
236407
|
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
236234
236408
|
*/
|
|
236235
236409
|
planPriceId: z$1.ZodString;
|
|
236236
236410
|
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
236411
|
+
/**
|
|
236412
|
+
* @deprecated All subscriptions were migrated to work as "price per creator"
|
|
236413
|
+
*/
|
|
236237
236414
|
isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
236238
236415
|
legacyVersion: z$1.ZodOptional<z$1.ZodString>;
|
|
236239
236416
|
seats: z$1.ZodNumber;
|
|
@@ -237417,15 +237594,30 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
237417
237594
|
max?: number | undefined;
|
|
237418
237595
|
};
|
|
237419
237596
|
}>>;
|
|
237597
|
+
/**
|
|
237598
|
+
* @deprecated get available-products for this information
|
|
237599
|
+
*/
|
|
237420
237600
|
stripeProductDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
237601
|
+
/**
|
|
237602
|
+
* @deprecated get available-products for this information
|
|
237603
|
+
*/
|
|
237421
237604
|
stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
237605
|
+
/**
|
|
237606
|
+
* @deprecated get available-products for this information
|
|
237607
|
+
*/
|
|
237422
237608
|
stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
237609
|
+
/**
|
|
237610
|
+
* @deprecated always undefined
|
|
237611
|
+
*/
|
|
237423
237612
|
stripeSubscriptionMainItemId: z$1.ZodOptional<z$1.ZodString>;
|
|
237424
237613
|
/**
|
|
237425
237614
|
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
237426
237615
|
*/
|
|
237427
237616
|
planPriceId: z$1.ZodString;
|
|
237428
237617
|
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
237618
|
+
/**
|
|
237619
|
+
* @deprecated All subscriptions were migrated to work as "price per creator"
|
|
237620
|
+
*/
|
|
237429
237621
|
isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
237430
237622
|
legacyVersion: z$1.ZodOptional<z$1.ZodString>;
|
|
237431
237623
|
seats: z$1.ZodNumber;
|
|
@@ -250894,6 +251086,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
250894
251086
|
thumbnailUrl?: string | undefined;
|
|
250895
251087
|
baseIterationId?: string | undefined;
|
|
250896
251088
|
isInProgress?: boolean | undefined;
|
|
251089
|
+
errorDescription?: string | null | undefined;
|
|
250897
251090
|
staticPreviewUrl?: string | undefined;
|
|
250898
251091
|
isBookmarked?: boolean | undefined;
|
|
250899
251092
|
thumbnail?: {
|
|
@@ -251079,6 +251272,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
251079
251272
|
thumbnailUrl?: string | undefined;
|
|
251080
251273
|
baseIterationId?: string | undefined;
|
|
251081
251274
|
isInProgress?: boolean | undefined;
|
|
251275
|
+
errorDescription?: string | null | undefined;
|
|
251082
251276
|
staticPreviewUrl?: string | undefined;
|
|
251083
251277
|
isBookmarked?: boolean | undefined;
|
|
251084
251278
|
thumbnail?: {
|
|
@@ -252448,6 +252642,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
252448
252642
|
tokenThemeIds: string[];
|
|
252449
252643
|
}[] | undefined;
|
|
252450
252644
|
} | undefined;
|
|
252645
|
+
tokenThemeSetId?: string | undefined;
|
|
252451
252646
|
lastUserActivityAt?: Date | undefined;
|
|
252452
252647
|
numberOfDocuments?: number | undefined;
|
|
252453
252648
|
}[];
|
|
@@ -253486,6 +253681,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
253486
253681
|
tokenThemeIds: string[];
|
|
253487
253682
|
}[] | undefined;
|
|
253488
253683
|
} | undefined;
|
|
253684
|
+
tokenThemeSetId?: string | undefined;
|
|
253489
253685
|
lastUserActivityAt?: Date | undefined;
|
|
253490
253686
|
numberOfDocuments?: number | undefined;
|
|
253491
253687
|
};
|
|
@@ -254524,6 +254720,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
254524
254720
|
tokenThemeIds: string[];
|
|
254525
254721
|
}[] | undefined;
|
|
254526
254722
|
} | undefined;
|
|
254723
|
+
tokenThemeSetId?: string | undefined;
|
|
254527
254724
|
lastUserActivityAt?: Date | undefined;
|
|
254528
254725
|
numberOfDocuments?: number | undefined;
|
|
254529
254726
|
};
|
|
@@ -255562,6 +255759,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
255562
255759
|
tokenThemeIds: string[];
|
|
255563
255760
|
}[] | undefined;
|
|
255564
255761
|
} | undefined;
|
|
255762
|
+
tokenThemeSetId?: string | undefined;
|
|
255565
255763
|
lastUserActivityAt?: Date | undefined;
|
|
255566
255764
|
numberOfDocuments?: number | undefined;
|
|
255567
255765
|
};
|
|
@@ -256600,6 +256798,7 @@ declare class ForgeProjectsEndpoint {
|
|
|
256600
256798
|
tokenThemeIds: string[];
|
|
256601
256799
|
}[] | undefined;
|
|
256602
256800
|
} | undefined;
|
|
256801
|
+
tokenThemeSetId?: string | undefined;
|
|
256603
256802
|
lastUserActivityAt?: Date | undefined;
|
|
256604
256803
|
numberOfDocuments?: number | undefined;
|
|
256605
256804
|
};
|
|
@@ -258257,6 +258456,7 @@ declare class ThreadsEndpoint {
|
|
|
258257
258456
|
iterationId?: string | undefined;
|
|
258258
258457
|
} | undefined;
|
|
258259
258458
|
replyToMessageId?: string | undefined;
|
|
258459
|
+
isRetry?: boolean | undefined;
|
|
258260
258460
|
promptMetadata?: Record<string, any> | undefined;
|
|
258261
258461
|
}[];
|
|
258262
258462
|
reactions: {
|
|
@@ -258304,6 +258504,7 @@ declare class ThreadsEndpoint {
|
|
|
258304
258504
|
iterationId?: string | undefined;
|
|
258305
258505
|
} | undefined;
|
|
258306
258506
|
replyToMessageId?: string | undefined;
|
|
258507
|
+
isRetry?: boolean | undefined;
|
|
258307
258508
|
promptMetadata?: Record<string, any> | undefined;
|
|
258308
258509
|
}[];
|
|
258309
258510
|
reactions: {
|
|
@@ -261380,4 +261581,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
261380
261581
|
reason: ValidationErrorReason | undefined;
|
|
261381
261582
|
};
|
|
261382
261583
|
|
|
261383
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, 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, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, 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, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };
|
|
261584
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, 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, DTOSandboxError, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };
|