@supernova-studio/client 1.31.3 → 1.31.5

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
@@ -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, {
@@ -68506,6 +68510,7 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
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;
@@ -68527,6 +68532,7 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
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<{
@@ -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, {
@@ -68866,6 +68882,10 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
68866
68882
  * URL of a static preview of the feature
68867
68883
  */
68868
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>;
68869
68889
  createdAt: z__default.ZodString;
68870
68890
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
68871
68891
  }, "id" | "startedFromMessageId">, "strip", z__default.ZodTypeAny, {
@@ -68884,6 +68904,17 @@ declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
68884
68904
  id: string;
68885
68905
  }>;
68886
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>;
68887
68918
  declare const DTOFeatureIterationTagCreateInput: z__default.ZodObject<{
68888
68919
  featureId: z__default.ZodString;
68889
68920
  iterationId: z__default.ZodString;
@@ -69043,6 +69074,10 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69043
69074
  }, {
69044
69075
  iterationId?: string | undefined;
69045
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>;
69046
69081
  createdAt: z__default.ZodString;
69047
69082
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69048
69083
  }, "strip", z__default.ZodTypeAny, {
@@ -69066,6 +69101,7 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69066
69101
  attachments?: {
69067
69102
  iterationId?: string | undefined;
69068
69103
  } | undefined;
69104
+ replyToMessageId?: string | undefined;
69069
69105
  }, {
69070
69106
  id: string;
69071
69107
  createdAt: string;
@@ -69087,6 +69123,7 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69087
69123
  attachments?: {
69088
69124
  iterationId?: string | undefined;
69089
69125
  } | undefined;
69126
+ replyToMessageId?: string | undefined;
69090
69127
  }>;
69091
69128
  }, "strip", z__default.ZodTypeAny, {
69092
69129
  message: {
@@ -69110,6 +69147,7 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69110
69147
  attachments?: {
69111
69148
  iterationId?: string | undefined;
69112
69149
  } | undefined;
69150
+ replyToMessageId?: string | undefined;
69113
69151
  };
69114
69152
  }, {
69115
69153
  message: {
@@ -69133,6 +69171,7 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
69133
69171
  attachments?: {
69134
69172
  iterationId?: string | undefined;
69135
69173
  } | undefined;
69174
+ replyToMessageId?: string | undefined;
69136
69175
  };
69137
69176
  }>;
69138
69177
  type DTOFeatureMessageResponse = z__default.infer<typeof DTOFeatureMessageResponse>;
@@ -69228,6 +69267,10 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69228
69267
  }, {
69229
69268
  iterationId?: string | undefined;
69230
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>;
69231
69274
  createdAt: z__default.ZodString;
69232
69275
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69233
69276
  }, "strip", z__default.ZodTypeAny, {
@@ -69251,6 +69294,7 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69251
69294
  attachments?: {
69252
69295
  iterationId?: string | undefined;
69253
69296
  } | undefined;
69297
+ replyToMessageId?: string | undefined;
69254
69298
  }, {
69255
69299
  id: string;
69256
69300
  createdAt: string;
@@ -69272,6 +69316,7 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69272
69316
  attachments?: {
69273
69317
  iterationId?: string | undefined;
69274
69318
  } | undefined;
69319
+ replyToMessageId?: string | undefined;
69275
69320
  }>, "many">;
69276
69321
  reactions: z__default.ZodArray<z__default.ZodObject<{
69277
69322
  messageId: z__default.ZodString;
@@ -69312,6 +69357,7 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69312
69357
  attachments?: {
69313
69358
  iterationId?: string | undefined;
69314
69359
  } | undefined;
69360
+ replyToMessageId?: string | undefined;
69315
69361
  }[];
69316
69362
  reactions: {
69317
69363
  createdAt: string;
@@ -69342,6 +69388,7 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
69342
69388
  attachments?: {
69343
69389
  iterationId?: string | undefined;
69344
69390
  } | undefined;
69391
+ replyToMessageId?: string | undefined;
69345
69392
  }[];
69346
69393
  reactions: {
69347
69394
  createdAt: string;
@@ -69495,6 +69542,10 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69495
69542
  * URL of a static preview of the feature
69496
69543
  */
69497
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>;
69498
69549
  createdAt: z__default.ZodString;
69499
69550
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69500
69551
  }, "strip", z__default.ZodTypeAny, {
@@ -69506,6 +69557,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69506
69557
  baseIterationId?: string | undefined;
69507
69558
  isInProgress?: boolean | undefined;
69508
69559
  staticPreviewUrl?: string | undefined;
69560
+ isBookmarked?: boolean | undefined;
69509
69561
  }, {
69510
69562
  id: string;
69511
69563
  createdAt: string;
@@ -69515,6 +69567,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69515
69567
  baseIterationId?: string | undefined;
69516
69568
  isInProgress?: boolean | undefined;
69517
69569
  staticPreviewUrl?: string | undefined;
69570
+ isBookmarked?: boolean | undefined;
69518
69571
  }>, "many">;
69519
69572
  }, "strip", z__default.ZodTypeAny, {
69520
69573
  iterations: {
@@ -69526,6 +69579,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69526
69579
  baseIterationId?: string | undefined;
69527
69580
  isInProgress?: boolean | undefined;
69528
69581
  staticPreviewUrl?: string | undefined;
69582
+ isBookmarked?: boolean | undefined;
69529
69583
  }[];
69530
69584
  }, {
69531
69585
  iterations: {
@@ -69537,6 +69591,7 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
69537
69591
  baseIterationId?: string | undefined;
69538
69592
  isInProgress?: boolean | undefined;
69539
69593
  staticPreviewUrl?: string | undefined;
69594
+ isBookmarked?: boolean | undefined;
69540
69595
  }[];
69541
69596
  }>;
69542
69597
  type DTOFeatureIterationListResponse = z__default.infer<typeof DTOFeatureIterationListResponse>;
@@ -69563,6 +69618,10 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69563
69618
  * URL of a static preview of the feature
69564
69619
  */
69565
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>;
69566
69625
  createdAt: z__default.ZodString;
69567
69626
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69568
69627
  }, "strip", z__default.ZodTypeAny, {
@@ -69574,6 +69633,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69574
69633
  baseIterationId?: string | undefined;
69575
69634
  isInProgress?: boolean | undefined;
69576
69635
  staticPreviewUrl?: string | undefined;
69636
+ isBookmarked?: boolean | undefined;
69577
69637
  }, {
69578
69638
  id: string;
69579
69639
  createdAt: string;
@@ -69583,6 +69643,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69583
69643
  baseIterationId?: string | undefined;
69584
69644
  isInProgress?: boolean | undefined;
69585
69645
  staticPreviewUrl?: string | undefined;
69646
+ isBookmarked?: boolean | undefined;
69586
69647
  }>;
69587
69648
  }, "strip", z__default.ZodTypeAny, {
69588
69649
  iteration: {
@@ -69594,6 +69655,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69594
69655
  baseIterationId?: string | undefined;
69595
69656
  isInProgress?: boolean | undefined;
69596
69657
  staticPreviewUrl?: string | undefined;
69658
+ isBookmarked?: boolean | undefined;
69597
69659
  };
69598
69660
  }, {
69599
69661
  iteration: {
@@ -69605,6 +69667,7 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
69605
69667
  baseIterationId?: string | undefined;
69606
69668
  isInProgress?: boolean | undefined;
69607
69669
  staticPreviewUrl?: string | undefined;
69670
+ isBookmarked?: boolean | undefined;
69608
69671
  };
69609
69672
  }>;
69610
69673
  type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
@@ -69748,6 +69811,10 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69748
69811
  }, {
69749
69812
  iterationId?: string | undefined;
69750
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>;
69751
69818
  createdAt: z__default.ZodString;
69752
69819
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69753
69820
  }, "strip", z__default.ZodTypeAny, {
@@ -69771,6 +69838,7 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69771
69838
  attachments?: {
69772
69839
  iterationId?: string | undefined;
69773
69840
  } | undefined;
69841
+ replyToMessageId?: string | undefined;
69774
69842
  }, {
69775
69843
  id: string;
69776
69844
  createdAt: string;
@@ -69792,6 +69860,7 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69792
69860
  attachments?: {
69793
69861
  iterationId?: string | undefined;
69794
69862
  } | undefined;
69863
+ replyToMessageId?: string | undefined;
69795
69864
  }>, "many">;
69796
69865
  }, "strip", z__default.ZodTypeAny, {
69797
69866
  type: "MessagesSent";
@@ -69816,6 +69885,7 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69816
69885
  attachments?: {
69817
69886
  iterationId?: string | undefined;
69818
69887
  } | undefined;
69888
+ replyToMessageId?: string | undefined;
69819
69889
  }[];
69820
69890
  }, {
69821
69891
  type: "MessagesSent";
@@ -69840,6 +69910,7 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
69840
69910
  attachments?: {
69841
69911
  iterationId?: string | undefined;
69842
69912
  } | undefined;
69913
+ replyToMessageId?: string | undefined;
69843
69914
  }[];
69844
69915
  }>;
69845
69916
  type DTOFeatureEventMessagesSent = z__default.infer<typeof DTOFeatureEventMessagesSent>;
@@ -69975,6 +70046,10 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69975
70046
  }, {
69976
70047
  iterationId?: string | undefined;
69977
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>;
69978
70053
  createdAt: z__default.ZodString;
69979
70054
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
69980
70055
  }, "strip", z__default.ZodTypeAny, {
@@ -69998,6 +70073,7 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
69998
70073
  attachments?: {
69999
70074
  iterationId?: string | undefined;
70000
70075
  } | undefined;
70076
+ replyToMessageId?: string | undefined;
70001
70077
  }, {
70002
70078
  id: string;
70003
70079
  createdAt: string;
@@ -70019,6 +70095,7 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
70019
70095
  attachments?: {
70020
70096
  iterationId?: string | undefined;
70021
70097
  } | undefined;
70098
+ replyToMessageId?: string | undefined;
70022
70099
  }>;
70023
70100
  }, "strip", z__default.ZodTypeAny, {
70024
70101
  type: "AgentResponseFinished";
@@ -70043,6 +70120,7 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
70043
70120
  attachments?: {
70044
70121
  iterationId?: string | undefined;
70045
70122
  } | undefined;
70123
+ replyToMessageId?: string | undefined;
70046
70124
  };
70047
70125
  }, {
70048
70126
  type: "AgentResponseFinished";
@@ -70067,6 +70145,7 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
70067
70145
  attachments?: {
70068
70146
  iterationId?: string | undefined;
70069
70147
  } | undefined;
70148
+ replyToMessageId?: string | undefined;
70070
70149
  };
70071
70150
  }>;
70072
70151
  type DTOFeatureEventAgentResponseFinished = z__default.infer<typeof DTOFeatureEventAgentResponseFinished>;
@@ -70130,6 +70209,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70130
70209
  }, {
70131
70210
  iterationId?: string | undefined;
70132
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>;
70133
70216
  createdAt: z__default.ZodString;
70134
70217
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
70135
70218
  }, "strip", z__default.ZodTypeAny, {
@@ -70153,6 +70236,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70153
70236
  attachments?: {
70154
70237
  iterationId?: string | undefined;
70155
70238
  } | undefined;
70239
+ replyToMessageId?: string | undefined;
70156
70240
  }, {
70157
70241
  id: string;
70158
70242
  createdAt: string;
@@ -70174,6 +70258,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70174
70258
  attachments?: {
70175
70259
  iterationId?: string | undefined;
70176
70260
  } | undefined;
70261
+ replyToMessageId?: string | undefined;
70177
70262
  }>, "many">;
70178
70263
  }, "strip", z__default.ZodTypeAny, {
70179
70264
  type: "MessagesSent";
@@ -70198,6 +70283,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70198
70283
  attachments?: {
70199
70284
  iterationId?: string | undefined;
70200
70285
  } | undefined;
70286
+ replyToMessageId?: string | undefined;
70201
70287
  }[];
70202
70288
  }, {
70203
70289
  type: "MessagesSent";
@@ -70222,6 +70308,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70222
70308
  attachments?: {
70223
70309
  iterationId?: string | undefined;
70224
70310
  } | undefined;
70311
+ replyToMessageId?: string | undefined;
70225
70312
  }[];
70226
70313
  }>, z__default.ZodObject<{
70227
70314
  type: z__default.ZodLiteral<"ReactionsSent">;
@@ -70351,6 +70438,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70351
70438
  }, {
70352
70439
  iterationId?: string | undefined;
70353
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>;
70354
70445
  createdAt: z__default.ZodString;
70355
70446
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
70356
70447
  }, "strip", z__default.ZodTypeAny, {
@@ -70374,6 +70465,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70374
70465
  attachments?: {
70375
70466
  iterationId?: string | undefined;
70376
70467
  } | undefined;
70468
+ replyToMessageId?: string | undefined;
70377
70469
  }, {
70378
70470
  id: string;
70379
70471
  createdAt: string;
@@ -70395,6 +70487,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70395
70487
  attachments?: {
70396
70488
  iterationId?: string | undefined;
70397
70489
  } | undefined;
70490
+ replyToMessageId?: string | undefined;
70398
70491
  }>;
70399
70492
  }, "strip", z__default.ZodTypeAny, {
70400
70493
  type: "AgentResponseFinished";
@@ -70419,6 +70512,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70419
70512
  attachments?: {
70420
70513
  iterationId?: string | undefined;
70421
70514
  } | undefined;
70515
+ replyToMessageId?: string | undefined;
70422
70516
  };
70423
70517
  }, {
70424
70518
  type: "AgentResponseFinished";
@@ -70443,6 +70537,7 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
70443
70537
  attachments?: {
70444
70538
  iterationId?: string | undefined;
70445
70539
  } | undefined;
70540
+ replyToMessageId?: string | undefined;
70446
70541
  };
70447
70542
  }>]>;
70448
70543
  type DTOFeatureEvent = z__default.infer<typeof DTOFeatureEvent>;
@@ -80353,21 +80448,131 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80353
80448
  id: z__default.ZodString;
80354
80449
  name: z__default.ZodString;
80355
80450
  description: z__default.ZodString;
80356
- initialPrompt: z__default.ZodString;
80357
80451
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80358
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
+ }>;
80359
80530
  }, "strip", z__default.ZodTypeAny, {
80360
80531
  id: string;
80361
80532
  name: string;
80362
80533
  description: string;
80363
- 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
+ };
80364
80552
  sectionId?: string | undefined;
80365
80553
  afterFeatureId?: string | null | undefined;
80366
80554
  }, {
80367
80555
  id: string;
80368
80556
  name: string;
80369
80557
  description: string;
80370
- 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
+ };
80371
80576
  sectionId?: string | undefined;
80372
80577
  afterFeatureId?: string | null | undefined;
80373
80578
  }>;
@@ -80377,7 +80582,24 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80377
80582
  id: string;
80378
80583
  name: string;
80379
80584
  description: string;
80380
- 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
+ };
80381
80603
  sectionId?: string | undefined;
80382
80604
  afterFeatureId?: string | null | undefined;
80383
80605
  };
@@ -80387,7 +80609,24 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
80387
80609
  id: string;
80388
80610
  name: string;
80389
80611
  description: string;
80390
- 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
+ };
80391
80630
  sectionId?: string | undefined;
80392
80631
  afterFeatureId?: string | null | undefined;
80393
80632
  };
@@ -80744,21 +80983,131 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80744
80983
  id: z__default.ZodString;
80745
80984
  name: z__default.ZodString;
80746
80985
  description: z__default.ZodString;
80747
- initialPrompt: z__default.ZodString;
80748
80986
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80749
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
+ }>;
80750
81065
  }, "strip", z__default.ZodTypeAny, {
80751
81066
  id: string;
80752
81067
  name: string;
80753
81068
  description: string;
80754
- 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
+ };
80755
81087
  sectionId?: string | undefined;
80756
81088
  afterFeatureId?: string | null | undefined;
80757
81089
  }, {
80758
81090
  id: string;
80759
81091
  name: string;
80760
81092
  description: string;
80761
- 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
+ };
80762
81111
  sectionId?: string | undefined;
80763
81112
  afterFeatureId?: string | null | undefined;
80764
81113
  }>;
@@ -80768,7 +81117,24 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80768
81117
  id: string;
80769
81118
  name: string;
80770
81119
  description: string;
80771
- 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
+ };
80772
81138
  sectionId?: string | undefined;
80773
81139
  afterFeatureId?: string | null | undefined;
80774
81140
  };
@@ -80778,7 +81144,24 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
80778
81144
  id: string;
80779
81145
  name: string;
80780
81146
  description: string;
80781
- 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
+ };
80782
81165
  sectionId?: string | undefined;
80783
81166
  afterFeatureId?: string | null | undefined;
80784
81167
  };
@@ -83264,9 +83647,9 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83264
83647
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83265
83648
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83266
83649
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83267
- initialPrompt: z__default.ZodString;
83268
83650
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83269
83651
  numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83652
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83270
83653
  lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83271
83654
  }, "strip", z__default.ZodTypeAny, {
83272
83655
  status: "Draft" | "ReadyForDevelopment";
@@ -83277,8 +83660,8 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83277
83660
  sortOrder: number;
83278
83661
  createdByUserId: string;
83279
83662
  projectId: string;
83280
- initialPrompt: string;
83281
83663
  numberOfIterations: number;
83664
+ numberOfBookmarkedIterations: number;
83282
83665
  updatedAt?: Date | undefined;
83283
83666
  sectionId?: string | undefined;
83284
83667
  isArchived?: boolean | undefined;
@@ -83290,13 +83673,13 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
83290
83673
  description: string;
83291
83674
  createdByUserId: string;
83292
83675
  projectId: string;
83293
- initialPrompt: string;
83294
83676
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83295
83677
  updatedAt?: Date | undefined;
83296
83678
  sortOrder?: number | undefined;
83297
83679
  sectionId?: string | undefined;
83298
83680
  isArchived?: boolean | undefined;
83299
83681
  numberOfIterations?: number | undefined;
83682
+ numberOfBookmarkedIterations?: number | undefined;
83300
83683
  lastReplyTimestamp?: Date | undefined;
83301
83684
  }>;
83302
83685
  type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
@@ -83312,9 +83695,9 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83312
83695
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83313
83696
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83314
83697
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83315
- initialPrompt: z__default.ZodString;
83316
83698
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83317
83699
  numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83700
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83318
83701
  lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83319
83702
  }, "strip", z__default.ZodTypeAny, {
83320
83703
  status: "Draft" | "ReadyForDevelopment";
@@ -83325,8 +83708,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83325
83708
  sortOrder: number;
83326
83709
  createdByUserId: string;
83327
83710
  projectId: string;
83328
- initialPrompt: string;
83329
83711
  numberOfIterations: number;
83712
+ numberOfBookmarkedIterations: number;
83330
83713
  updatedAt?: Date | undefined;
83331
83714
  sectionId?: string | undefined;
83332
83715
  isArchived?: boolean | undefined;
@@ -83338,13 +83721,13 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83338
83721
  description: string;
83339
83722
  createdByUserId: string;
83340
83723
  projectId: string;
83341
- initialPrompt: string;
83342
83724
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83343
83725
  updatedAt?: Date | undefined;
83344
83726
  sortOrder?: number | undefined;
83345
83727
  sectionId?: string | undefined;
83346
83728
  isArchived?: boolean | undefined;
83347
83729
  numberOfIterations?: number | undefined;
83730
+ numberOfBookmarkedIterations?: number | undefined;
83348
83731
  lastReplyTimestamp?: Date | undefined;
83349
83732
  }>, "many">;
83350
83733
  }, "strip", z__default.ZodTypeAny, {
@@ -83357,8 +83740,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83357
83740
  sortOrder: number;
83358
83741
  createdByUserId: string;
83359
83742
  projectId: string;
83360
- initialPrompt: string;
83361
83743
  numberOfIterations: number;
83744
+ numberOfBookmarkedIterations: number;
83362
83745
  updatedAt?: Date | undefined;
83363
83746
  sectionId?: string | undefined;
83364
83747
  isArchived?: boolean | undefined;
@@ -83372,13 +83755,13 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
83372
83755
  description: string;
83373
83756
  createdByUserId: string;
83374
83757
  projectId: string;
83375
- initialPrompt: string;
83376
83758
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83377
83759
  updatedAt?: Date | undefined;
83378
83760
  sortOrder?: number | undefined;
83379
83761
  sectionId?: string | undefined;
83380
83762
  isArchived?: boolean | undefined;
83381
83763
  numberOfIterations?: number | undefined;
83764
+ numberOfBookmarkedIterations?: number | undefined;
83382
83765
  lastReplyTimestamp?: Date | undefined;
83383
83766
  }[];
83384
83767
  }>;
@@ -83387,21 +83770,131 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
83387
83770
  id: z__default.ZodString;
83388
83771
  name: z__default.ZodString;
83389
83772
  description: z__default.ZodString;
83390
- initialPrompt: z__default.ZodString;
83391
83773
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83392
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
+ }>;
83393
83852
  }, "strip", z__default.ZodTypeAny, {
83394
83853
  id: string;
83395
83854
  name: string;
83396
83855
  description: string;
83397
- 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
+ };
83398
83874
  sectionId?: string | undefined;
83399
83875
  afterFeatureId?: string | null | undefined;
83400
83876
  }, {
83401
83877
  id: string;
83402
83878
  name: string;
83403
83879
  description: string;
83404
- 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
+ };
83405
83898
  sectionId?: string | undefined;
83406
83899
  afterFeatureId?: string | null | undefined;
83407
83900
  }>;
@@ -83460,9 +83953,9 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83460
83953
  sectionId: z__default.ZodOptional<z__default.ZodString>;
83461
83954
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
83462
83955
  status: z__default.ZodDefault<z__default.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
83463
- initialPrompt: z__default.ZodString;
83464
83956
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
83465
83957
  numberOfIterations: z__default.ZodDefault<z__default.ZodNumber>;
83958
+ numberOfBookmarkedIterations: z__default.ZodDefault<z__default.ZodNumber>;
83466
83959
  lastReplyTimestamp: z__default.ZodOptional<z__default.ZodDate>;
83467
83960
  }, "strip", z__default.ZodTypeAny, {
83468
83961
  status: "Draft" | "ReadyForDevelopment";
@@ -83473,8 +83966,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83473
83966
  sortOrder: number;
83474
83967
  createdByUserId: string;
83475
83968
  projectId: string;
83476
- initialPrompt: string;
83477
83969
  numberOfIterations: number;
83970
+ numberOfBookmarkedIterations: number;
83478
83971
  updatedAt?: Date | undefined;
83479
83972
  sectionId?: string | undefined;
83480
83973
  isArchived?: boolean | undefined;
@@ -83486,13 +83979,13 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83486
83979
  description: string;
83487
83980
  createdByUserId: string;
83488
83981
  projectId: string;
83489
- initialPrompt: string;
83490
83982
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83491
83983
  updatedAt?: Date | undefined;
83492
83984
  sortOrder?: number | undefined;
83493
83985
  sectionId?: string | undefined;
83494
83986
  isArchived?: boolean | undefined;
83495
83987
  numberOfIterations?: number | undefined;
83988
+ numberOfBookmarkedIterations?: number | undefined;
83496
83989
  lastReplyTimestamp?: Date | undefined;
83497
83990
  }>;
83498
83991
  }, "strip", z__default.ZodTypeAny, {
@@ -83505,8 +83998,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83505
83998
  sortOrder: number;
83506
83999
  createdByUserId: string;
83507
84000
  projectId: string;
83508
- initialPrompt: string;
83509
84001
  numberOfIterations: number;
84002
+ numberOfBookmarkedIterations: number;
83510
84003
  updatedAt?: Date | undefined;
83511
84004
  sectionId?: string | undefined;
83512
84005
  isArchived?: boolean | undefined;
@@ -83520,13 +84013,13 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
83520
84013
  description: string;
83521
84014
  createdByUserId: string;
83522
84015
  projectId: string;
83523
- initialPrompt: string;
83524
84016
  status?: "Draft" | "ReadyForDevelopment" | undefined;
83525
84017
  updatedAt?: Date | undefined;
83526
84018
  sortOrder?: number | undefined;
83527
84019
  sectionId?: string | undefined;
83528
84020
  isArchived?: boolean | undefined;
83529
84021
  numberOfIterations?: number | undefined;
84022
+ numberOfBookmarkedIterations?: number | undefined;
83530
84023
  lastReplyTimestamp?: Date | undefined;
83531
84024
  };
83532
84025
  }>;
@@ -140491,6 +140984,7 @@ declare class ForgeFeatureMessagesEndpoint {
140491
140984
  attachments?: {
140492
140985
  iterationId?: string | undefined;
140493
140986
  } | undefined;
140987
+ replyToMessageId?: string | undefined;
140494
140988
  }[];
140495
140989
  reactions: {
140496
140990
  createdAt: string;
@@ -140522,6 +141016,7 @@ declare class ForgeFeatureMessagesEndpoint {
140522
141016
  attachments?: {
140523
141017
  iterationId?: string | undefined;
140524
141018
  } | undefined;
141019
+ replyToMessageId?: string | undefined;
140525
141020
  };
140526
141021
  }>;
140527
141022
  createReaction(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureMessageReactionCreateInput): Promise<{
@@ -140555,8 +141050,8 @@ declare class ForgeFeaturesEndpoint {
140555
141050
  sortOrder: number;
140556
141051
  createdByUserId: string;
140557
141052
  projectId: string;
140558
- initialPrompt: string;
140559
141053
  numberOfIterations: number;
141054
+ numberOfBookmarkedIterations: number;
140560
141055
  updatedAt?: Date | undefined;
140561
141056
  sectionId?: string | undefined;
140562
141057
  isArchived?: boolean | undefined;
@@ -140573,8 +141068,8 @@ declare class ForgeFeaturesEndpoint {
140573
141068
  sortOrder: number;
140574
141069
  createdByUserId: string;
140575
141070
  projectId: string;
140576
- initialPrompt: string;
140577
141071
  numberOfIterations: number;
141072
+ numberOfBookmarkedIterations: number;
140578
141073
  updatedAt?: Date | undefined;
140579
141074
  sectionId?: string | undefined;
140580
141075
  isArchived?: boolean | undefined;
@@ -141824,8 +142319,8 @@ declare class ForgeProjectFeaturesEndpoint {
141824
142319
  sortOrder: number;
141825
142320
  createdByUserId: string;
141826
142321
  projectId: string;
141827
- initialPrompt: string;
141828
142322
  numberOfIterations: number;
142323
+ numberOfBookmarkedIterations: number;
141829
142324
  updatedAt?: Date | undefined;
141830
142325
  sectionId?: string | undefined;
141831
142326
  isArchived?: boolean | undefined;
@@ -141842,8 +142337,8 @@ declare class ForgeProjectFeaturesEndpoint {
141842
142337
  sortOrder: number;
141843
142338
  createdByUserId: string;
141844
142339
  projectId: string;
141845
- initialPrompt: string;
141846
142340
  numberOfIterations: number;
142341
+ numberOfBookmarkedIterations: number;
141847
142342
  updatedAt?: Date | undefined;
141848
142343
  sectionId?: string | undefined;
141849
142344
  isArchived?: boolean | undefined;
@@ -141860,6 +142355,7 @@ declare class ForgeProjectFeaturesEndpoint {
141860
142355
  baseIterationId?: string | undefined;
141861
142356
  isInProgress?: boolean | undefined;
141862
142357
  staticPreviewUrl?: string | undefined;
142358
+ isBookmarked?: boolean | undefined;
141863
142359
  };
141864
142360
  }>;
141865
142361
  }
@@ -145159,8 +145655,8 @@ declare function applyProjectActionsLocally(input: Input): {
145159
145655
  sortOrder: number;
145160
145656
  createdByUserId: string;
145161
145657
  projectId: string;
145162
- initialPrompt: string;
145163
145658
  numberOfIterations: number;
145659
+ numberOfBookmarkedIterations: number;
145164
145660
  updatedAt?: Date | undefined;
145165
145661
  sectionId?: string | undefined;
145166
145662
  isArchived?: boolean | undefined;
@@ -145226,8 +145722,8 @@ declare class LocalProjectActionExecutor {
145226
145722
  sortOrder: number;
145227
145723
  createdByUserId: string;
145228
145724
  projectId: string;
145229
- initialPrompt: string;
145230
145725
  numberOfIterations: number;
145726
+ numberOfBookmarkedIterations: number;
145231
145727
  updatedAt?: Date | undefined;
145232
145728
  sectionId?: string | undefined;
145233
145729
  isArchived?: boolean | undefined;
@@ -145340,4 +145836,4 @@ declare function isValidRedirectPath(path: string): {
145340
145836
  reason: ValidationErrorReason | undefined;
145341
145837
  };
145342
145838
 
145343
- 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 };