@supernova-studio/client 1.41.2 → 1.41.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -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,21 +81796,103 @@ 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>;
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;
81836
+ }, {
81837
+ id: string;
81838
+ url: string;
81839
+ source?: {
81840
+ type: "UserUpload";
81841
+ userId: string;
81842
+ } | {
81843
+ type: "Figma";
81844
+ renderMode: "Image" | "HTML";
81845
+ } | undefined;
81846
+ }>, "many">>;
81354
81847
  }, "strip", z__default.ZodTypeAny, {
81848
+ files?: {
81849
+ id: string;
81850
+ url: string;
81851
+ source?: {
81852
+ type: "UserUpload";
81853
+ userId: string;
81854
+ } | {
81855
+ type: "Figma";
81856
+ renderMode: "Image" | "HTML";
81857
+ } | undefined;
81858
+ }[] | undefined;
81355
81859
  iterationId?: string | undefined;
81356
81860
  }, {
81861
+ files?: {
81862
+ id: string;
81863
+ url: string;
81864
+ source?: {
81865
+ type: "UserUpload";
81866
+ userId: string;
81867
+ } | {
81868
+ type: "Figma";
81869
+ renderMode: "Image" | "HTML";
81870
+ } | undefined;
81871
+ }[] | undefined;
81357
81872
  iterationId?: string | undefined;
81358
81873
  }>>;
81359
81874
  replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
81360
81875
  createdAt: z__default.ZodString;
81361
81876
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
81362
- }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z__default.ZodTypeAny, {
81877
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
81878
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
81879
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
81880
+ fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
81881
+ }, "strip", z__default.ZodTypeAny, {
81882
+ fileIds?: string[] | undefined;
81883
+ iterationId?: string | undefined;
81884
+ }, {
81885
+ fileIds?: string[] | undefined;
81886
+ iterationId?: string | undefined;
81887
+ }>>;
81888
+ }, "strip", z__default.ZodTypeAny, {
81363
81889
  id: string;
81364
81890
  body: string;
81365
81891
  isPrompt?: boolean | undefined;
81366
81892
  startsNewThread?: boolean | undefined;
81367
81893
  parentMessageId?: string | undefined;
81368
81894
  attachments?: {
81895
+ fileIds?: string[] | undefined;
81369
81896
  iterationId?: string | undefined;
81370
81897
  } | undefined;
81371
81898
  }, {
@@ -81375,6 +81902,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81375
81902
  startsNewThread?: boolean | undefined;
81376
81903
  parentMessageId?: string | undefined;
81377
81904
  attachments?: {
81905
+ fileIds?: string[] | undefined;
81378
81906
  iterationId?: string | undefined;
81379
81907
  } | undefined;
81380
81908
  }>>;
@@ -81390,6 +81918,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81390
81918
  startsNewThread?: boolean | undefined;
81391
81919
  parentMessageId?: string | undefined;
81392
81920
  attachments?: {
81921
+ fileIds?: string[] | undefined;
81393
81922
  iterationId?: string | undefined;
81394
81923
  } | undefined;
81395
81924
  } | undefined;
@@ -81405,6 +81934,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81405
81934
  startsNewThread?: boolean | undefined;
81406
81935
  parentMessageId?: string | undefined;
81407
81936
  attachments?: {
81937
+ fileIds?: string[] | undefined;
81408
81938
  iterationId?: string | undefined;
81409
81939
  } | undefined;
81410
81940
  } | undefined;
@@ -81423,6 +81953,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81423
81953
  startsNewThread?: boolean | undefined;
81424
81954
  parentMessageId?: string | undefined;
81425
81955
  attachments?: {
81956
+ fileIds?: string[] | undefined;
81426
81957
  iterationId?: string | undefined;
81427
81958
  } | undefined;
81428
81959
  } | undefined;
@@ -81441,6 +81972,7 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81441
81972
  startsNewThread?: boolean | undefined;
81442
81973
  parentMessageId?: string | undefined;
81443
81974
  attachments?: {
81975
+ fileIds?: string[] | undefined;
81444
81976
  iterationId?: string | undefined;
81445
81977
  } | undefined;
81446
81978
  } | undefined;
@@ -81935,21 +82467,103 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81935
82467
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81936
82468
  attachments: z__default.ZodOptional<z__default.ZodObject<{
81937
82469
  iterationId: z__default.ZodOptional<z__default.ZodString>;
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;
82507
+ }, {
82508
+ id: string;
82509
+ url: string;
82510
+ source?: {
82511
+ type: "UserUpload";
82512
+ userId: string;
82513
+ } | {
82514
+ type: "Figma";
82515
+ renderMode: "Image" | "HTML";
82516
+ } | undefined;
82517
+ }>, "many">>;
81938
82518
  }, "strip", z__default.ZodTypeAny, {
82519
+ files?: {
82520
+ id: string;
82521
+ url: string;
82522
+ source?: {
82523
+ type: "UserUpload";
82524
+ userId: string;
82525
+ } | {
82526
+ type: "Figma";
82527
+ renderMode: "Image" | "HTML";
82528
+ } | undefined;
82529
+ }[] | undefined;
81939
82530
  iterationId?: string | undefined;
81940
82531
  }, {
82532
+ files?: {
82533
+ id: string;
82534
+ url: string;
82535
+ source?: {
82536
+ type: "UserUpload";
82537
+ userId: string;
82538
+ } | {
82539
+ type: "Figma";
82540
+ renderMode: "Image" | "HTML";
82541
+ } | undefined;
82542
+ }[] | undefined;
81941
82543
  iterationId?: string | undefined;
81942
82544
  }>>;
81943
82545
  replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
81944
82546
  createdAt: z__default.ZodString;
81945
82547
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
81946
- }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z__default.ZodTypeAny, {
82548
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
82549
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
82550
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
82551
+ fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
82552
+ }, "strip", z__default.ZodTypeAny, {
82553
+ fileIds?: string[] | undefined;
82554
+ iterationId?: string | undefined;
82555
+ }, {
82556
+ fileIds?: string[] | undefined;
82557
+ iterationId?: string | undefined;
82558
+ }>>;
82559
+ }, "strip", z__default.ZodTypeAny, {
81947
82560
  id: string;
81948
82561
  body: string;
81949
82562
  isPrompt?: boolean | undefined;
81950
82563
  startsNewThread?: boolean | undefined;
81951
82564
  parentMessageId?: string | undefined;
81952
82565
  attachments?: {
82566
+ fileIds?: string[] | undefined;
81953
82567
  iterationId?: string | undefined;
81954
82568
  } | undefined;
81955
82569
  }, {
@@ -81959,6 +82573,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81959
82573
  startsNewThread?: boolean | undefined;
81960
82574
  parentMessageId?: string | undefined;
81961
82575
  attachments?: {
82576
+ fileIds?: string[] | undefined;
81962
82577
  iterationId?: string | undefined;
81963
82578
  } | undefined;
81964
82579
  }>>;
@@ -81974,6 +82589,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81974
82589
  startsNewThread?: boolean | undefined;
81975
82590
  parentMessageId?: string | undefined;
81976
82591
  attachments?: {
82592
+ fileIds?: string[] | undefined;
81977
82593
  iterationId?: string | undefined;
81978
82594
  } | undefined;
81979
82595
  } | undefined;
@@ -81989,6 +82605,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81989
82605
  startsNewThread?: boolean | undefined;
81990
82606
  parentMessageId?: string | undefined;
81991
82607
  attachments?: {
82608
+ fileIds?: string[] | undefined;
81992
82609
  iterationId?: string | undefined;
81993
82610
  } | undefined;
81994
82611
  } | undefined;
@@ -82007,6 +82624,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82007
82624
  startsNewThread?: boolean | undefined;
82008
82625
  parentMessageId?: string | undefined;
82009
82626
  attachments?: {
82627
+ fileIds?: string[] | undefined;
82010
82628
  iterationId?: string | undefined;
82011
82629
  } | undefined;
82012
82630
  } | undefined;
@@ -82025,6 +82643,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
82025
82643
  startsNewThread?: boolean | undefined;
82026
82644
  parentMessageId?: string | undefined;
82027
82645
  attachments?: {
82646
+ fileIds?: string[] | undefined;
82028
82647
  iterationId?: string | undefined;
82029
82648
  } | undefined;
82030
82649
  } | undefined;
@@ -82363,21 +82982,103 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82363
82982
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
82364
82983
  attachments: z$1.ZodOptional<z$1.ZodObject<{
82365
82984
  iterationId: z$1.ZodOptional<z$1.ZodString>;
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;
83022
+ }, {
83023
+ id: string;
83024
+ url: string;
83025
+ source?: {
83026
+ type: "UserUpload";
83027
+ userId: string;
83028
+ } | {
83029
+ type: "Figma";
83030
+ renderMode: "Image" | "HTML";
83031
+ } | undefined;
83032
+ }>, "many">>;
82366
83033
  }, "strip", z$1.ZodTypeAny, {
83034
+ files?: {
83035
+ id: string;
83036
+ url: string;
83037
+ source?: {
83038
+ type: "UserUpload";
83039
+ userId: string;
83040
+ } | {
83041
+ type: "Figma";
83042
+ renderMode: "Image" | "HTML";
83043
+ } | undefined;
83044
+ }[] | undefined;
82367
83045
  iterationId?: string | undefined;
82368
83046
  }, {
83047
+ files?: {
83048
+ id: string;
83049
+ url: string;
83050
+ source?: {
83051
+ type: "UserUpload";
83052
+ userId: string;
83053
+ } | {
83054
+ type: "Figma";
83055
+ renderMode: "Image" | "HTML";
83056
+ } | undefined;
83057
+ }[] | undefined;
82369
83058
  iterationId?: string | undefined;
82370
83059
  }>>;
82371
83060
  replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
82372
83061
  createdAt: z$1.ZodString;
82373
83062
  updatedAt: z$1.ZodOptional<z$1.ZodString>;
82374
- }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z$1.ZodTypeAny, {
83063
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
83064
+ attachments: z$1.ZodOptional<z$1.ZodObject<{
83065
+ iterationId: z$1.ZodOptional<z$1.ZodString>;
83066
+ fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
83067
+ }, "strip", z$1.ZodTypeAny, {
83068
+ fileIds?: string[] | undefined;
83069
+ iterationId?: string | undefined;
83070
+ }, {
83071
+ fileIds?: string[] | undefined;
83072
+ iterationId?: string | undefined;
83073
+ }>>;
83074
+ }, "strip", z$1.ZodTypeAny, {
82375
83075
  id: string;
82376
83076
  body: string;
82377
83077
  isPrompt?: boolean | undefined;
82378
83078
  startsNewThread?: boolean | undefined;
82379
83079
  parentMessageId?: string | undefined;
82380
83080
  attachments?: {
83081
+ fileIds?: string[] | undefined;
82381
83082
  iterationId?: string | undefined;
82382
83083
  } | undefined;
82383
83084
  }, {
@@ -82387,6 +83088,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82387
83088
  startsNewThread?: boolean | undefined;
82388
83089
  parentMessageId?: string | undefined;
82389
83090
  attachments?: {
83091
+ fileIds?: string[] | undefined;
82390
83092
  iterationId?: string | undefined;
82391
83093
  } | undefined;
82392
83094
  }>>;
@@ -82402,6 +83104,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82402
83104
  startsNewThread?: boolean | undefined;
82403
83105
  parentMessageId?: string | undefined;
82404
83106
  attachments?: {
83107
+ fileIds?: string[] | undefined;
82405
83108
  iterationId?: string | undefined;
82406
83109
  } | undefined;
82407
83110
  } | undefined;
@@ -82417,6 +83120,7 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82417
83120
  startsNewThread?: boolean | undefined;
82418
83121
  parentMessageId?: string | undefined;
82419
83122
  attachments?: {
83123
+ fileIds?: string[] | undefined;
82420
83124
  iterationId?: string | undefined;
82421
83125
  } | undefined;
82422
83126
  } | undefined;
@@ -233759,9 +234463,79 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233759
234463
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
233760
234464
  attachments: z__default.ZodOptional<z__default.ZodObject<{
233761
234465
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234466
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
234467
+ id: z__default.ZodString;
234468
+ name: z__default.ZodString;
234469
+ deduplicationKey: z__default.ZodString;
234470
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
234471
+ storagePath: z__default.ZodString;
234472
+ url: z__default.ZodString;
234473
+ size: z__default.ZodNumber;
234474
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
234475
+ type: z__default.ZodLiteral<"UserUpload">;
234476
+ userId: z__default.ZodString;
234477
+ }, "strip", z__default.ZodTypeAny, {
234478
+ type: "UserUpload";
234479
+ userId: string;
234480
+ }, {
234481
+ type: "UserUpload";
234482
+ userId: string;
234483
+ }>, z__default.ZodObject<{
234484
+ type: z__default.ZodLiteral<"Figma">;
234485
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
234486
+ }, "strip", z__default.ZodTypeAny, {
234487
+ type: "Figma";
234488
+ renderMode: "Image" | "HTML";
234489
+ }, {
234490
+ type: "Figma";
234491
+ renderMode: "Image" | "HTML";
234492
+ }>]>>;
234493
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
234494
+ id: string;
234495
+ url: string;
234496
+ source?: {
234497
+ type: "UserUpload";
234498
+ userId: string;
234499
+ } | {
234500
+ type: "Figma";
234501
+ renderMode: "Image" | "HTML";
234502
+ } | undefined;
234503
+ }, {
234504
+ id: string;
234505
+ url: string;
234506
+ source?: {
234507
+ type: "UserUpload";
234508
+ userId: string;
234509
+ } | {
234510
+ type: "Figma";
234511
+ renderMode: "Image" | "HTML";
234512
+ } | undefined;
234513
+ }>, "many">>;
233762
234514
  }, "strip", z__default.ZodTypeAny, {
234515
+ files?: {
234516
+ id: string;
234517
+ url: string;
234518
+ source?: {
234519
+ type: "UserUpload";
234520
+ userId: string;
234521
+ } | {
234522
+ type: "Figma";
234523
+ renderMode: "Image" | "HTML";
234524
+ } | undefined;
234525
+ }[] | undefined;
233763
234526
  iterationId?: string | undefined;
233764
234527
  }, {
234528
+ files?: {
234529
+ id: string;
234530
+ url: string;
234531
+ source?: {
234532
+ type: "UserUpload";
234533
+ userId: string;
234534
+ } | {
234535
+ type: "Figma";
234536
+ renderMode: "Image" | "HTML";
234537
+ } | undefined;
234538
+ }[] | undefined;
233765
234539
  iterationId?: string | undefined;
233766
234540
  }>>;
233767
234541
  /**
@@ -233791,6 +234565,17 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233791
234565
  parentMessageId?: string | undefined;
233792
234566
  agentResponseTrackerId?: string | null | undefined;
233793
234567
  attachments?: {
234568
+ files?: {
234569
+ id: string;
234570
+ url: string;
234571
+ source?: {
234572
+ type: "UserUpload";
234573
+ userId: string;
234574
+ } | {
234575
+ type: "Figma";
234576
+ renderMode: "Image" | "HTML";
234577
+ } | undefined;
234578
+ }[] | undefined;
233794
234579
  iterationId?: string | undefined;
233795
234580
  } | undefined;
233796
234581
  replyToMessageId?: string | undefined;
@@ -233815,6 +234600,17 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233815
234600
  parentMessageId?: string | undefined;
233816
234601
  agentResponseTrackerId?: string | null | undefined;
233817
234602
  attachments?: {
234603
+ files?: {
234604
+ id: string;
234605
+ url: string;
234606
+ source?: {
234607
+ type: "UserUpload";
234608
+ userId: string;
234609
+ } | {
234610
+ type: "Figma";
234611
+ renderMode: "Image" | "HTML";
234612
+ } | undefined;
234613
+ }[] | undefined;
233818
234614
  iterationId?: string | undefined;
233819
234615
  } | undefined;
233820
234616
  replyToMessageId?: string | undefined;
@@ -233822,9 +234618,79 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233822
234618
  type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
233823
234619
  declare const DTOThreadMessageAttachments: z__default.ZodObject<{
233824
234620
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234621
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
234622
+ id: z__default.ZodString;
234623
+ name: z__default.ZodString;
234624
+ deduplicationKey: z__default.ZodString;
234625
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
234626
+ storagePath: z__default.ZodString;
234627
+ url: z__default.ZodString;
234628
+ size: z__default.ZodNumber;
234629
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
234630
+ type: z__default.ZodLiteral<"UserUpload">;
234631
+ userId: z__default.ZodString;
234632
+ }, "strip", z__default.ZodTypeAny, {
234633
+ type: "UserUpload";
234634
+ userId: string;
234635
+ }, {
234636
+ type: "UserUpload";
234637
+ userId: string;
234638
+ }>, z__default.ZodObject<{
234639
+ type: z__default.ZodLiteral<"Figma">;
234640
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
234641
+ }, "strip", z__default.ZodTypeAny, {
234642
+ type: "Figma";
234643
+ renderMode: "Image" | "HTML";
234644
+ }, {
234645
+ type: "Figma";
234646
+ renderMode: "Image" | "HTML";
234647
+ }>]>>;
234648
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
234649
+ id: string;
234650
+ url: string;
234651
+ source?: {
234652
+ type: "UserUpload";
234653
+ userId: string;
234654
+ } | {
234655
+ type: "Figma";
234656
+ renderMode: "Image" | "HTML";
234657
+ } | undefined;
234658
+ }, {
234659
+ id: string;
234660
+ url: string;
234661
+ source?: {
234662
+ type: "UserUpload";
234663
+ userId: string;
234664
+ } | {
234665
+ type: "Figma";
234666
+ renderMode: "Image" | "HTML";
234667
+ } | undefined;
234668
+ }>, "many">>;
233825
234669
  }, "strip", z__default.ZodTypeAny, {
234670
+ files?: {
234671
+ id: string;
234672
+ url: string;
234673
+ source?: {
234674
+ type: "UserUpload";
234675
+ userId: string;
234676
+ } | {
234677
+ type: "Figma";
234678
+ renderMode: "Image" | "HTML";
234679
+ } | undefined;
234680
+ }[] | undefined;
233826
234681
  iterationId?: string | undefined;
233827
234682
  }, {
234683
+ files?: {
234684
+ id: string;
234685
+ url: string;
234686
+ source?: {
234687
+ type: "UserUpload";
234688
+ userId: string;
234689
+ } | {
234690
+ type: "Figma";
234691
+ renderMode: "Image" | "HTML";
234692
+ } | undefined;
234693
+ }[] | undefined;
233828
234694
  iterationId?: string | undefined;
233829
234695
  }>;
233830
234696
  type DTOThreadMessageAttachments = z__default.infer<typeof DTOThreadMessageAttachments>;
@@ -233839,6 +234705,17 @@ declare const DTOThreadAgentResponseTracker: z__default.ZodObject<{
233839
234705
  currentBody?: string | undefined;
233840
234706
  }>;
233841
234707
  type DTOThreadAgentResponseTracker = z__default.infer<typeof DTOThreadAgentResponseTracker>;
234708
+ declare const DTOThreadMessageAttachmentsCreateInput: z__default.ZodObject<{
234709
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
234710
+ fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
234711
+ }, "strip", z__default.ZodTypeAny, {
234712
+ fileIds?: string[] | undefined;
234713
+ iterationId?: string | undefined;
234714
+ }, {
234715
+ fileIds?: string[] | undefined;
234716
+ iterationId?: string | undefined;
234717
+ }>;
234718
+ type DTOThreadMessageAttachmentsCreateInput = z__default.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
233842
234719
  declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
233843
234720
  messageId: z__default.ZodString;
233844
234721
  }, "strip", z__default.ZodTypeAny, {
@@ -233904,9 +234781,79 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
233904
234781
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
233905
234782
  attachments: z__default.ZodOptional<z__default.ZodObject<{
233906
234783
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234784
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
234785
+ id: z__default.ZodString;
234786
+ name: z__default.ZodString;
234787
+ deduplicationKey: z__default.ZodString;
234788
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
234789
+ storagePath: z__default.ZodString;
234790
+ url: z__default.ZodString;
234791
+ size: z__default.ZodNumber;
234792
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
234793
+ type: z__default.ZodLiteral<"UserUpload">;
234794
+ userId: z__default.ZodString;
234795
+ }, "strip", z__default.ZodTypeAny, {
234796
+ type: "UserUpload";
234797
+ userId: string;
234798
+ }, {
234799
+ type: "UserUpload";
234800
+ userId: string;
234801
+ }>, z__default.ZodObject<{
234802
+ type: z__default.ZodLiteral<"Figma">;
234803
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
234804
+ }, "strip", z__default.ZodTypeAny, {
234805
+ type: "Figma";
234806
+ renderMode: "Image" | "HTML";
234807
+ }, {
234808
+ type: "Figma";
234809
+ renderMode: "Image" | "HTML";
234810
+ }>]>>;
234811
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
234812
+ id: string;
234813
+ url: string;
234814
+ source?: {
234815
+ type: "UserUpload";
234816
+ userId: string;
234817
+ } | {
234818
+ type: "Figma";
234819
+ renderMode: "Image" | "HTML";
234820
+ } | undefined;
234821
+ }, {
234822
+ id: string;
234823
+ url: string;
234824
+ source?: {
234825
+ type: "UserUpload";
234826
+ userId: string;
234827
+ } | {
234828
+ type: "Figma";
234829
+ renderMode: "Image" | "HTML";
234830
+ } | undefined;
234831
+ }>, "many">>;
233907
234832
  }, "strip", z__default.ZodTypeAny, {
234833
+ files?: {
234834
+ id: string;
234835
+ url: string;
234836
+ source?: {
234837
+ type: "UserUpload";
234838
+ userId: string;
234839
+ } | {
234840
+ type: "Figma";
234841
+ renderMode: "Image" | "HTML";
234842
+ } | undefined;
234843
+ }[] | undefined;
233908
234844
  iterationId?: string | undefined;
233909
234845
  }, {
234846
+ files?: {
234847
+ id: string;
234848
+ url: string;
234849
+ source?: {
234850
+ type: "UserUpload";
234851
+ userId: string;
234852
+ } | {
234853
+ type: "Figma";
234854
+ renderMode: "Image" | "HTML";
234855
+ } | undefined;
234856
+ }[] | undefined;
233910
234857
  iterationId?: string | undefined;
233911
234858
  }>>;
233912
234859
  /**
@@ -233915,13 +234862,25 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
233915
234862
  replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
233916
234863
  createdAt: z__default.ZodString;
233917
234864
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
233918
- }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId" | "attachments">, "strip", z__default.ZodTypeAny, {
234865
+ }, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
234866
+ attachments: z__default.ZodOptional<z__default.ZodObject<{
234867
+ iterationId: z__default.ZodOptional<z__default.ZodString>;
234868
+ fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
234869
+ }, "strip", z__default.ZodTypeAny, {
234870
+ fileIds?: string[] | undefined;
234871
+ iterationId?: string | undefined;
234872
+ }, {
234873
+ fileIds?: string[] | undefined;
234874
+ iterationId?: string | undefined;
234875
+ }>>;
234876
+ }, "strip", z__default.ZodTypeAny, {
233919
234877
  id: string;
233920
234878
  body: string;
233921
234879
  isPrompt?: boolean | undefined;
233922
234880
  startsNewThread?: boolean | undefined;
233923
234881
  parentMessageId?: string | undefined;
233924
234882
  attachments?: {
234883
+ fileIds?: string[] | undefined;
233925
234884
  iterationId?: string | undefined;
233926
234885
  } | undefined;
233927
234886
  }, {
@@ -233931,6 +234890,7 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
233931
234890
  startsNewThread?: boolean | undefined;
233932
234891
  parentMessageId?: string | undefined;
233933
234892
  attachments?: {
234893
+ fileIds?: string[] | undefined;
233934
234894
  iterationId?: string | undefined;
233935
234895
  } | undefined;
233936
234896
  }>;
@@ -233992,9 +234952,79 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
233992
234952
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
233993
234953
  attachments: z__default.ZodOptional<z__default.ZodObject<{
233994
234954
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234955
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
234956
+ id: z__default.ZodString;
234957
+ name: z__default.ZodString;
234958
+ deduplicationKey: z__default.ZodString;
234959
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
234960
+ storagePath: z__default.ZodString;
234961
+ url: z__default.ZodString;
234962
+ size: z__default.ZodNumber;
234963
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
234964
+ type: z__default.ZodLiteral<"UserUpload">;
234965
+ userId: z__default.ZodString;
234966
+ }, "strip", z__default.ZodTypeAny, {
234967
+ type: "UserUpload";
234968
+ userId: string;
234969
+ }, {
234970
+ type: "UserUpload";
234971
+ userId: string;
234972
+ }>, z__default.ZodObject<{
234973
+ type: z__default.ZodLiteral<"Figma">;
234974
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
234975
+ }, "strip", z__default.ZodTypeAny, {
234976
+ type: "Figma";
234977
+ renderMode: "Image" | "HTML";
234978
+ }, {
234979
+ type: "Figma";
234980
+ renderMode: "Image" | "HTML";
234981
+ }>]>>;
234982
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
234983
+ id: string;
234984
+ url: string;
234985
+ source?: {
234986
+ type: "UserUpload";
234987
+ userId: string;
234988
+ } | {
234989
+ type: "Figma";
234990
+ renderMode: "Image" | "HTML";
234991
+ } | undefined;
234992
+ }, {
234993
+ id: string;
234994
+ url: string;
234995
+ source?: {
234996
+ type: "UserUpload";
234997
+ userId: string;
234998
+ } | {
234999
+ type: "Figma";
235000
+ renderMode: "Image" | "HTML";
235001
+ } | undefined;
235002
+ }>, "many">>;
233995
235003
  }, "strip", z__default.ZodTypeAny, {
235004
+ files?: {
235005
+ id: string;
235006
+ url: string;
235007
+ source?: {
235008
+ type: "UserUpload";
235009
+ userId: string;
235010
+ } | {
235011
+ type: "Figma";
235012
+ renderMode: "Image" | "HTML";
235013
+ } | undefined;
235014
+ }[] | undefined;
233996
235015
  iterationId?: string | undefined;
233997
235016
  }, {
235017
+ files?: {
235018
+ id: string;
235019
+ url: string;
235020
+ source?: {
235021
+ type: "UserUpload";
235022
+ userId: string;
235023
+ } | {
235024
+ type: "Figma";
235025
+ renderMode: "Image" | "HTML";
235026
+ } | undefined;
235027
+ }[] | undefined;
233998
235028
  iterationId?: string | undefined;
233999
235029
  }>>;
234000
235030
  /**
@@ -234007,9 +235037,79 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234007
235037
  body: z__default.ZodOptional<z__default.ZodString>;
234008
235038
  attachments: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodObject<{
234009
235039
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235040
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235041
+ id: z__default.ZodString;
235042
+ name: z__default.ZodString;
235043
+ deduplicationKey: z__default.ZodString;
235044
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235045
+ storagePath: z__default.ZodString;
235046
+ url: z__default.ZodString;
235047
+ size: z__default.ZodNumber;
235048
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235049
+ type: z__default.ZodLiteral<"UserUpload">;
235050
+ userId: z__default.ZodString;
235051
+ }, "strip", z__default.ZodTypeAny, {
235052
+ type: "UserUpload";
235053
+ userId: string;
235054
+ }, {
235055
+ type: "UserUpload";
235056
+ userId: string;
235057
+ }>, z__default.ZodObject<{
235058
+ type: z__default.ZodLiteral<"Figma">;
235059
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235060
+ }, "strip", z__default.ZodTypeAny, {
235061
+ type: "Figma";
235062
+ renderMode: "Image" | "HTML";
235063
+ }, {
235064
+ type: "Figma";
235065
+ renderMode: "Image" | "HTML";
235066
+ }>]>>;
235067
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235068
+ id: string;
235069
+ url: string;
235070
+ source?: {
235071
+ type: "UserUpload";
235072
+ userId: string;
235073
+ } | {
235074
+ type: "Figma";
235075
+ renderMode: "Image" | "HTML";
235076
+ } | undefined;
235077
+ }, {
235078
+ id: string;
235079
+ url: string;
235080
+ source?: {
235081
+ type: "UserUpload";
235082
+ userId: string;
235083
+ } | {
235084
+ type: "Figma";
235085
+ renderMode: "Image" | "HTML";
235086
+ } | undefined;
235087
+ }>, "many">>;
234010
235088
  }, "strip", z__default.ZodTypeAny, {
235089
+ files?: {
235090
+ id: string;
235091
+ url: string;
235092
+ source?: {
235093
+ type: "UserUpload";
235094
+ userId: string;
235095
+ } | {
235096
+ type: "Figma";
235097
+ renderMode: "Image" | "HTML";
235098
+ } | undefined;
235099
+ }[] | undefined;
234011
235100
  iterationId?: string | undefined;
234012
235101
  }, {
235102
+ files?: {
235103
+ id: string;
235104
+ url: string;
235105
+ source?: {
235106
+ type: "UserUpload";
235107
+ userId: string;
235108
+ } | {
235109
+ type: "Figma";
235110
+ renderMode: "Image" | "HTML";
235111
+ } | undefined;
235112
+ }[] | undefined;
234013
235113
  iterationId?: string | undefined;
234014
235114
  }>>>;
234015
235115
  agentResponseTrackerId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>>>;
@@ -234018,6 +235118,17 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234018
235118
  body?: string | undefined;
234019
235119
  agentResponseTrackerId?: string | null | undefined;
234020
235120
  attachments?: {
235121
+ files?: {
235122
+ id: string;
235123
+ url: string;
235124
+ source?: {
235125
+ type: "UserUpload";
235126
+ userId: string;
235127
+ } | {
235128
+ type: "Figma";
235129
+ renderMode: "Image" | "HTML";
235130
+ } | undefined;
235131
+ }[] | undefined;
234021
235132
  iterationId?: string | undefined;
234022
235133
  } | undefined;
234023
235134
  }, {
@@ -234025,6 +235136,17 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234025
235136
  body?: string | undefined;
234026
235137
  agentResponseTrackerId?: string | null | undefined;
234027
235138
  attachments?: {
235139
+ files?: {
235140
+ id: string;
235141
+ url: string;
235142
+ source?: {
235143
+ type: "UserUpload";
235144
+ userId: string;
235145
+ } | {
235146
+ type: "Figma";
235147
+ renderMode: "Image" | "HTML";
235148
+ } | undefined;
235149
+ }[] | undefined;
234028
235150
  iterationId?: string | undefined;
234029
235151
  } | undefined;
234030
235152
  }>;
@@ -234109,9 +235231,79 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234109
235231
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234110
235232
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234111
235233
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235234
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235235
+ id: z__default.ZodString;
235236
+ name: z__default.ZodString;
235237
+ deduplicationKey: z__default.ZodString;
235238
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235239
+ storagePath: z__default.ZodString;
235240
+ url: z__default.ZodString;
235241
+ size: z__default.ZodNumber;
235242
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235243
+ type: z__default.ZodLiteral<"UserUpload">;
235244
+ userId: z__default.ZodString;
235245
+ }, "strip", z__default.ZodTypeAny, {
235246
+ type: "UserUpload";
235247
+ userId: string;
235248
+ }, {
235249
+ type: "UserUpload";
235250
+ userId: string;
235251
+ }>, z__default.ZodObject<{
235252
+ type: z__default.ZodLiteral<"Figma">;
235253
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235254
+ }, "strip", z__default.ZodTypeAny, {
235255
+ type: "Figma";
235256
+ renderMode: "Image" | "HTML";
235257
+ }, {
235258
+ type: "Figma";
235259
+ renderMode: "Image" | "HTML";
235260
+ }>]>>;
235261
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235262
+ id: string;
235263
+ url: string;
235264
+ source?: {
235265
+ type: "UserUpload";
235266
+ userId: string;
235267
+ } | {
235268
+ type: "Figma";
235269
+ renderMode: "Image" | "HTML";
235270
+ } | undefined;
235271
+ }, {
235272
+ id: string;
235273
+ url: string;
235274
+ source?: {
235275
+ type: "UserUpload";
235276
+ userId: string;
235277
+ } | {
235278
+ type: "Figma";
235279
+ renderMode: "Image" | "HTML";
235280
+ } | undefined;
235281
+ }>, "many">>;
234112
235282
  }, "strip", z__default.ZodTypeAny, {
235283
+ files?: {
235284
+ id: string;
235285
+ url: string;
235286
+ source?: {
235287
+ type: "UserUpload";
235288
+ userId: string;
235289
+ } | {
235290
+ type: "Figma";
235291
+ renderMode: "Image" | "HTML";
235292
+ } | undefined;
235293
+ }[] | undefined;
234113
235294
  iterationId?: string | undefined;
234114
235295
  }, {
235296
+ files?: {
235297
+ id: string;
235298
+ url: string;
235299
+ source?: {
235300
+ type: "UserUpload";
235301
+ userId: string;
235302
+ } | {
235303
+ type: "Figma";
235304
+ renderMode: "Image" | "HTML";
235305
+ } | undefined;
235306
+ }[] | undefined;
234115
235307
  iterationId?: string | undefined;
234116
235308
  }>>;
234117
235309
  /**
@@ -234141,6 +235333,17 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234141
235333
  parentMessageId?: string | undefined;
234142
235334
  agentResponseTrackerId?: string | null | undefined;
234143
235335
  attachments?: {
235336
+ files?: {
235337
+ id: string;
235338
+ url: string;
235339
+ source?: {
235340
+ type: "UserUpload";
235341
+ userId: string;
235342
+ } | {
235343
+ type: "Figma";
235344
+ renderMode: "Image" | "HTML";
235345
+ } | undefined;
235346
+ }[] | undefined;
234144
235347
  iterationId?: string | undefined;
234145
235348
  } | undefined;
234146
235349
  replyToMessageId?: string | undefined;
@@ -234165,6 +235368,17 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234165
235368
  parentMessageId?: string | undefined;
234166
235369
  agentResponseTrackerId?: string | null | undefined;
234167
235370
  attachments?: {
235371
+ files?: {
235372
+ id: string;
235373
+ url: string;
235374
+ source?: {
235375
+ type: "UserUpload";
235376
+ userId: string;
235377
+ } | {
235378
+ type: "Figma";
235379
+ renderMode: "Image" | "HTML";
235380
+ } | undefined;
235381
+ }[] | undefined;
234168
235382
  iterationId?: string | undefined;
234169
235383
  } | undefined;
234170
235384
  replyToMessageId?: string | undefined;
@@ -234191,6 +235405,17 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234191
235405
  parentMessageId?: string | undefined;
234192
235406
  agentResponseTrackerId?: string | null | undefined;
234193
235407
  attachments?: {
235408
+ files?: {
235409
+ id: string;
235410
+ url: string;
235411
+ source?: {
235412
+ type: "UserUpload";
235413
+ userId: string;
235414
+ } | {
235415
+ type: "Figma";
235416
+ renderMode: "Image" | "HTML";
235417
+ } | undefined;
235418
+ }[] | undefined;
234194
235419
  iterationId?: string | undefined;
234195
235420
  } | undefined;
234196
235421
  replyToMessageId?: string | undefined;
@@ -234217,6 +235442,17 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234217
235442
  parentMessageId?: string | undefined;
234218
235443
  agentResponseTrackerId?: string | null | undefined;
234219
235444
  attachments?: {
235445
+ files?: {
235446
+ id: string;
235447
+ url: string;
235448
+ source?: {
235449
+ type: "UserUpload";
235450
+ userId: string;
235451
+ } | {
235452
+ type: "Figma";
235453
+ renderMode: "Image" | "HTML";
235454
+ } | undefined;
235455
+ }[] | undefined;
234220
235456
  iterationId?: string | undefined;
234221
235457
  } | undefined;
234222
235458
  replyToMessageId?: string | undefined;
@@ -234314,9 +235550,79 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234314
235550
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234315
235551
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234316
235552
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235553
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235554
+ id: z__default.ZodString;
235555
+ name: z__default.ZodString;
235556
+ deduplicationKey: z__default.ZodString;
235557
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235558
+ storagePath: z__default.ZodString;
235559
+ url: z__default.ZodString;
235560
+ size: z__default.ZodNumber;
235561
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235562
+ type: z__default.ZodLiteral<"UserUpload">;
235563
+ userId: z__default.ZodString;
235564
+ }, "strip", z__default.ZodTypeAny, {
235565
+ type: "UserUpload";
235566
+ userId: string;
235567
+ }, {
235568
+ type: "UserUpload";
235569
+ userId: string;
235570
+ }>, z__default.ZodObject<{
235571
+ type: z__default.ZodLiteral<"Figma">;
235572
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235573
+ }, "strip", z__default.ZodTypeAny, {
235574
+ type: "Figma";
235575
+ renderMode: "Image" | "HTML";
235576
+ }, {
235577
+ type: "Figma";
235578
+ renderMode: "Image" | "HTML";
235579
+ }>]>>;
235580
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235581
+ id: string;
235582
+ url: string;
235583
+ source?: {
235584
+ type: "UserUpload";
235585
+ userId: string;
235586
+ } | {
235587
+ type: "Figma";
235588
+ renderMode: "Image" | "HTML";
235589
+ } | undefined;
235590
+ }, {
235591
+ id: string;
235592
+ url: string;
235593
+ source?: {
235594
+ type: "UserUpload";
235595
+ userId: string;
235596
+ } | {
235597
+ type: "Figma";
235598
+ renderMode: "Image" | "HTML";
235599
+ } | undefined;
235600
+ }>, "many">>;
234317
235601
  }, "strip", z__default.ZodTypeAny, {
235602
+ files?: {
235603
+ id: string;
235604
+ url: string;
235605
+ source?: {
235606
+ type: "UserUpload";
235607
+ userId: string;
235608
+ } | {
235609
+ type: "Figma";
235610
+ renderMode: "Image" | "HTML";
235611
+ } | undefined;
235612
+ }[] | undefined;
234318
235613
  iterationId?: string | undefined;
234319
235614
  }, {
235615
+ files?: {
235616
+ id: string;
235617
+ url: string;
235618
+ source?: {
235619
+ type: "UserUpload";
235620
+ userId: string;
235621
+ } | {
235622
+ type: "Figma";
235623
+ renderMode: "Image" | "HTML";
235624
+ } | undefined;
235625
+ }[] | undefined;
234320
235626
  iterationId?: string | undefined;
234321
235627
  }>>;
234322
235628
  /**
@@ -234346,6 +235652,17 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234346
235652
  parentMessageId?: string | undefined;
234347
235653
  agentResponseTrackerId?: string | null | undefined;
234348
235654
  attachments?: {
235655
+ files?: {
235656
+ id: string;
235657
+ url: string;
235658
+ source?: {
235659
+ type: "UserUpload";
235660
+ userId: string;
235661
+ } | {
235662
+ type: "Figma";
235663
+ renderMode: "Image" | "HTML";
235664
+ } | undefined;
235665
+ }[] | undefined;
234349
235666
  iterationId?: string | undefined;
234350
235667
  } | undefined;
234351
235668
  replyToMessageId?: string | undefined;
@@ -234370,6 +235687,17 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234370
235687
  parentMessageId?: string | undefined;
234371
235688
  agentResponseTrackerId?: string | null | undefined;
234372
235689
  attachments?: {
235690
+ files?: {
235691
+ id: string;
235692
+ url: string;
235693
+ source?: {
235694
+ type: "UserUpload";
235695
+ userId: string;
235696
+ } | {
235697
+ type: "Figma";
235698
+ renderMode: "Image" | "HTML";
235699
+ } | undefined;
235700
+ }[] | undefined;
234373
235701
  iterationId?: string | undefined;
234374
235702
  } | undefined;
234375
235703
  replyToMessageId?: string | undefined;
@@ -234413,6 +235741,17 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234413
235741
  parentMessageId?: string | undefined;
234414
235742
  agentResponseTrackerId?: string | null | undefined;
234415
235743
  attachments?: {
235744
+ files?: {
235745
+ id: string;
235746
+ url: string;
235747
+ source?: {
235748
+ type: "UserUpload";
235749
+ userId: string;
235750
+ } | {
235751
+ type: "Figma";
235752
+ renderMode: "Image" | "HTML";
235753
+ } | undefined;
235754
+ }[] | undefined;
234416
235755
  iterationId?: string | undefined;
234417
235756
  } | undefined;
234418
235757
  replyToMessageId?: string | undefined;
@@ -234446,6 +235785,17 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234446
235785
  parentMessageId?: string | undefined;
234447
235786
  agentResponseTrackerId?: string | null | undefined;
234448
235787
  attachments?: {
235788
+ files?: {
235789
+ id: string;
235790
+ url: string;
235791
+ source?: {
235792
+ type: "UserUpload";
235793
+ userId: string;
235794
+ } | {
235795
+ type: "Figma";
235796
+ renderMode: "Image" | "HTML";
235797
+ } | undefined;
235798
+ }[] | undefined;
234449
235799
  iterationId?: string | undefined;
234450
235800
  } | undefined;
234451
235801
  replyToMessageId?: string | undefined;
@@ -234518,9 +235868,79 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234518
235868
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234519
235869
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234520
235870
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235871
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
235872
+ id: z__default.ZodString;
235873
+ name: z__default.ZodString;
235874
+ deduplicationKey: z__default.ZodString;
235875
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
235876
+ storagePath: z__default.ZodString;
235877
+ url: z__default.ZodString;
235878
+ size: z__default.ZodNumber;
235879
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
235880
+ type: z__default.ZodLiteral<"UserUpload">;
235881
+ userId: z__default.ZodString;
235882
+ }, "strip", z__default.ZodTypeAny, {
235883
+ type: "UserUpload";
235884
+ userId: string;
235885
+ }, {
235886
+ type: "UserUpload";
235887
+ userId: string;
235888
+ }>, z__default.ZodObject<{
235889
+ type: z__default.ZodLiteral<"Figma">;
235890
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
235891
+ }, "strip", z__default.ZodTypeAny, {
235892
+ type: "Figma";
235893
+ renderMode: "Image" | "HTML";
235894
+ }, {
235895
+ type: "Figma";
235896
+ renderMode: "Image" | "HTML";
235897
+ }>]>>;
235898
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
235899
+ id: string;
235900
+ url: string;
235901
+ source?: {
235902
+ type: "UserUpload";
235903
+ userId: string;
235904
+ } | {
235905
+ type: "Figma";
235906
+ renderMode: "Image" | "HTML";
235907
+ } | undefined;
235908
+ }, {
235909
+ id: string;
235910
+ url: string;
235911
+ source?: {
235912
+ type: "UserUpload";
235913
+ userId: string;
235914
+ } | {
235915
+ type: "Figma";
235916
+ renderMode: "Image" | "HTML";
235917
+ } | undefined;
235918
+ }>, "many">>;
234521
235919
  }, "strip", z__default.ZodTypeAny, {
235920
+ files?: {
235921
+ id: string;
235922
+ url: string;
235923
+ source?: {
235924
+ type: "UserUpload";
235925
+ userId: string;
235926
+ } | {
235927
+ type: "Figma";
235928
+ renderMode: "Image" | "HTML";
235929
+ } | undefined;
235930
+ }[] | undefined;
234522
235931
  iterationId?: string | undefined;
234523
235932
  }, {
235933
+ files?: {
235934
+ id: string;
235935
+ url: string;
235936
+ source?: {
235937
+ type: "UserUpload";
235938
+ userId: string;
235939
+ } | {
235940
+ type: "Figma";
235941
+ renderMode: "Image" | "HTML";
235942
+ } | undefined;
235943
+ }[] | undefined;
234524
235944
  iterationId?: string | undefined;
234525
235945
  }>>;
234526
235946
  /**
@@ -234550,6 +235970,17 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234550
235970
  parentMessageId?: string | undefined;
234551
235971
  agentResponseTrackerId?: string | null | undefined;
234552
235972
  attachments?: {
235973
+ files?: {
235974
+ id: string;
235975
+ url: string;
235976
+ source?: {
235977
+ type: "UserUpload";
235978
+ userId: string;
235979
+ } | {
235980
+ type: "Figma";
235981
+ renderMode: "Image" | "HTML";
235982
+ } | undefined;
235983
+ }[] | undefined;
234553
235984
  iterationId?: string | undefined;
234554
235985
  } | undefined;
234555
235986
  replyToMessageId?: string | undefined;
@@ -234574,6 +236005,17 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234574
236005
  parentMessageId?: string | undefined;
234575
236006
  agentResponseTrackerId?: string | null | undefined;
234576
236007
  attachments?: {
236008
+ files?: {
236009
+ id: string;
236010
+ url: string;
236011
+ source?: {
236012
+ type: "UserUpload";
236013
+ userId: string;
236014
+ } | {
236015
+ type: "Figma";
236016
+ renderMode: "Image" | "HTML";
236017
+ } | undefined;
236018
+ }[] | undefined;
234577
236019
  iterationId?: string | undefined;
234578
236020
  } | undefined;
234579
236021
  replyToMessageId?: string | undefined;
@@ -234601,6 +236043,17 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234601
236043
  parentMessageId?: string | undefined;
234602
236044
  agentResponseTrackerId?: string | null | undefined;
234603
236045
  attachments?: {
236046
+ files?: {
236047
+ id: string;
236048
+ url: string;
236049
+ source?: {
236050
+ type: "UserUpload";
236051
+ userId: string;
236052
+ } | {
236053
+ type: "Figma";
236054
+ renderMode: "Image" | "HTML";
236055
+ } | undefined;
236056
+ }[] | undefined;
234604
236057
  iterationId?: string | undefined;
234605
236058
  } | undefined;
234606
236059
  replyToMessageId?: string | undefined;
@@ -234628,6 +236081,17 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234628
236081
  parentMessageId?: string | undefined;
234629
236082
  agentResponseTrackerId?: string | null | undefined;
234630
236083
  attachments?: {
236084
+ files?: {
236085
+ id: string;
236086
+ url: string;
236087
+ source?: {
236088
+ type: "UserUpload";
236089
+ userId: string;
236090
+ } | {
236091
+ type: "Figma";
236092
+ renderMode: "Image" | "HTML";
236093
+ } | undefined;
236094
+ }[] | undefined;
234631
236095
  iterationId?: string | undefined;
234632
236096
  } | undefined;
234633
236097
  replyToMessageId?: string | undefined;
@@ -234693,9 +236157,79 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
234693
236157
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234694
236158
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234695
236159
  iterationId: z__default.ZodOptional<z__default.ZodString>;
236160
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236161
+ id: z__default.ZodString;
236162
+ name: z__default.ZodString;
236163
+ deduplicationKey: z__default.ZodString;
236164
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236165
+ storagePath: z__default.ZodString;
236166
+ url: z__default.ZodString;
236167
+ size: z__default.ZodNumber;
236168
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236169
+ type: z__default.ZodLiteral<"UserUpload">;
236170
+ userId: z__default.ZodString;
236171
+ }, "strip", z__default.ZodTypeAny, {
236172
+ type: "UserUpload";
236173
+ userId: string;
236174
+ }, {
236175
+ type: "UserUpload";
236176
+ userId: string;
236177
+ }>, z__default.ZodObject<{
236178
+ type: z__default.ZodLiteral<"Figma">;
236179
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236180
+ }, "strip", z__default.ZodTypeAny, {
236181
+ type: "Figma";
236182
+ renderMode: "Image" | "HTML";
236183
+ }, {
236184
+ type: "Figma";
236185
+ renderMode: "Image" | "HTML";
236186
+ }>]>>;
236187
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236188
+ id: string;
236189
+ url: string;
236190
+ source?: {
236191
+ type: "UserUpload";
236192
+ userId: string;
236193
+ } | {
236194
+ type: "Figma";
236195
+ renderMode: "Image" | "HTML";
236196
+ } | undefined;
236197
+ }, {
236198
+ id: string;
236199
+ url: string;
236200
+ source?: {
236201
+ type: "UserUpload";
236202
+ userId: string;
236203
+ } | {
236204
+ type: "Figma";
236205
+ renderMode: "Image" | "HTML";
236206
+ } | undefined;
236207
+ }>, "many">>;
234696
236208
  }, "strip", z__default.ZodTypeAny, {
236209
+ files?: {
236210
+ id: string;
236211
+ url: string;
236212
+ source?: {
236213
+ type: "UserUpload";
236214
+ userId: string;
236215
+ } | {
236216
+ type: "Figma";
236217
+ renderMode: "Image" | "HTML";
236218
+ } | undefined;
236219
+ }[] | undefined;
234697
236220
  iterationId?: string | undefined;
234698
236221
  }, {
236222
+ files?: {
236223
+ id: string;
236224
+ url: string;
236225
+ source?: {
236226
+ type: "UserUpload";
236227
+ userId: string;
236228
+ } | {
236229
+ type: "Figma";
236230
+ renderMode: "Image" | "HTML";
236231
+ } | undefined;
236232
+ }[] | undefined;
234699
236233
  iterationId?: string | undefined;
234700
236234
  }>>;
234701
236235
  /**
@@ -234725,6 +236259,17 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
234725
236259
  parentMessageId?: string | undefined;
234726
236260
  agentResponseTrackerId?: string | null | undefined;
234727
236261
  attachments?: {
236262
+ files?: {
236263
+ id: string;
236264
+ url: string;
236265
+ source?: {
236266
+ type: "UserUpload";
236267
+ userId: string;
236268
+ } | {
236269
+ type: "Figma";
236270
+ renderMode: "Image" | "HTML";
236271
+ } | undefined;
236272
+ }[] | undefined;
234728
236273
  iterationId?: string | undefined;
234729
236274
  } | undefined;
234730
236275
  replyToMessageId?: string | undefined;
@@ -234749,6 +236294,17 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
234749
236294
  parentMessageId?: string | undefined;
234750
236295
  agentResponseTrackerId?: string | null | undefined;
234751
236296
  attachments?: {
236297
+ files?: {
236298
+ id: string;
236299
+ url: string;
236300
+ source?: {
236301
+ type: "UserUpload";
236302
+ userId: string;
236303
+ } | {
236304
+ type: "Figma";
236305
+ renderMode: "Image" | "HTML";
236306
+ } | undefined;
236307
+ }[] | undefined;
234752
236308
  iterationId?: string | undefined;
234753
236309
  } | undefined;
234754
236310
  replyToMessageId?: string | undefined;
@@ -234776,6 +236332,17 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
234776
236332
  parentMessageId?: string | undefined;
234777
236333
  agentResponseTrackerId?: string | null | undefined;
234778
236334
  attachments?: {
236335
+ files?: {
236336
+ id: string;
236337
+ url: string;
236338
+ source?: {
236339
+ type: "UserUpload";
236340
+ userId: string;
236341
+ } | {
236342
+ type: "Figma";
236343
+ renderMode: "Image" | "HTML";
236344
+ } | undefined;
236345
+ }[] | undefined;
234779
236346
  iterationId?: string | undefined;
234780
236347
  } | undefined;
234781
236348
  replyToMessageId?: string | undefined;
@@ -234803,6 +236370,17 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
234803
236370
  parentMessageId?: string | undefined;
234804
236371
  agentResponseTrackerId?: string | null | undefined;
234805
236372
  attachments?: {
236373
+ files?: {
236374
+ id: string;
236375
+ url: string;
236376
+ source?: {
236377
+ type: "UserUpload";
236378
+ userId: string;
236379
+ } | {
236380
+ type: "Figma";
236381
+ renderMode: "Image" | "HTML";
236382
+ } | undefined;
236383
+ }[] | undefined;
234806
236384
  iterationId?: string | undefined;
234807
236385
  } | undefined;
234808
236386
  replyToMessageId?: string | undefined;
@@ -234940,9 +236518,79 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
234940
236518
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234941
236519
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234942
236520
  iterationId: z__default.ZodOptional<z__default.ZodString>;
236521
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236522
+ id: z__default.ZodString;
236523
+ name: z__default.ZodString;
236524
+ deduplicationKey: z__default.ZodString;
236525
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236526
+ storagePath: z__default.ZodString;
236527
+ url: z__default.ZodString;
236528
+ size: z__default.ZodNumber;
236529
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236530
+ type: z__default.ZodLiteral<"UserUpload">;
236531
+ userId: z__default.ZodString;
236532
+ }, "strip", z__default.ZodTypeAny, {
236533
+ type: "UserUpload";
236534
+ userId: string;
236535
+ }, {
236536
+ type: "UserUpload";
236537
+ userId: string;
236538
+ }>, z__default.ZodObject<{
236539
+ type: z__default.ZodLiteral<"Figma">;
236540
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236541
+ }, "strip", z__default.ZodTypeAny, {
236542
+ type: "Figma";
236543
+ renderMode: "Image" | "HTML";
236544
+ }, {
236545
+ type: "Figma";
236546
+ renderMode: "Image" | "HTML";
236547
+ }>]>>;
236548
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236549
+ id: string;
236550
+ url: string;
236551
+ source?: {
236552
+ type: "UserUpload";
236553
+ userId: string;
236554
+ } | {
236555
+ type: "Figma";
236556
+ renderMode: "Image" | "HTML";
236557
+ } | undefined;
236558
+ }, {
236559
+ id: string;
236560
+ url: string;
236561
+ source?: {
236562
+ type: "UserUpload";
236563
+ userId: string;
236564
+ } | {
236565
+ type: "Figma";
236566
+ renderMode: "Image" | "HTML";
236567
+ } | undefined;
236568
+ }>, "many">>;
234943
236569
  }, "strip", z__default.ZodTypeAny, {
236570
+ files?: {
236571
+ id: string;
236572
+ url: string;
236573
+ source?: {
236574
+ type: "UserUpload";
236575
+ userId: string;
236576
+ } | {
236577
+ type: "Figma";
236578
+ renderMode: "Image" | "HTML";
236579
+ } | undefined;
236580
+ }[] | undefined;
234944
236581
  iterationId?: string | undefined;
234945
236582
  }, {
236583
+ files?: {
236584
+ id: string;
236585
+ url: string;
236586
+ source?: {
236587
+ type: "UserUpload";
236588
+ userId: string;
236589
+ } | {
236590
+ type: "Figma";
236591
+ renderMode: "Image" | "HTML";
236592
+ } | undefined;
236593
+ }[] | undefined;
234946
236594
  iterationId?: string | undefined;
234947
236595
  }>>;
234948
236596
  /**
@@ -234972,6 +236620,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
234972
236620
  parentMessageId?: string | undefined;
234973
236621
  agentResponseTrackerId?: string | null | undefined;
234974
236622
  attachments?: {
236623
+ files?: {
236624
+ id: string;
236625
+ url: string;
236626
+ source?: {
236627
+ type: "UserUpload";
236628
+ userId: string;
236629
+ } | {
236630
+ type: "Figma";
236631
+ renderMode: "Image" | "HTML";
236632
+ } | undefined;
236633
+ }[] | undefined;
234975
236634
  iterationId?: string | undefined;
234976
236635
  } | undefined;
234977
236636
  replyToMessageId?: string | undefined;
@@ -234996,6 +236655,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
234996
236655
  parentMessageId?: string | undefined;
234997
236656
  agentResponseTrackerId?: string | null | undefined;
234998
236657
  attachments?: {
236658
+ files?: {
236659
+ id: string;
236660
+ url: string;
236661
+ source?: {
236662
+ type: "UserUpload";
236663
+ userId: string;
236664
+ } | {
236665
+ type: "Figma";
236666
+ renderMode: "Image" | "HTML";
236667
+ } | undefined;
236668
+ }[] | undefined;
234999
236669
  iterationId?: string | undefined;
235000
236670
  } | undefined;
235001
236671
  replyToMessageId?: string | undefined;
@@ -235023,6 +236693,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235023
236693
  parentMessageId?: string | undefined;
235024
236694
  agentResponseTrackerId?: string | null | undefined;
235025
236695
  attachments?: {
236696
+ files?: {
236697
+ id: string;
236698
+ url: string;
236699
+ source?: {
236700
+ type: "UserUpload";
236701
+ userId: string;
236702
+ } | {
236703
+ type: "Figma";
236704
+ renderMode: "Image" | "HTML";
236705
+ } | undefined;
236706
+ }[] | undefined;
235026
236707
  iterationId?: string | undefined;
235027
236708
  } | undefined;
235028
236709
  replyToMessageId?: string | undefined;
@@ -235050,6 +236731,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235050
236731
  parentMessageId?: string | undefined;
235051
236732
  agentResponseTrackerId?: string | null | undefined;
235052
236733
  attachments?: {
236734
+ files?: {
236735
+ id: string;
236736
+ url: string;
236737
+ source?: {
236738
+ type: "UserUpload";
236739
+ userId: string;
236740
+ } | {
236741
+ type: "Figma";
236742
+ renderMode: "Image" | "HTML";
236743
+ } | undefined;
236744
+ }[] | undefined;
235053
236745
  iterationId?: string | undefined;
235054
236746
  } | undefined;
235055
236747
  replyToMessageId?: string | undefined;
@@ -235113,9 +236805,79 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235113
236805
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235114
236806
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235115
236807
  iterationId: z__default.ZodOptional<z__default.ZodString>;
236808
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
236809
+ id: z__default.ZodString;
236810
+ name: z__default.ZodString;
236811
+ deduplicationKey: z__default.ZodString;
236812
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
236813
+ storagePath: z__default.ZodString;
236814
+ url: z__default.ZodString;
236815
+ size: z__default.ZodNumber;
236816
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
236817
+ type: z__default.ZodLiteral<"UserUpload">;
236818
+ userId: z__default.ZodString;
236819
+ }, "strip", z__default.ZodTypeAny, {
236820
+ type: "UserUpload";
236821
+ userId: string;
236822
+ }, {
236823
+ type: "UserUpload";
236824
+ userId: string;
236825
+ }>, z__default.ZodObject<{
236826
+ type: z__default.ZodLiteral<"Figma">;
236827
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
236828
+ }, "strip", z__default.ZodTypeAny, {
236829
+ type: "Figma";
236830
+ renderMode: "Image" | "HTML";
236831
+ }, {
236832
+ type: "Figma";
236833
+ renderMode: "Image" | "HTML";
236834
+ }>]>>;
236835
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
236836
+ id: string;
236837
+ url: string;
236838
+ source?: {
236839
+ type: "UserUpload";
236840
+ userId: string;
236841
+ } | {
236842
+ type: "Figma";
236843
+ renderMode: "Image" | "HTML";
236844
+ } | undefined;
236845
+ }, {
236846
+ id: string;
236847
+ url: string;
236848
+ source?: {
236849
+ type: "UserUpload";
236850
+ userId: string;
236851
+ } | {
236852
+ type: "Figma";
236853
+ renderMode: "Image" | "HTML";
236854
+ } | undefined;
236855
+ }>, "many">>;
235116
236856
  }, "strip", z__default.ZodTypeAny, {
236857
+ files?: {
236858
+ id: string;
236859
+ url: string;
236860
+ source?: {
236861
+ type: "UserUpload";
236862
+ userId: string;
236863
+ } | {
236864
+ type: "Figma";
236865
+ renderMode: "Image" | "HTML";
236866
+ } | undefined;
236867
+ }[] | undefined;
235117
236868
  iterationId?: string | undefined;
235118
236869
  }, {
236870
+ files?: {
236871
+ id: string;
236872
+ url: string;
236873
+ source?: {
236874
+ type: "UserUpload";
236875
+ userId: string;
236876
+ } | {
236877
+ type: "Figma";
236878
+ renderMode: "Image" | "HTML";
236879
+ } | undefined;
236880
+ }[] | undefined;
235119
236881
  iterationId?: string | undefined;
235120
236882
  }>>;
235121
236883
  /**
@@ -235145,6 +236907,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235145
236907
  parentMessageId?: string | undefined;
235146
236908
  agentResponseTrackerId?: string | null | undefined;
235147
236909
  attachments?: {
236910
+ files?: {
236911
+ id: string;
236912
+ url: string;
236913
+ source?: {
236914
+ type: "UserUpload";
236915
+ userId: string;
236916
+ } | {
236917
+ type: "Figma";
236918
+ renderMode: "Image" | "HTML";
236919
+ } | undefined;
236920
+ }[] | undefined;
235148
236921
  iterationId?: string | undefined;
235149
236922
  } | undefined;
235150
236923
  replyToMessageId?: string | undefined;
@@ -235169,6 +236942,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235169
236942
  parentMessageId?: string | undefined;
235170
236943
  agentResponseTrackerId?: string | null | undefined;
235171
236944
  attachments?: {
236945
+ files?: {
236946
+ id: string;
236947
+ url: string;
236948
+ source?: {
236949
+ type: "UserUpload";
236950
+ userId: string;
236951
+ } | {
236952
+ type: "Figma";
236953
+ renderMode: "Image" | "HTML";
236954
+ } | undefined;
236955
+ }[] | undefined;
235172
236956
  iterationId?: string | undefined;
235173
236957
  } | undefined;
235174
236958
  replyToMessageId?: string | undefined;
@@ -235196,6 +236980,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235196
236980
  parentMessageId?: string | undefined;
235197
236981
  agentResponseTrackerId?: string | null | undefined;
235198
236982
  attachments?: {
236983
+ files?: {
236984
+ id: string;
236985
+ url: string;
236986
+ source?: {
236987
+ type: "UserUpload";
236988
+ userId: string;
236989
+ } | {
236990
+ type: "Figma";
236991
+ renderMode: "Image" | "HTML";
236992
+ } | undefined;
236993
+ }[] | undefined;
235199
236994
  iterationId?: string | undefined;
235200
236995
  } | undefined;
235201
236996
  replyToMessageId?: string | undefined;
@@ -235223,6 +237018,17 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235223
237018
  parentMessageId?: string | undefined;
235224
237019
  agentResponseTrackerId?: string | null | undefined;
235225
237020
  attachments?: {
237021
+ files?: {
237022
+ id: string;
237023
+ url: string;
237024
+ source?: {
237025
+ type: "UserUpload";
237026
+ userId: string;
237027
+ } | {
237028
+ type: "Figma";
237029
+ renderMode: "Image" | "HTML";
237030
+ } | undefined;
237031
+ }[] | undefined;
235226
237032
  iterationId?: string | undefined;
235227
237033
  } | undefined;
235228
237034
  replyToMessageId?: string | undefined;
@@ -255875,8 +257681,15 @@ declare class ForgeFeatureIterationsEndpoint {
255875
257681
  staticPreviewUrl?: string | undefined;
255876
257682
  isBookmarked?: boolean | undefined;
255877
257683
  thumbnail?: {
255878
- fileId: string;
255879
- fileUrl: string;
257684
+ id: string;
257685
+ url: string;
257686
+ source?: {
257687
+ type: "UserUpload";
257688
+ userId: string;
257689
+ } | {
257690
+ type: "Figma";
257691
+ renderMode: "Image" | "HTML";
257692
+ } | undefined;
255880
257693
  } | undefined;
255881
257694
  artifactsDiff?: {
255882
257695
  created: string[];
@@ -256027,8 +257840,15 @@ declare class ForgeProjectFeaturesEndpoint {
256027
257840
  staticPreviewUrl?: string | undefined;
256028
257841
  isBookmarked?: boolean | undefined;
256029
257842
  thumbnail?: {
256030
- fileId: string;
256031
- fileUrl: string;
257843
+ id: string;
257844
+ url: string;
257845
+ source?: {
257846
+ type: "UserUpload";
257847
+ userId: string;
257848
+ } | {
257849
+ type: "Figma";
257850
+ renderMode: "Image" | "HTML";
257851
+ } | undefined;
256032
257852
  } | undefined;
256033
257853
  artifactsDiff?: {
256034
257854
  created: string[];
@@ -264539,4 +266359,4 @@ declare function isValidRedirectPath(path: string): {
264539
266359
  reason: ValidationErrorReason | undefined;
264540
266360
  };
264541
266361
 
264542
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileUploadBulkInput, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
266362
+ 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 };