@supernova-studio/client 1.41.3 → 1.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -66384,6 +66384,48 @@ type DTOFigmaNodeResponse = {
66384
66384
  nodes: FigmaExporter["AnyDesignNode"];
66385
66385
  };
66386
66386
 
66387
+ declare const DTOFileSourceUpload: z__default.ZodObject<{
66388
+ type: z__default.ZodLiteral<"UserUpload">;
66389
+ userId: z__default.ZodString;
66390
+ }, "strip", z__default.ZodTypeAny, {
66391
+ type: "UserUpload";
66392
+ userId: string;
66393
+ }, {
66394
+ type: "UserUpload";
66395
+ userId: string;
66396
+ }>;
66397
+ type DTOFileSourceUpload = z__default.infer<typeof DTOFileSourceUpload>;
66398
+ declare const DTOFileSourceFigma: z__default.ZodObject<{
66399
+ type: z__default.ZodLiteral<"Figma">;
66400
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66401
+ }, "strip", z__default.ZodTypeAny, {
66402
+ type: "Figma";
66403
+ renderMode: "Image" | "HTML";
66404
+ }, {
66405
+ type: "Figma";
66406
+ renderMode: "Image" | "HTML";
66407
+ }>;
66408
+ type DTOFileSourceFigma = z__default.infer<typeof DTOFileSourceFigma>;
66409
+ declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66410
+ type: z__default.ZodLiteral<"UserUpload">;
66411
+ userId: z__default.ZodString;
66412
+ }, "strip", z__default.ZodTypeAny, {
66413
+ type: "UserUpload";
66414
+ userId: string;
66415
+ }, {
66416
+ type: "UserUpload";
66417
+ userId: string;
66418
+ }>, z__default.ZodObject<{
66419
+ type: z__default.ZodLiteral<"Figma">;
66420
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66421
+ }, "strip", z__default.ZodTypeAny, {
66422
+ type: "Figma";
66423
+ renderMode: "Image" | "HTML";
66424
+ }, {
66425
+ type: "Figma";
66426
+ renderMode: "Image" | "HTML";
66427
+ }>]>;
66428
+ type DTOFileSource = z__default.infer<typeof DTOFileSource>;
66387
66429
  declare const DTOFile: z__default.ZodObject<{
66388
66430
  id: z__default.ZodString;
66389
66431
  name: z__default.ZodString;
@@ -66392,6 +66434,29 @@ declare const DTOFile: z__default.ZodObject<{
66392
66434
  storagePath: z__default.ZodString;
66393
66435
  url: z__default.ZodString;
66394
66436
  size: z__default.ZodNumber;
66437
+ /**
66438
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66439
+ * system (e.g. thumbnails, etc)
66440
+ */
66441
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66442
+ type: z__default.ZodLiteral<"UserUpload">;
66443
+ userId: z__default.ZodString;
66444
+ }, "strip", z__default.ZodTypeAny, {
66445
+ type: "UserUpload";
66446
+ userId: string;
66447
+ }, {
66448
+ type: "UserUpload";
66449
+ userId: string;
66450
+ }>, z__default.ZodObject<{
66451
+ type: z__default.ZodLiteral<"Figma">;
66452
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66453
+ }, "strip", z__default.ZodTypeAny, {
66454
+ type: "Figma";
66455
+ renderMode: "Image" | "HTML";
66456
+ }, {
66457
+ type: "Figma";
66458
+ renderMode: "Image" | "HTML";
66459
+ }>]>>;
66395
66460
  }, "strip", z__default.ZodTypeAny, {
66396
66461
  id: string;
66397
66462
  name: string;
@@ -66399,6 +66464,13 @@ declare const DTOFile: z__default.ZodObject<{
66399
66464
  size: number;
66400
66465
  deduplicationKey: string;
66401
66466
  storagePath: string;
66467
+ source?: {
66468
+ type: "UserUpload";
66469
+ userId: string;
66470
+ } | {
66471
+ type: "Figma";
66472
+ renderMode: "Image" | "HTML";
66473
+ } | undefined;
66402
66474
  pendingUpload?: boolean | undefined;
66403
66475
  }, {
66404
66476
  id: string;
@@ -66407,18 +66479,67 @@ declare const DTOFile: z__default.ZodObject<{
66407
66479
  size: number;
66408
66480
  deduplicationKey: string;
66409
66481
  storagePath: string;
66482
+ source?: {
66483
+ type: "UserUpload";
66484
+ userId: string;
66485
+ } | {
66486
+ type: "Figma";
66487
+ renderMode: "Image" | "HTML";
66488
+ } | undefined;
66410
66489
  pendingUpload?: boolean | undefined;
66411
66490
  }>;
66412
66491
  type DTOFile = z__default.infer<typeof DTOFile>;
66413
- declare const DTOFileReference: z__default.ZodObject<{
66414
- fileId: z__default.ZodString;
66415
- fileUrl: z__default.ZodString;
66416
- }, "strip", z__default.ZodTypeAny, {
66417
- fileId: string;
66418
- fileUrl: string;
66492
+ declare const DTOFileReference: z__default.ZodObject<Pick<{
66493
+ id: z__default.ZodString;
66494
+ name: z__default.ZodString;
66495
+ deduplicationKey: z__default.ZodString;
66496
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
66497
+ storagePath: z__default.ZodString;
66498
+ url: z__default.ZodString;
66499
+ size: z__default.ZodNumber;
66500
+ /**
66501
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66502
+ * system (e.g. thumbnails, etc)
66503
+ */
66504
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66505
+ type: z__default.ZodLiteral<"UserUpload">;
66506
+ userId: z__default.ZodString;
66507
+ }, "strip", z__default.ZodTypeAny, {
66508
+ type: "UserUpload";
66509
+ userId: string;
66510
+ }, {
66511
+ type: "UserUpload";
66512
+ userId: string;
66513
+ }>, z__default.ZodObject<{
66514
+ type: z__default.ZodLiteral<"Figma">;
66515
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66516
+ }, "strip", z__default.ZodTypeAny, {
66517
+ type: "Figma";
66518
+ renderMode: "Image" | "HTML";
66519
+ }, {
66520
+ type: "Figma";
66521
+ renderMode: "Image" | "HTML";
66522
+ }>]>>;
66523
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
66524
+ id: string;
66525
+ url: string;
66526
+ source?: {
66527
+ type: "UserUpload";
66528
+ userId: string;
66529
+ } | {
66530
+ type: "Figma";
66531
+ renderMode: "Image" | "HTML";
66532
+ } | undefined;
66419
66533
  }, {
66420
- fileId: string;
66421
- fileUrl: string;
66534
+ id: string;
66535
+ url: string;
66536
+ source?: {
66537
+ type: "UserUpload";
66538
+ userId: string;
66539
+ } | {
66540
+ type: "Figma";
66541
+ renderMode: "Image" | "HTML";
66542
+ } | undefined;
66422
66543
  }>;
66423
66544
  type DTOFileReference = z__default.infer<typeof DTOFileReference>;
66424
66545
  declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodObject<{
@@ -66473,6 +66594,29 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66473
66594
  storagePath: z__default.ZodString;
66474
66595
  url: z__default.ZodString;
66475
66596
  size: z__default.ZodNumber;
66597
+ /**
66598
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66599
+ * system (e.g. thumbnails, etc)
66600
+ */
66601
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66602
+ type: z__default.ZodLiteral<"UserUpload">;
66603
+ userId: z__default.ZodString;
66604
+ }, "strip", z__default.ZodTypeAny, {
66605
+ type: "UserUpload";
66606
+ userId: string;
66607
+ }, {
66608
+ type: "UserUpload";
66609
+ userId: string;
66610
+ }>, z__default.ZodObject<{
66611
+ type: z__default.ZodLiteral<"Figma">;
66612
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66613
+ }, "strip", z__default.ZodTypeAny, {
66614
+ type: "Figma";
66615
+ renderMode: "Image" | "HTML";
66616
+ }, {
66617
+ type: "Figma";
66618
+ renderMode: "Image" | "HTML";
66619
+ }>]>>;
66476
66620
  }, "strip", z__default.ZodTypeAny, {
66477
66621
  id: string;
66478
66622
  name: string;
@@ -66480,6 +66624,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66480
66624
  size: number;
66481
66625
  deduplicationKey: string;
66482
66626
  storagePath: string;
66627
+ source?: {
66628
+ type: "UserUpload";
66629
+ userId: string;
66630
+ } | {
66631
+ type: "Figma";
66632
+ renderMode: "Image" | "HTML";
66633
+ } | undefined;
66483
66634
  pendingUpload?: boolean | undefined;
66484
66635
  }, {
66485
66636
  id: string;
@@ -66488,6 +66639,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66488
66639
  size: number;
66489
66640
  deduplicationKey: string;
66490
66641
  storagePath: string;
66642
+ source?: {
66643
+ type: "UserUpload";
66644
+ userId: string;
66645
+ } | {
66646
+ type: "Figma";
66647
+ renderMode: "Image" | "HTML";
66648
+ } | undefined;
66491
66649
  pendingUpload?: boolean | undefined;
66492
66650
  }>, "many">;
66493
66651
  }, "strip", z__default.ZodTypeAny, {
@@ -66498,6 +66656,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66498
66656
  size: number;
66499
66657
  deduplicationKey: string;
66500
66658
  storagePath: string;
66659
+ source?: {
66660
+ type: "UserUpload";
66661
+ userId: string;
66662
+ } | {
66663
+ type: "Figma";
66664
+ renderMode: "Image" | "HTML";
66665
+ } | undefined;
66501
66666
  pendingUpload?: boolean | undefined;
66502
66667
  }[];
66503
66668
  }, {
@@ -66508,6 +66673,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66508
66673
  size: number;
66509
66674
  deduplicationKey: string;
66510
66675
  storagePath: string;
66676
+ source?: {
66677
+ type: "UserUpload";
66678
+ userId: string;
66679
+ } | {
66680
+ type: "Figma";
66681
+ renderMode: "Image" | "HTML";
66682
+ } | undefined;
66511
66683
  pendingUpload?: boolean | undefined;
66512
66684
  }[];
66513
66685
  }>;
@@ -66521,6 +66693,29 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66521
66693
  storagePath: z__default.ZodString;
66522
66694
  url: z__default.ZodString;
66523
66695
  size: z__default.ZodNumber;
66696
+ /**
66697
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66698
+ * system (e.g. thumbnails, etc)
66699
+ */
66700
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66701
+ type: z__default.ZodLiteral<"UserUpload">;
66702
+ userId: z__default.ZodString;
66703
+ }, "strip", z__default.ZodTypeAny, {
66704
+ type: "UserUpload";
66705
+ userId: string;
66706
+ }, {
66707
+ type: "UserUpload";
66708
+ userId: string;
66709
+ }>, z__default.ZodObject<{
66710
+ type: z__default.ZodLiteral<"Figma">;
66711
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66712
+ }, "strip", z__default.ZodTypeAny, {
66713
+ type: "Figma";
66714
+ renderMode: "Image" | "HTML";
66715
+ }, {
66716
+ type: "Figma";
66717
+ renderMode: "Image" | "HTML";
66718
+ }>]>>;
66524
66719
  }, "strip", z__default.ZodTypeAny, {
66525
66720
  id: string;
66526
66721
  name: string;
@@ -66528,6 +66723,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66528
66723
  size: number;
66529
66724
  deduplicationKey: string;
66530
66725
  storagePath: string;
66726
+ source?: {
66727
+ type: "UserUpload";
66728
+ userId: string;
66729
+ } | {
66730
+ type: "Figma";
66731
+ renderMode: "Image" | "HTML";
66732
+ } | undefined;
66531
66733
  pendingUpload?: boolean | undefined;
66532
66734
  }, {
66533
66735
  id: string;
@@ -66536,6 +66738,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66536
66738
  size: number;
66537
66739
  deduplicationKey: string;
66538
66740
  storagePath: string;
66741
+ source?: {
66742
+ type: "UserUpload";
66743
+ userId: string;
66744
+ } | {
66745
+ type: "Figma";
66746
+ renderMode: "Image" | "HTML";
66747
+ } | undefined;
66539
66748
  pendingUpload?: boolean | undefined;
66540
66749
  }>, "many">;
66541
66750
  uploadUrls: z__default.ZodArray<z__default.ZodObject<{
@@ -66556,6 +66765,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66556
66765
  size: number;
66557
66766
  deduplicationKey: string;
66558
66767
  storagePath: string;
66768
+ source?: {
66769
+ type: "UserUpload";
66770
+ userId: string;
66771
+ } | {
66772
+ type: "Figma";
66773
+ renderMode: "Image" | "HTML";
66774
+ } | undefined;
66559
66775
  pendingUpload?: boolean | undefined;
66560
66776
  }[];
66561
66777
  uploadUrls: {
@@ -66570,6 +66786,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66570
66786
  size: number;
66571
66787
  deduplicationKey: string;
66572
66788
  storagePath: string;
66789
+ source?: {
66790
+ type: "UserUpload";
66791
+ userId: string;
66792
+ } | {
66793
+ type: "Figma";
66794
+ renderMode: "Image" | "HTML";
66795
+ } | undefined;
66573
66796
  pendingUpload?: boolean | undefined;
66574
66797
  }[];
66575
66798
  uploadUrls: {
@@ -68980,15 +69203,53 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
68980
69203
  * URL of a static thumbnail of the feature iteration
68981
69204
  */
68982
69205
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
68983
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
68984
- fileId: z__default.ZodString;
68985
- fileUrl: z__default.ZodString;
68986
- }, "strip", z__default.ZodTypeAny, {
68987
- fileId: string;
68988
- fileUrl: string;
69206
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
69207
+ id: z__default.ZodString;
69208
+ name: z__default.ZodString;
69209
+ deduplicationKey: z__default.ZodString;
69210
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
69211
+ storagePath: z__default.ZodString;
69212
+ url: z__default.ZodString;
69213
+ size: z__default.ZodNumber;
69214
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
69215
+ type: z__default.ZodLiteral<"UserUpload">;
69216
+ userId: z__default.ZodString;
69217
+ }, "strip", z__default.ZodTypeAny, {
69218
+ type: "UserUpload";
69219
+ userId: string;
69220
+ }, {
69221
+ type: "UserUpload";
69222
+ userId: string;
69223
+ }>, z__default.ZodObject<{
69224
+ type: z__default.ZodLiteral<"Figma">;
69225
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69226
+ }, "strip", z__default.ZodTypeAny, {
69227
+ type: "Figma";
69228
+ renderMode: "Image" | "HTML";
69229
+ }, {
69230
+ type: "Figma";
69231
+ renderMode: "Image" | "HTML";
69232
+ }>]>>;
69233
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69234
+ id: string;
69235
+ url: string;
69236
+ source?: {
69237
+ type: "UserUpload";
69238
+ userId: string;
69239
+ } | {
69240
+ type: "Figma";
69241
+ renderMode: "Image" | "HTML";
69242
+ } | undefined;
68989
69243
  }, {
68990
- fileId: string;
68991
- fileUrl: string;
69244
+ id: string;
69245
+ url: string;
69246
+ source?: {
69247
+ type: "UserUpload";
69248
+ userId: string;
69249
+ } | {
69250
+ type: "Figma";
69251
+ renderMode: "Image" | "HTML";
69252
+ } | undefined;
68992
69253
  }>>;
68993
69254
  createdAt: z__default.ZodString;
68994
69255
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -69017,8 +69278,15 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69017
69278
  staticPreviewUrl?: string | undefined;
69018
69279
  isBookmarked?: boolean | undefined;
69019
69280
  thumbnail?: {
69020
- fileId: string;
69021
- fileUrl: string;
69281
+ id: string;
69282
+ url: string;
69283
+ source?: {
69284
+ type: "UserUpload";
69285
+ userId: string;
69286
+ } | {
69287
+ type: "Figma";
69288
+ renderMode: "Image" | "HTML";
69289
+ } | undefined;
69022
69290
  } | undefined;
69023
69291
  artifactsDiff?: {
69024
69292
  created: string[];
@@ -69037,8 +69305,15 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69037
69305
  staticPreviewUrl?: string | undefined;
69038
69306
  isBookmarked?: boolean | undefined;
69039
69307
  thumbnail?: {
69040
- fileId: string;
69041
- fileUrl: string;
69308
+ id: string;
69309
+ url: string;
69310
+ source?: {
69311
+ type: "UserUpload";
69312
+ userId: string;
69313
+ } | {
69314
+ type: "Figma";
69315
+ renderMode: "Image" | "HTML";
69316
+ } | undefined;
69042
69317
  } | undefined;
69043
69318
  artifactsDiff?: {
69044
69319
  created?: string[] | undefined;
@@ -69294,15 +69569,53 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
69294
69569
  * URL of a static thumbnail of the feature iteration
69295
69570
  */
69296
69571
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
69297
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
69298
- fileId: z__default.ZodString;
69299
- fileUrl: z__default.ZodString;
69300
- }, "strip", z__default.ZodTypeAny, {
69301
- fileId: string;
69302
- fileUrl: string;
69572
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
69573
+ id: z__default.ZodString;
69574
+ name: z__default.ZodString;
69575
+ deduplicationKey: z__default.ZodString;
69576
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
69577
+ storagePath: z__default.ZodString;
69578
+ url: z__default.ZodString;
69579
+ size: z__default.ZodNumber;
69580
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
69581
+ type: z__default.ZodLiteral<"UserUpload">;
69582
+ userId: z__default.ZodString;
69583
+ }, "strip", z__default.ZodTypeAny, {
69584
+ type: "UserUpload";
69585
+ userId: string;
69586
+ }, {
69587
+ type: "UserUpload";
69588
+ userId: string;
69589
+ }>, z__default.ZodObject<{
69590
+ type: z__default.ZodLiteral<"Figma">;
69591
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69592
+ }, "strip", z__default.ZodTypeAny, {
69593
+ type: "Figma";
69594
+ renderMode: "Image" | "HTML";
69595
+ }, {
69596
+ type: "Figma";
69597
+ renderMode: "Image" | "HTML";
69598
+ }>]>>;
69599
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69600
+ id: string;
69601
+ url: string;
69602
+ source?: {
69603
+ type: "UserUpload";
69604
+ userId: string;
69605
+ } | {
69606
+ type: "Figma";
69607
+ renderMode: "Image" | "HTML";
69608
+ } | undefined;
69303
69609
  }, {
69304
- fileId: string;
69305
- fileUrl: string;
69610
+ id: string;
69611
+ url: string;
69612
+ source?: {
69613
+ type: "UserUpload";
69614
+ userId: string;
69615
+ } | {
69616
+ type: "Figma";
69617
+ renderMode: "Image" | "HTML";
69618
+ } | undefined;
69306
69619
  }>>;
69307
69620
  createdAt: z__default.ZodString;
69308
69621
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70044,15 +70357,53 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70044
70357
  * URL of a static thumbnail of the feature iteration
70045
70358
  */
70046
70359
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
70047
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
70048
- fileId: z__default.ZodString;
70049
- fileUrl: z__default.ZodString;
70050
- }, "strip", z__default.ZodTypeAny, {
70051
- fileId: string;
70052
- fileUrl: string;
70360
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
70361
+ id: z__default.ZodString;
70362
+ name: z__default.ZodString;
70363
+ deduplicationKey: z__default.ZodString;
70364
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
70365
+ storagePath: z__default.ZodString;
70366
+ url: z__default.ZodString;
70367
+ size: z__default.ZodNumber;
70368
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
70369
+ type: z__default.ZodLiteral<"UserUpload">;
70370
+ userId: z__default.ZodString;
70371
+ }, "strip", z__default.ZodTypeAny, {
70372
+ type: "UserUpload";
70373
+ userId: string;
70374
+ }, {
70375
+ type: "UserUpload";
70376
+ userId: string;
70377
+ }>, z__default.ZodObject<{
70378
+ type: z__default.ZodLiteral<"Figma">;
70379
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70380
+ }, "strip", z__default.ZodTypeAny, {
70381
+ type: "Figma";
70382
+ renderMode: "Image" | "HTML";
70383
+ }, {
70384
+ type: "Figma";
70385
+ renderMode: "Image" | "HTML";
70386
+ }>]>>;
70387
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70388
+ id: string;
70389
+ url: string;
70390
+ source?: {
70391
+ type: "UserUpload";
70392
+ userId: string;
70393
+ } | {
70394
+ type: "Figma";
70395
+ renderMode: "Image" | "HTML";
70396
+ } | undefined;
70053
70397
  }, {
70054
- fileId: string;
70055
- fileUrl: string;
70398
+ id: string;
70399
+ url: string;
70400
+ source?: {
70401
+ type: "UserUpload";
70402
+ userId: string;
70403
+ } | {
70404
+ type: "Figma";
70405
+ renderMode: "Image" | "HTML";
70406
+ } | undefined;
70056
70407
  }>>;
70057
70408
  createdAt: z__default.ZodString;
70058
70409
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70081,8 +70432,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70081
70432
  staticPreviewUrl?: string | undefined;
70082
70433
  isBookmarked?: boolean | undefined;
70083
70434
  thumbnail?: {
70084
- fileId: string;
70085
- fileUrl: string;
70435
+ id: string;
70436
+ url: string;
70437
+ source?: {
70438
+ type: "UserUpload";
70439
+ userId: string;
70440
+ } | {
70441
+ type: "Figma";
70442
+ renderMode: "Image" | "HTML";
70443
+ } | undefined;
70086
70444
  } | undefined;
70087
70445
  artifactsDiff?: {
70088
70446
  created: string[];
@@ -70101,8 +70459,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70101
70459
  staticPreviewUrl?: string | undefined;
70102
70460
  isBookmarked?: boolean | undefined;
70103
70461
  thumbnail?: {
70104
- fileId: string;
70105
- fileUrl: string;
70462
+ id: string;
70463
+ url: string;
70464
+ source?: {
70465
+ type: "UserUpload";
70466
+ userId: string;
70467
+ } | {
70468
+ type: "Figma";
70469
+ renderMode: "Image" | "HTML";
70470
+ } | undefined;
70106
70471
  } | undefined;
70107
70472
  artifactsDiff?: {
70108
70473
  created?: string[] | undefined;
@@ -70123,8 +70488,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70123
70488
  staticPreviewUrl?: string | undefined;
70124
70489
  isBookmarked?: boolean | undefined;
70125
70490
  thumbnail?: {
70126
- fileId: string;
70127
- fileUrl: string;
70491
+ id: string;
70492
+ url: string;
70493
+ source?: {
70494
+ type: "UserUpload";
70495
+ userId: string;
70496
+ } | {
70497
+ type: "Figma";
70498
+ renderMode: "Image" | "HTML";
70499
+ } | undefined;
70128
70500
  } | undefined;
70129
70501
  artifactsDiff?: {
70130
70502
  created: string[];
@@ -70145,8 +70517,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70145
70517
  staticPreviewUrl?: string | undefined;
70146
70518
  isBookmarked?: boolean | undefined;
70147
70519
  thumbnail?: {
70148
- fileId: string;
70149
- fileUrl: string;
70520
+ id: string;
70521
+ url: string;
70522
+ source?: {
70523
+ type: "UserUpload";
70524
+ userId: string;
70525
+ } | {
70526
+ type: "Figma";
70527
+ renderMode: "Image" | "HTML";
70528
+ } | undefined;
70150
70529
  } | undefined;
70151
70530
  artifactsDiff?: {
70152
70531
  created?: string[] | undefined;
@@ -70188,15 +70567,53 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70188
70567
  * URL of a static thumbnail of the feature iteration
70189
70568
  */
70190
70569
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
70191
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
70192
- fileId: z__default.ZodString;
70193
- fileUrl: z__default.ZodString;
70194
- }, "strip", z__default.ZodTypeAny, {
70195
- fileId: string;
70196
- fileUrl: string;
70570
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
70571
+ id: z__default.ZodString;
70572
+ name: z__default.ZodString;
70573
+ deduplicationKey: z__default.ZodString;
70574
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
70575
+ storagePath: z__default.ZodString;
70576
+ url: z__default.ZodString;
70577
+ size: z__default.ZodNumber;
70578
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
70579
+ type: z__default.ZodLiteral<"UserUpload">;
70580
+ userId: z__default.ZodString;
70581
+ }, "strip", z__default.ZodTypeAny, {
70582
+ type: "UserUpload";
70583
+ userId: string;
70584
+ }, {
70585
+ type: "UserUpload";
70586
+ userId: string;
70587
+ }>, z__default.ZodObject<{
70588
+ type: z__default.ZodLiteral<"Figma">;
70589
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70590
+ }, "strip", z__default.ZodTypeAny, {
70591
+ type: "Figma";
70592
+ renderMode: "Image" | "HTML";
70593
+ }, {
70594
+ type: "Figma";
70595
+ renderMode: "Image" | "HTML";
70596
+ }>]>>;
70597
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70598
+ id: string;
70599
+ url: string;
70600
+ source?: {
70601
+ type: "UserUpload";
70602
+ userId: string;
70603
+ } | {
70604
+ type: "Figma";
70605
+ renderMode: "Image" | "HTML";
70606
+ } | undefined;
70197
70607
  }, {
70198
- fileId: string;
70199
- fileUrl: string;
70608
+ id: string;
70609
+ url: string;
70610
+ source?: {
70611
+ type: "UserUpload";
70612
+ userId: string;
70613
+ } | {
70614
+ type: "Figma";
70615
+ renderMode: "Image" | "HTML";
70616
+ } | undefined;
70200
70617
  }>>;
70201
70618
  createdAt: z__default.ZodString;
70202
70619
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70225,8 +70642,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70225
70642
  staticPreviewUrl?: string | undefined;
70226
70643
  isBookmarked?: boolean | undefined;
70227
70644
  thumbnail?: {
70228
- fileId: string;
70229
- fileUrl: string;
70645
+ id: string;
70646
+ url: string;
70647
+ source?: {
70648
+ type: "UserUpload";
70649
+ userId: string;
70650
+ } | {
70651
+ type: "Figma";
70652
+ renderMode: "Image" | "HTML";
70653
+ } | undefined;
70230
70654
  } | undefined;
70231
70655
  artifactsDiff?: {
70232
70656
  created: string[];
@@ -70245,8 +70669,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70245
70669
  staticPreviewUrl?: string | undefined;
70246
70670
  isBookmarked?: boolean | undefined;
70247
70671
  thumbnail?: {
70248
- fileId: string;
70249
- fileUrl: string;
70672
+ id: string;
70673
+ url: string;
70674
+ source?: {
70675
+ type: "UserUpload";
70676
+ userId: string;
70677
+ } | {
70678
+ type: "Figma";
70679
+ renderMode: "Image" | "HTML";
70680
+ } | undefined;
70250
70681
  } | undefined;
70251
70682
  artifactsDiff?: {
70252
70683
  created?: string[] | undefined;
@@ -70267,8 +70698,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70267
70698
  staticPreviewUrl?: string | undefined;
70268
70699
  isBookmarked?: boolean | undefined;
70269
70700
  thumbnail?: {
70270
- fileId: string;
70271
- fileUrl: string;
70701
+ id: string;
70702
+ url: string;
70703
+ source?: {
70704
+ type: "UserUpload";
70705
+ userId: string;
70706
+ } | {
70707
+ type: "Figma";
70708
+ renderMode: "Image" | "HTML";
70709
+ } | undefined;
70272
70710
  } | undefined;
70273
70711
  artifactsDiff?: {
70274
70712
  created: string[];
@@ -70289,8 +70727,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70289
70727
  staticPreviewUrl?: string | undefined;
70290
70728
  isBookmarked?: boolean | undefined;
70291
70729
  thumbnail?: {
70292
- fileId: string;
70293
- fileUrl: string;
70730
+ id: string;
70731
+ url: string;
70732
+ source?: {
70733
+ type: "UserUpload";
70734
+ userId: string;
70735
+ } | {
70736
+ type: "Figma";
70737
+ renderMode: "Image" | "HTML";
70738
+ } | undefined;
70294
70739
  } | undefined;
70295
70740
  artifactsDiff?: {
70296
70741
  created?: string[] | undefined;
@@ -81351,26 +81796,78 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81351
81796
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81352
81797
  attachments: z__default.ZodOptional<z__default.ZodObject<{
81353
81798
  iterationId: z__default.ZodOptional<z__default.ZodString>;
81354
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
81355
- fileId: z__default.ZodString;
81356
- fileUrl: z__default.ZodString;
81357
- }, "strip", z__default.ZodTypeAny, {
81358
- fileId: string;
81359
- fileUrl: string;
81799
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
81800
+ id: z__default.ZodString;
81801
+ name: z__default.ZodString;
81802
+ deduplicationKey: z__default.ZodString;
81803
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
81804
+ storagePath: z__default.ZodString;
81805
+ url: z__default.ZodString;
81806
+ size: z__default.ZodNumber;
81807
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
81808
+ type: z__default.ZodLiteral<"UserUpload">;
81809
+ userId: z__default.ZodString;
81810
+ }, "strip", z__default.ZodTypeAny, {
81811
+ type: "UserUpload";
81812
+ userId: string;
81813
+ }, {
81814
+ type: "UserUpload";
81815
+ userId: string;
81816
+ }>, z__default.ZodObject<{
81817
+ type: z__default.ZodLiteral<"Figma">;
81818
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
81819
+ }, "strip", z__default.ZodTypeAny, {
81820
+ type: "Figma";
81821
+ renderMode: "Image" | "HTML";
81822
+ }, {
81823
+ type: "Figma";
81824
+ renderMode: "Image" | "HTML";
81825
+ }>]>>;
81826
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
81827
+ id: string;
81828
+ url: string;
81829
+ source?: {
81830
+ type: "UserUpload";
81831
+ userId: string;
81832
+ } | {
81833
+ type: "Figma";
81834
+ renderMode: "Image" | "HTML";
81835
+ } | undefined;
81360
81836
  }, {
81361
- fileId: string;
81362
- fileUrl: string;
81837
+ id: string;
81838
+ url: string;
81839
+ source?: {
81840
+ type: "UserUpload";
81841
+ userId: string;
81842
+ } | {
81843
+ type: "Figma";
81844
+ renderMode: "Image" | "HTML";
81845
+ } | undefined;
81363
81846
  }>, "many">>;
81364
81847
  }, "strip", z__default.ZodTypeAny, {
81365
81848
  files?: {
81366
- fileId: string;
81367
- fileUrl: string;
81849
+ id: string;
81850
+ url: string;
81851
+ source?: {
81852
+ type: "UserUpload";
81853
+ userId: string;
81854
+ } | {
81855
+ type: "Figma";
81856
+ renderMode: "Image" | "HTML";
81857
+ } | undefined;
81368
81858
  }[] | undefined;
81369
81859
  iterationId?: string | undefined;
81370
81860
  }, {
81371
81861
  files?: {
81372
- fileId: string;
81373
- fileUrl: string;
81862
+ id: string;
81863
+ url: string;
81864
+ source?: {
81865
+ type: "UserUpload";
81866
+ userId: string;
81867
+ } | {
81868
+ type: "Figma";
81869
+ renderMode: "Image" | "HTML";
81870
+ } | undefined;
81374
81871
  }[] | undefined;
81375
81872
  iterationId?: string | undefined;
81376
81873
  }>>;
@@ -81970,26 +82467,78 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81970
82467
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81971
82468
  attachments: z__default.ZodOptional<z__default.ZodObject<{
81972
82469
  iterationId: z__default.ZodOptional<z__default.ZodString>;
81973
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
81974
- fileId: z__default.ZodString;
81975
- fileUrl: z__default.ZodString;
81976
- }, "strip", z__default.ZodTypeAny, {
81977
- fileId: string;
81978
- fileUrl: string;
82470
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
82471
+ id: z__default.ZodString;
82472
+ name: z__default.ZodString;
82473
+ deduplicationKey: z__default.ZodString;
82474
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
82475
+ storagePath: z__default.ZodString;
82476
+ url: z__default.ZodString;
82477
+ size: z__default.ZodNumber;
82478
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
82479
+ type: z__default.ZodLiteral<"UserUpload">;
82480
+ userId: z__default.ZodString;
82481
+ }, "strip", z__default.ZodTypeAny, {
82482
+ type: "UserUpload";
82483
+ userId: string;
82484
+ }, {
82485
+ type: "UserUpload";
82486
+ userId: string;
82487
+ }>, z__default.ZodObject<{
82488
+ type: z__default.ZodLiteral<"Figma">;
82489
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
82490
+ }, "strip", z__default.ZodTypeAny, {
82491
+ type: "Figma";
82492
+ renderMode: "Image" | "HTML";
82493
+ }, {
82494
+ type: "Figma";
82495
+ renderMode: "Image" | "HTML";
82496
+ }>]>>;
82497
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
82498
+ id: string;
82499
+ url: string;
82500
+ source?: {
82501
+ type: "UserUpload";
82502
+ userId: string;
82503
+ } | {
82504
+ type: "Figma";
82505
+ renderMode: "Image" | "HTML";
82506
+ } | undefined;
81979
82507
  }, {
81980
- fileId: string;
81981
- fileUrl: string;
82508
+ id: string;
82509
+ url: string;
82510
+ source?: {
82511
+ type: "UserUpload";
82512
+ userId: string;
82513
+ } | {
82514
+ type: "Figma";
82515
+ renderMode: "Image" | "HTML";
82516
+ } | undefined;
81982
82517
  }>, "many">>;
81983
82518
  }, "strip", z__default.ZodTypeAny, {
81984
82519
  files?: {
81985
- fileId: string;
81986
- fileUrl: string;
82520
+ id: string;
82521
+ url: string;
82522
+ source?: {
82523
+ type: "UserUpload";
82524
+ userId: string;
82525
+ } | {
82526
+ type: "Figma";
82527
+ renderMode: "Image" | "HTML";
82528
+ } | undefined;
81987
82529
  }[] | undefined;
81988
82530
  iterationId?: string | undefined;
81989
82531
  }, {
81990
82532
  files?: {
81991
- fileId: string;
81992
- fileUrl: string;
82533
+ id: string;
82534
+ url: string;
82535
+ source?: {
82536
+ type: "UserUpload";
82537
+ userId: string;
82538
+ } | {
82539
+ type: "Figma";
82540
+ renderMode: "Image" | "HTML";
82541
+ } | undefined;
81993
82542
  }[] | undefined;
81994
82543
  iterationId?: string | undefined;
81995
82544
  }>>;
@@ -82433,26 +82982,78 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82433
82982
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
82434
82983
  attachments: z$1.ZodOptional<z$1.ZodObject<{
82435
82984
  iterationId: z$1.ZodOptional<z$1.ZodString>;
82436
- files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
82437
- fileId: z$1.ZodString;
82438
- fileUrl: z$1.ZodString;
82439
- }, "strip", z$1.ZodTypeAny, {
82440
- fileId: string;
82441
- fileUrl: string;
82985
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
82986
+ id: z$1.ZodString;
82987
+ name: z$1.ZodString;
82988
+ deduplicationKey: z$1.ZodString;
82989
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
82990
+ storagePath: z$1.ZodString;
82991
+ url: z$1.ZodString;
82992
+ size: z$1.ZodNumber;
82993
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
82994
+ type: z$1.ZodLiteral<"UserUpload">;
82995
+ userId: z$1.ZodString;
82996
+ }, "strip", z$1.ZodTypeAny, {
82997
+ type: "UserUpload";
82998
+ userId: string;
82999
+ }, {
83000
+ type: "UserUpload";
83001
+ userId: string;
83002
+ }>, z$1.ZodObject<{
83003
+ type: z$1.ZodLiteral<"Figma">;
83004
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
83005
+ }, "strip", z$1.ZodTypeAny, {
83006
+ type: "Figma";
83007
+ renderMode: "Image" | "HTML";
83008
+ }, {
83009
+ type: "Figma";
83010
+ renderMode: "Image" | "HTML";
83011
+ }>]>>;
83012
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
83013
+ id: string;
83014
+ url: string;
83015
+ source?: {
83016
+ type: "UserUpload";
83017
+ userId: string;
83018
+ } | {
83019
+ type: "Figma";
83020
+ renderMode: "Image" | "HTML";
83021
+ } | undefined;
82442
83022
  }, {
82443
- fileId: string;
82444
- fileUrl: string;
83023
+ id: string;
83024
+ url: string;
83025
+ source?: {
83026
+ type: "UserUpload";
83027
+ userId: string;
83028
+ } | {
83029
+ type: "Figma";
83030
+ renderMode: "Image" | "HTML";
83031
+ } | undefined;
82445
83032
  }>, "many">>;
82446
83033
  }, "strip", z$1.ZodTypeAny, {
82447
83034
  files?: {
82448
- fileId: string;
82449
- fileUrl: string;
83035
+ id: string;
83036
+ url: string;
83037
+ source?: {
83038
+ type: "UserUpload";
83039
+ userId: string;
83040
+ } | {
83041
+ type: "Figma";
83042
+ renderMode: "Image" | "HTML";
83043
+ } | undefined;
82450
83044
  }[] | undefined;
82451
83045
  iterationId?: string | undefined;
82452
83046
  }, {
82453
83047
  files?: {
82454
- fileId: string;
82455
- fileUrl: string;
83048
+ id: string;
83049
+ url: string;
83050
+ source?: {
83051
+ type: "UserUpload";
83052
+ userId: string;
83053
+ } | {
83054
+ type: "Figma";
83055
+ renderMode: "Image" | "HTML";
83056
+ } | undefined;
82456
83057
  }[] | undefined;
82457
83058
  iterationId?: string | undefined;
82458
83059
  }>>;
@@ -213887,6 +214488,292 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
213887
214488
  role: "Admin" | "Viewer" | "Builder";
213888
214489
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
213889
214490
  }>, "many">>;
214491
+ initialFeature: z$1.ZodOptional<z$1.ZodObject<{
214492
+ id: z$1.ZodString;
214493
+ name: z$1.ZodOptional<z$1.ZodString>;
214494
+ description: z$1.ZodString;
214495
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214496
+ afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
214497
+ initialMessage: z$1.ZodObject<Pick<{
214498
+ id: z$1.ZodString;
214499
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214500
+ type: z$1.ZodLiteral<"User">;
214501
+ userId: z$1.ZodString;
214502
+ }, "strip", z$1.ZodTypeAny, {
214503
+ type: "User";
214504
+ userId: string;
214505
+ }, {
214506
+ type: "User";
214507
+ userId: string;
214508
+ }>, z$1.ZodObject<{
214509
+ type: z$1.ZodLiteral<"Agent">;
214510
+ }, "strip", z$1.ZodTypeAny, {
214511
+ type: "Agent";
214512
+ }, {
214513
+ type: "Agent";
214514
+ }>, z$1.ZodObject<{
214515
+ type: z$1.ZodLiteral<"System">;
214516
+ onBehalfOfUserId: z$1.ZodString;
214517
+ }, "strip", z$1.ZodTypeAny, {
214518
+ type: "System";
214519
+ onBehalfOfUserId: string;
214520
+ }, {
214521
+ type: "System";
214522
+ onBehalfOfUserId: string;
214523
+ }>]>;
214524
+ body: z$1.ZodString;
214525
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214526
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214527
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214528
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214529
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214530
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214531
+ }, "strip", z$1.ZodTypeAny, {
214532
+ iterationId?: string | undefined;
214533
+ }, {
214534
+ iterationId?: string | undefined;
214535
+ }>>;
214536
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214537
+ createdAt: z$1.ZodString;
214538
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214539
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z$1.ZodTypeAny, {
214540
+ id: string;
214541
+ body: string;
214542
+ isPrompt?: boolean | undefined;
214543
+ startsNewThread?: boolean | undefined;
214544
+ parentMessageId?: string | undefined;
214545
+ attachments?: {
214546
+ iterationId?: string | undefined;
214547
+ } | undefined;
214548
+ }, {
214549
+ id: string;
214550
+ body: string;
214551
+ isPrompt?: boolean | undefined;
214552
+ startsNewThread?: boolean | undefined;
214553
+ parentMessageId?: string | undefined;
214554
+ attachments?: {
214555
+ iterationId?: string | undefined;
214556
+ } | undefined;
214557
+ }>;
214558
+ }, "strip", z$1.ZodTypeAny, {
214559
+ id: string;
214560
+ description: string;
214561
+ initialMessage: {
214562
+ id: string;
214563
+ body: string;
214564
+ isPrompt?: boolean | undefined;
214565
+ startsNewThread?: boolean | undefined;
214566
+ parentMessageId?: string | undefined;
214567
+ attachments?: {
214568
+ iterationId?: string | undefined;
214569
+ } | undefined;
214570
+ };
214571
+ name?: string | undefined;
214572
+ sectionId?: string | undefined;
214573
+ afterFeatureId?: string | null | undefined;
214574
+ }, {
214575
+ id: string;
214576
+ description: string;
214577
+ initialMessage: {
214578
+ id: string;
214579
+ body: string;
214580
+ isPrompt?: boolean | undefined;
214581
+ startsNewThread?: boolean | undefined;
214582
+ parentMessageId?: string | undefined;
214583
+ attachments?: {
214584
+ iterationId?: string | undefined;
214585
+ } | undefined;
214586
+ };
214587
+ name?: string | undefined;
214588
+ sectionId?: string | undefined;
214589
+ afterFeatureId?: string | null | undefined;
214590
+ }>>;
214591
+ initialArtifact: z$1.ZodOptional<z$1.ZodObject<{
214592
+ id: z$1.ZodString;
214593
+ title: z$1.ZodString;
214594
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214595
+ afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214596
+ initialMessage: z$1.ZodOptional<z$1.ZodObject<Pick<{
214597
+ id: z$1.ZodString;
214598
+ threadId: z$1.ZodString;
214599
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214600
+ type: z$1.ZodLiteral<"User">;
214601
+ userId: z$1.ZodString;
214602
+ }, "strip", z$1.ZodTypeAny, {
214603
+ type: "User";
214604
+ userId: string;
214605
+ }, {
214606
+ type: "User";
214607
+ userId: string;
214608
+ }>, z$1.ZodObject<{
214609
+ type: z$1.ZodLiteral<"Agent">;
214610
+ agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
214611
+ }, "strip", z$1.ZodTypeAny, {
214612
+ type: "Agent";
214613
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
214614
+ }, {
214615
+ type: "Agent";
214616
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
214617
+ }>, z$1.ZodObject<{
214618
+ type: z$1.ZodLiteral<"System">;
214619
+ onBehalfOfUserId: z$1.ZodString;
214620
+ }, "strip", z$1.ZodTypeAny, {
214621
+ type: "System";
214622
+ onBehalfOfUserId: string;
214623
+ }, {
214624
+ type: "System";
214625
+ onBehalfOfUserId: string;
214626
+ }>]>;
214627
+ body: z$1.ZodString;
214628
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214629
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214630
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214631
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214632
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214633
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214634
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
214635
+ id: z$1.ZodString;
214636
+ name: z$1.ZodString;
214637
+ deduplicationKey: z$1.ZodString;
214638
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
214639
+ storagePath: z$1.ZodString;
214640
+ url: z$1.ZodString;
214641
+ size: z$1.ZodNumber;
214642
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214643
+ type: z$1.ZodLiteral<"UserUpload">;
214644
+ userId: z$1.ZodString;
214645
+ }, "strip", z$1.ZodTypeAny, {
214646
+ type: "UserUpload";
214647
+ userId: string;
214648
+ }, {
214649
+ type: "UserUpload";
214650
+ userId: string;
214651
+ }>, z$1.ZodObject<{
214652
+ type: z$1.ZodLiteral<"Figma">;
214653
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
214654
+ }, "strip", z$1.ZodTypeAny, {
214655
+ type: "Figma";
214656
+ renderMode: "Image" | "HTML";
214657
+ }, {
214658
+ type: "Figma";
214659
+ renderMode: "Image" | "HTML";
214660
+ }>]>>;
214661
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
214662
+ id: string;
214663
+ url: string;
214664
+ source?: {
214665
+ type: "UserUpload";
214666
+ userId: string;
214667
+ } | {
214668
+ type: "Figma";
214669
+ renderMode: "Image" | "HTML";
214670
+ } | undefined;
214671
+ }, {
214672
+ id: string;
214673
+ url: string;
214674
+ source?: {
214675
+ type: "UserUpload";
214676
+ userId: string;
214677
+ } | {
214678
+ type: "Figma";
214679
+ renderMode: "Image" | "HTML";
214680
+ } | undefined;
214681
+ }>, "many">>;
214682
+ }, "strip", z$1.ZodTypeAny, {
214683
+ files?: {
214684
+ id: string;
214685
+ url: string;
214686
+ source?: {
214687
+ type: "UserUpload";
214688
+ userId: string;
214689
+ } | {
214690
+ type: "Figma";
214691
+ renderMode: "Image" | "HTML";
214692
+ } | undefined;
214693
+ }[] | undefined;
214694
+ iterationId?: string | undefined;
214695
+ }, {
214696
+ files?: {
214697
+ id: string;
214698
+ url: string;
214699
+ source?: {
214700
+ type: "UserUpload";
214701
+ userId: string;
214702
+ } | {
214703
+ type: "Figma";
214704
+ renderMode: "Image" | "HTML";
214705
+ } | undefined;
214706
+ }[] | undefined;
214707
+ iterationId?: string | undefined;
214708
+ }>>;
214709
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214710
+ createdAt: z$1.ZodString;
214711
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214712
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
214713
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214714
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214715
+ fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
214716
+ }, "strip", z$1.ZodTypeAny, {
214717
+ fileIds?: string[] | undefined;
214718
+ iterationId?: string | undefined;
214719
+ }, {
214720
+ fileIds?: string[] | undefined;
214721
+ iterationId?: string | undefined;
214722
+ }>>;
214723
+ }, "strip", z$1.ZodTypeAny, {
214724
+ id: string;
214725
+ body: string;
214726
+ isPrompt?: boolean | undefined;
214727
+ startsNewThread?: boolean | undefined;
214728
+ parentMessageId?: string | undefined;
214729
+ attachments?: {
214730
+ fileIds?: string[] | undefined;
214731
+ iterationId?: string | undefined;
214732
+ } | undefined;
214733
+ }, {
214734
+ id: string;
214735
+ body: string;
214736
+ isPrompt?: boolean | undefined;
214737
+ startsNewThread?: boolean | undefined;
214738
+ parentMessageId?: string | undefined;
214739
+ attachments?: {
214740
+ fileIds?: string[] | undefined;
214741
+ iterationId?: string | undefined;
214742
+ } | undefined;
214743
+ }>>;
214744
+ }, "strip", z$1.ZodTypeAny, {
214745
+ id: string;
214746
+ title: string;
214747
+ sectionId?: string | undefined;
214748
+ afterArtifactId?: string | null | undefined;
214749
+ initialMessage?: {
214750
+ id: string;
214751
+ body: string;
214752
+ isPrompt?: boolean | undefined;
214753
+ startsNewThread?: boolean | undefined;
214754
+ parentMessageId?: string | undefined;
214755
+ attachments?: {
214756
+ fileIds?: string[] | undefined;
214757
+ iterationId?: string | undefined;
214758
+ } | undefined;
214759
+ } | undefined;
214760
+ }, {
214761
+ id: string;
214762
+ title: string;
214763
+ sectionId?: string | undefined;
214764
+ afterArtifactId?: string | null | undefined;
214765
+ initialMessage?: {
214766
+ id: string;
214767
+ body: string;
214768
+ isPrompt?: boolean | undefined;
214769
+ startsNewThread?: boolean | undefined;
214770
+ parentMessageId?: string | undefined;
214771
+ attachments?: {
214772
+ fileIds?: string[] | undefined;
214773
+ iterationId?: string | undefined;
214774
+ } | undefined;
214775
+ } | undefined;
214776
+ }>>;
213890
214777
  }, "strip", z$1.ZodTypeAny, {
213891
214778
  name: string;
213892
214779
  meta: {
@@ -213905,6 +214792,40 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
213905
214792
  role: "Admin" | "Viewer" | "Builder";
213906
214793
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
213907
214794
  }[] | undefined;
214795
+ initialFeature?: {
214796
+ id: string;
214797
+ description: string;
214798
+ initialMessage: {
214799
+ id: string;
214800
+ body: string;
214801
+ isPrompt?: boolean | undefined;
214802
+ startsNewThread?: boolean | undefined;
214803
+ parentMessageId?: string | undefined;
214804
+ attachments?: {
214805
+ iterationId?: string | undefined;
214806
+ } | undefined;
214807
+ };
214808
+ name?: string | undefined;
214809
+ sectionId?: string | undefined;
214810
+ afterFeatureId?: string | null | undefined;
214811
+ } | undefined;
214812
+ initialArtifact?: {
214813
+ id: string;
214814
+ title: string;
214815
+ sectionId?: string | undefined;
214816
+ afterArtifactId?: string | null | undefined;
214817
+ initialMessage?: {
214818
+ id: string;
214819
+ body: string;
214820
+ isPrompt?: boolean | undefined;
214821
+ startsNewThread?: boolean | undefined;
214822
+ parentMessageId?: string | undefined;
214823
+ attachments?: {
214824
+ fileIds?: string[] | undefined;
214825
+ iterationId?: string | undefined;
214826
+ } | undefined;
214827
+ } | undefined;
214828
+ } | undefined;
213908
214829
  }, {
213909
214830
  name: string;
213910
214831
  meta: {
@@ -213923,6 +214844,40 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
213923
214844
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
213924
214845
  }[] | undefined;
213925
214846
  defaultRole?: "Viewer" | "Builder" | undefined;
214847
+ initialFeature?: {
214848
+ id: string;
214849
+ description: string;
214850
+ initialMessage: {
214851
+ id: string;
214852
+ body: string;
214853
+ isPrompt?: boolean | undefined;
214854
+ startsNewThread?: boolean | undefined;
214855
+ parentMessageId?: string | undefined;
214856
+ attachments?: {
214857
+ iterationId?: string | undefined;
214858
+ } | undefined;
214859
+ };
214860
+ name?: string | undefined;
214861
+ sectionId?: string | undefined;
214862
+ afterFeatureId?: string | null | undefined;
214863
+ } | undefined;
214864
+ initialArtifact?: {
214865
+ id: string;
214866
+ title: string;
214867
+ sectionId?: string | undefined;
214868
+ afterArtifactId?: string | null | undefined;
214869
+ initialMessage?: {
214870
+ id: string;
214871
+ body: string;
214872
+ isPrompt?: boolean | undefined;
214873
+ startsNewThread?: boolean | undefined;
214874
+ parentMessageId?: string | undefined;
214875
+ attachments?: {
214876
+ fileIds?: string[] | undefined;
214877
+ iterationId?: string | undefined;
214878
+ } | undefined;
214879
+ } | undefined;
214880
+ } | undefined;
213926
214881
  }>;
213927
214882
  type DTOForgeProjectCreate = z$1.infer<typeof DTOForgeProjectCreate>;
213928
214883
  declare const DTOForgeProjectUpdate: z$1.ZodObject<{
@@ -213944,6 +214899,292 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
213944
214899
  fpContextId: z$1.ZodOptional<z$1.ZodString>;
213945
214900
  instruction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
213946
214901
  defaultRole: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<["Viewer", "Builder"]>>>;
214902
+ initialFeature: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
214903
+ id: z$1.ZodString;
214904
+ name: z$1.ZodOptional<z$1.ZodString>;
214905
+ description: z$1.ZodString;
214906
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
214907
+ afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
214908
+ initialMessage: z$1.ZodObject<Pick<{
214909
+ id: z$1.ZodString;
214910
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
214911
+ type: z$1.ZodLiteral<"User">;
214912
+ userId: z$1.ZodString;
214913
+ }, "strip", z$1.ZodTypeAny, {
214914
+ type: "User";
214915
+ userId: string;
214916
+ }, {
214917
+ type: "User";
214918
+ userId: string;
214919
+ }>, z$1.ZodObject<{
214920
+ type: z$1.ZodLiteral<"Agent">;
214921
+ }, "strip", z$1.ZodTypeAny, {
214922
+ type: "Agent";
214923
+ }, {
214924
+ type: "Agent";
214925
+ }>, z$1.ZodObject<{
214926
+ type: z$1.ZodLiteral<"System">;
214927
+ onBehalfOfUserId: z$1.ZodString;
214928
+ }, "strip", z$1.ZodTypeAny, {
214929
+ type: "System";
214930
+ onBehalfOfUserId: string;
214931
+ }, {
214932
+ type: "System";
214933
+ onBehalfOfUserId: string;
214934
+ }>]>;
214935
+ body: z$1.ZodString;
214936
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
214937
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
214938
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
214939
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
214940
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
214941
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
214942
+ }, "strip", z$1.ZodTypeAny, {
214943
+ iterationId?: string | undefined;
214944
+ }, {
214945
+ iterationId?: string | undefined;
214946
+ }>>;
214947
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
214948
+ createdAt: z$1.ZodString;
214949
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
214950
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z$1.ZodTypeAny, {
214951
+ id: string;
214952
+ body: string;
214953
+ isPrompt?: boolean | undefined;
214954
+ startsNewThread?: boolean | undefined;
214955
+ parentMessageId?: string | undefined;
214956
+ attachments?: {
214957
+ iterationId?: string | undefined;
214958
+ } | undefined;
214959
+ }, {
214960
+ id: string;
214961
+ body: string;
214962
+ isPrompt?: boolean | undefined;
214963
+ startsNewThread?: boolean | undefined;
214964
+ parentMessageId?: string | undefined;
214965
+ attachments?: {
214966
+ iterationId?: string | undefined;
214967
+ } | undefined;
214968
+ }>;
214969
+ }, "strip", z$1.ZodTypeAny, {
214970
+ id: string;
214971
+ description: string;
214972
+ initialMessage: {
214973
+ id: string;
214974
+ body: string;
214975
+ isPrompt?: boolean | undefined;
214976
+ startsNewThread?: boolean | undefined;
214977
+ parentMessageId?: string | undefined;
214978
+ attachments?: {
214979
+ iterationId?: string | undefined;
214980
+ } | undefined;
214981
+ };
214982
+ name?: string | undefined;
214983
+ sectionId?: string | undefined;
214984
+ afterFeatureId?: string | null | undefined;
214985
+ }, {
214986
+ id: string;
214987
+ description: string;
214988
+ initialMessage: {
214989
+ id: string;
214990
+ body: string;
214991
+ isPrompt?: boolean | undefined;
214992
+ startsNewThread?: boolean | undefined;
214993
+ parentMessageId?: string | undefined;
214994
+ attachments?: {
214995
+ iterationId?: string | undefined;
214996
+ } | undefined;
214997
+ };
214998
+ name?: string | undefined;
214999
+ sectionId?: string | undefined;
215000
+ afterFeatureId?: string | null | undefined;
215001
+ }>>>;
215002
+ initialArtifact: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
215003
+ id: z$1.ZodString;
215004
+ title: z$1.ZodString;
215005
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
215006
+ afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
215007
+ initialMessage: z$1.ZodOptional<z$1.ZodObject<Pick<{
215008
+ id: z$1.ZodString;
215009
+ threadId: z$1.ZodString;
215010
+ sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
215011
+ type: z$1.ZodLiteral<"User">;
215012
+ userId: z$1.ZodString;
215013
+ }, "strip", z$1.ZodTypeAny, {
215014
+ type: "User";
215015
+ userId: string;
215016
+ }, {
215017
+ type: "User";
215018
+ userId: string;
215019
+ }>, z$1.ZodObject<{
215020
+ type: z$1.ZodLiteral<"Agent">;
215021
+ agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
215022
+ }, "strip", z$1.ZodTypeAny, {
215023
+ type: "Agent";
215024
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
215025
+ }, {
215026
+ type: "Agent";
215027
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
215028
+ }>, z$1.ZodObject<{
215029
+ type: z$1.ZodLiteral<"System">;
215030
+ onBehalfOfUserId: z$1.ZodString;
215031
+ }, "strip", z$1.ZodTypeAny, {
215032
+ type: "System";
215033
+ onBehalfOfUserId: string;
215034
+ }, {
215035
+ type: "System";
215036
+ onBehalfOfUserId: string;
215037
+ }>]>;
215038
+ body: z$1.ZodString;
215039
+ isPrompt: z$1.ZodOptional<z$1.ZodBoolean>;
215040
+ startsNewThread: z$1.ZodOptional<z$1.ZodBoolean>;
215041
+ parentMessageId: z$1.ZodOptional<z$1.ZodString>;
215042
+ agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
215043
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
215044
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
215045
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
215046
+ id: z$1.ZodString;
215047
+ name: z$1.ZodString;
215048
+ deduplicationKey: z$1.ZodString;
215049
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
215050
+ storagePath: z$1.ZodString;
215051
+ url: z$1.ZodString;
215052
+ size: z$1.ZodNumber;
215053
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
215054
+ type: z$1.ZodLiteral<"UserUpload">;
215055
+ userId: z$1.ZodString;
215056
+ }, "strip", z$1.ZodTypeAny, {
215057
+ type: "UserUpload";
215058
+ userId: string;
215059
+ }, {
215060
+ type: "UserUpload";
215061
+ userId: string;
215062
+ }>, z$1.ZodObject<{
215063
+ type: z$1.ZodLiteral<"Figma">;
215064
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
215065
+ }, "strip", z$1.ZodTypeAny, {
215066
+ type: "Figma";
215067
+ renderMode: "Image" | "HTML";
215068
+ }, {
215069
+ type: "Figma";
215070
+ renderMode: "Image" | "HTML";
215071
+ }>]>>;
215072
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
215073
+ id: string;
215074
+ url: string;
215075
+ source?: {
215076
+ type: "UserUpload";
215077
+ userId: string;
215078
+ } | {
215079
+ type: "Figma";
215080
+ renderMode: "Image" | "HTML";
215081
+ } | undefined;
215082
+ }, {
215083
+ id: string;
215084
+ url: string;
215085
+ source?: {
215086
+ type: "UserUpload";
215087
+ userId: string;
215088
+ } | {
215089
+ type: "Figma";
215090
+ renderMode: "Image" | "HTML";
215091
+ } | undefined;
215092
+ }>, "many">>;
215093
+ }, "strip", z$1.ZodTypeAny, {
215094
+ files?: {
215095
+ id: string;
215096
+ url: string;
215097
+ source?: {
215098
+ type: "UserUpload";
215099
+ userId: string;
215100
+ } | {
215101
+ type: "Figma";
215102
+ renderMode: "Image" | "HTML";
215103
+ } | undefined;
215104
+ }[] | undefined;
215105
+ iterationId?: string | undefined;
215106
+ }, {
215107
+ files?: {
215108
+ id: string;
215109
+ url: string;
215110
+ source?: {
215111
+ type: "UserUpload";
215112
+ userId: string;
215113
+ } | {
215114
+ type: "Figma";
215115
+ renderMode: "Image" | "HTML";
215116
+ } | undefined;
215117
+ }[] | undefined;
215118
+ iterationId?: string | undefined;
215119
+ }>>;
215120
+ replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
215121
+ createdAt: z$1.ZodString;
215122
+ updatedAt: z$1.ZodOptional<z$1.ZodString>;
215123
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
215124
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
215125
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
215126
+ fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
215127
+ }, "strip", z$1.ZodTypeAny, {
215128
+ fileIds?: string[] | undefined;
215129
+ iterationId?: string | undefined;
215130
+ }, {
215131
+ fileIds?: string[] | undefined;
215132
+ iterationId?: string | undefined;
215133
+ }>>;
215134
+ }, "strip", z$1.ZodTypeAny, {
215135
+ id: string;
215136
+ body: string;
215137
+ isPrompt?: boolean | undefined;
215138
+ startsNewThread?: boolean | undefined;
215139
+ parentMessageId?: string | undefined;
215140
+ attachments?: {
215141
+ fileIds?: string[] | undefined;
215142
+ iterationId?: string | undefined;
215143
+ } | undefined;
215144
+ }, {
215145
+ id: string;
215146
+ body: string;
215147
+ isPrompt?: boolean | undefined;
215148
+ startsNewThread?: boolean | undefined;
215149
+ parentMessageId?: string | undefined;
215150
+ attachments?: {
215151
+ fileIds?: string[] | undefined;
215152
+ iterationId?: string | undefined;
215153
+ } | undefined;
215154
+ }>>;
215155
+ }, "strip", z$1.ZodTypeAny, {
215156
+ id: string;
215157
+ title: string;
215158
+ sectionId?: string | undefined;
215159
+ afterArtifactId?: string | null | undefined;
215160
+ initialMessage?: {
215161
+ id: string;
215162
+ body: string;
215163
+ isPrompt?: boolean | undefined;
215164
+ startsNewThread?: boolean | undefined;
215165
+ parentMessageId?: string | undefined;
215166
+ attachments?: {
215167
+ fileIds?: string[] | undefined;
215168
+ iterationId?: string | undefined;
215169
+ } | undefined;
215170
+ } | undefined;
215171
+ }, {
215172
+ id: string;
215173
+ title: string;
215174
+ sectionId?: string | undefined;
215175
+ afterArtifactId?: string | null | undefined;
215176
+ initialMessage?: {
215177
+ id: string;
215178
+ body: string;
215179
+ isPrompt?: boolean | undefined;
215180
+ startsNewThread?: boolean | undefined;
215181
+ parentMessageId?: string | undefined;
215182
+ attachments?: {
215183
+ fileIds?: string[] | undefined;
215184
+ iterationId?: string | undefined;
215185
+ } | undefined;
215186
+ } | undefined;
215187
+ }>>>;
213947
215188
  } & {
213948
215189
  id: z$1.ZodString;
213949
215190
  }, "strip", z$1.ZodTypeAny, {
@@ -213960,6 +215201,40 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
213960
215201
  fpContextId?: string | undefined;
213961
215202
  instruction?: string | null | undefined;
213962
215203
  defaultRole?: "Viewer" | "Builder" | undefined;
215204
+ initialFeature?: {
215205
+ id: string;
215206
+ description: string;
215207
+ initialMessage: {
215208
+ id: string;
215209
+ body: string;
215210
+ isPrompt?: boolean | undefined;
215211
+ startsNewThread?: boolean | undefined;
215212
+ parentMessageId?: string | undefined;
215213
+ attachments?: {
215214
+ iterationId?: string | undefined;
215215
+ } | undefined;
215216
+ };
215217
+ name?: string | undefined;
215218
+ sectionId?: string | undefined;
215219
+ afterFeatureId?: string | null | undefined;
215220
+ } | undefined;
215221
+ initialArtifact?: {
215222
+ id: string;
215223
+ title: string;
215224
+ sectionId?: string | undefined;
215225
+ afterArtifactId?: string | null | undefined;
215226
+ initialMessage?: {
215227
+ id: string;
215228
+ body: string;
215229
+ isPrompt?: boolean | undefined;
215230
+ startsNewThread?: boolean | undefined;
215231
+ parentMessageId?: string | undefined;
215232
+ attachments?: {
215233
+ fileIds?: string[] | undefined;
215234
+ iterationId?: string | undefined;
215235
+ } | undefined;
215236
+ } | undefined;
215237
+ } | undefined;
213963
215238
  }, {
213964
215239
  id: string;
213965
215240
  name?: string | undefined;
@@ -213974,6 +215249,40 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
213974
215249
  fpContextId?: string | undefined;
213975
215250
  instruction?: string | null | undefined;
213976
215251
  defaultRole?: "Viewer" | "Builder" | undefined;
215252
+ initialFeature?: {
215253
+ id: string;
215254
+ description: string;
215255
+ initialMessage: {
215256
+ id: string;
215257
+ body: string;
215258
+ isPrompt?: boolean | undefined;
215259
+ startsNewThread?: boolean | undefined;
215260
+ parentMessageId?: string | undefined;
215261
+ attachments?: {
215262
+ iterationId?: string | undefined;
215263
+ } | undefined;
215264
+ };
215265
+ name?: string | undefined;
215266
+ sectionId?: string | undefined;
215267
+ afterFeatureId?: string | null | undefined;
215268
+ } | undefined;
215269
+ initialArtifact?: {
215270
+ id: string;
215271
+ title: string;
215272
+ sectionId?: string | undefined;
215273
+ afterArtifactId?: string | null | undefined;
215274
+ initialMessage?: {
215275
+ id: string;
215276
+ body: string;
215277
+ isPrompt?: boolean | undefined;
215278
+ startsNewThread?: boolean | undefined;
215279
+ parentMessageId?: string | undefined;
215280
+ attachments?: {
215281
+ fileIds?: string[] | undefined;
215282
+ iterationId?: string | undefined;
215283
+ } | undefined;
215284
+ } | undefined;
215285
+ } | undefined;
213977
215286
  }>;
213978
215287
  type DTOForgeProjectUpdate = z$1.infer<typeof DTOForgeProjectUpdate>;
213979
215288
  declare const DTOForgeProjectRemoveResponse: z$1.ZodObject<{
@@ -233862,26 +235171,78 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233862
235171
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
233863
235172
  attachments: z__default.ZodOptional<z__default.ZodObject<{
233864
235173
  iterationId: z__default.ZodOptional<z__default.ZodString>;
233865
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
233866
- fileId: z__default.ZodString;
233867
- fileUrl: z__default.ZodString;
233868
- }, "strip", z__default.ZodTypeAny, {
233869
- fileId: string;
233870
- fileUrl: string;
235174
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235175
+ id: z__default.ZodString;
235176
+ name: z__default.ZodString;
235177
+ deduplicationKey: z__default.ZodString;
235178
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235179
+ storagePath: z__default.ZodString;
235180
+ url: z__default.ZodString;
235181
+ size: z__default.ZodNumber;
235182
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235183
+ type: z__default.ZodLiteral<"UserUpload">;
235184
+ userId: z__default.ZodString;
235185
+ }, "strip", z__default.ZodTypeAny, {
235186
+ type: "UserUpload";
235187
+ userId: string;
235188
+ }, {
235189
+ type: "UserUpload";
235190
+ userId: string;
235191
+ }>, z__default.ZodObject<{
235192
+ type: z__default.ZodLiteral<"Figma">;
235193
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235194
+ }, "strip", z__default.ZodTypeAny, {
235195
+ type: "Figma";
235196
+ renderMode: "Image" | "HTML";
235197
+ }, {
235198
+ type: "Figma";
235199
+ renderMode: "Image" | "HTML";
235200
+ }>]>>;
235201
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235202
+ id: string;
235203
+ url: string;
235204
+ source?: {
235205
+ type: "UserUpload";
235206
+ userId: string;
235207
+ } | {
235208
+ type: "Figma";
235209
+ renderMode: "Image" | "HTML";
235210
+ } | undefined;
233871
235211
  }, {
233872
- fileId: string;
233873
- fileUrl: string;
235212
+ id: string;
235213
+ url: string;
235214
+ source?: {
235215
+ type: "UserUpload";
235216
+ userId: string;
235217
+ } | {
235218
+ type: "Figma";
235219
+ renderMode: "Image" | "HTML";
235220
+ } | undefined;
233874
235221
  }>, "many">>;
233875
235222
  }, "strip", z__default.ZodTypeAny, {
233876
235223
  files?: {
233877
- fileId: string;
233878
- fileUrl: string;
235224
+ id: string;
235225
+ url: string;
235226
+ source?: {
235227
+ type: "UserUpload";
235228
+ userId: string;
235229
+ } | {
235230
+ type: "Figma";
235231
+ renderMode: "Image" | "HTML";
235232
+ } | undefined;
233879
235233
  }[] | undefined;
233880
235234
  iterationId?: string | undefined;
233881
235235
  }, {
233882
235236
  files?: {
233883
- fileId: string;
233884
- fileUrl: string;
235237
+ id: string;
235238
+ url: string;
235239
+ source?: {
235240
+ type: "UserUpload";
235241
+ userId: string;
235242
+ } | {
235243
+ type: "Figma";
235244
+ renderMode: "Image" | "HTML";
235245
+ } | undefined;
233885
235246
  }[] | undefined;
233886
235247
  iterationId?: string | undefined;
233887
235248
  }>>;
@@ -233913,8 +235274,15 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233913
235274
  agentResponseTrackerId?: string | null | undefined;
233914
235275
  attachments?: {
233915
235276
  files?: {
233916
- fileId: string;
233917
- fileUrl: string;
235277
+ id: string;
235278
+ url: string;
235279
+ source?: {
235280
+ type: "UserUpload";
235281
+ userId: string;
235282
+ } | {
235283
+ type: "Figma";
235284
+ renderMode: "Image" | "HTML";
235285
+ } | undefined;
233918
235286
  }[] | undefined;
233919
235287
  iterationId?: string | undefined;
233920
235288
  } | undefined;
@@ -233941,8 +235309,15 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233941
235309
  agentResponseTrackerId?: string | null | undefined;
233942
235310
  attachments?: {
233943
235311
  files?: {
233944
- fileId: string;
233945
- fileUrl: string;
235312
+ id: string;
235313
+ url: string;
235314
+ source?: {
235315
+ type: "UserUpload";
235316
+ userId: string;
235317
+ } | {
235318
+ type: "Figma";
235319
+ renderMode: "Image" | "HTML";
235320
+ } | undefined;
233946
235321
  }[] | undefined;
233947
235322
  iterationId?: string | undefined;
233948
235323
  } | undefined;
@@ -233951,26 +235326,78 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233951
235326
  type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
233952
235327
  declare const DTOThreadMessageAttachments: z__default.ZodObject<{
233953
235328
  iterationId: z__default.ZodOptional<z__default.ZodString>;
233954
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
233955
- fileId: z__default.ZodString;
233956
- fileUrl: z__default.ZodString;
233957
- }, "strip", z__default.ZodTypeAny, {
233958
- fileId: string;
233959
- fileUrl: string;
235329
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235330
+ id: z__default.ZodString;
235331
+ name: z__default.ZodString;
235332
+ deduplicationKey: z__default.ZodString;
235333
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235334
+ storagePath: z__default.ZodString;
235335
+ url: z__default.ZodString;
235336
+ size: z__default.ZodNumber;
235337
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235338
+ type: z__default.ZodLiteral<"UserUpload">;
235339
+ userId: z__default.ZodString;
235340
+ }, "strip", z__default.ZodTypeAny, {
235341
+ type: "UserUpload";
235342
+ userId: string;
235343
+ }, {
235344
+ type: "UserUpload";
235345
+ userId: string;
235346
+ }>, z__default.ZodObject<{
235347
+ type: z__default.ZodLiteral<"Figma">;
235348
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235349
+ }, "strip", z__default.ZodTypeAny, {
235350
+ type: "Figma";
235351
+ renderMode: "Image" | "HTML";
235352
+ }, {
235353
+ type: "Figma";
235354
+ renderMode: "Image" | "HTML";
235355
+ }>]>>;
235356
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235357
+ id: string;
235358
+ url: string;
235359
+ source?: {
235360
+ type: "UserUpload";
235361
+ userId: string;
235362
+ } | {
235363
+ type: "Figma";
235364
+ renderMode: "Image" | "HTML";
235365
+ } | undefined;
233960
235366
  }, {
233961
- fileId: string;
233962
- fileUrl: string;
235367
+ id: string;
235368
+ url: string;
235369
+ source?: {
235370
+ type: "UserUpload";
235371
+ userId: string;
235372
+ } | {
235373
+ type: "Figma";
235374
+ renderMode: "Image" | "HTML";
235375
+ } | undefined;
233963
235376
  }>, "many">>;
233964
235377
  }, "strip", z__default.ZodTypeAny, {
233965
235378
  files?: {
233966
- fileId: string;
233967
- fileUrl: string;
235379
+ id: string;
235380
+ url: string;
235381
+ source?: {
235382
+ type: "UserUpload";
235383
+ userId: string;
235384
+ } | {
235385
+ type: "Figma";
235386
+ renderMode: "Image" | "HTML";
235387
+ } | undefined;
233968
235388
  }[] | undefined;
233969
235389
  iterationId?: string | undefined;
233970
235390
  }, {
233971
235391
  files?: {
233972
- fileId: string;
233973
- fileUrl: string;
235392
+ id: string;
235393
+ url: string;
235394
+ source?: {
235395
+ type: "UserUpload";
235396
+ userId: string;
235397
+ } | {
235398
+ type: "Figma";
235399
+ renderMode: "Image" | "HTML";
235400
+ } | undefined;
233974
235401
  }[] | undefined;
233975
235402
  iterationId?: string | undefined;
233976
235403
  }>;
@@ -234062,26 +235489,78 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
234062
235489
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234063
235490
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234064
235491
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234065
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234066
- fileId: z__default.ZodString;
234067
- fileUrl: z__default.ZodString;
234068
- }, "strip", z__default.ZodTypeAny, {
234069
- fileId: string;
234070
- fileUrl: string;
235492
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235493
+ id: z__default.ZodString;
235494
+ name: z__default.ZodString;
235495
+ deduplicationKey: z__default.ZodString;
235496
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235497
+ storagePath: z__default.ZodString;
235498
+ url: z__default.ZodString;
235499
+ size: z__default.ZodNumber;
235500
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235501
+ type: z__default.ZodLiteral<"UserUpload">;
235502
+ userId: z__default.ZodString;
235503
+ }, "strip", z__default.ZodTypeAny, {
235504
+ type: "UserUpload";
235505
+ userId: string;
235506
+ }, {
235507
+ type: "UserUpload";
235508
+ userId: string;
235509
+ }>, z__default.ZodObject<{
235510
+ type: z__default.ZodLiteral<"Figma">;
235511
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235512
+ }, "strip", z__default.ZodTypeAny, {
235513
+ type: "Figma";
235514
+ renderMode: "Image" | "HTML";
235515
+ }, {
235516
+ type: "Figma";
235517
+ renderMode: "Image" | "HTML";
235518
+ }>]>>;
235519
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235520
+ id: string;
235521
+ url: string;
235522
+ source?: {
235523
+ type: "UserUpload";
235524
+ userId: string;
235525
+ } | {
235526
+ type: "Figma";
235527
+ renderMode: "Image" | "HTML";
235528
+ } | undefined;
234071
235529
  }, {
234072
- fileId: string;
234073
- fileUrl: string;
235530
+ id: string;
235531
+ url: string;
235532
+ source?: {
235533
+ type: "UserUpload";
235534
+ userId: string;
235535
+ } | {
235536
+ type: "Figma";
235537
+ renderMode: "Image" | "HTML";
235538
+ } | undefined;
234074
235539
  }>, "many">>;
234075
235540
  }, "strip", z__default.ZodTypeAny, {
234076
235541
  files?: {
234077
- fileId: string;
234078
- fileUrl: string;
235542
+ id: string;
235543
+ url: string;
235544
+ source?: {
235545
+ type: "UserUpload";
235546
+ userId: string;
235547
+ } | {
235548
+ type: "Figma";
235549
+ renderMode: "Image" | "HTML";
235550
+ } | undefined;
234079
235551
  }[] | undefined;
234080
235552
  iterationId?: string | undefined;
234081
235553
  }, {
234082
235554
  files?: {
234083
- fileId: string;
234084
- fileUrl: string;
235555
+ id: string;
235556
+ url: string;
235557
+ source?: {
235558
+ type: "UserUpload";
235559
+ userId: string;
235560
+ } | {
235561
+ type: "Figma";
235562
+ renderMode: "Image" | "HTML";
235563
+ } | undefined;
234085
235564
  }[] | undefined;
234086
235565
  iterationId?: string | undefined;
234087
235566
  }>>;
@@ -234181,26 +235660,78 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234181
235660
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234182
235661
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234183
235662
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234184
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234185
- fileId: z__default.ZodString;
234186
- fileUrl: z__default.ZodString;
234187
- }, "strip", z__default.ZodTypeAny, {
234188
- fileId: string;
234189
- fileUrl: string;
235663
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235664
+ id: z__default.ZodString;
235665
+ name: z__default.ZodString;
235666
+ deduplicationKey: z__default.ZodString;
235667
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235668
+ storagePath: z__default.ZodString;
235669
+ url: z__default.ZodString;
235670
+ size: z__default.ZodNumber;
235671
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235672
+ type: z__default.ZodLiteral<"UserUpload">;
235673
+ userId: z__default.ZodString;
235674
+ }, "strip", z__default.ZodTypeAny, {
235675
+ type: "UserUpload";
235676
+ userId: string;
235677
+ }, {
235678
+ type: "UserUpload";
235679
+ userId: string;
235680
+ }>, z__default.ZodObject<{
235681
+ type: z__default.ZodLiteral<"Figma">;
235682
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235683
+ }, "strip", z__default.ZodTypeAny, {
235684
+ type: "Figma";
235685
+ renderMode: "Image" | "HTML";
235686
+ }, {
235687
+ type: "Figma";
235688
+ renderMode: "Image" | "HTML";
235689
+ }>]>>;
235690
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235691
+ id: string;
235692
+ url: string;
235693
+ source?: {
235694
+ type: "UserUpload";
235695
+ userId: string;
235696
+ } | {
235697
+ type: "Figma";
235698
+ renderMode: "Image" | "HTML";
235699
+ } | undefined;
234190
235700
  }, {
234191
- fileId: string;
234192
- fileUrl: string;
235701
+ id: string;
235702
+ url: string;
235703
+ source?: {
235704
+ type: "UserUpload";
235705
+ userId: string;
235706
+ } | {
235707
+ type: "Figma";
235708
+ renderMode: "Image" | "HTML";
235709
+ } | undefined;
234193
235710
  }>, "many">>;
234194
235711
  }, "strip", z__default.ZodTypeAny, {
234195
235712
  files?: {
234196
- fileId: string;
234197
- fileUrl: string;
235713
+ id: string;
235714
+ url: string;
235715
+ source?: {
235716
+ type: "UserUpload";
235717
+ userId: string;
235718
+ } | {
235719
+ type: "Figma";
235720
+ renderMode: "Image" | "HTML";
235721
+ } | undefined;
234198
235722
  }[] | undefined;
234199
235723
  iterationId?: string | undefined;
234200
235724
  }, {
234201
235725
  files?: {
234202
- fileId: string;
234203
- fileUrl: string;
235726
+ id: string;
235727
+ url: string;
235728
+ source?: {
235729
+ type: "UserUpload";
235730
+ userId: string;
235731
+ } | {
235732
+ type: "Figma";
235733
+ renderMode: "Image" | "HTML";
235734
+ } | undefined;
234204
235735
  }[] | undefined;
234205
235736
  iterationId?: string | undefined;
234206
235737
  }>>;
@@ -234214,26 +235745,78 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234214
235745
  body: z__default.ZodOptional<z__default.ZodString>;
234215
235746
  attachments: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodObject<{
234216
235747
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234217
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234218
- fileId: z__default.ZodString;
234219
- fileUrl: z__default.ZodString;
234220
- }, "strip", z__default.ZodTypeAny, {
234221
- fileId: string;
234222
- fileUrl: string;
235748
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235749
+ id: z__default.ZodString;
235750
+ name: z__default.ZodString;
235751
+ deduplicationKey: z__default.ZodString;
235752
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235753
+ storagePath: z__default.ZodString;
235754
+ url: z__default.ZodString;
235755
+ size: z__default.ZodNumber;
235756
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235757
+ type: z__default.ZodLiteral<"UserUpload">;
235758
+ userId: z__default.ZodString;
235759
+ }, "strip", z__default.ZodTypeAny, {
235760
+ type: "UserUpload";
235761
+ userId: string;
235762
+ }, {
235763
+ type: "UserUpload";
235764
+ userId: string;
235765
+ }>, z__default.ZodObject<{
235766
+ type: z__default.ZodLiteral<"Figma">;
235767
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235768
+ }, "strip", z__default.ZodTypeAny, {
235769
+ type: "Figma";
235770
+ renderMode: "Image" | "HTML";
235771
+ }, {
235772
+ type: "Figma";
235773
+ renderMode: "Image" | "HTML";
235774
+ }>]>>;
235775
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235776
+ id: string;
235777
+ url: string;
235778
+ source?: {
235779
+ type: "UserUpload";
235780
+ userId: string;
235781
+ } | {
235782
+ type: "Figma";
235783
+ renderMode: "Image" | "HTML";
235784
+ } | undefined;
234223
235785
  }, {
234224
- fileId: string;
234225
- fileUrl: string;
235786
+ id: string;
235787
+ url: string;
235788
+ source?: {
235789
+ type: "UserUpload";
235790
+ userId: string;
235791
+ } | {
235792
+ type: "Figma";
235793
+ renderMode: "Image" | "HTML";
235794
+ } | undefined;
234226
235795
  }>, "many">>;
234227
235796
  }, "strip", z__default.ZodTypeAny, {
234228
235797
  files?: {
234229
- fileId: string;
234230
- fileUrl: string;
235798
+ id: string;
235799
+ url: string;
235800
+ source?: {
235801
+ type: "UserUpload";
235802
+ userId: string;
235803
+ } | {
235804
+ type: "Figma";
235805
+ renderMode: "Image" | "HTML";
235806
+ } | undefined;
234231
235807
  }[] | undefined;
234232
235808
  iterationId?: string | undefined;
234233
235809
  }, {
234234
235810
  files?: {
234235
- fileId: string;
234236
- fileUrl: string;
235811
+ id: string;
235812
+ url: string;
235813
+ source?: {
235814
+ type: "UserUpload";
235815
+ userId: string;
235816
+ } | {
235817
+ type: "Figma";
235818
+ renderMode: "Image" | "HTML";
235819
+ } | undefined;
234237
235820
  }[] | undefined;
234238
235821
  iterationId?: string | undefined;
234239
235822
  }>>>;
@@ -234244,8 +235827,15 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234244
235827
  agentResponseTrackerId?: string | null | undefined;
234245
235828
  attachments?: {
234246
235829
  files?: {
234247
- fileId: string;
234248
- fileUrl: string;
235830
+ id: string;
235831
+ url: string;
235832
+ source?: {
235833
+ type: "UserUpload";
235834
+ userId: string;
235835
+ } | {
235836
+ type: "Figma";
235837
+ renderMode: "Image" | "HTML";
235838
+ } | undefined;
234249
235839
  }[] | undefined;
234250
235840
  iterationId?: string | undefined;
234251
235841
  } | undefined;
@@ -234255,8 +235845,15 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234255
235845
  agentResponseTrackerId?: string | null | undefined;
234256
235846
  attachments?: {
234257
235847
  files?: {
234258
- fileId: string;
234259
- fileUrl: string;
235848
+ id: string;
235849
+ url: string;
235850
+ source?: {
235851
+ type: "UserUpload";
235852
+ userId: string;
235853
+ } | {
235854
+ type: "Figma";
235855
+ renderMode: "Image" | "HTML";
235856
+ } | undefined;
234260
235857
  }[] | undefined;
234261
235858
  iterationId?: string | undefined;
234262
235859
  } | undefined;
@@ -234342,26 +235939,78 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234342
235939
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234343
235940
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234344
235941
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234345
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234346
- fileId: z__default.ZodString;
234347
- fileUrl: z__default.ZodString;
234348
- }, "strip", z__default.ZodTypeAny, {
234349
- fileId: string;
234350
- fileUrl: string;
235942
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235943
+ id: z__default.ZodString;
235944
+ name: z__default.ZodString;
235945
+ deduplicationKey: z__default.ZodString;
235946
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235947
+ storagePath: z__default.ZodString;
235948
+ url: z__default.ZodString;
235949
+ size: z__default.ZodNumber;
235950
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235951
+ type: z__default.ZodLiteral<"UserUpload">;
235952
+ userId: z__default.ZodString;
235953
+ }, "strip", z__default.ZodTypeAny, {
235954
+ type: "UserUpload";
235955
+ userId: string;
235956
+ }, {
235957
+ type: "UserUpload";
235958
+ userId: string;
235959
+ }>, z__default.ZodObject<{
235960
+ type: z__default.ZodLiteral<"Figma">;
235961
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235962
+ }, "strip", z__default.ZodTypeAny, {
235963
+ type: "Figma";
235964
+ renderMode: "Image" | "HTML";
235965
+ }, {
235966
+ type: "Figma";
235967
+ renderMode: "Image" | "HTML";
235968
+ }>]>>;
235969
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235970
+ id: string;
235971
+ url: string;
235972
+ source?: {
235973
+ type: "UserUpload";
235974
+ userId: string;
235975
+ } | {
235976
+ type: "Figma";
235977
+ renderMode: "Image" | "HTML";
235978
+ } | undefined;
234351
235979
  }, {
234352
- fileId: string;
234353
- fileUrl: string;
235980
+ id: string;
235981
+ url: string;
235982
+ source?: {
235983
+ type: "UserUpload";
235984
+ userId: string;
235985
+ } | {
235986
+ type: "Figma";
235987
+ renderMode: "Image" | "HTML";
235988
+ } | undefined;
234354
235989
  }>, "many">>;
234355
235990
  }, "strip", z__default.ZodTypeAny, {
234356
235991
  files?: {
234357
- fileId: string;
234358
- fileUrl: string;
235992
+ id: string;
235993
+ url: string;
235994
+ source?: {
235995
+ type: "UserUpload";
235996
+ userId: string;
235997
+ } | {
235998
+ type: "Figma";
235999
+ renderMode: "Image" | "HTML";
236000
+ } | undefined;
234359
236001
  }[] | undefined;
234360
236002
  iterationId?: string | undefined;
234361
236003
  }, {
234362
236004
  files?: {
234363
- fileId: string;
234364
- fileUrl: string;
236005
+ id: string;
236006
+ url: string;
236007
+ source?: {
236008
+ type: "UserUpload";
236009
+ userId: string;
236010
+ } | {
236011
+ type: "Figma";
236012
+ renderMode: "Image" | "HTML";
236013
+ } | undefined;
234365
236014
  }[] | undefined;
234366
236015
  iterationId?: string | undefined;
234367
236016
  }>>;
@@ -234393,8 +236042,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234393
236042
  agentResponseTrackerId?: string | null | undefined;
234394
236043
  attachments?: {
234395
236044
  files?: {
234396
- fileId: string;
234397
- fileUrl: string;
236045
+ id: string;
236046
+ url: string;
236047
+ source?: {
236048
+ type: "UserUpload";
236049
+ userId: string;
236050
+ } | {
236051
+ type: "Figma";
236052
+ renderMode: "Image" | "HTML";
236053
+ } | undefined;
234398
236054
  }[] | undefined;
234399
236055
  iterationId?: string | undefined;
234400
236056
  } | undefined;
@@ -234421,8 +236077,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234421
236077
  agentResponseTrackerId?: string | null | undefined;
234422
236078
  attachments?: {
234423
236079
  files?: {
234424
- fileId: string;
234425
- fileUrl: string;
236080
+ id: string;
236081
+ url: string;
236082
+ source?: {
236083
+ type: "UserUpload";
236084
+ userId: string;
236085
+ } | {
236086
+ type: "Figma";
236087
+ renderMode: "Image" | "HTML";
236088
+ } | undefined;
234426
236089
  }[] | undefined;
234427
236090
  iterationId?: string | undefined;
234428
236091
  } | undefined;
@@ -234451,8 +236114,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234451
236114
  agentResponseTrackerId?: string | null | undefined;
234452
236115
  attachments?: {
234453
236116
  files?: {
234454
- fileId: string;
234455
- fileUrl: string;
236117
+ id: string;
236118
+ url: string;
236119
+ source?: {
236120
+ type: "UserUpload";
236121
+ userId: string;
236122
+ } | {
236123
+ type: "Figma";
236124
+ renderMode: "Image" | "HTML";
236125
+ } | undefined;
234456
236126
  }[] | undefined;
234457
236127
  iterationId?: string | undefined;
234458
236128
  } | undefined;
@@ -234481,8 +236151,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234481
236151
  agentResponseTrackerId?: string | null | undefined;
234482
236152
  attachments?: {
234483
236153
  files?: {
234484
- fileId: string;
234485
- fileUrl: string;
236154
+ id: string;
236155
+ url: string;
236156
+ source?: {
236157
+ type: "UserUpload";
236158
+ userId: string;
236159
+ } | {
236160
+ type: "Figma";
236161
+ renderMode: "Image" | "HTML";
236162
+ } | undefined;
234486
236163
  }[] | undefined;
234487
236164
  iterationId?: string | undefined;
234488
236165
  } | undefined;
@@ -234581,26 +236258,78 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234581
236258
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234582
236259
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234583
236260
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234584
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234585
- fileId: z__default.ZodString;
234586
- fileUrl: z__default.ZodString;
234587
- }, "strip", z__default.ZodTypeAny, {
234588
- fileId: string;
234589
- fileUrl: string;
236261
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236262
+ id: z__default.ZodString;
236263
+ name: z__default.ZodString;
236264
+ deduplicationKey: z__default.ZodString;
236265
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236266
+ storagePath: z__default.ZodString;
236267
+ url: z__default.ZodString;
236268
+ size: z__default.ZodNumber;
236269
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236270
+ type: z__default.ZodLiteral<"UserUpload">;
236271
+ userId: z__default.ZodString;
236272
+ }, "strip", z__default.ZodTypeAny, {
236273
+ type: "UserUpload";
236274
+ userId: string;
236275
+ }, {
236276
+ type: "UserUpload";
236277
+ userId: string;
236278
+ }>, z__default.ZodObject<{
236279
+ type: z__default.ZodLiteral<"Figma">;
236280
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236281
+ }, "strip", z__default.ZodTypeAny, {
236282
+ type: "Figma";
236283
+ renderMode: "Image" | "HTML";
236284
+ }, {
236285
+ type: "Figma";
236286
+ renderMode: "Image" | "HTML";
236287
+ }>]>>;
236288
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236289
+ id: string;
236290
+ url: string;
236291
+ source?: {
236292
+ type: "UserUpload";
236293
+ userId: string;
236294
+ } | {
236295
+ type: "Figma";
236296
+ renderMode: "Image" | "HTML";
236297
+ } | undefined;
234590
236298
  }, {
234591
- fileId: string;
234592
- fileUrl: string;
236299
+ id: string;
236300
+ url: string;
236301
+ source?: {
236302
+ type: "UserUpload";
236303
+ userId: string;
236304
+ } | {
236305
+ type: "Figma";
236306
+ renderMode: "Image" | "HTML";
236307
+ } | undefined;
234593
236308
  }>, "many">>;
234594
236309
  }, "strip", z__default.ZodTypeAny, {
234595
236310
  files?: {
234596
- fileId: string;
234597
- fileUrl: string;
236311
+ id: string;
236312
+ url: string;
236313
+ source?: {
236314
+ type: "UserUpload";
236315
+ userId: string;
236316
+ } | {
236317
+ type: "Figma";
236318
+ renderMode: "Image" | "HTML";
236319
+ } | undefined;
234598
236320
  }[] | undefined;
234599
236321
  iterationId?: string | undefined;
234600
236322
  }, {
234601
236323
  files?: {
234602
- fileId: string;
234603
- fileUrl: string;
236324
+ id: string;
236325
+ url: string;
236326
+ source?: {
236327
+ type: "UserUpload";
236328
+ userId: string;
236329
+ } | {
236330
+ type: "Figma";
236331
+ renderMode: "Image" | "HTML";
236332
+ } | undefined;
234604
236333
  }[] | undefined;
234605
236334
  iterationId?: string | undefined;
234606
236335
  }>>;
@@ -234632,8 +236361,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234632
236361
  agentResponseTrackerId?: string | null | undefined;
234633
236362
  attachments?: {
234634
236363
  files?: {
234635
- fileId: string;
234636
- fileUrl: string;
236364
+ id: string;
236365
+ url: string;
236366
+ source?: {
236367
+ type: "UserUpload";
236368
+ userId: string;
236369
+ } | {
236370
+ type: "Figma";
236371
+ renderMode: "Image" | "HTML";
236372
+ } | undefined;
234637
236373
  }[] | undefined;
234638
236374
  iterationId?: string | undefined;
234639
236375
  } | undefined;
@@ -234660,8 +236396,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234660
236396
  agentResponseTrackerId?: string | null | undefined;
234661
236397
  attachments?: {
234662
236398
  files?: {
234663
- fileId: string;
234664
- fileUrl: string;
236399
+ id: string;
236400
+ url: string;
236401
+ source?: {
236402
+ type: "UserUpload";
236403
+ userId: string;
236404
+ } | {
236405
+ type: "Figma";
236406
+ renderMode: "Image" | "HTML";
236407
+ } | undefined;
234665
236408
  }[] | undefined;
234666
236409
  iterationId?: string | undefined;
234667
236410
  } | undefined;
@@ -234707,8 +236450,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234707
236450
  agentResponseTrackerId?: string | null | undefined;
234708
236451
  attachments?: {
234709
236452
  files?: {
234710
- fileId: string;
234711
- fileUrl: string;
236453
+ id: string;
236454
+ url: string;
236455
+ source?: {
236456
+ type: "UserUpload";
236457
+ userId: string;
236458
+ } | {
236459
+ type: "Figma";
236460
+ renderMode: "Image" | "HTML";
236461
+ } | undefined;
234712
236462
  }[] | undefined;
234713
236463
  iterationId?: string | undefined;
234714
236464
  } | undefined;
@@ -234744,8 +236494,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234744
236494
  agentResponseTrackerId?: string | null | undefined;
234745
236495
  attachments?: {
234746
236496
  files?: {
234747
- fileId: string;
234748
- fileUrl: string;
236497
+ id: string;
236498
+ url: string;
236499
+ source?: {
236500
+ type: "UserUpload";
236501
+ userId: string;
236502
+ } | {
236503
+ type: "Figma";
236504
+ renderMode: "Image" | "HTML";
236505
+ } | undefined;
234749
236506
  }[] | undefined;
234750
236507
  iterationId?: string | undefined;
234751
236508
  } | undefined;
@@ -234819,26 +236576,78 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234819
236576
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234820
236577
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234821
236578
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234822
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234823
- fileId: z__default.ZodString;
234824
- fileUrl: z__default.ZodString;
234825
- }, "strip", z__default.ZodTypeAny, {
234826
- fileId: string;
234827
- fileUrl: string;
236579
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236580
+ id: z__default.ZodString;
236581
+ name: z__default.ZodString;
236582
+ deduplicationKey: z__default.ZodString;
236583
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236584
+ storagePath: z__default.ZodString;
236585
+ url: z__default.ZodString;
236586
+ size: z__default.ZodNumber;
236587
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236588
+ type: z__default.ZodLiteral<"UserUpload">;
236589
+ userId: z__default.ZodString;
236590
+ }, "strip", z__default.ZodTypeAny, {
236591
+ type: "UserUpload";
236592
+ userId: string;
236593
+ }, {
236594
+ type: "UserUpload";
236595
+ userId: string;
236596
+ }>, z__default.ZodObject<{
236597
+ type: z__default.ZodLiteral<"Figma">;
236598
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236599
+ }, "strip", z__default.ZodTypeAny, {
236600
+ type: "Figma";
236601
+ renderMode: "Image" | "HTML";
236602
+ }, {
236603
+ type: "Figma";
236604
+ renderMode: "Image" | "HTML";
236605
+ }>]>>;
236606
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236607
+ id: string;
236608
+ url: string;
236609
+ source?: {
236610
+ type: "UserUpload";
236611
+ userId: string;
236612
+ } | {
236613
+ type: "Figma";
236614
+ renderMode: "Image" | "HTML";
236615
+ } | undefined;
234828
236616
  }, {
234829
- fileId: string;
234830
- fileUrl: string;
236617
+ id: string;
236618
+ url: string;
236619
+ source?: {
236620
+ type: "UserUpload";
236621
+ userId: string;
236622
+ } | {
236623
+ type: "Figma";
236624
+ renderMode: "Image" | "HTML";
236625
+ } | undefined;
234831
236626
  }>, "many">>;
234832
236627
  }, "strip", z__default.ZodTypeAny, {
234833
236628
  files?: {
234834
- fileId: string;
234835
- fileUrl: string;
236629
+ id: string;
236630
+ url: string;
236631
+ source?: {
236632
+ type: "UserUpload";
236633
+ userId: string;
236634
+ } | {
236635
+ type: "Figma";
236636
+ renderMode: "Image" | "HTML";
236637
+ } | undefined;
234836
236638
  }[] | undefined;
234837
236639
  iterationId?: string | undefined;
234838
236640
  }, {
234839
236641
  files?: {
234840
- fileId: string;
234841
- fileUrl: string;
236642
+ id: string;
236643
+ url: string;
236644
+ source?: {
236645
+ type: "UserUpload";
236646
+ userId: string;
236647
+ } | {
236648
+ type: "Figma";
236649
+ renderMode: "Image" | "HTML";
236650
+ } | undefined;
234842
236651
  }[] | undefined;
234843
236652
  iterationId?: string | undefined;
234844
236653
  }>>;
@@ -234870,8 +236679,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234870
236679
  agentResponseTrackerId?: string | null | undefined;
234871
236680
  attachments?: {
234872
236681
  files?: {
234873
- fileId: string;
234874
- fileUrl: string;
236682
+ id: string;
236683
+ url: string;
236684
+ source?: {
236685
+ type: "UserUpload";
236686
+ userId: string;
236687
+ } | {
236688
+ type: "Figma";
236689
+ renderMode: "Image" | "HTML";
236690
+ } | undefined;
234875
236691
  }[] | undefined;
234876
236692
  iterationId?: string | undefined;
234877
236693
  } | undefined;
@@ -234898,8 +236714,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234898
236714
  agentResponseTrackerId?: string | null | undefined;
234899
236715
  attachments?: {
234900
236716
  files?: {
234901
- fileId: string;
234902
- fileUrl: string;
236717
+ id: string;
236718
+ url: string;
236719
+ source?: {
236720
+ type: "UserUpload";
236721
+ userId: string;
236722
+ } | {
236723
+ type: "Figma";
236724
+ renderMode: "Image" | "HTML";
236725
+ } | undefined;
234903
236726
  }[] | undefined;
234904
236727
  iterationId?: string | undefined;
234905
236728
  } | undefined;
@@ -234929,8 +236752,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234929
236752
  agentResponseTrackerId?: string | null | undefined;
234930
236753
  attachments?: {
234931
236754
  files?: {
234932
- fileId: string;
234933
- fileUrl: string;
236755
+ id: string;
236756
+ url: string;
236757
+ source?: {
236758
+ type: "UserUpload";
236759
+ userId: string;
236760
+ } | {
236761
+ type: "Figma";
236762
+ renderMode: "Image" | "HTML";
236763
+ } | undefined;
234934
236764
  }[] | undefined;
234935
236765
  iterationId?: string | undefined;
234936
236766
  } | undefined;
@@ -234960,8 +236790,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234960
236790
  agentResponseTrackerId?: string | null | undefined;
234961
236791
  attachments?: {
234962
236792
  files?: {
234963
- fileId: string;
234964
- fileUrl: string;
236793
+ id: string;
236794
+ url: string;
236795
+ source?: {
236796
+ type: "UserUpload";
236797
+ userId: string;
236798
+ } | {
236799
+ type: "Figma";
236800
+ renderMode: "Image" | "HTML";
236801
+ } | undefined;
234965
236802
  }[] | undefined;
234966
236803
  iterationId?: string | undefined;
234967
236804
  } | undefined;
@@ -235028,26 +236865,78 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235028
236865
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235029
236866
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235030
236867
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235031
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235032
- fileId: z__default.ZodString;
235033
- fileUrl: z__default.ZodString;
235034
- }, "strip", z__default.ZodTypeAny, {
235035
- fileId: string;
235036
- fileUrl: string;
236868
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236869
+ id: z__default.ZodString;
236870
+ name: z__default.ZodString;
236871
+ deduplicationKey: z__default.ZodString;
236872
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236873
+ storagePath: z__default.ZodString;
236874
+ url: z__default.ZodString;
236875
+ size: z__default.ZodNumber;
236876
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236877
+ type: z__default.ZodLiteral<"UserUpload">;
236878
+ userId: z__default.ZodString;
236879
+ }, "strip", z__default.ZodTypeAny, {
236880
+ type: "UserUpload";
236881
+ userId: string;
236882
+ }, {
236883
+ type: "UserUpload";
236884
+ userId: string;
236885
+ }>, z__default.ZodObject<{
236886
+ type: z__default.ZodLiteral<"Figma">;
236887
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236888
+ }, "strip", z__default.ZodTypeAny, {
236889
+ type: "Figma";
236890
+ renderMode: "Image" | "HTML";
236891
+ }, {
236892
+ type: "Figma";
236893
+ renderMode: "Image" | "HTML";
236894
+ }>]>>;
236895
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236896
+ id: string;
236897
+ url: string;
236898
+ source?: {
236899
+ type: "UserUpload";
236900
+ userId: string;
236901
+ } | {
236902
+ type: "Figma";
236903
+ renderMode: "Image" | "HTML";
236904
+ } | undefined;
235037
236905
  }, {
235038
- fileId: string;
235039
- fileUrl: string;
236906
+ id: string;
236907
+ url: string;
236908
+ source?: {
236909
+ type: "UserUpload";
236910
+ userId: string;
236911
+ } | {
236912
+ type: "Figma";
236913
+ renderMode: "Image" | "HTML";
236914
+ } | undefined;
235040
236915
  }>, "many">>;
235041
236916
  }, "strip", z__default.ZodTypeAny, {
235042
236917
  files?: {
235043
- fileId: string;
235044
- fileUrl: string;
236918
+ id: string;
236919
+ url: string;
236920
+ source?: {
236921
+ type: "UserUpload";
236922
+ userId: string;
236923
+ } | {
236924
+ type: "Figma";
236925
+ renderMode: "Image" | "HTML";
236926
+ } | undefined;
235045
236927
  }[] | undefined;
235046
236928
  iterationId?: string | undefined;
235047
236929
  }, {
235048
236930
  files?: {
235049
- fileId: string;
235050
- fileUrl: string;
236931
+ id: string;
236932
+ url: string;
236933
+ source?: {
236934
+ type: "UserUpload";
236935
+ userId: string;
236936
+ } | {
236937
+ type: "Figma";
236938
+ renderMode: "Image" | "HTML";
236939
+ } | undefined;
235051
236940
  }[] | undefined;
235052
236941
  iterationId?: string | undefined;
235053
236942
  }>>;
@@ -235079,8 +236968,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235079
236968
  agentResponseTrackerId?: string | null | undefined;
235080
236969
  attachments?: {
235081
236970
  files?: {
235082
- fileId: string;
235083
- fileUrl: string;
236971
+ id: string;
236972
+ url: string;
236973
+ source?: {
236974
+ type: "UserUpload";
236975
+ userId: string;
236976
+ } | {
236977
+ type: "Figma";
236978
+ renderMode: "Image" | "HTML";
236979
+ } | undefined;
235084
236980
  }[] | undefined;
235085
236981
  iterationId?: string | undefined;
235086
236982
  } | undefined;
@@ -235107,8 +237003,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235107
237003
  agentResponseTrackerId?: string | null | undefined;
235108
237004
  attachments?: {
235109
237005
  files?: {
235110
- fileId: string;
235111
- fileUrl: string;
237006
+ id: string;
237007
+ url: string;
237008
+ source?: {
237009
+ type: "UserUpload";
237010
+ userId: string;
237011
+ } | {
237012
+ type: "Figma";
237013
+ renderMode: "Image" | "HTML";
237014
+ } | undefined;
235112
237015
  }[] | undefined;
235113
237016
  iterationId?: string | undefined;
235114
237017
  } | undefined;
@@ -235138,8 +237041,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235138
237041
  agentResponseTrackerId?: string | null | undefined;
235139
237042
  attachments?: {
235140
237043
  files?: {
235141
- fileId: string;
235142
- fileUrl: string;
237044
+ id: string;
237045
+ url: string;
237046
+ source?: {
237047
+ type: "UserUpload";
237048
+ userId: string;
237049
+ } | {
237050
+ type: "Figma";
237051
+ renderMode: "Image" | "HTML";
237052
+ } | undefined;
235143
237053
  }[] | undefined;
235144
237054
  iterationId?: string | undefined;
235145
237055
  } | undefined;
@@ -235169,8 +237079,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235169
237079
  agentResponseTrackerId?: string | null | undefined;
235170
237080
  attachments?: {
235171
237081
  files?: {
235172
- fileId: string;
235173
- fileUrl: string;
237082
+ id: string;
237083
+ url: string;
237084
+ source?: {
237085
+ type: "UserUpload";
237086
+ userId: string;
237087
+ } | {
237088
+ type: "Figma";
237089
+ renderMode: "Image" | "HTML";
237090
+ } | undefined;
235174
237091
  }[] | undefined;
235175
237092
  iterationId?: string | undefined;
235176
237093
  } | undefined;
@@ -235309,26 +237226,78 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235309
237226
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235310
237227
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235311
237228
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235312
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235313
- fileId: z__default.ZodString;
235314
- fileUrl: z__default.ZodString;
235315
- }, "strip", z__default.ZodTypeAny, {
235316
- fileId: string;
235317
- fileUrl: string;
237229
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
237230
+ id: z__default.ZodString;
237231
+ name: z__default.ZodString;
237232
+ deduplicationKey: z__default.ZodString;
237233
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
237234
+ storagePath: z__default.ZodString;
237235
+ url: z__default.ZodString;
237236
+ size: z__default.ZodNumber;
237237
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
237238
+ type: z__default.ZodLiteral<"UserUpload">;
237239
+ userId: z__default.ZodString;
237240
+ }, "strip", z__default.ZodTypeAny, {
237241
+ type: "UserUpload";
237242
+ userId: string;
237243
+ }, {
237244
+ type: "UserUpload";
237245
+ userId: string;
237246
+ }>, z__default.ZodObject<{
237247
+ type: z__default.ZodLiteral<"Figma">;
237248
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
237249
+ }, "strip", z__default.ZodTypeAny, {
237250
+ type: "Figma";
237251
+ renderMode: "Image" | "HTML";
237252
+ }, {
237253
+ type: "Figma";
237254
+ renderMode: "Image" | "HTML";
237255
+ }>]>>;
237256
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
237257
+ id: string;
237258
+ url: string;
237259
+ source?: {
237260
+ type: "UserUpload";
237261
+ userId: string;
237262
+ } | {
237263
+ type: "Figma";
237264
+ renderMode: "Image" | "HTML";
237265
+ } | undefined;
235318
237266
  }, {
235319
- fileId: string;
235320
- fileUrl: string;
237267
+ id: string;
237268
+ url: string;
237269
+ source?: {
237270
+ type: "UserUpload";
237271
+ userId: string;
237272
+ } | {
237273
+ type: "Figma";
237274
+ renderMode: "Image" | "HTML";
237275
+ } | undefined;
235321
237276
  }>, "many">>;
235322
237277
  }, "strip", z__default.ZodTypeAny, {
235323
237278
  files?: {
235324
- fileId: string;
235325
- fileUrl: string;
237279
+ id: string;
237280
+ url: string;
237281
+ source?: {
237282
+ type: "UserUpload";
237283
+ userId: string;
237284
+ } | {
237285
+ type: "Figma";
237286
+ renderMode: "Image" | "HTML";
237287
+ } | undefined;
235326
237288
  }[] | undefined;
235327
237289
  iterationId?: string | undefined;
235328
237290
  }, {
235329
237291
  files?: {
235330
- fileId: string;
235331
- fileUrl: string;
237292
+ id: string;
237293
+ url: string;
237294
+ source?: {
237295
+ type: "UserUpload";
237296
+ userId: string;
237297
+ } | {
237298
+ type: "Figma";
237299
+ renderMode: "Image" | "HTML";
237300
+ } | undefined;
235332
237301
  }[] | undefined;
235333
237302
  iterationId?: string | undefined;
235334
237303
  }>>;
@@ -235360,8 +237329,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235360
237329
  agentResponseTrackerId?: string | null | undefined;
235361
237330
  attachments?: {
235362
237331
  files?: {
235363
- fileId: string;
235364
- fileUrl: string;
237332
+ id: string;
237333
+ url: string;
237334
+ source?: {
237335
+ type: "UserUpload";
237336
+ userId: string;
237337
+ } | {
237338
+ type: "Figma";
237339
+ renderMode: "Image" | "HTML";
237340
+ } | undefined;
235365
237341
  }[] | undefined;
235366
237342
  iterationId?: string | undefined;
235367
237343
  } | undefined;
@@ -235388,8 +237364,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235388
237364
  agentResponseTrackerId?: string | null | undefined;
235389
237365
  attachments?: {
235390
237366
  files?: {
235391
- fileId: string;
235392
- fileUrl: string;
237367
+ id: string;
237368
+ url: string;
237369
+ source?: {
237370
+ type: "UserUpload";
237371
+ userId: string;
237372
+ } | {
237373
+ type: "Figma";
237374
+ renderMode: "Image" | "HTML";
237375
+ } | undefined;
235393
237376
  }[] | undefined;
235394
237377
  iterationId?: string | undefined;
235395
237378
  } | undefined;
@@ -235419,8 +237402,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235419
237402
  agentResponseTrackerId?: string | null | undefined;
235420
237403
  attachments?: {
235421
237404
  files?: {
235422
- fileId: string;
235423
- fileUrl: string;
237405
+ id: string;
237406
+ url: string;
237407
+ source?: {
237408
+ type: "UserUpload";
237409
+ userId: string;
237410
+ } | {
237411
+ type: "Figma";
237412
+ renderMode: "Image" | "HTML";
237413
+ } | undefined;
235424
237414
  }[] | undefined;
235425
237415
  iterationId?: string | undefined;
235426
237416
  } | undefined;
@@ -235450,8 +237440,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235450
237440
  agentResponseTrackerId?: string | null | undefined;
235451
237441
  attachments?: {
235452
237442
  files?: {
235453
- fileId: string;
235454
- fileUrl: string;
237443
+ id: string;
237444
+ url: string;
237445
+ source?: {
237446
+ type: "UserUpload";
237447
+ userId: string;
237448
+ } | {
237449
+ type: "Figma";
237450
+ renderMode: "Image" | "HTML";
237451
+ } | undefined;
235455
237452
  }[] | undefined;
235456
237453
  iterationId?: string | undefined;
235457
237454
  } | undefined;
@@ -235516,26 +237513,78 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235516
237513
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235517
237514
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235518
237515
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235519
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235520
- fileId: z__default.ZodString;
235521
- fileUrl: z__default.ZodString;
235522
- }, "strip", z__default.ZodTypeAny, {
235523
- fileId: string;
235524
- fileUrl: string;
237516
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
237517
+ id: z__default.ZodString;
237518
+ name: z__default.ZodString;
237519
+ deduplicationKey: z__default.ZodString;
237520
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
237521
+ storagePath: z__default.ZodString;
237522
+ url: z__default.ZodString;
237523
+ size: z__default.ZodNumber;
237524
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
237525
+ type: z__default.ZodLiteral<"UserUpload">;
237526
+ userId: z__default.ZodString;
237527
+ }, "strip", z__default.ZodTypeAny, {
237528
+ type: "UserUpload";
237529
+ userId: string;
237530
+ }, {
237531
+ type: "UserUpload";
237532
+ userId: string;
237533
+ }>, z__default.ZodObject<{
237534
+ type: z__default.ZodLiteral<"Figma">;
237535
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
237536
+ }, "strip", z__default.ZodTypeAny, {
237537
+ type: "Figma";
237538
+ renderMode: "Image" | "HTML";
237539
+ }, {
237540
+ type: "Figma";
237541
+ renderMode: "Image" | "HTML";
237542
+ }>]>>;
237543
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
237544
+ id: string;
237545
+ url: string;
237546
+ source?: {
237547
+ type: "UserUpload";
237548
+ userId: string;
237549
+ } | {
237550
+ type: "Figma";
237551
+ renderMode: "Image" | "HTML";
237552
+ } | undefined;
235525
237553
  }, {
235526
- fileId: string;
235527
- fileUrl: string;
237554
+ id: string;
237555
+ url: string;
237556
+ source?: {
237557
+ type: "UserUpload";
237558
+ userId: string;
237559
+ } | {
237560
+ type: "Figma";
237561
+ renderMode: "Image" | "HTML";
237562
+ } | undefined;
235528
237563
  }>, "many">>;
235529
237564
  }, "strip", z__default.ZodTypeAny, {
235530
237565
  files?: {
235531
- fileId: string;
235532
- fileUrl: string;
237566
+ id: string;
237567
+ url: string;
237568
+ source?: {
237569
+ type: "UserUpload";
237570
+ userId: string;
237571
+ } | {
237572
+ type: "Figma";
237573
+ renderMode: "Image" | "HTML";
237574
+ } | undefined;
235533
237575
  }[] | undefined;
235534
237576
  iterationId?: string | undefined;
235535
237577
  }, {
235536
237578
  files?: {
235537
- fileId: string;
235538
- fileUrl: string;
237579
+ id: string;
237580
+ url: string;
237581
+ source?: {
237582
+ type: "UserUpload";
237583
+ userId: string;
237584
+ } | {
237585
+ type: "Figma";
237586
+ renderMode: "Image" | "HTML";
237587
+ } | undefined;
235539
237588
  }[] | undefined;
235540
237589
  iterationId?: string | undefined;
235541
237590
  }>>;
@@ -235567,8 +237616,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235567
237616
  agentResponseTrackerId?: string | null | undefined;
235568
237617
  attachments?: {
235569
237618
  files?: {
235570
- fileId: string;
235571
- fileUrl: string;
237619
+ id: string;
237620
+ url: string;
237621
+ source?: {
237622
+ type: "UserUpload";
237623
+ userId: string;
237624
+ } | {
237625
+ type: "Figma";
237626
+ renderMode: "Image" | "HTML";
237627
+ } | undefined;
235572
237628
  }[] | undefined;
235573
237629
  iterationId?: string | undefined;
235574
237630
  } | undefined;
@@ -235595,8 +237651,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235595
237651
  agentResponseTrackerId?: string | null | undefined;
235596
237652
  attachments?: {
235597
237653
  files?: {
235598
- fileId: string;
235599
- fileUrl: string;
237654
+ id: string;
237655
+ url: string;
237656
+ source?: {
237657
+ type: "UserUpload";
237658
+ userId: string;
237659
+ } | {
237660
+ type: "Figma";
237661
+ renderMode: "Image" | "HTML";
237662
+ } | undefined;
235600
237663
  }[] | undefined;
235601
237664
  iterationId?: string | undefined;
235602
237665
  } | undefined;
@@ -235626,8 +237689,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235626
237689
  agentResponseTrackerId?: string | null | undefined;
235627
237690
  attachments?: {
235628
237691
  files?: {
235629
- fileId: string;
235630
- fileUrl: string;
237692
+ id: string;
237693
+ url: string;
237694
+ source?: {
237695
+ type: "UserUpload";
237696
+ userId: string;
237697
+ } | {
237698
+ type: "Figma";
237699
+ renderMode: "Image" | "HTML";
237700
+ } | undefined;
235631
237701
  }[] | undefined;
235632
237702
  iterationId?: string | undefined;
235633
237703
  } | undefined;
@@ -235657,8 +237727,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235657
237727
  agentResponseTrackerId?: string | null | undefined;
235658
237728
  attachments?: {
235659
237729
  files?: {
235660
- fileId: string;
235661
- fileUrl: string;
237730
+ id: string;
237731
+ url: string;
237732
+ source?: {
237733
+ type: "UserUpload";
237734
+ userId: string;
237735
+ } | {
237736
+ type: "Figma";
237737
+ renderMode: "Image" | "HTML";
237738
+ } | undefined;
235662
237739
  }[] | undefined;
235663
237740
  iterationId?: string | undefined;
235664
237741
  } | undefined;
@@ -256312,8 +258389,15 @@ declare class ForgeFeatureIterationsEndpoint {
256312
258389
  staticPreviewUrl?: string | undefined;
256313
258390
  isBookmarked?: boolean | undefined;
256314
258391
  thumbnail?: {
256315
- fileId: string;
256316
- fileUrl: string;
258392
+ id: string;
258393
+ url: string;
258394
+ source?: {
258395
+ type: "UserUpload";
258396
+ userId: string;
258397
+ } | {
258398
+ type: "Figma";
258399
+ renderMode: "Image" | "HTML";
258400
+ } | undefined;
256317
258401
  } | undefined;
256318
258402
  artifactsDiff?: {
256319
258403
  created: string[];
@@ -256464,8 +258548,15 @@ declare class ForgeProjectFeaturesEndpoint {
256464
258548
  staticPreviewUrl?: string | undefined;
256465
258549
  isBookmarked?: boolean | undefined;
256466
258550
  thumbnail?: {
256467
- fileId: string;
256468
- fileUrl: string;
258551
+ id: string;
258552
+ url: string;
258553
+ source?: {
258554
+ type: "UserUpload";
258555
+ userId: string;
258556
+ } | {
258557
+ type: "Figma";
258558
+ renderMode: "Image" | "HTML";
258559
+ } | undefined;
256469
258560
  } | undefined;
256470
258561
  artifactsDiff?: {
256471
258562
  created: string[];
@@ -264976,4 +267067,4 @@ declare function isValidRedirectPath(path: string): {
264976
267067
  reason: ValidationErrorReason | undefined;
264977
267068
  };
264978
267069
 
264979
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileUploadBulkInput, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
267070
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkInput, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };