@supernova-studio/client 1.31.2 → 1.31.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -68475,7 +68475,7 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68475
68475
  /**
68476
68476
  * Link agent response object describing current state of
68477
68477
  */
68478
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
68478
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
68479
68479
  attachments: z__default.ZodOptional<z__default.ZodObject<{
68480
68480
  iterationId: z__default.ZodOptional<z__default.ZodString>;
68481
68481
  }, "strip", z__default.ZodTypeAny, {
@@ -68483,6 +68483,10 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68483
68483
  }, {
68484
68484
  iterationId?: string | undefined;
68485
68485
  }>>;
68486
+ /**
68487
+ * If defined, this message is considered to be a reply to different message
68488
+ */
68489
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
68486
68490
  createdAt: z__default.ZodString;
68487
68491
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68488
68492
  }, "strip", z__default.ZodTypeAny, {
@@ -68502,10 +68506,11 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68502
68506
  isPrompt?: boolean | undefined;
68503
68507
  startsNewThread?: boolean | undefined;
68504
68508
  parentMessageId?: string | undefined;
68505
- agentResponseTrackerId?: string | undefined;
68509
+ agentResponseTrackerId?: string | null | undefined;
68506
68510
  attachments?: {
68507
68511
  iterationId?: string | undefined;
68508
68512
  } | undefined;
68513
+ replyToMessageId?: string | undefined;
68509
68514
  }, {
68510
68515
  id: string;
68511
68516
  createdAt: string;
@@ -68523,10 +68528,11 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
68523
68528
  isPrompt?: boolean | undefined;
68524
68529
  startsNewThread?: boolean | undefined;
68525
68530
  parentMessageId?: string | undefined;
68526
- agentResponseTrackerId?: string | undefined;
68531
+ agentResponseTrackerId?: string | null | undefined;
68527
68532
  attachments?: {
68528
68533
  iterationId?: string | undefined;
68529
68534
  } | undefined;
68535
+ replyToMessageId?: string | undefined;
68530
68536
  }>;
68531
68537
  type DTOFeatureMessage = z__default.infer<typeof DTOFeatureMessage>;
68532
68538
  declare const DTOFeatureArtifact: z__default.ZodObject<{
@@ -68589,6 +68595,10 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
68589
68595
  * URL of a static preview of the feature
68590
68596
  */
68591
68597
  staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
68598
+ /**
68599
+ * Indicates whether the iteration is bookmarked by user
68600
+ */
68601
+ isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
68592
68602
  createdAt: z__default.ZodString;
68593
68603
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68594
68604
  }, "strip", z__default.ZodTypeAny, {
@@ -68600,6 +68610,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
68600
68610
  baseIterationId?: string | undefined;
68601
68611
  isInProgress?: boolean | undefined;
68602
68612
  staticPreviewUrl?: string | undefined;
68613
+ isBookmarked?: boolean | undefined;
68603
68614
  }, {
68604
68615
  id: string;
68605
68616
  createdAt: string;
@@ -68609,6 +68620,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
68609
68620
  baseIterationId?: string | undefined;
68610
68621
  isInProgress?: boolean | undefined;
68611
68622
  staticPreviewUrl?: string | undefined;
68623
+ isBookmarked?: boolean | undefined;
68612
68624
  }>;
68613
68625
  type DTOFeatureIteration = z__default.infer<typeof DTOFeatureIteration>;
68614
68626
  declare const DTOFeatureIterationTag: z__default.ZodObject<{
@@ -68685,7 +68697,7 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
68685
68697
  /**
68686
68698
  * Link agent response object describing current state of
68687
68699
  */
68688
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
68700
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
68689
68701
  attachments: z__default.ZodOptional<z__default.ZodObject<{
68690
68702
  iterationId: z__default.ZodOptional<z__default.ZodString>;
68691
68703
  }, "strip", z__default.ZodTypeAny, {
@@ -68693,6 +68705,10 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
68693
68705
  }, {
68694
68706
  iterationId?: string | undefined;
68695
68707
  }>>;
68708
+ /**
68709
+ * If defined, this message is considered to be a reply to different message
68710
+ */
68711
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
68696
68712
  createdAt: z__default.ZodString;
68697
68713
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68698
68714
  }, "id" | "createdAt" | "sender" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "agentResponseTrackerId">, "strip", z__default.ZodTypeAny, {
@@ -68711,7 +68727,7 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
68711
68727
  isPrompt?: boolean | undefined;
68712
68728
  startsNewThread?: boolean | undefined;
68713
68729
  parentMessageId?: string | undefined;
68714
- agentResponseTrackerId?: string | undefined;
68730
+ agentResponseTrackerId?: string | null | undefined;
68715
68731
  }, {
68716
68732
  id: string;
68717
68733
  createdAt: string;
@@ -68728,18 +68744,73 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
68728
68744
  isPrompt?: boolean | undefined;
68729
68745
  startsNewThread?: boolean | undefined;
68730
68746
  parentMessageId?: string | undefined;
68731
- agentResponseTrackerId?: string | undefined;
68747
+ agentResponseTrackerId?: string | null | undefined;
68732
68748
  }>;
68733
68749
  type DTOFeatureMessageCreateInput = z__default.infer<typeof DTOFeatureMessageCreateInput>;
68734
68750
  declare const DTOFeatureMessageUpdateInput: z__default.ZodObject<{
68751
+ createdAt: z__default.ZodOptional<z__default.ZodString>;
68752
+ sender: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
68753
+ type: z__default.ZodLiteral<"User">;
68754
+ userId: z__default.ZodString;
68755
+ }, "strip", z__default.ZodTypeAny, {
68756
+ type: "User";
68757
+ userId: string;
68758
+ }, {
68759
+ type: "User";
68760
+ userId: string;
68761
+ }>, z__default.ZodObject<{
68762
+ type: z__default.ZodLiteral<"Agent">;
68763
+ }, "strip", z__default.ZodTypeAny, {
68764
+ type: "Agent";
68765
+ }, {
68766
+ type: "Agent";
68767
+ }>, z__default.ZodObject<{
68768
+ type: z__default.ZodLiteral<"System">;
68769
+ onBehalfOfUserId: z__default.ZodString;
68770
+ }, "strip", z__default.ZodTypeAny, {
68771
+ type: "System";
68772
+ onBehalfOfUserId: string;
68773
+ }, {
68774
+ type: "System";
68775
+ onBehalfOfUserId: string;
68776
+ }>]>>;
68735
68777
  body: z__default.ZodOptional<z__default.ZodString>;
68736
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
68778
+ isPrompt: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodBoolean>>;
68779
+ startsNewThread: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodBoolean>>;
68780
+ parentMessageId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
68781
+ agentResponseTrackerId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>>;
68737
68782
  }, "strip", z__default.ZodTypeAny, {
68783
+ createdAt?: string | undefined;
68784
+ sender?: {
68785
+ type: "User";
68786
+ userId: string;
68787
+ } | {
68788
+ type: "Agent";
68789
+ } | {
68790
+ type: "System";
68791
+ onBehalfOfUserId: string;
68792
+ } | undefined;
68738
68793
  body?: string | undefined;
68739
- agentResponseTrackerId?: string | undefined;
68794
+ isPrompt?: boolean | undefined;
68795
+ startsNewThread?: boolean | undefined;
68796
+ parentMessageId?: string | undefined;
68797
+ agentResponseTrackerId?: string | null | undefined;
68740
68798
  }, {
68799
+ createdAt?: string | undefined;
68800
+ sender?: {
68801
+ type: "User";
68802
+ userId: string;
68803
+ } | {
68804
+ type: "Agent";
68805
+ } | {
68806
+ type: "System";
68807
+ onBehalfOfUserId: string;
68808
+ } | undefined;
68741
68809
  body?: string | undefined;
68742
- agentResponseTrackerId?: string | undefined;
68810
+ isPrompt?: boolean | undefined;
68811
+ startsNewThread?: boolean | undefined;
68812
+ parentMessageId?: string | undefined;
68813
+ agentResponseTrackerId?: string | null | undefined;
68743
68814
  }>;
68744
68815
  type DTOFeatureMessageUpdateInput = z__default.infer<typeof DTOFeatureMessageUpdateInput>;
68745
68816
  declare const DTOFeatureMessageReactionDeleteInput: z__default.ZodObject<{
@@ -68811,6 +68882,10 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
68811
68882
  * URL of a static preview of the feature
68812
68883
  */
68813
68884
  staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
68885
+ /**
68886
+ * Indicates whether the iteration is bookmarked by user
68887
+ */
68888
+ isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
68814
68889
  createdAt: z__default.ZodString;
68815
68890
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68816
68891
  }, "id" | "startedFromMessageId">, "strip", z__default.ZodTypeAny, {
@@ -68829,6 +68904,17 @@ declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
68829
68904
  id: string;
68830
68905
  }>;
68831
68906
  type DTOFeatureIterationPromoteInput = z__default.infer<typeof DTOFeatureIterationPromoteInput>;
68907
+ declare const DTOFeatureIterationUpdateInput: z__default.ZodObject<{
68908
+ id: z__default.ZodString;
68909
+ isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
68910
+ }, "strip", z__default.ZodTypeAny, {
68911
+ id: string;
68912
+ isBookmarked?: boolean | undefined;
68913
+ }, {
68914
+ id: string;
68915
+ isBookmarked?: boolean | undefined;
68916
+ }>;
68917
+ type DTOFeatureIterationUpdateInput = z__default.infer<typeof DTOFeatureIterationUpdateInput>;
68832
68918
  declare const DTOFeatureIterationTagCreateInput: z__default.ZodObject<{
68833
68919
  featureId: z__default.ZodString;
68834
68920
  iterationId: z__default.ZodString;
@@ -68980,7 +69066,7 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
68980
69066
  /**
68981
69067
  * Link agent response object describing current state of
68982
69068
  */
68983
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
69069
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
68984
69070
  attachments: z__default.ZodOptional<z__default.ZodObject<{
68985
69071
  iterationId: z__default.ZodOptional<z__default.ZodString>;
68986
69072
  }, "strip", z__default.ZodTypeAny, {
@@ -68988,6 +69074,10 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
68988
69074
  }, {
68989
69075
  iterationId?: string | undefined;
68990
69076
  }>>;
69077
+ /**
69078
+ * If defined, this message is considered to be a reply to different message
69079
+ */
69080
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
68991
69081
  createdAt: z__default.ZodString;
68992
69082
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68993
69083
  }, "strip", z__default.ZodTypeAny, {
@@ -69007,10 +69097,11 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69007
69097
  isPrompt?: boolean | undefined;
69008
69098
  startsNewThread?: boolean | undefined;
69009
69099
  parentMessageId?: string | undefined;
69010
- agentResponseTrackerId?: string | undefined;
69100
+ agentResponseTrackerId?: string | null | undefined;
69011
69101
  attachments?: {
69012
69102
  iterationId?: string | undefined;
69013
69103
  } | undefined;
69104
+ replyToMessageId?: string | undefined;
69014
69105
  }, {
69015
69106
  id: string;
69016
69107
  createdAt: string;
@@ -69028,10 +69119,11 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69028
69119
  isPrompt?: boolean | undefined;
69029
69120
  startsNewThread?: boolean | undefined;
69030
69121
  parentMessageId?: string | undefined;
69031
- agentResponseTrackerId?: string | undefined;
69122
+ agentResponseTrackerId?: string | null | undefined;
69032
69123
  attachments?: {
69033
69124
  iterationId?: string | undefined;
69034
69125
  } | undefined;
69126
+ replyToMessageId?: string | undefined;
69035
69127
  }>;
69036
69128
  }, "strip", z__default.ZodTypeAny, {
69037
69129
  message: {
@@ -69051,10 +69143,11 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69051
69143
  isPrompt?: boolean | undefined;
69052
69144
  startsNewThread?: boolean | undefined;
69053
69145
  parentMessageId?: string | undefined;
69054
- agentResponseTrackerId?: string | undefined;
69146
+ agentResponseTrackerId?: string | null | undefined;
69055
69147
  attachments?: {
69056
69148
  iterationId?: string | undefined;
69057
69149
  } | undefined;
69150
+ replyToMessageId?: string | undefined;
69058
69151
  };
69059
69152
  }, {
69060
69153
  message: {
@@ -69074,10 +69167,11 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69074
69167
  isPrompt?: boolean | undefined;
69075
69168
  startsNewThread?: boolean | undefined;
69076
69169
  parentMessageId?: string | undefined;
69077
- agentResponseTrackerId?: string | undefined;
69170
+ agentResponseTrackerId?: string | null | undefined;
69078
69171
  attachments?: {
69079
69172
  iterationId?: string | undefined;
69080
69173
  } | undefined;
69174
+ replyToMessageId?: string | undefined;
69081
69175
  };
69082
69176
  }>;
69083
69177
  type DTOFeatureMessageResponse = z__default.infer<typeof DTOFeatureMessageResponse>;
@@ -69165,7 +69259,7 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69165
69259
  /**
69166
69260
  * Link agent response object describing current state of
69167
69261
  */
69168
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
69262
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
69169
69263
  attachments: z__default.ZodOptional<z__default.ZodObject<{
69170
69264
  iterationId: z__default.ZodOptional<z__default.ZodString>;
69171
69265
  }, "strip", z__default.ZodTypeAny, {
@@ -69173,6 +69267,10 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69173
69267
  }, {
69174
69268
  iterationId?: string | undefined;
69175
69269
  }>>;
69270
+ /**
69271
+ * If defined, this message is considered to be a reply to different message
69272
+ */
69273
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
69176
69274
  createdAt: z__default.ZodString;
69177
69275
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69178
69276
  }, "strip", z__default.ZodTypeAny, {
@@ -69192,10 +69290,11 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69192
69290
  isPrompt?: boolean | undefined;
69193
69291
  startsNewThread?: boolean | undefined;
69194
69292
  parentMessageId?: string | undefined;
69195
- agentResponseTrackerId?: string | undefined;
69293
+ agentResponseTrackerId?: string | null | undefined;
69196
69294
  attachments?: {
69197
69295
  iterationId?: string | undefined;
69198
69296
  } | undefined;
69297
+ replyToMessageId?: string | undefined;
69199
69298
  }, {
69200
69299
  id: string;
69201
69300
  createdAt: string;
@@ -69213,10 +69312,11 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69213
69312
  isPrompt?: boolean | undefined;
69214
69313
  startsNewThread?: boolean | undefined;
69215
69314
  parentMessageId?: string | undefined;
69216
- agentResponseTrackerId?: string | undefined;
69315
+ agentResponseTrackerId?: string | null | undefined;
69217
69316
  attachments?: {
69218
69317
  iterationId?: string | undefined;
69219
69318
  } | undefined;
69319
+ replyToMessageId?: string | undefined;
69220
69320
  }>, "many">;
69221
69321
  reactions: z__default.ZodArray<z__default.ZodObject<{
69222
69322
  messageId: z__default.ZodString;
@@ -69253,10 +69353,11 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69253
69353
  isPrompt?: boolean | undefined;
69254
69354
  startsNewThread?: boolean | undefined;
69255
69355
  parentMessageId?: string | undefined;
69256
- agentResponseTrackerId?: string | undefined;
69356
+ agentResponseTrackerId?: string | null | undefined;
69257
69357
  attachments?: {
69258
69358
  iterationId?: string | undefined;
69259
69359
  } | undefined;
69360
+ replyToMessageId?: string | undefined;
69260
69361
  }[];
69261
69362
  reactions: {
69262
69363
  createdAt: string;
@@ -69283,10 +69384,11 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69283
69384
  isPrompt?: boolean | undefined;
69284
69385
  startsNewThread?: boolean | undefined;
69285
69386
  parentMessageId?: string | undefined;
69286
- agentResponseTrackerId?: string | undefined;
69387
+ agentResponseTrackerId?: string | null | undefined;
69287
69388
  attachments?: {
69288
69389
  iterationId?: string | undefined;
69289
69390
  } | undefined;
69391
+ replyToMessageId?: string | undefined;
69290
69392
  }[];
69291
69393
  reactions: {
69292
69394
  createdAt: string;
@@ -69440,6 +69542,10 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69440
69542
  * URL of a static preview of the feature
69441
69543
  */
69442
69544
  staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
69545
+ /**
69546
+ * Indicates whether the iteration is bookmarked by user
69547
+ */
69548
+ isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
69443
69549
  createdAt: z__default.ZodString;
69444
69550
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69445
69551
  }, "strip", z__default.ZodTypeAny, {
@@ -69451,6 +69557,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69451
69557
  baseIterationId?: string | undefined;
69452
69558
  isInProgress?: boolean | undefined;
69453
69559
  staticPreviewUrl?: string | undefined;
69560
+ isBookmarked?: boolean | undefined;
69454
69561
  }, {
69455
69562
  id: string;
69456
69563
  createdAt: string;
@@ -69460,6 +69567,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69460
69567
  baseIterationId?: string | undefined;
69461
69568
  isInProgress?: boolean | undefined;
69462
69569
  staticPreviewUrl?: string | undefined;
69570
+ isBookmarked?: boolean | undefined;
69463
69571
  }>, "many">;
69464
69572
  }, "strip", z__default.ZodTypeAny, {
69465
69573
  iterations: {
@@ -69471,6 +69579,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69471
69579
  baseIterationId?: string | undefined;
69472
69580
  isInProgress?: boolean | undefined;
69473
69581
  staticPreviewUrl?: string | undefined;
69582
+ isBookmarked?: boolean | undefined;
69474
69583
  }[];
69475
69584
  }, {
69476
69585
  iterations: {
@@ -69482,6 +69591,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69482
69591
  baseIterationId?: string | undefined;
69483
69592
  isInProgress?: boolean | undefined;
69484
69593
  staticPreviewUrl?: string | undefined;
69594
+ isBookmarked?: boolean | undefined;
69485
69595
  }[];
69486
69596
  }>;
69487
69597
  type DTOFeatureIterationListResponse = z__default.infer<typeof DTOFeatureIterationListResponse>;
@@ -69508,6 +69618,10 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69508
69618
  * URL of a static preview of the feature
69509
69619
  */
69510
69620
  staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
69621
+ /**
69622
+ * Indicates whether the iteration is bookmarked by user
69623
+ */
69624
+ isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
69511
69625
  createdAt: z__default.ZodString;
69512
69626
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69513
69627
  }, "strip", z__default.ZodTypeAny, {
@@ -69519,6 +69633,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69519
69633
  baseIterationId?: string | undefined;
69520
69634
  isInProgress?: boolean | undefined;
69521
69635
  staticPreviewUrl?: string | undefined;
69636
+ isBookmarked?: boolean | undefined;
69522
69637
  }, {
69523
69638
  id: string;
69524
69639
  createdAt: string;
@@ -69528,6 +69643,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69528
69643
  baseIterationId?: string | undefined;
69529
69644
  isInProgress?: boolean | undefined;
69530
69645
  staticPreviewUrl?: string | undefined;
69646
+ isBookmarked?: boolean | undefined;
69531
69647
  }>;
69532
69648
  }, "strip", z__default.ZodTypeAny, {
69533
69649
  iteration: {
@@ -69539,6 +69655,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69539
69655
  baseIterationId?: string | undefined;
69540
69656
  isInProgress?: boolean | undefined;
69541
69657
  staticPreviewUrl?: string | undefined;
69658
+ isBookmarked?: boolean | undefined;
69542
69659
  };
69543
69660
  }, {
69544
69661
  iteration: {
@@ -69550,6 +69667,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69550
69667
  baseIterationId?: string | undefined;
69551
69668
  isInProgress?: boolean | undefined;
69552
69669
  staticPreviewUrl?: string | undefined;
69670
+ isBookmarked?: boolean | undefined;
69553
69671
  };
69554
69672
  }>;
69555
69673
  type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
@@ -69685,7 +69803,7 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69685
69803
  /**
69686
69804
  * Link agent response object describing current state of
69687
69805
  */
69688
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
69806
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
69689
69807
  attachments: z__default.ZodOptional<z__default.ZodObject<{
69690
69808
  iterationId: z__default.ZodOptional<z__default.ZodString>;
69691
69809
  }, "strip", z__default.ZodTypeAny, {
@@ -69693,6 +69811,10 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69693
69811
  }, {
69694
69812
  iterationId?: string | undefined;
69695
69813
  }>>;
69814
+ /**
69815
+ * If defined, this message is considered to be a reply to different message
69816
+ */
69817
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
69696
69818
  createdAt: z__default.ZodString;
69697
69819
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69698
69820
  }, "strip", z__default.ZodTypeAny, {
@@ -69712,10 +69834,11 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69712
69834
  isPrompt?: boolean | undefined;
69713
69835
  startsNewThread?: boolean | undefined;
69714
69836
  parentMessageId?: string | undefined;
69715
- agentResponseTrackerId?: string | undefined;
69837
+ agentResponseTrackerId?: string | null | undefined;
69716
69838
  attachments?: {
69717
69839
  iterationId?: string | undefined;
69718
69840
  } | undefined;
69841
+ replyToMessageId?: string | undefined;
69719
69842
  }, {
69720
69843
  id: string;
69721
69844
  createdAt: string;
@@ -69733,10 +69856,11 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69733
69856
  isPrompt?: boolean | undefined;
69734
69857
  startsNewThread?: boolean | undefined;
69735
69858
  parentMessageId?: string | undefined;
69736
- agentResponseTrackerId?: string | undefined;
69859
+ agentResponseTrackerId?: string | null | undefined;
69737
69860
  attachments?: {
69738
69861
  iterationId?: string | undefined;
69739
69862
  } | undefined;
69863
+ replyToMessageId?: string | undefined;
69740
69864
  }>, "many">;
69741
69865
  }, "strip", z__default.ZodTypeAny, {
69742
69866
  type: "MessagesSent";
@@ -69757,10 +69881,11 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69757
69881
  isPrompt?: boolean | undefined;
69758
69882
  startsNewThread?: boolean | undefined;
69759
69883
  parentMessageId?: string | undefined;
69760
- agentResponseTrackerId?: string | undefined;
69884
+ agentResponseTrackerId?: string | null | undefined;
69761
69885
  attachments?: {
69762
69886
  iterationId?: string | undefined;
69763
69887
  } | undefined;
69888
+ replyToMessageId?: string | undefined;
69764
69889
  }[];
69765
69890
  }, {
69766
69891
  type: "MessagesSent";
@@ -69781,10 +69906,11 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69781
69906
  isPrompt?: boolean | undefined;
69782
69907
  startsNewThread?: boolean | undefined;
69783
69908
  parentMessageId?: string | undefined;
69784
- agentResponseTrackerId?: string | undefined;
69909
+ agentResponseTrackerId?: string | null | undefined;
69785
69910
  attachments?: {
69786
69911
  iterationId?: string | undefined;
69787
69912
  } | undefined;
69913
+ replyToMessageId?: string | undefined;
69788
69914
  }[];
69789
69915
  }>;
69790
69916
  type DTOFeatureEventMessagesSent = z__default.infer<typeof DTOFeatureEventMessagesSent>;
@@ -69912,7 +70038,7 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69912
70038
  /**
69913
70039
  * Link agent response object describing current state of
69914
70040
  */
69915
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
70041
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
69916
70042
  attachments: z__default.ZodOptional<z__default.ZodObject<{
69917
70043
  iterationId: z__default.ZodOptional<z__default.ZodString>;
69918
70044
  }, "strip", z__default.ZodTypeAny, {
@@ -69920,6 +70046,10 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69920
70046
  }, {
69921
70047
  iterationId?: string | undefined;
69922
70048
  }>>;
70049
+ /**
70050
+ * If defined, this message is considered to be a reply to different message
70051
+ */
70052
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
69923
70053
  createdAt: z__default.ZodString;
69924
70054
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69925
70055
  }, "strip", z__default.ZodTypeAny, {
@@ -69939,10 +70069,11 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69939
70069
  isPrompt?: boolean | undefined;
69940
70070
  startsNewThread?: boolean | undefined;
69941
70071
  parentMessageId?: string | undefined;
69942
- agentResponseTrackerId?: string | undefined;
70072
+ agentResponseTrackerId?: string | null | undefined;
69943
70073
  attachments?: {
69944
70074
  iterationId?: string | undefined;
69945
70075
  } | undefined;
70076
+ replyToMessageId?: string | undefined;
69946
70077
  }, {
69947
70078
  id: string;
69948
70079
  createdAt: string;
@@ -69960,10 +70091,11 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69960
70091
  isPrompt?: boolean | undefined;
69961
70092
  startsNewThread?: boolean | undefined;
69962
70093
  parentMessageId?: string | undefined;
69963
- agentResponseTrackerId?: string | undefined;
70094
+ agentResponseTrackerId?: string | null | undefined;
69964
70095
  attachments?: {
69965
70096
  iterationId?: string | undefined;
69966
70097
  } | undefined;
70098
+ replyToMessageId?: string | undefined;
69967
70099
  }>;
69968
70100
  }, "strip", z__default.ZodTypeAny, {
69969
70101
  type: "AgentResponseFinished";
@@ -69984,10 +70116,11 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69984
70116
  isPrompt?: boolean | undefined;
69985
70117
  startsNewThread?: boolean | undefined;
69986
70118
  parentMessageId?: string | undefined;
69987
- agentResponseTrackerId?: string | undefined;
70119
+ agentResponseTrackerId?: string | null | undefined;
69988
70120
  attachments?: {
69989
70121
  iterationId?: string | undefined;
69990
70122
  } | undefined;
70123
+ replyToMessageId?: string | undefined;
69991
70124
  };
69992
70125
  }, {
69993
70126
  type: "AgentResponseFinished";
@@ -70008,10 +70141,11 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
70008
70141
  isPrompt?: boolean | undefined;
70009
70142
  startsNewThread?: boolean | undefined;
70010
70143
  parentMessageId?: string | undefined;
70011
- agentResponseTrackerId?: string | undefined;
70144
+ agentResponseTrackerId?: string | null | undefined;
70012
70145
  attachments?: {
70013
70146
  iterationId?: string | undefined;
70014
70147
  } | undefined;
70148
+ replyToMessageId?: string | undefined;
70015
70149
  };
70016
70150
  }>;
70017
70151
  type DTOFeatureEventAgentResponseFinished = z__default.infer<typeof DTOFeatureEventAgentResponseFinished>;
@@ -70067,7 +70201,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70067
70201
  /**
70068
70202
  * Link agent response object describing current state of
70069
70203
  */
70070
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
70204
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
70071
70205
  attachments: z__default.ZodOptional<z__default.ZodObject<{
70072
70206
  iterationId: z__default.ZodOptional<z__default.ZodString>;
70073
70207
  }, "strip", z__default.ZodTypeAny, {
@@ -70075,6 +70209,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70075
70209
  }, {
70076
70210
  iterationId?: string | undefined;
70077
70211
  }>>;
70212
+ /**
70213
+ * If defined, this message is considered to be a reply to different message
70214
+ */
70215
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
70078
70216
  createdAt: z__default.ZodString;
70079
70217
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
70080
70218
  }, "strip", z__default.ZodTypeAny, {
@@ -70094,10 +70232,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70094
70232
  isPrompt?: boolean | undefined;
70095
70233
  startsNewThread?: boolean | undefined;
70096
70234
  parentMessageId?: string | undefined;
70097
- agentResponseTrackerId?: string | undefined;
70235
+ agentResponseTrackerId?: string | null | undefined;
70098
70236
  attachments?: {
70099
70237
  iterationId?: string | undefined;
70100
70238
  } | undefined;
70239
+ replyToMessageId?: string | undefined;
70101
70240
  }, {
70102
70241
  id: string;
70103
70242
  createdAt: string;
@@ -70115,10 +70254,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70115
70254
  isPrompt?: boolean | undefined;
70116
70255
  startsNewThread?: boolean | undefined;
70117
70256
  parentMessageId?: string | undefined;
70118
- agentResponseTrackerId?: string | undefined;
70257
+ agentResponseTrackerId?: string | null | undefined;
70119
70258
  attachments?: {
70120
70259
  iterationId?: string | undefined;
70121
70260
  } | undefined;
70261
+ replyToMessageId?: string | undefined;
70122
70262
  }>, "many">;
70123
70263
  }, "strip", z__default.ZodTypeAny, {
70124
70264
  type: "MessagesSent";
@@ -70139,10 +70279,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70139
70279
  isPrompt?: boolean | undefined;
70140
70280
  startsNewThread?: boolean | undefined;
70141
70281
  parentMessageId?: string | undefined;
70142
- agentResponseTrackerId?: string | undefined;
70282
+ agentResponseTrackerId?: string | null | undefined;
70143
70283
  attachments?: {
70144
70284
  iterationId?: string | undefined;
70145
70285
  } | undefined;
70286
+ replyToMessageId?: string | undefined;
70146
70287
  }[];
70147
70288
  }, {
70148
70289
  type: "MessagesSent";
@@ -70163,10 +70304,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70163
70304
  isPrompt?: boolean | undefined;
70164
70305
  startsNewThread?: boolean | undefined;
70165
70306
  parentMessageId?: string | undefined;
70166
- agentResponseTrackerId?: string | undefined;
70307
+ agentResponseTrackerId?: string | null | undefined;
70167
70308
  attachments?: {
70168
70309
  iterationId?: string | undefined;
70169
70310
  } | undefined;
70311
+ replyToMessageId?: string | undefined;
70170
70312
  }[];
70171
70313
  }>, z__default.ZodObject<{
70172
70314
  type: z__default.ZodLiteral<"ReactionsSent">;
@@ -70288,7 +70430,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70288
70430
  /**
70289
70431
  * Link agent response object describing current state of
70290
70432
  */
70291
- agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
70433
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
70292
70434
  attachments: z__default.ZodOptional<z__default.ZodObject<{
70293
70435
  iterationId: z__default.ZodOptional<z__default.ZodString>;
70294
70436
  }, "strip", z__default.ZodTypeAny, {
@@ -70296,6 +70438,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70296
70438
  }, {
70297
70439
  iterationId?: string | undefined;
70298
70440
  }>>;
70441
+ /**
70442
+ * If defined, this message is considered to be a reply to different message
70443
+ */
70444
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
70299
70445
  createdAt: z__default.ZodString;
70300
70446
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
70301
70447
  }, "strip", z__default.ZodTypeAny, {
@@ -70315,10 +70461,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70315
70461
  isPrompt?: boolean | undefined;
70316
70462
  startsNewThread?: boolean | undefined;
70317
70463
  parentMessageId?: string | undefined;
70318
- agentResponseTrackerId?: string | undefined;
70464
+ agentResponseTrackerId?: string | null | undefined;
70319
70465
  attachments?: {
70320
70466
  iterationId?: string | undefined;
70321
70467
  } | undefined;
70468
+ replyToMessageId?: string | undefined;
70322
70469
  }, {
70323
70470
  id: string;
70324
70471
  createdAt: string;
@@ -70336,10 +70483,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70336
70483
  isPrompt?: boolean | undefined;
70337
70484
  startsNewThread?: boolean | undefined;
70338
70485
  parentMessageId?: string | undefined;
70339
- agentResponseTrackerId?: string | undefined;
70486
+ agentResponseTrackerId?: string | null | undefined;
70340
70487
  attachments?: {
70341
70488
  iterationId?: string | undefined;
70342
70489
  } | undefined;
70490
+ replyToMessageId?: string | undefined;
70343
70491
  }>;
70344
70492
  }, "strip", z__default.ZodTypeAny, {
70345
70493
  type: "AgentResponseFinished";
@@ -70360,10 +70508,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70360
70508
  isPrompt?: boolean | undefined;
70361
70509
  startsNewThread?: boolean | undefined;
70362
70510
  parentMessageId?: string | undefined;
70363
- agentResponseTrackerId?: string | undefined;
70511
+ agentResponseTrackerId?: string | null | undefined;
70364
70512
  attachments?: {
70365
70513
  iterationId?: string | undefined;
70366
70514
  } | undefined;
70515
+ replyToMessageId?: string | undefined;
70367
70516
  };
70368
70517
  }, {
70369
70518
  type: "AgentResponseFinished";
@@ -70384,10 +70533,11 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70384
70533
  isPrompt?: boolean | undefined;
70385
70534
  startsNewThread?: boolean | undefined;
70386
70535
  parentMessageId?: string | undefined;
70387
- agentResponseTrackerId?: string | undefined;
70536
+ agentResponseTrackerId?: string | null | undefined;
70388
70537
  attachments?: {
70389
70538
  iterationId?: string | undefined;
70390
70539
  } | undefined;
70540
+ replyToMessageId?: string | undefined;
70391
70541
  };
70392
70542
  }>]>;
70393
70543
  type DTOFeatureEvent = z__default.infer<typeof DTOFeatureEvent>;
@@ -80298,21 +80448,131 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80298
80448
  id: z__default.ZodString;
80299
80449
  name: z__default.ZodString;
80300
80450
  description: z__default.ZodString;
80301
- initialPrompt: z__default.ZodString;
80302
80451
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80303
80452
  afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
80453
+ initialMessage: z__default.ZodObject<Pick<{
80454
+ id: z__default.ZodString;
80455
+ sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
80456
+ type: z__default.ZodLiteral<"User">;
80457
+ userId: z__default.ZodString;
80458
+ }, "strip", z__default.ZodTypeAny, {
80459
+ type: "User";
80460
+ userId: string;
80461
+ }, {
80462
+ type: "User";
80463
+ userId: string;
80464
+ }>, z__default.ZodObject<{
80465
+ type: z__default.ZodLiteral<"Agent">;
80466
+ }, "strip", z__default.ZodTypeAny, {
80467
+ type: "Agent";
80468
+ }, {
80469
+ type: "Agent";
80470
+ }>, z__default.ZodObject<{
80471
+ type: z__default.ZodLiteral<"System">;
80472
+ onBehalfOfUserId: z__default.ZodString;
80473
+ }, "strip", z__default.ZodTypeAny, {
80474
+ type: "System";
80475
+ onBehalfOfUserId: string;
80476
+ }, {
80477
+ type: "System";
80478
+ onBehalfOfUserId: string;
80479
+ }>]>;
80480
+ body: z__default.ZodString;
80481
+ isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
80482
+ startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
80483
+ parentMessageId: z__default.ZodOptional<z__default.ZodString>;
80484
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
80485
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
80486
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
80487
+ }, "strip", z__default.ZodTypeAny, {
80488
+ iterationId?: string | undefined;
80489
+ }, {
80490
+ iterationId?: string | undefined;
80491
+ }>>;
80492
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
80493
+ createdAt: z__default.ZodString;
80494
+ updatedAt: z__default.ZodOptional<z__default.ZodString>;
80495
+ }, "id" | "createdAt" | "sender" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "agentResponseTrackerId">, "strip", z__default.ZodTypeAny, {
80496
+ id: string;
80497
+ createdAt: string;
80498
+ sender: {
80499
+ type: "User";
80500
+ userId: string;
80501
+ } | {
80502
+ type: "Agent";
80503
+ } | {
80504
+ type: "System";
80505
+ onBehalfOfUserId: string;
80506
+ };
80507
+ body: string;
80508
+ isPrompt?: boolean | undefined;
80509
+ startsNewThread?: boolean | undefined;
80510
+ parentMessageId?: string | undefined;
80511
+ agentResponseTrackerId?: string | null | undefined;
80512
+ }, {
80513
+ id: string;
80514
+ createdAt: string;
80515
+ sender: {
80516
+ type: "User";
80517
+ userId: string;
80518
+ } | {
80519
+ type: "Agent";
80520
+ } | {
80521
+ type: "System";
80522
+ onBehalfOfUserId: string;
80523
+ };
80524
+ body: string;
80525
+ isPrompt?: boolean | undefined;
80526
+ startsNewThread?: boolean | undefined;
80527
+ parentMessageId?: string | undefined;
80528
+ agentResponseTrackerId?: string | null | undefined;
80529
+ }>;
80304
80530
  }, "strip", z__default.ZodTypeAny, {
80305
80531
  id: string;
80306
80532
  name: string;
80307
80533
  description: string;
80308
- initialPrompt: string;
80534
+ initialMessage: {
80535
+ id: string;
80536
+ createdAt: string;
80537
+ sender: {
80538
+ type: "User";
80539
+ userId: string;
80540
+ } | {
80541
+ type: "Agent";
80542
+ } | {
80543
+ type: "System";
80544
+ onBehalfOfUserId: string;
80545
+ };
80546
+ body: string;
80547
+ isPrompt?: boolean | undefined;
80548
+ startsNewThread?: boolean | undefined;
80549
+ parentMessageId?: string | undefined;
80550
+ agentResponseTrackerId?: string | null | undefined;
80551
+ };
80309
80552
  sectionId?: string | undefined;
80310
80553
  afterFeatureId?: string | null | undefined;
80311
80554
  }, {
80312
80555
  id: string;
80313
80556
  name: string;
80314
80557
  description: string;
80315
- initialPrompt: string;
80558
+ initialMessage: {
80559
+ id: string;
80560
+ createdAt: string;
80561
+ sender: {
80562
+ type: "User";
80563
+ userId: string;
80564
+ } | {
80565
+ type: "Agent";
80566
+ } | {
80567
+ type: "System";
80568
+ onBehalfOfUserId: string;
80569
+ };
80570
+ body: string;
80571
+ isPrompt?: boolean | undefined;
80572
+ startsNewThread?: boolean | undefined;
80573
+ parentMessageId?: string | undefined;
80574
+ agentResponseTrackerId?: string | null | undefined;
80575
+ };
80316
80576
  sectionId?: string | undefined;
80317
80577
  afterFeatureId?: string | null | undefined;
80318
80578
  }>;
@@ -80322,7 +80582,24 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80322
80582
  id: string;
80323
80583
  name: string;
80324
80584
  description: string;
80325
- initialPrompt: string;
80585
+ initialMessage: {
80586
+ id: string;
80587
+ createdAt: string;
80588
+ sender: {
80589
+ type: "User";
80590
+ userId: string;
80591
+ } | {
80592
+ type: "Agent";
80593
+ } | {
80594
+ type: "System";
80595
+ onBehalfOfUserId: string;
80596
+ };
80597
+ body: string;
80598
+ isPrompt?: boolean | undefined;
80599
+ startsNewThread?: boolean | undefined;
80600
+ parentMessageId?: string | undefined;
80601
+ agentResponseTrackerId?: string | null | undefined;
80602
+ };
80326
80603
  sectionId?: string | undefined;
80327
80604
  afterFeatureId?: string | null | undefined;
80328
80605
  };
@@ -80332,7 +80609,24 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80332
80609
  id: string;
80333
80610
  name: string;
80334
80611
  description: string;
80335
- initialPrompt: string;
80612
+ initialMessage: {
80613
+ id: string;
80614
+ createdAt: string;
80615
+ sender: {
80616
+ type: "User";
80617
+ userId: string;
80618
+ } | {
80619
+ type: "Agent";
80620
+ } | {
80621
+ type: "System";
80622
+ onBehalfOfUserId: string;
80623
+ };
80624
+ body: string;
80625
+ isPrompt?: boolean | undefined;
80626
+ startsNewThread?: boolean | undefined;
80627
+ parentMessageId?: string | undefined;
80628
+ agentResponseTrackerId?: string | null | undefined;
80629
+ };
80336
80630
  sectionId?: string | undefined;
80337
80631
  afterFeatureId?: string | null | undefined;
80338
80632
  };
@@ -80689,21 +80983,131 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80689
80983
  id: z__default.ZodString;
80690
80984
  name: z__default.ZodString;
80691
80985
  description: z__default.ZodString;
80692
- initialPrompt: z__default.ZodString;
80693
80986
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80694
80987
  afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
80988
+ initialMessage: z__default.ZodObject<Pick<{
80989
+ id: z__default.ZodString;
80990
+ sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
80991
+ type: z__default.ZodLiteral<"User">;
80992
+ userId: z__default.ZodString;
80993
+ }, "strip", z__default.ZodTypeAny, {
80994
+ type: "User";
80995
+ userId: string;
80996
+ }, {
80997
+ type: "User";
80998
+ userId: string;
80999
+ }>, z__default.ZodObject<{
81000
+ type: z__default.ZodLiteral<"Agent">;
81001
+ }, "strip", z__default.ZodTypeAny, {
81002
+ type: "Agent";
81003
+ }, {
81004
+ type: "Agent";
81005
+ }>, z__default.ZodObject<{
81006
+ type: z__default.ZodLiteral<"System">;
81007
+ onBehalfOfUserId: z__default.ZodString;
81008
+ }, "strip", z__default.ZodTypeAny, {
81009
+ type: "System";
81010
+ onBehalfOfUserId: string;
81011
+ }, {
81012
+ type: "System";
81013
+ onBehalfOfUserId: string;
81014
+ }>]>;
81015
+ body: z__default.ZodString;
81016
+ isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
81017
+ startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
81018
+ parentMessageId: z__default.ZodOptional<z__default.ZodString>;
81019
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81020
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
81021
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
81022
+ }, "strip", z__default.ZodTypeAny, {
81023
+ iterationId?: string | undefined;
81024
+ }, {
81025
+ iterationId?: string | undefined;
81026
+ }>>;
81027
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
81028
+ createdAt: z__default.ZodString;
81029
+ updatedAt: z__default.ZodOptional<z__default.ZodString>;
81030
+ }, "id" | "createdAt" | "sender" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "agentResponseTrackerId">, "strip", z__default.ZodTypeAny, {
81031
+ id: string;
81032
+ createdAt: string;
81033
+ sender: {
81034
+ type: "User";
81035
+ userId: string;
81036
+ } | {
81037
+ type: "Agent";
81038
+ } | {
81039
+ type: "System";
81040
+ onBehalfOfUserId: string;
81041
+ };
81042
+ body: string;
81043
+ isPrompt?: boolean | undefined;
81044
+ startsNewThread?: boolean | undefined;
81045
+ parentMessageId?: string | undefined;
81046
+ agentResponseTrackerId?: string | null | undefined;
81047
+ }, {
81048
+ id: string;
81049
+ createdAt: string;
81050
+ sender: {
81051
+ type: "User";
81052
+ userId: string;
81053
+ } | {
81054
+ type: "Agent";
81055
+ } | {
81056
+ type: "System";
81057
+ onBehalfOfUserId: string;
81058
+ };
81059
+ body: string;
81060
+ isPrompt?: boolean | undefined;
81061
+ startsNewThread?: boolean | undefined;
81062
+ parentMessageId?: string | undefined;
81063
+ agentResponseTrackerId?: string | null | undefined;
81064
+ }>;
80695
81065
  }, "strip", z__default.ZodTypeAny, {
80696
81066
  id: string;
80697
81067
  name: string;
80698
81068
  description: string;
80699
- initialPrompt: string;
81069
+ initialMessage: {
81070
+ id: string;
81071
+ createdAt: string;
81072
+ sender: {
81073
+ type: "User";
81074
+ userId: string;
81075
+ } | {
81076
+ type: "Agent";
81077
+ } | {
81078
+ type: "System";
81079
+ onBehalfOfUserId: string;
81080
+ };
81081
+ body: string;
81082
+ isPrompt?: boolean | undefined;
81083
+ startsNewThread?: boolean | undefined;
81084
+ parentMessageId?: string | undefined;
81085
+ agentResponseTrackerId?: string | null | undefined;
81086
+ };
80700
81087
  sectionId?: string | undefined;
80701
81088
  afterFeatureId?: string | null | undefined;
80702
81089
  }, {
80703
81090
  id: string;
80704
81091
  name: string;
80705
81092
  description: string;
80706
- initialPrompt: string;
81093
+ initialMessage: {
81094
+ id: string;
81095
+ createdAt: string;
81096
+ sender: {
81097
+ type: "User";
81098
+ userId: string;
81099
+ } | {
81100
+ type: "Agent";
81101
+ } | {
81102
+ type: "System";
81103
+ onBehalfOfUserId: string;
81104
+ };
81105
+ body: string;
81106
+ isPrompt?: boolean | undefined;
81107
+ startsNewThread?: boolean | undefined;
81108
+ parentMessageId?: string | undefined;
81109
+ agentResponseTrackerId?: string | null | undefined;
81110
+ };
80707
81111
  sectionId?: string | undefined;
80708
81112
  afterFeatureId?: string | null | undefined;
80709
81113
  }>;
@@ -80713,7 +81117,24 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80713
81117
  id: string;
80714
81118
  name: string;
80715
81119
  description: string;
80716
- initialPrompt: string;
81120
+ initialMessage: {
81121
+ id: string;
81122
+ createdAt: string;
81123
+ sender: {
81124
+ type: "User";
81125
+ userId: string;
81126
+ } | {
81127
+ type: "Agent";
81128
+ } | {
81129
+ type: "System";
81130
+ onBehalfOfUserId: string;
81131
+ };
81132
+ body: string;
81133
+ isPrompt?: boolean | undefined;
81134
+ startsNewThread?: boolean | undefined;
81135
+ parentMessageId?: string | undefined;
81136
+ agentResponseTrackerId?: string | null | undefined;
81137
+ };
80717
81138
  sectionId?: string | undefined;
80718
81139
  afterFeatureId?: string | null | undefined;
80719
81140
  };
@@ -80723,7 +81144,24 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80723
81144
  id: string;
80724
81145
  name: string;
80725
81146
  description: string;
80726
- initialPrompt: string;
81147
+ initialMessage: {
81148
+ id: string;
81149
+ createdAt: string;
81150
+ sender: {
81151
+ type: "User";
81152
+ userId: string;
81153
+ } | {
81154
+ type: "Agent";
81155
+ } | {
81156
+ type: "System";
81157
+ onBehalfOfUserId: string;
81158
+ };
81159
+ body: string;
81160
+ isPrompt?: boolean | undefined;
81161
+ startsNewThread?: boolean | undefined;
81162
+ parentMessageId?: string | undefined;
81163
+ agentResponseTrackerId?: string | null | undefined;
81164
+ };
80727
81165
  sectionId?: string | undefined;
80728
81166
  afterFeatureId?: string | null | undefined;
80729
81167
  };
@@ -83209,8 +83647,10 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83209
83647
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83210
83648
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83211
83649
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83212
- initialPrompt: z__default.ZodString;
83213
83650
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83651
+ numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83652
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83653
+ lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83214
83654
  }, "strip", z__default.ZodTypeAny, {
83215
83655
  status: "Draft" | "ReadyForDevelopment";
83216
83656
  id: string;
@@ -83220,10 +83660,12 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83220
83660
  sortOrder: number;
83221
83661
  createdByUserId: string;
83222
83662
  projectId: string;
83223
- initialPrompt: string;
83663
+ numberOfIterations: number;
83664
+ numberOfBookmarkedIterations: number;
83224
83665
  updatedAt?: Date | undefined;
83225
83666
  sectionId?: string | undefined;
83226
83667
  isArchived?: boolean | undefined;
83668
+ lastReplyTimestamp?: Date | undefined;
83227
83669
  }, {
83228
83670
  id: string;
83229
83671
  name: string;
@@ -83231,12 +83673,14 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83231
83673
  description: string;
83232
83674
  createdByUserId: string;
83233
83675
  projectId: string;
83234
- initialPrompt: string;
83235
83676
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83236
83677
  updatedAt?: Date | undefined;
83237
83678
  sortOrder?: number | undefined;
83238
83679
  sectionId?: string | undefined;
83239
83680
  isArchived?: boolean | undefined;
83681
+ numberOfIterations?: number | undefined;
83682
+ numberOfBookmarkedIterations?: number | undefined;
83683
+ lastReplyTimestamp?: Date | undefined;
83240
83684
  }>;
83241
83685
  type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
83242
83686
  declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
@@ -83251,8 +83695,10 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83251
83695
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83252
83696
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83253
83697
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83254
- initialPrompt: z__default.ZodString;
83255
83698
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83699
+ numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83700
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83701
+ lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83256
83702
  }, "strip", z__default.ZodTypeAny, {
83257
83703
  status: "Draft" | "ReadyForDevelopment";
83258
83704
  id: string;
@@ -83262,10 +83708,12 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83262
83708
  sortOrder: number;
83263
83709
  createdByUserId: string;
83264
83710
  projectId: string;
83265
- initialPrompt: string;
83711
+ numberOfIterations: number;
83712
+ numberOfBookmarkedIterations: number;
83266
83713
  updatedAt?: Date | undefined;
83267
83714
  sectionId?: string | undefined;
83268
83715
  isArchived?: boolean | undefined;
83716
+ lastReplyTimestamp?: Date | undefined;
83269
83717
  }, {
83270
83718
  id: string;
83271
83719
  name: string;
@@ -83273,12 +83721,14 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83273
83721
  description: string;
83274
83722
  createdByUserId: string;
83275
83723
  projectId: string;
83276
- initialPrompt: string;
83277
83724
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83278
83725
  updatedAt?: Date | undefined;
83279
83726
  sortOrder?: number | undefined;
83280
83727
  sectionId?: string | undefined;
83281
83728
  isArchived?: boolean | undefined;
83729
+ numberOfIterations?: number | undefined;
83730
+ numberOfBookmarkedIterations?: number | undefined;
83731
+ lastReplyTimestamp?: Date | undefined;
83282
83732
  }>, "many">;
83283
83733
  }, "strip", z__default.ZodTypeAny, {
83284
83734
  features: {
@@ -83290,10 +83740,12 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83290
83740
  sortOrder: number;
83291
83741
  createdByUserId: string;
83292
83742
  projectId: string;
83293
- initialPrompt: string;
83743
+ numberOfIterations: number;
83744
+ numberOfBookmarkedIterations: number;
83294
83745
  updatedAt?: Date | undefined;
83295
83746
  sectionId?: string | undefined;
83296
83747
  isArchived?: boolean | undefined;
83748
+ lastReplyTimestamp?: Date | undefined;
83297
83749
  }[];
83298
83750
  }, {
83299
83751
  features: {
@@ -83303,12 +83755,14 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83303
83755
  description: string;
83304
83756
  createdByUserId: string;
83305
83757
  projectId: string;
83306
- initialPrompt: string;
83307
83758
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83308
83759
  updatedAt?: Date | undefined;
83309
83760
  sortOrder?: number | undefined;
83310
83761
  sectionId?: string | undefined;
83311
83762
  isArchived?: boolean | undefined;
83763
+ numberOfIterations?: number | undefined;
83764
+ numberOfBookmarkedIterations?: number | undefined;
83765
+ lastReplyTimestamp?: Date | undefined;
83312
83766
  }[];
83313
83767
  }>;
83314
83768
  type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
@@ -83316,21 +83770,131 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
83316
83770
  id: z__default.ZodString;
83317
83771
  name: z__default.ZodString;
83318
83772
  description: z__default.ZodString;
83319
- initialPrompt: z__default.ZodString;
83320
83773
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83321
83774
  afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
83775
+ initialMessage: z__default.ZodObject<Pick<{
83776
+ id: z__default.ZodString;
83777
+ sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
83778
+ type: z__default.ZodLiteral<"User">;
83779
+ userId: z__default.ZodString;
83780
+ }, "strip", z__default.ZodTypeAny, {
83781
+ type: "User";
83782
+ userId: string;
83783
+ }, {
83784
+ type: "User";
83785
+ userId: string;
83786
+ }>, z__default.ZodObject<{
83787
+ type: z__default.ZodLiteral<"Agent">;
83788
+ }, "strip", z__default.ZodTypeAny, {
83789
+ type: "Agent";
83790
+ }, {
83791
+ type: "Agent";
83792
+ }>, z__default.ZodObject<{
83793
+ type: z__default.ZodLiteral<"System">;
83794
+ onBehalfOfUserId: z__default.ZodString;
83795
+ }, "strip", z__default.ZodTypeAny, {
83796
+ type: "System";
83797
+ onBehalfOfUserId: string;
83798
+ }, {
83799
+ type: "System";
83800
+ onBehalfOfUserId: string;
83801
+ }>]>;
83802
+ body: z__default.ZodString;
83803
+ isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
83804
+ startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
83805
+ parentMessageId: z__default.ZodOptional<z__default.ZodString>;
83806
+ agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
83807
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
83808
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
83809
+ }, "strip", z__default.ZodTypeAny, {
83810
+ iterationId?: string | undefined;
83811
+ }, {
83812
+ iterationId?: string | undefined;
83813
+ }>>;
83814
+ replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
83815
+ createdAt: z__default.ZodString;
83816
+ updatedAt: z__default.ZodOptional<z__default.ZodString>;
83817
+ }, "id" | "createdAt" | "sender" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "agentResponseTrackerId">, "strip", z__default.ZodTypeAny, {
83818
+ id: string;
83819
+ createdAt: string;
83820
+ sender: {
83821
+ type: "User";
83822
+ userId: string;
83823
+ } | {
83824
+ type: "Agent";
83825
+ } | {
83826
+ type: "System";
83827
+ onBehalfOfUserId: string;
83828
+ };
83829
+ body: string;
83830
+ isPrompt?: boolean | undefined;
83831
+ startsNewThread?: boolean | undefined;
83832
+ parentMessageId?: string | undefined;
83833
+ agentResponseTrackerId?: string | null | undefined;
83834
+ }, {
83835
+ id: string;
83836
+ createdAt: string;
83837
+ sender: {
83838
+ type: "User";
83839
+ userId: string;
83840
+ } | {
83841
+ type: "Agent";
83842
+ } | {
83843
+ type: "System";
83844
+ onBehalfOfUserId: string;
83845
+ };
83846
+ body: string;
83847
+ isPrompt?: boolean | undefined;
83848
+ startsNewThread?: boolean | undefined;
83849
+ parentMessageId?: string | undefined;
83850
+ agentResponseTrackerId?: string | null | undefined;
83851
+ }>;
83322
83852
  }, "strip", z__default.ZodTypeAny, {
83323
83853
  id: string;
83324
83854
  name: string;
83325
83855
  description: string;
83326
- initialPrompt: string;
83856
+ initialMessage: {
83857
+ id: string;
83858
+ createdAt: string;
83859
+ sender: {
83860
+ type: "User";
83861
+ userId: string;
83862
+ } | {
83863
+ type: "Agent";
83864
+ } | {
83865
+ type: "System";
83866
+ onBehalfOfUserId: string;
83867
+ };
83868
+ body: string;
83869
+ isPrompt?: boolean | undefined;
83870
+ startsNewThread?: boolean | undefined;
83871
+ parentMessageId?: string | undefined;
83872
+ agentResponseTrackerId?: string | null | undefined;
83873
+ };
83327
83874
  sectionId?: string | undefined;
83328
83875
  afterFeatureId?: string | null | undefined;
83329
83876
  }, {
83330
83877
  id: string;
83331
83878
  name: string;
83332
83879
  description: string;
83333
- initialPrompt: string;
83880
+ initialMessage: {
83881
+ id: string;
83882
+ createdAt: string;
83883
+ sender: {
83884
+ type: "User";
83885
+ userId: string;
83886
+ } | {
83887
+ type: "Agent";
83888
+ } | {
83889
+ type: "System";
83890
+ onBehalfOfUserId: string;
83891
+ };
83892
+ body: string;
83893
+ isPrompt?: boolean | undefined;
83894
+ startsNewThread?: boolean | undefined;
83895
+ parentMessageId?: string | undefined;
83896
+ agentResponseTrackerId?: string | null | undefined;
83897
+ };
83334
83898
  sectionId?: string | undefined;
83335
83899
  afterFeatureId?: string | null | undefined;
83336
83900
  }>;
@@ -83389,8 +83953,10 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83389
83953
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83390
83954
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83391
83955
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83392
- initialPrompt: z__default.ZodString;
83393
83956
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83957
+ numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83958
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83959
+ lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83394
83960
  }, "strip", z__default.ZodTypeAny, {
83395
83961
  status: "Draft" | "ReadyForDevelopment";
83396
83962
  id: string;
@@ -83400,10 +83966,12 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83400
83966
  sortOrder: number;
83401
83967
  createdByUserId: string;
83402
83968
  projectId: string;
83403
- initialPrompt: string;
83969
+ numberOfIterations: number;
83970
+ numberOfBookmarkedIterations: number;
83404
83971
  updatedAt?: Date | undefined;
83405
83972
  sectionId?: string | undefined;
83406
83973
  isArchived?: boolean | undefined;
83974
+ lastReplyTimestamp?: Date | undefined;
83407
83975
  }, {
83408
83976
  id: string;
83409
83977
  name: string;
@@ -83411,12 +83979,14 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83411
83979
  description: string;
83412
83980
  createdByUserId: string;
83413
83981
  projectId: string;
83414
- initialPrompt: string;
83415
83982
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83416
83983
  updatedAt?: Date | undefined;
83417
83984
  sortOrder?: number | undefined;
83418
83985
  sectionId?: string | undefined;
83419
83986
  isArchived?: boolean | undefined;
83987
+ numberOfIterations?: number | undefined;
83988
+ numberOfBookmarkedIterations?: number | undefined;
83989
+ lastReplyTimestamp?: Date | undefined;
83420
83990
  }>;
83421
83991
  }, "strip", z__default.ZodTypeAny, {
83422
83992
  feature: {
@@ -83428,10 +83998,12 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83428
83998
  sortOrder: number;
83429
83999
  createdByUserId: string;
83430
84000
  projectId: string;
83431
- initialPrompt: string;
84001
+ numberOfIterations: number;
84002
+ numberOfBookmarkedIterations: number;
83432
84003
  updatedAt?: Date | undefined;
83433
84004
  sectionId?: string | undefined;
83434
84005
  isArchived?: boolean | undefined;
84006
+ lastReplyTimestamp?: Date | undefined;
83435
84007
  };
83436
84008
  }, {
83437
84009
  feature: {
@@ -83441,12 +84013,14 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83441
84013
  description: string;
83442
84014
  createdByUserId: string;
83443
84015
  projectId: string;
83444
- initialPrompt: string;
83445
84016
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83446
84017
  updatedAt?: Date | undefined;
83447
84018
  sortOrder?: number | undefined;
83448
84019
  sectionId?: string | undefined;
83449
84020
  isArchived?: boolean | undefined;
84021
+ numberOfIterations?: number | undefined;
84022
+ numberOfBookmarkedIterations?: number | undefined;
84023
+ lastReplyTimestamp?: Date | undefined;
83450
84024
  };
83451
84025
  }>;
83452
84026
  type DTOForgeProjectFeatureGetResponse = z__default.infer<typeof DTOForgeProjectFeatureGetResponse>;
@@ -140406,10 +140980,11 @@ declare class ForgeFeatureMessagesEndpoint {
140406
140980
  isPrompt?: boolean | undefined;
140407
140981
  startsNewThread?: boolean | undefined;
140408
140982
  parentMessageId?: string | undefined;
140409
- agentResponseTrackerId?: string | undefined;
140983
+ agentResponseTrackerId?: string | null | undefined;
140410
140984
  attachments?: {
140411
140985
  iterationId?: string | undefined;
140412
140986
  } | undefined;
140987
+ replyToMessageId?: string | undefined;
140413
140988
  }[];
140414
140989
  reactions: {
140415
140990
  createdAt: string;
@@ -140437,10 +141012,11 @@ declare class ForgeFeatureMessagesEndpoint {
140437
141012
  isPrompt?: boolean | undefined;
140438
141013
  startsNewThread?: boolean | undefined;
140439
141014
  parentMessageId?: string | undefined;
140440
- agentResponseTrackerId?: string | undefined;
141015
+ agentResponseTrackerId?: string | null | undefined;
140441
141016
  attachments?: {
140442
141017
  iterationId?: string | undefined;
140443
141018
  } | undefined;
141019
+ replyToMessageId?: string | undefined;
140444
141020
  };
140445
141021
  }>;
140446
141022
  createReaction(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureMessageReactionCreateInput): Promise<{
@@ -140474,10 +141050,12 @@ declare class ForgeFeaturesEndpoint {
140474
141050
  sortOrder: number;
140475
141051
  createdByUserId: string;
140476
141052
  projectId: string;
140477
- initialPrompt: string;
141053
+ numberOfIterations: number;
141054
+ numberOfBookmarkedIterations: number;
140478
141055
  updatedAt?: Date | undefined;
140479
141056
  sectionId?: string | undefined;
140480
141057
  isArchived?: boolean | undefined;
141058
+ lastReplyTimestamp?: Date | undefined;
140481
141059
  }[];
140482
141060
  }>;
140483
141061
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -140490,10 +141068,12 @@ declare class ForgeFeaturesEndpoint {
140490
141068
  sortOrder: number;
140491
141069
  createdByUserId: string;
140492
141070
  projectId: string;
140493
- initialPrompt: string;
141071
+ numberOfIterations: number;
141072
+ numberOfBookmarkedIterations: number;
140494
141073
  updatedAt?: Date | undefined;
140495
141074
  sectionId?: string | undefined;
140496
141075
  isArchived?: boolean | undefined;
141076
+ lastReplyTimestamp?: Date | undefined;
140497
141077
  };
140498
141078
  }>;
140499
141079
  }
@@ -141739,10 +142319,12 @@ declare class ForgeProjectFeaturesEndpoint {
141739
142319
  sortOrder: number;
141740
142320
  createdByUserId: string;
141741
142321
  projectId: string;
141742
- initialPrompt: string;
142322
+ numberOfIterations: number;
142323
+ numberOfBookmarkedIterations: number;
141743
142324
  updatedAt?: Date | undefined;
141744
142325
  sectionId?: string | undefined;
141745
142326
  isArchived?: boolean | undefined;
142327
+ lastReplyTimestamp?: Date | undefined;
141746
142328
  }[];
141747
142329
  }>;
141748
142330
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -141755,10 +142337,25 @@ declare class ForgeProjectFeaturesEndpoint {
141755
142337
  sortOrder: number;
141756
142338
  createdByUserId: string;
141757
142339
  projectId: string;
141758
- initialPrompt: string;
142340
+ numberOfIterations: number;
142341
+ numberOfBookmarkedIterations: number;
141759
142342
  updatedAt?: Date | undefined;
141760
142343
  sectionId?: string | undefined;
141761
142344
  isArchived?: boolean | undefined;
142345
+ lastReplyTimestamp?: Date | undefined;
142346
+ };
142347
+ }>;
142348
+ agentWorkFinalized(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureAgentWorkFinalizeInput): Promise<{
142349
+ iteration: {
142350
+ id: string;
142351
+ createdAt: string;
142352
+ name: string;
142353
+ startedFromMessageId: string;
142354
+ updatedAt?: string | undefined;
142355
+ baseIterationId?: string | undefined;
142356
+ isInProgress?: boolean | undefined;
142357
+ staticPreviewUrl?: string | undefined;
142358
+ isBookmarked?: boolean | undefined;
141762
142359
  };
141763
142360
  }>;
141764
142361
  }
@@ -145058,10 +145655,12 @@ declare function applyProjectActionsLocally(input: Input): {
145058
145655
  sortOrder: number;
145059
145656
  createdByUserId: string;
145060
145657
  projectId: string;
145061
- initialPrompt: string;
145658
+ numberOfIterations: number;
145659
+ numberOfBookmarkedIterations: number;
145062
145660
  updatedAt?: Date | undefined;
145063
145661
  sectionId?: string | undefined;
145064
145662
  isArchived?: boolean | undefined;
145663
+ lastReplyTimestamp?: Date | undefined;
145065
145664
  }[];
145066
145665
  artifactSections: {
145067
145666
  id: string;
@@ -145123,10 +145722,12 @@ declare class LocalProjectActionExecutor {
145123
145722
  sortOrder: number;
145124
145723
  createdByUserId: string;
145125
145724
  projectId: string;
145126
- initialPrompt: string;
145725
+ numberOfIterations: number;
145726
+ numberOfBookmarkedIterations: number;
145127
145727
  updatedAt?: Date | undefined;
145128
145728
  sectionId?: string | undefined;
145129
145729
  isArchived?: boolean | undefined;
145730
+ lastReplyTimestamp?: Date | undefined;
145130
145731
  }[];
145131
145732
  artifactSections: {
145132
145733
  id: string;
@@ -145235,4 +145836,4 @@ declare function isValidRedirectPath(path: string): {
145235
145836
  reason: ValidationErrorReason | undefined;
145236
145837
  };
145237
145838
 
145238
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, 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, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
145839
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, 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, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };