@supernova-studio/client 1.41.3 → 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.mts CHANGED
@@ -66384,6 +66384,48 @@ type DTOFigmaNodeResponse = {
66384
66384
  nodes: FigmaExporter["AnyDesignNode"];
66385
66385
  };
66386
66386
 
66387
+ declare const DTOFileSourceUpload: z__default.ZodObject<{
66388
+ type: z__default.ZodLiteral<"UserUpload">;
66389
+ userId: z__default.ZodString;
66390
+ }, "strip", z__default.ZodTypeAny, {
66391
+ type: "UserUpload";
66392
+ userId: string;
66393
+ }, {
66394
+ type: "UserUpload";
66395
+ userId: string;
66396
+ }>;
66397
+ type DTOFileSourceUpload = z__default.infer<typeof DTOFileSourceUpload>;
66398
+ declare const DTOFileSourceFigma: z__default.ZodObject<{
66399
+ type: z__default.ZodLiteral<"Figma">;
66400
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66401
+ }, "strip", z__default.ZodTypeAny, {
66402
+ type: "Figma";
66403
+ renderMode: "Image" | "HTML";
66404
+ }, {
66405
+ type: "Figma";
66406
+ renderMode: "Image" | "HTML";
66407
+ }>;
66408
+ type DTOFileSourceFigma = z__default.infer<typeof DTOFileSourceFigma>;
66409
+ declare const DTOFileSource: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66410
+ type: z__default.ZodLiteral<"UserUpload">;
66411
+ userId: z__default.ZodString;
66412
+ }, "strip", z__default.ZodTypeAny, {
66413
+ type: "UserUpload";
66414
+ userId: string;
66415
+ }, {
66416
+ type: "UserUpload";
66417
+ userId: string;
66418
+ }>, z__default.ZodObject<{
66419
+ type: z__default.ZodLiteral<"Figma">;
66420
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66421
+ }, "strip", z__default.ZodTypeAny, {
66422
+ type: "Figma";
66423
+ renderMode: "Image" | "HTML";
66424
+ }, {
66425
+ type: "Figma";
66426
+ renderMode: "Image" | "HTML";
66427
+ }>]>;
66428
+ type DTOFileSource = z__default.infer<typeof DTOFileSource>;
66387
66429
  declare const DTOFile: z__default.ZodObject<{
66388
66430
  id: z__default.ZodString;
66389
66431
  name: z__default.ZodString;
@@ -66392,6 +66434,29 @@ declare const DTOFile: z__default.ZodObject<{
66392
66434
  storagePath: z__default.ZodString;
66393
66435
  url: z__default.ZodString;
66394
66436
  size: z__default.ZodNumber;
66437
+ /**
66438
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66439
+ * system (e.g. thumbnails, etc)
66440
+ */
66441
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66442
+ type: z__default.ZodLiteral<"UserUpload">;
66443
+ userId: z__default.ZodString;
66444
+ }, "strip", z__default.ZodTypeAny, {
66445
+ type: "UserUpload";
66446
+ userId: string;
66447
+ }, {
66448
+ type: "UserUpload";
66449
+ userId: string;
66450
+ }>, z__default.ZodObject<{
66451
+ type: z__default.ZodLiteral<"Figma">;
66452
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66453
+ }, "strip", z__default.ZodTypeAny, {
66454
+ type: "Figma";
66455
+ renderMode: "Image" | "HTML";
66456
+ }, {
66457
+ type: "Figma";
66458
+ renderMode: "Image" | "HTML";
66459
+ }>]>>;
66395
66460
  }, "strip", z__default.ZodTypeAny, {
66396
66461
  id: string;
66397
66462
  name: string;
@@ -66399,6 +66464,13 @@ declare const DTOFile: z__default.ZodObject<{
66399
66464
  size: number;
66400
66465
  deduplicationKey: string;
66401
66466
  storagePath: string;
66467
+ source?: {
66468
+ type: "UserUpload";
66469
+ userId: string;
66470
+ } | {
66471
+ type: "Figma";
66472
+ renderMode: "Image" | "HTML";
66473
+ } | undefined;
66402
66474
  pendingUpload?: boolean | undefined;
66403
66475
  }, {
66404
66476
  id: string;
@@ -66407,18 +66479,67 @@ declare const DTOFile: z__default.ZodObject<{
66407
66479
  size: number;
66408
66480
  deduplicationKey: string;
66409
66481
  storagePath: string;
66482
+ source?: {
66483
+ type: "UserUpload";
66484
+ userId: string;
66485
+ } | {
66486
+ type: "Figma";
66487
+ renderMode: "Image" | "HTML";
66488
+ } | undefined;
66410
66489
  pendingUpload?: boolean | undefined;
66411
66490
  }>;
66412
66491
  type DTOFile = z__default.infer<typeof DTOFile>;
66413
- declare const DTOFileReference: z__default.ZodObject<{
66414
- fileId: z__default.ZodString;
66415
- fileUrl: z__default.ZodString;
66416
- }, "strip", z__default.ZodTypeAny, {
66417
- fileId: string;
66418
- fileUrl: string;
66492
+ declare const DTOFileReference: z__default.ZodObject<Pick<{
66493
+ id: z__default.ZodString;
66494
+ name: z__default.ZodString;
66495
+ deduplicationKey: z__default.ZodString;
66496
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
66497
+ storagePath: z__default.ZodString;
66498
+ url: z__default.ZodString;
66499
+ size: z__default.ZodNumber;
66500
+ /**
66501
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66502
+ * system (e.g. thumbnails, etc)
66503
+ */
66504
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66505
+ type: z__default.ZodLiteral<"UserUpload">;
66506
+ userId: z__default.ZodString;
66507
+ }, "strip", z__default.ZodTypeAny, {
66508
+ type: "UserUpload";
66509
+ userId: string;
66510
+ }, {
66511
+ type: "UserUpload";
66512
+ userId: string;
66513
+ }>, z__default.ZodObject<{
66514
+ type: z__default.ZodLiteral<"Figma">;
66515
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66516
+ }, "strip", z__default.ZodTypeAny, {
66517
+ type: "Figma";
66518
+ renderMode: "Image" | "HTML";
66519
+ }, {
66520
+ type: "Figma";
66521
+ renderMode: "Image" | "HTML";
66522
+ }>]>>;
66523
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
66524
+ id: string;
66525
+ url: string;
66526
+ source?: {
66527
+ type: "UserUpload";
66528
+ userId: string;
66529
+ } | {
66530
+ type: "Figma";
66531
+ renderMode: "Image" | "HTML";
66532
+ } | undefined;
66419
66533
  }, {
66420
- fileId: string;
66421
- fileUrl: string;
66534
+ id: string;
66535
+ url: string;
66536
+ source?: {
66537
+ type: "UserUpload";
66538
+ userId: string;
66539
+ } | {
66540
+ type: "Figma";
66541
+ renderMode: "Image" | "HTML";
66542
+ } | undefined;
66422
66543
  }>;
66423
66544
  type DTOFileReference = z__default.infer<typeof DTOFileReference>;
66424
66545
  declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodObject<{
@@ -66473,6 +66594,29 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66473
66594
  storagePath: z__default.ZodString;
66474
66595
  url: z__default.ZodString;
66475
66596
  size: z__default.ZodNumber;
66597
+ /**
66598
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66599
+ * system (e.g. thumbnails, etc)
66600
+ */
66601
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66602
+ type: z__default.ZodLiteral<"UserUpload">;
66603
+ userId: z__default.ZodString;
66604
+ }, "strip", z__default.ZodTypeAny, {
66605
+ type: "UserUpload";
66606
+ userId: string;
66607
+ }, {
66608
+ type: "UserUpload";
66609
+ userId: string;
66610
+ }>, z__default.ZodObject<{
66611
+ type: z__default.ZodLiteral<"Figma">;
66612
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66613
+ }, "strip", z__default.ZodTypeAny, {
66614
+ type: "Figma";
66615
+ renderMode: "Image" | "HTML";
66616
+ }, {
66617
+ type: "Figma";
66618
+ renderMode: "Image" | "HTML";
66619
+ }>]>>;
66476
66620
  }, "strip", z__default.ZodTypeAny, {
66477
66621
  id: string;
66478
66622
  name: string;
@@ -66480,6 +66624,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66480
66624
  size: number;
66481
66625
  deduplicationKey: string;
66482
66626
  storagePath: string;
66627
+ source?: {
66628
+ type: "UserUpload";
66629
+ userId: string;
66630
+ } | {
66631
+ type: "Figma";
66632
+ renderMode: "Image" | "HTML";
66633
+ } | undefined;
66483
66634
  pendingUpload?: boolean | undefined;
66484
66635
  }, {
66485
66636
  id: string;
@@ -66488,6 +66639,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66488
66639
  size: number;
66489
66640
  deduplicationKey: string;
66490
66641
  storagePath: string;
66642
+ source?: {
66643
+ type: "UserUpload";
66644
+ userId: string;
66645
+ } | {
66646
+ type: "Figma";
66647
+ renderMode: "Image" | "HTML";
66648
+ } | undefined;
66491
66649
  pendingUpload?: boolean | undefined;
66492
66650
  }>, "many">;
66493
66651
  }, "strip", z__default.ZodTypeAny, {
@@ -66498,6 +66656,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66498
66656
  size: number;
66499
66657
  deduplicationKey: string;
66500
66658
  storagePath: string;
66659
+ source?: {
66660
+ type: "UserUpload";
66661
+ userId: string;
66662
+ } | {
66663
+ type: "Figma";
66664
+ renderMode: "Image" | "HTML";
66665
+ } | undefined;
66501
66666
  pendingUpload?: boolean | undefined;
66502
66667
  }[];
66503
66668
  }, {
@@ -66508,6 +66673,13 @@ declare const DTOFileListResponse: z__default.ZodObject<{
66508
66673
  size: number;
66509
66674
  deduplicationKey: string;
66510
66675
  storagePath: string;
66676
+ source?: {
66677
+ type: "UserUpload";
66678
+ userId: string;
66679
+ } | {
66680
+ type: "Figma";
66681
+ renderMode: "Image" | "HTML";
66682
+ } | undefined;
66511
66683
  pendingUpload?: boolean | undefined;
66512
66684
  }[];
66513
66685
  }>;
@@ -66521,6 +66693,29 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66521
66693
  storagePath: z__default.ZodString;
66522
66694
  url: z__default.ZodString;
66523
66695
  size: z__default.ZodNumber;
66696
+ /**
66697
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66698
+ * system (e.g. thumbnails, etc)
66699
+ */
66700
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66701
+ type: z__default.ZodLiteral<"UserUpload">;
66702
+ userId: z__default.ZodString;
66703
+ }, "strip", z__default.ZodTypeAny, {
66704
+ type: "UserUpload";
66705
+ userId: string;
66706
+ }, {
66707
+ type: "UserUpload";
66708
+ userId: string;
66709
+ }>, z__default.ZodObject<{
66710
+ type: z__default.ZodLiteral<"Figma">;
66711
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66712
+ }, "strip", z__default.ZodTypeAny, {
66713
+ type: "Figma";
66714
+ renderMode: "Image" | "HTML";
66715
+ }, {
66716
+ type: "Figma";
66717
+ renderMode: "Image" | "HTML";
66718
+ }>]>>;
66524
66719
  }, "strip", z__default.ZodTypeAny, {
66525
66720
  id: string;
66526
66721
  name: string;
@@ -66528,6 +66723,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66528
66723
  size: number;
66529
66724
  deduplicationKey: string;
66530
66725
  storagePath: string;
66726
+ source?: {
66727
+ type: "UserUpload";
66728
+ userId: string;
66729
+ } | {
66730
+ type: "Figma";
66731
+ renderMode: "Image" | "HTML";
66732
+ } | undefined;
66531
66733
  pendingUpload?: boolean | undefined;
66532
66734
  }, {
66533
66735
  id: string;
@@ -66536,6 +66738,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66536
66738
  size: number;
66537
66739
  deduplicationKey: string;
66538
66740
  storagePath: string;
66741
+ source?: {
66742
+ type: "UserUpload";
66743
+ userId: string;
66744
+ } | {
66745
+ type: "Figma";
66746
+ renderMode: "Image" | "HTML";
66747
+ } | undefined;
66539
66748
  pendingUpload?: boolean | undefined;
66540
66749
  }>, "many">;
66541
66750
  uploadUrls: z__default.ZodArray<z__default.ZodObject<{
@@ -66556,6 +66765,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66556
66765
  size: number;
66557
66766
  deduplicationKey: string;
66558
66767
  storagePath: string;
66768
+ source?: {
66769
+ type: "UserUpload";
66770
+ userId: string;
66771
+ } | {
66772
+ type: "Figma";
66773
+ renderMode: "Image" | "HTML";
66774
+ } | undefined;
66559
66775
  pendingUpload?: boolean | undefined;
66560
66776
  }[];
66561
66777
  uploadUrls: {
@@ -66570,6 +66786,13 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66570
66786
  size: number;
66571
66787
  deduplicationKey: string;
66572
66788
  storagePath: string;
66789
+ source?: {
66790
+ type: "UserUpload";
66791
+ userId: string;
66792
+ } | {
66793
+ type: "Figma";
66794
+ renderMode: "Image" | "HTML";
66795
+ } | undefined;
66573
66796
  pendingUpload?: boolean | undefined;
66574
66797
  }[];
66575
66798
  uploadUrls: {
@@ -68980,15 +69203,53 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
68980
69203
  * URL of a static thumbnail of the feature iteration
68981
69204
  */
68982
69205
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
68983
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
68984
- fileId: z__default.ZodString;
68985
- fileUrl: z__default.ZodString;
68986
- }, "strip", z__default.ZodTypeAny, {
68987
- fileId: string;
68988
- fileUrl: string;
69206
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
69207
+ id: z__default.ZodString;
69208
+ name: z__default.ZodString;
69209
+ deduplicationKey: z__default.ZodString;
69210
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
69211
+ storagePath: z__default.ZodString;
69212
+ url: z__default.ZodString;
69213
+ size: z__default.ZodNumber;
69214
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
69215
+ type: z__default.ZodLiteral<"UserUpload">;
69216
+ userId: z__default.ZodString;
69217
+ }, "strip", z__default.ZodTypeAny, {
69218
+ type: "UserUpload";
69219
+ userId: string;
69220
+ }, {
69221
+ type: "UserUpload";
69222
+ userId: string;
69223
+ }>, z__default.ZodObject<{
69224
+ type: z__default.ZodLiteral<"Figma">;
69225
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69226
+ }, "strip", z__default.ZodTypeAny, {
69227
+ type: "Figma";
69228
+ renderMode: "Image" | "HTML";
69229
+ }, {
69230
+ type: "Figma";
69231
+ renderMode: "Image" | "HTML";
69232
+ }>]>>;
69233
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69234
+ id: string;
69235
+ url: string;
69236
+ source?: {
69237
+ type: "UserUpload";
69238
+ userId: string;
69239
+ } | {
69240
+ type: "Figma";
69241
+ renderMode: "Image" | "HTML";
69242
+ } | undefined;
68989
69243
  }, {
68990
- fileId: string;
68991
- fileUrl: string;
69244
+ id: string;
69245
+ url: string;
69246
+ source?: {
69247
+ type: "UserUpload";
69248
+ userId: string;
69249
+ } | {
69250
+ type: "Figma";
69251
+ renderMode: "Image" | "HTML";
69252
+ } | undefined;
68992
69253
  }>>;
68993
69254
  createdAt: z__default.ZodString;
68994
69255
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -69017,8 +69278,15 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69017
69278
  staticPreviewUrl?: string | undefined;
69018
69279
  isBookmarked?: boolean | undefined;
69019
69280
  thumbnail?: {
69020
- fileId: string;
69021
- fileUrl: string;
69281
+ id: string;
69282
+ url: string;
69283
+ source?: {
69284
+ type: "UserUpload";
69285
+ userId: string;
69286
+ } | {
69287
+ type: "Figma";
69288
+ renderMode: "Image" | "HTML";
69289
+ } | undefined;
69022
69290
  } | undefined;
69023
69291
  artifactsDiff?: {
69024
69292
  created: string[];
@@ -69037,8 +69305,15 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
69037
69305
  staticPreviewUrl?: string | undefined;
69038
69306
  isBookmarked?: boolean | undefined;
69039
69307
  thumbnail?: {
69040
- fileId: string;
69041
- fileUrl: string;
69308
+ id: string;
69309
+ url: string;
69310
+ source?: {
69311
+ type: "UserUpload";
69312
+ userId: string;
69313
+ } | {
69314
+ type: "Figma";
69315
+ renderMode: "Image" | "HTML";
69316
+ } | undefined;
69042
69317
  } | undefined;
69043
69318
  artifactsDiff?: {
69044
69319
  created?: string[] | undefined;
@@ -69294,15 +69569,53 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
69294
69569
  * URL of a static thumbnail of the feature iteration
69295
69570
  */
69296
69571
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
69297
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
69298
- fileId: z__default.ZodString;
69299
- fileUrl: z__default.ZodString;
69300
- }, "strip", z__default.ZodTypeAny, {
69301
- fileId: string;
69302
- fileUrl: string;
69572
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
69573
+ id: z__default.ZodString;
69574
+ name: z__default.ZodString;
69575
+ deduplicationKey: z__default.ZodString;
69576
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
69577
+ storagePath: z__default.ZodString;
69578
+ url: z__default.ZodString;
69579
+ size: z__default.ZodNumber;
69580
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
69581
+ type: z__default.ZodLiteral<"UserUpload">;
69582
+ userId: z__default.ZodString;
69583
+ }, "strip", z__default.ZodTypeAny, {
69584
+ type: "UserUpload";
69585
+ userId: string;
69586
+ }, {
69587
+ type: "UserUpload";
69588
+ userId: string;
69589
+ }>, z__default.ZodObject<{
69590
+ type: z__default.ZodLiteral<"Figma">;
69591
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
69592
+ }, "strip", z__default.ZodTypeAny, {
69593
+ type: "Figma";
69594
+ renderMode: "Image" | "HTML";
69595
+ }, {
69596
+ type: "Figma";
69597
+ renderMode: "Image" | "HTML";
69598
+ }>]>>;
69599
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
69600
+ id: string;
69601
+ url: string;
69602
+ source?: {
69603
+ type: "UserUpload";
69604
+ userId: string;
69605
+ } | {
69606
+ type: "Figma";
69607
+ renderMode: "Image" | "HTML";
69608
+ } | undefined;
69303
69609
  }, {
69304
- fileId: string;
69305
- fileUrl: string;
69610
+ id: string;
69611
+ url: string;
69612
+ source?: {
69613
+ type: "UserUpload";
69614
+ userId: string;
69615
+ } | {
69616
+ type: "Figma";
69617
+ renderMode: "Image" | "HTML";
69618
+ } | undefined;
69306
69619
  }>>;
69307
69620
  createdAt: z__default.ZodString;
69308
69621
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70044,15 +70357,53 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70044
70357
  * URL of a static thumbnail of the feature iteration
70045
70358
  */
70046
70359
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
70047
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
70048
- fileId: z__default.ZodString;
70049
- fileUrl: z__default.ZodString;
70050
- }, "strip", z__default.ZodTypeAny, {
70051
- fileId: string;
70052
- fileUrl: string;
70360
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
70361
+ id: z__default.ZodString;
70362
+ name: z__default.ZodString;
70363
+ deduplicationKey: z__default.ZodString;
70364
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
70365
+ storagePath: z__default.ZodString;
70366
+ url: z__default.ZodString;
70367
+ size: z__default.ZodNumber;
70368
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
70369
+ type: z__default.ZodLiteral<"UserUpload">;
70370
+ userId: z__default.ZodString;
70371
+ }, "strip", z__default.ZodTypeAny, {
70372
+ type: "UserUpload";
70373
+ userId: string;
70374
+ }, {
70375
+ type: "UserUpload";
70376
+ userId: string;
70377
+ }>, z__default.ZodObject<{
70378
+ type: z__default.ZodLiteral<"Figma">;
70379
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70380
+ }, "strip", z__default.ZodTypeAny, {
70381
+ type: "Figma";
70382
+ renderMode: "Image" | "HTML";
70383
+ }, {
70384
+ type: "Figma";
70385
+ renderMode: "Image" | "HTML";
70386
+ }>]>>;
70387
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70388
+ id: string;
70389
+ url: string;
70390
+ source?: {
70391
+ type: "UserUpload";
70392
+ userId: string;
70393
+ } | {
70394
+ type: "Figma";
70395
+ renderMode: "Image" | "HTML";
70396
+ } | undefined;
70053
70397
  }, {
70054
- fileId: string;
70055
- fileUrl: string;
70398
+ id: string;
70399
+ url: string;
70400
+ source?: {
70401
+ type: "UserUpload";
70402
+ userId: string;
70403
+ } | {
70404
+ type: "Figma";
70405
+ renderMode: "Image" | "HTML";
70406
+ } | undefined;
70056
70407
  }>>;
70057
70408
  createdAt: z__default.ZodString;
70058
70409
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70081,8 +70432,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70081
70432
  staticPreviewUrl?: string | undefined;
70082
70433
  isBookmarked?: boolean | undefined;
70083
70434
  thumbnail?: {
70084
- fileId: string;
70085
- fileUrl: string;
70435
+ id: string;
70436
+ url: string;
70437
+ source?: {
70438
+ type: "UserUpload";
70439
+ userId: string;
70440
+ } | {
70441
+ type: "Figma";
70442
+ renderMode: "Image" | "HTML";
70443
+ } | undefined;
70086
70444
  } | undefined;
70087
70445
  artifactsDiff?: {
70088
70446
  created: string[];
@@ -70101,8 +70459,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70101
70459
  staticPreviewUrl?: string | undefined;
70102
70460
  isBookmarked?: boolean | undefined;
70103
70461
  thumbnail?: {
70104
- fileId: string;
70105
- fileUrl: string;
70462
+ id: string;
70463
+ url: string;
70464
+ source?: {
70465
+ type: "UserUpload";
70466
+ userId: string;
70467
+ } | {
70468
+ type: "Figma";
70469
+ renderMode: "Image" | "HTML";
70470
+ } | undefined;
70106
70471
  } | undefined;
70107
70472
  artifactsDiff?: {
70108
70473
  created?: string[] | undefined;
@@ -70123,8 +70488,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70123
70488
  staticPreviewUrl?: string | undefined;
70124
70489
  isBookmarked?: boolean | undefined;
70125
70490
  thumbnail?: {
70126
- fileId: string;
70127
- fileUrl: string;
70491
+ id: string;
70492
+ url: string;
70493
+ source?: {
70494
+ type: "UserUpload";
70495
+ userId: string;
70496
+ } | {
70497
+ type: "Figma";
70498
+ renderMode: "Image" | "HTML";
70499
+ } | undefined;
70128
70500
  } | undefined;
70129
70501
  artifactsDiff?: {
70130
70502
  created: string[];
@@ -70145,8 +70517,15 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
70145
70517
  staticPreviewUrl?: string | undefined;
70146
70518
  isBookmarked?: boolean | undefined;
70147
70519
  thumbnail?: {
70148
- fileId: string;
70149
- fileUrl: string;
70520
+ id: string;
70521
+ url: string;
70522
+ source?: {
70523
+ type: "UserUpload";
70524
+ userId: string;
70525
+ } | {
70526
+ type: "Figma";
70527
+ renderMode: "Image" | "HTML";
70528
+ } | undefined;
70150
70529
  } | undefined;
70151
70530
  artifactsDiff?: {
70152
70531
  created?: string[] | undefined;
@@ -70188,15 +70567,53 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70188
70567
  * URL of a static thumbnail of the feature iteration
70189
70568
  */
70190
70569
  thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
70191
- thumbnail: z__default.ZodOptional<z__default.ZodObject<{
70192
- fileId: z__default.ZodString;
70193
- fileUrl: z__default.ZodString;
70194
- }, "strip", z__default.ZodTypeAny, {
70195
- fileId: string;
70196
- fileUrl: string;
70570
+ thumbnail: z__default.ZodOptional<z__default.ZodObject<Pick<{
70571
+ id: z__default.ZodString;
70572
+ name: z__default.ZodString;
70573
+ deduplicationKey: z__default.ZodString;
70574
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
70575
+ storagePath: z__default.ZodString;
70576
+ url: z__default.ZodString;
70577
+ size: z__default.ZodNumber;
70578
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
70579
+ type: z__default.ZodLiteral<"UserUpload">;
70580
+ userId: z__default.ZodString;
70581
+ }, "strip", z__default.ZodTypeAny, {
70582
+ type: "UserUpload";
70583
+ userId: string;
70584
+ }, {
70585
+ type: "UserUpload";
70586
+ userId: string;
70587
+ }>, z__default.ZodObject<{
70588
+ type: z__default.ZodLiteral<"Figma">;
70589
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
70590
+ }, "strip", z__default.ZodTypeAny, {
70591
+ type: "Figma";
70592
+ renderMode: "Image" | "HTML";
70593
+ }, {
70594
+ type: "Figma";
70595
+ renderMode: "Image" | "HTML";
70596
+ }>]>>;
70597
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
70598
+ id: string;
70599
+ url: string;
70600
+ source?: {
70601
+ type: "UserUpload";
70602
+ userId: string;
70603
+ } | {
70604
+ type: "Figma";
70605
+ renderMode: "Image" | "HTML";
70606
+ } | undefined;
70197
70607
  }, {
70198
- fileId: string;
70199
- fileUrl: string;
70608
+ id: string;
70609
+ url: string;
70610
+ source?: {
70611
+ type: "UserUpload";
70612
+ userId: string;
70613
+ } | {
70614
+ type: "Figma";
70615
+ renderMode: "Image" | "HTML";
70616
+ } | undefined;
70200
70617
  }>>;
70201
70618
  createdAt: z__default.ZodString;
70202
70619
  updatedAt: z__default.ZodOptional<z__default.ZodString>;
@@ -70225,8 +70642,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70225
70642
  staticPreviewUrl?: string | undefined;
70226
70643
  isBookmarked?: boolean | undefined;
70227
70644
  thumbnail?: {
70228
- fileId: string;
70229
- fileUrl: string;
70645
+ id: string;
70646
+ url: string;
70647
+ source?: {
70648
+ type: "UserUpload";
70649
+ userId: string;
70650
+ } | {
70651
+ type: "Figma";
70652
+ renderMode: "Image" | "HTML";
70653
+ } | undefined;
70230
70654
  } | undefined;
70231
70655
  artifactsDiff?: {
70232
70656
  created: string[];
@@ -70245,8 +70669,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70245
70669
  staticPreviewUrl?: string | undefined;
70246
70670
  isBookmarked?: boolean | undefined;
70247
70671
  thumbnail?: {
70248
- fileId: string;
70249
- fileUrl: string;
70672
+ id: string;
70673
+ url: string;
70674
+ source?: {
70675
+ type: "UserUpload";
70676
+ userId: string;
70677
+ } | {
70678
+ type: "Figma";
70679
+ renderMode: "Image" | "HTML";
70680
+ } | undefined;
70250
70681
  } | undefined;
70251
70682
  artifactsDiff?: {
70252
70683
  created?: string[] | undefined;
@@ -70267,8 +70698,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70267
70698
  staticPreviewUrl?: string | undefined;
70268
70699
  isBookmarked?: boolean | undefined;
70269
70700
  thumbnail?: {
70270
- fileId: string;
70271
- fileUrl: string;
70701
+ id: string;
70702
+ url: string;
70703
+ source?: {
70704
+ type: "UserUpload";
70705
+ userId: string;
70706
+ } | {
70707
+ type: "Figma";
70708
+ renderMode: "Image" | "HTML";
70709
+ } | undefined;
70272
70710
  } | undefined;
70273
70711
  artifactsDiff?: {
70274
70712
  created: string[];
@@ -70289,8 +70727,15 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
70289
70727
  staticPreviewUrl?: string | undefined;
70290
70728
  isBookmarked?: boolean | undefined;
70291
70729
  thumbnail?: {
70292
- fileId: string;
70293
- fileUrl: string;
70730
+ id: string;
70731
+ url: string;
70732
+ source?: {
70733
+ type: "UserUpload";
70734
+ userId: string;
70735
+ } | {
70736
+ type: "Figma";
70737
+ renderMode: "Image" | "HTML";
70738
+ } | undefined;
70294
70739
  } | undefined;
70295
70740
  artifactsDiff?: {
70296
70741
  created?: string[] | undefined;
@@ -81351,26 +81796,78 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
81351
81796
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81352
81797
  attachments: z__default.ZodOptional<z__default.ZodObject<{
81353
81798
  iterationId: z__default.ZodOptional<z__default.ZodString>;
81354
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
81355
- fileId: z__default.ZodString;
81356
- fileUrl: z__default.ZodString;
81357
- }, "strip", z__default.ZodTypeAny, {
81358
- fileId: string;
81359
- fileUrl: string;
81799
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
81800
+ id: z__default.ZodString;
81801
+ name: z__default.ZodString;
81802
+ deduplicationKey: z__default.ZodString;
81803
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
81804
+ storagePath: z__default.ZodString;
81805
+ url: z__default.ZodString;
81806
+ size: z__default.ZodNumber;
81807
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
81808
+ type: z__default.ZodLiteral<"UserUpload">;
81809
+ userId: z__default.ZodString;
81810
+ }, "strip", z__default.ZodTypeAny, {
81811
+ type: "UserUpload";
81812
+ userId: string;
81813
+ }, {
81814
+ type: "UserUpload";
81815
+ userId: string;
81816
+ }>, z__default.ZodObject<{
81817
+ type: z__default.ZodLiteral<"Figma">;
81818
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
81819
+ }, "strip", z__default.ZodTypeAny, {
81820
+ type: "Figma";
81821
+ renderMode: "Image" | "HTML";
81822
+ }, {
81823
+ type: "Figma";
81824
+ renderMode: "Image" | "HTML";
81825
+ }>]>>;
81826
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
81827
+ id: string;
81828
+ url: string;
81829
+ source?: {
81830
+ type: "UserUpload";
81831
+ userId: string;
81832
+ } | {
81833
+ type: "Figma";
81834
+ renderMode: "Image" | "HTML";
81835
+ } | undefined;
81360
81836
  }, {
81361
- fileId: string;
81362
- fileUrl: string;
81837
+ id: string;
81838
+ url: string;
81839
+ source?: {
81840
+ type: "UserUpload";
81841
+ userId: string;
81842
+ } | {
81843
+ type: "Figma";
81844
+ renderMode: "Image" | "HTML";
81845
+ } | undefined;
81363
81846
  }>, "many">>;
81364
81847
  }, "strip", z__default.ZodTypeAny, {
81365
81848
  files?: {
81366
- fileId: string;
81367
- fileUrl: string;
81849
+ id: string;
81850
+ url: string;
81851
+ source?: {
81852
+ type: "UserUpload";
81853
+ userId: string;
81854
+ } | {
81855
+ type: "Figma";
81856
+ renderMode: "Image" | "HTML";
81857
+ } | undefined;
81368
81858
  }[] | undefined;
81369
81859
  iterationId?: string | undefined;
81370
81860
  }, {
81371
81861
  files?: {
81372
- fileId: string;
81373
- fileUrl: string;
81862
+ id: string;
81863
+ url: string;
81864
+ source?: {
81865
+ type: "UserUpload";
81866
+ userId: string;
81867
+ } | {
81868
+ type: "Figma";
81869
+ renderMode: "Image" | "HTML";
81870
+ } | undefined;
81374
81871
  }[] | undefined;
81375
81872
  iterationId?: string | undefined;
81376
81873
  }>>;
@@ -81970,26 +82467,78 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
81970
82467
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
81971
82468
  attachments: z__default.ZodOptional<z__default.ZodObject<{
81972
82469
  iterationId: z__default.ZodOptional<z__default.ZodString>;
81973
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
81974
- fileId: z__default.ZodString;
81975
- fileUrl: z__default.ZodString;
81976
- }, "strip", z__default.ZodTypeAny, {
81977
- fileId: string;
81978
- fileUrl: string;
82470
+ files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
82471
+ id: z__default.ZodString;
82472
+ name: z__default.ZodString;
82473
+ deduplicationKey: z__default.ZodString;
82474
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
82475
+ storagePath: z__default.ZodString;
82476
+ url: z__default.ZodString;
82477
+ size: z__default.ZodNumber;
82478
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
82479
+ type: z__default.ZodLiteral<"UserUpload">;
82480
+ userId: z__default.ZodString;
82481
+ }, "strip", z__default.ZodTypeAny, {
82482
+ type: "UserUpload";
82483
+ userId: string;
82484
+ }, {
82485
+ type: "UserUpload";
82486
+ userId: string;
82487
+ }>, z__default.ZodObject<{
82488
+ type: z__default.ZodLiteral<"Figma">;
82489
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
82490
+ }, "strip", z__default.ZodTypeAny, {
82491
+ type: "Figma";
82492
+ renderMode: "Image" | "HTML";
82493
+ }, {
82494
+ type: "Figma";
82495
+ renderMode: "Image" | "HTML";
82496
+ }>]>>;
82497
+ }, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
82498
+ id: string;
82499
+ url: string;
82500
+ source?: {
82501
+ type: "UserUpload";
82502
+ userId: string;
82503
+ } | {
82504
+ type: "Figma";
82505
+ renderMode: "Image" | "HTML";
82506
+ } | undefined;
81979
82507
  }, {
81980
- fileId: string;
81981
- fileUrl: string;
82508
+ id: string;
82509
+ url: string;
82510
+ source?: {
82511
+ type: "UserUpload";
82512
+ userId: string;
82513
+ } | {
82514
+ type: "Figma";
82515
+ renderMode: "Image" | "HTML";
82516
+ } | undefined;
81982
82517
  }>, "many">>;
81983
82518
  }, "strip", z__default.ZodTypeAny, {
81984
82519
  files?: {
81985
- fileId: string;
81986
- fileUrl: string;
82520
+ id: string;
82521
+ url: string;
82522
+ source?: {
82523
+ type: "UserUpload";
82524
+ userId: string;
82525
+ } | {
82526
+ type: "Figma";
82527
+ renderMode: "Image" | "HTML";
82528
+ } | undefined;
81987
82529
  }[] | undefined;
81988
82530
  iterationId?: string | undefined;
81989
82531
  }, {
81990
82532
  files?: {
81991
- fileId: string;
81992
- fileUrl: string;
82533
+ id: string;
82534
+ url: string;
82535
+ source?: {
82536
+ type: "UserUpload";
82537
+ userId: string;
82538
+ } | {
82539
+ type: "Figma";
82540
+ renderMode: "Image" | "HTML";
82541
+ } | undefined;
81993
82542
  }[] | undefined;
81994
82543
  iterationId?: string | undefined;
81995
82544
  }>>;
@@ -82433,26 +82982,78 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
82433
82982
  agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
82434
82983
  attachments: z$1.ZodOptional<z$1.ZodObject<{
82435
82984
  iterationId: z$1.ZodOptional<z$1.ZodString>;
82436
- files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
82437
- fileId: z$1.ZodString;
82438
- fileUrl: z$1.ZodString;
82439
- }, "strip", z$1.ZodTypeAny, {
82440
- fileId: string;
82441
- fileUrl: string;
82985
+ files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
82986
+ id: z$1.ZodString;
82987
+ name: z$1.ZodString;
82988
+ deduplicationKey: z$1.ZodString;
82989
+ pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
82990
+ storagePath: z$1.ZodString;
82991
+ url: z$1.ZodString;
82992
+ size: z$1.ZodNumber;
82993
+ source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
82994
+ type: z$1.ZodLiteral<"UserUpload">;
82995
+ userId: z$1.ZodString;
82996
+ }, "strip", z$1.ZodTypeAny, {
82997
+ type: "UserUpload";
82998
+ userId: string;
82999
+ }, {
83000
+ type: "UserUpload";
83001
+ userId: string;
83002
+ }>, z$1.ZodObject<{
83003
+ type: z$1.ZodLiteral<"Figma">;
83004
+ renderMode: z$1.ZodEnum<["Image", "HTML"]>;
83005
+ }, "strip", z$1.ZodTypeAny, {
83006
+ type: "Figma";
83007
+ renderMode: "Image" | "HTML";
83008
+ }, {
83009
+ type: "Figma";
83010
+ renderMode: "Image" | "HTML";
83011
+ }>]>>;
83012
+ }, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
83013
+ id: string;
83014
+ url: string;
83015
+ source?: {
83016
+ type: "UserUpload";
83017
+ userId: string;
83018
+ } | {
83019
+ type: "Figma";
83020
+ renderMode: "Image" | "HTML";
83021
+ } | undefined;
82442
83022
  }, {
82443
- fileId: string;
82444
- fileUrl: string;
83023
+ id: string;
83024
+ url: string;
83025
+ source?: {
83026
+ type: "UserUpload";
83027
+ userId: string;
83028
+ } | {
83029
+ type: "Figma";
83030
+ renderMode: "Image" | "HTML";
83031
+ } | undefined;
82445
83032
  }>, "many">>;
82446
83033
  }, "strip", z$1.ZodTypeAny, {
82447
83034
  files?: {
82448
- fileId: string;
82449
- fileUrl: string;
83035
+ id: string;
83036
+ url: string;
83037
+ source?: {
83038
+ type: "UserUpload";
83039
+ userId: string;
83040
+ } | {
83041
+ type: "Figma";
83042
+ renderMode: "Image" | "HTML";
83043
+ } | undefined;
82450
83044
  }[] | undefined;
82451
83045
  iterationId?: string | undefined;
82452
83046
  }, {
82453
83047
  files?: {
82454
- fileId: string;
82455
- fileUrl: string;
83048
+ id: string;
83049
+ url: string;
83050
+ source?: {
83051
+ type: "UserUpload";
83052
+ userId: string;
83053
+ } | {
83054
+ type: "Figma";
83055
+ renderMode: "Image" | "HTML";
83056
+ } | undefined;
82456
83057
  }[] | undefined;
82457
83058
  iterationId?: string | undefined;
82458
83059
  }>>;
@@ -233862,26 +234463,78 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233862
234463
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
233863
234464
  attachments: z__default.ZodOptional<z__default.ZodObject<{
233864
234465
  iterationId: z__default.ZodOptional<z__default.ZodString>;
233865
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
233866
- fileId: z__default.ZodString;
233867
- fileUrl: z__default.ZodString;
233868
- }, "strip", z__default.ZodTypeAny, {
233869
- fileId: string;
233870
- fileUrl: string;
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;
233871
234503
  }, {
233872
- fileId: string;
233873
- fileUrl: string;
234504
+ id: string;
234505
+ url: string;
234506
+ source?: {
234507
+ type: "UserUpload";
234508
+ userId: string;
234509
+ } | {
234510
+ type: "Figma";
234511
+ renderMode: "Image" | "HTML";
234512
+ } | undefined;
233874
234513
  }>, "many">>;
233875
234514
  }, "strip", z__default.ZodTypeAny, {
233876
234515
  files?: {
233877
- fileId: string;
233878
- fileUrl: string;
234516
+ id: string;
234517
+ url: string;
234518
+ source?: {
234519
+ type: "UserUpload";
234520
+ userId: string;
234521
+ } | {
234522
+ type: "Figma";
234523
+ renderMode: "Image" | "HTML";
234524
+ } | undefined;
233879
234525
  }[] | undefined;
233880
234526
  iterationId?: string | undefined;
233881
234527
  }, {
233882
234528
  files?: {
233883
- fileId: string;
233884
- fileUrl: string;
234529
+ id: string;
234530
+ url: string;
234531
+ source?: {
234532
+ type: "UserUpload";
234533
+ userId: string;
234534
+ } | {
234535
+ type: "Figma";
234536
+ renderMode: "Image" | "HTML";
234537
+ } | undefined;
233885
234538
  }[] | undefined;
233886
234539
  iterationId?: string | undefined;
233887
234540
  }>>;
@@ -233913,8 +234566,15 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233913
234566
  agentResponseTrackerId?: string | null | undefined;
233914
234567
  attachments?: {
233915
234568
  files?: {
233916
- fileId: string;
233917
- fileUrl: string;
234569
+ id: string;
234570
+ url: string;
234571
+ source?: {
234572
+ type: "UserUpload";
234573
+ userId: string;
234574
+ } | {
234575
+ type: "Figma";
234576
+ renderMode: "Image" | "HTML";
234577
+ } | undefined;
233918
234578
  }[] | undefined;
233919
234579
  iterationId?: string | undefined;
233920
234580
  } | undefined;
@@ -233941,8 +234601,15 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233941
234601
  agentResponseTrackerId?: string | null | undefined;
233942
234602
  attachments?: {
233943
234603
  files?: {
233944
- fileId: string;
233945
- fileUrl: string;
234604
+ id: string;
234605
+ url: string;
234606
+ source?: {
234607
+ type: "UserUpload";
234608
+ userId: string;
234609
+ } | {
234610
+ type: "Figma";
234611
+ renderMode: "Image" | "HTML";
234612
+ } | undefined;
233946
234613
  }[] | undefined;
233947
234614
  iterationId?: string | undefined;
233948
234615
  } | undefined;
@@ -233951,26 +234618,78 @@ declare const DTOThreadMessage: z__default.ZodObject<{
233951
234618
  type DTOThreadMessage = z__default.infer<typeof DTOThreadMessage>;
233952
234619
  declare const DTOThreadMessageAttachments: z__default.ZodObject<{
233953
234620
  iterationId: z__default.ZodOptional<z__default.ZodString>;
233954
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
233955
- fileId: z__default.ZodString;
233956
- fileUrl: z__default.ZodString;
233957
- }, "strip", z__default.ZodTypeAny, {
233958
- fileId: string;
233959
- fileUrl: string;
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;
233960
234658
  }, {
233961
- fileId: string;
233962
- fileUrl: string;
234659
+ id: string;
234660
+ url: string;
234661
+ source?: {
234662
+ type: "UserUpload";
234663
+ userId: string;
234664
+ } | {
234665
+ type: "Figma";
234666
+ renderMode: "Image" | "HTML";
234667
+ } | undefined;
233963
234668
  }>, "many">>;
233964
234669
  }, "strip", z__default.ZodTypeAny, {
233965
234670
  files?: {
233966
- fileId: string;
233967
- fileUrl: string;
234671
+ id: string;
234672
+ url: string;
234673
+ source?: {
234674
+ type: "UserUpload";
234675
+ userId: string;
234676
+ } | {
234677
+ type: "Figma";
234678
+ renderMode: "Image" | "HTML";
234679
+ } | undefined;
233968
234680
  }[] | undefined;
233969
234681
  iterationId?: string | undefined;
233970
234682
  }, {
233971
234683
  files?: {
233972
- fileId: string;
233973
- fileUrl: string;
234684
+ id: string;
234685
+ url: string;
234686
+ source?: {
234687
+ type: "UserUpload";
234688
+ userId: string;
234689
+ } | {
234690
+ type: "Figma";
234691
+ renderMode: "Image" | "HTML";
234692
+ } | undefined;
233974
234693
  }[] | undefined;
233975
234694
  iterationId?: string | undefined;
233976
234695
  }>;
@@ -234062,26 +234781,78 @@ declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
234062
234781
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234063
234782
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234064
234783
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234065
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234066
- fileId: z__default.ZodString;
234067
- fileUrl: z__default.ZodString;
234068
- }, "strip", z__default.ZodTypeAny, {
234069
- fileId: string;
234070
- fileUrl: string;
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;
234071
234821
  }, {
234072
- fileId: string;
234073
- fileUrl: string;
234822
+ id: string;
234823
+ url: string;
234824
+ source?: {
234825
+ type: "UserUpload";
234826
+ userId: string;
234827
+ } | {
234828
+ type: "Figma";
234829
+ renderMode: "Image" | "HTML";
234830
+ } | undefined;
234074
234831
  }>, "many">>;
234075
234832
  }, "strip", z__default.ZodTypeAny, {
234076
234833
  files?: {
234077
- fileId: string;
234078
- fileUrl: string;
234834
+ id: string;
234835
+ url: string;
234836
+ source?: {
234837
+ type: "UserUpload";
234838
+ userId: string;
234839
+ } | {
234840
+ type: "Figma";
234841
+ renderMode: "Image" | "HTML";
234842
+ } | undefined;
234079
234843
  }[] | undefined;
234080
234844
  iterationId?: string | undefined;
234081
234845
  }, {
234082
234846
  files?: {
234083
- fileId: string;
234084
- fileUrl: string;
234847
+ id: string;
234848
+ url: string;
234849
+ source?: {
234850
+ type: "UserUpload";
234851
+ userId: string;
234852
+ } | {
234853
+ type: "Figma";
234854
+ renderMode: "Image" | "HTML";
234855
+ } | undefined;
234085
234856
  }[] | undefined;
234086
234857
  iterationId?: string | undefined;
234087
234858
  }>>;
@@ -234181,26 +234952,78 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234181
234952
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234182
234953
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234183
234954
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234184
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234185
- fileId: z__default.ZodString;
234186
- fileUrl: z__default.ZodString;
234187
- }, "strip", z__default.ZodTypeAny, {
234188
- fileId: string;
234189
- fileUrl: string;
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;
234190
234992
  }, {
234191
- fileId: string;
234192
- fileUrl: string;
234993
+ id: string;
234994
+ url: string;
234995
+ source?: {
234996
+ type: "UserUpload";
234997
+ userId: string;
234998
+ } | {
234999
+ type: "Figma";
235000
+ renderMode: "Image" | "HTML";
235001
+ } | undefined;
234193
235002
  }>, "many">>;
234194
235003
  }, "strip", z__default.ZodTypeAny, {
234195
235004
  files?: {
234196
- fileId: string;
234197
- fileUrl: string;
235005
+ id: string;
235006
+ url: string;
235007
+ source?: {
235008
+ type: "UserUpload";
235009
+ userId: string;
235010
+ } | {
235011
+ type: "Figma";
235012
+ renderMode: "Image" | "HTML";
235013
+ } | undefined;
234198
235014
  }[] | undefined;
234199
235015
  iterationId?: string | undefined;
234200
235016
  }, {
234201
235017
  files?: {
234202
- fileId: string;
234203
- fileUrl: string;
235018
+ id: string;
235019
+ url: string;
235020
+ source?: {
235021
+ type: "UserUpload";
235022
+ userId: string;
235023
+ } | {
235024
+ type: "Figma";
235025
+ renderMode: "Image" | "HTML";
235026
+ } | undefined;
234204
235027
  }[] | undefined;
234205
235028
  iterationId?: string | undefined;
234206
235029
  }>>;
@@ -234214,26 +235037,78 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234214
235037
  body: z__default.ZodOptional<z__default.ZodString>;
234215
235038
  attachments: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodObject<{
234216
235039
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234217
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234218
- fileId: z__default.ZodString;
234219
- fileUrl: z__default.ZodString;
234220
- }, "strip", z__default.ZodTypeAny, {
234221
- fileId: string;
234222
- fileUrl: string;
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;
234223
235077
  }, {
234224
- fileId: string;
234225
- fileUrl: string;
235078
+ id: string;
235079
+ url: string;
235080
+ source?: {
235081
+ type: "UserUpload";
235082
+ userId: string;
235083
+ } | {
235084
+ type: "Figma";
235085
+ renderMode: "Image" | "HTML";
235086
+ } | undefined;
234226
235087
  }>, "many">>;
234227
235088
  }, "strip", z__default.ZodTypeAny, {
234228
235089
  files?: {
234229
- fileId: string;
234230
- fileUrl: string;
235090
+ id: string;
235091
+ url: string;
235092
+ source?: {
235093
+ type: "UserUpload";
235094
+ userId: string;
235095
+ } | {
235096
+ type: "Figma";
235097
+ renderMode: "Image" | "HTML";
235098
+ } | undefined;
234231
235099
  }[] | undefined;
234232
235100
  iterationId?: string | undefined;
234233
235101
  }, {
234234
235102
  files?: {
234235
- fileId: string;
234236
- fileUrl: string;
235103
+ id: string;
235104
+ url: string;
235105
+ source?: {
235106
+ type: "UserUpload";
235107
+ userId: string;
235108
+ } | {
235109
+ type: "Figma";
235110
+ renderMode: "Image" | "HTML";
235111
+ } | undefined;
234237
235112
  }[] | undefined;
234238
235113
  iterationId?: string | undefined;
234239
235114
  }>>>;
@@ -234244,8 +235119,15 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234244
235119
  agentResponseTrackerId?: string | null | undefined;
234245
235120
  attachments?: {
234246
235121
  files?: {
234247
- fileId: string;
234248
- fileUrl: string;
235122
+ id: string;
235123
+ url: string;
235124
+ source?: {
235125
+ type: "UserUpload";
235126
+ userId: string;
235127
+ } | {
235128
+ type: "Figma";
235129
+ renderMode: "Image" | "HTML";
235130
+ } | undefined;
234249
235131
  }[] | undefined;
234250
235132
  iterationId?: string | undefined;
234251
235133
  } | undefined;
@@ -234255,8 +235137,15 @@ declare const DTOThreadMessageUpdateInput: z__default.ZodObject<Pick<{
234255
235137
  agentResponseTrackerId?: string | null | undefined;
234256
235138
  attachments?: {
234257
235139
  files?: {
234258
- fileId: string;
234259
- fileUrl: string;
235140
+ id: string;
235141
+ url: string;
235142
+ source?: {
235143
+ type: "UserUpload";
235144
+ userId: string;
235145
+ } | {
235146
+ type: "Figma";
235147
+ renderMode: "Image" | "HTML";
235148
+ } | undefined;
234260
235149
  }[] | undefined;
234261
235150
  iterationId?: string | undefined;
234262
235151
  } | undefined;
@@ -234342,26 +235231,78 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234342
235231
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234343
235232
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234344
235233
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234345
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234346
- fileId: z__default.ZodString;
234347
- fileUrl: z__default.ZodString;
234348
- }, "strip", z__default.ZodTypeAny, {
234349
- fileId: string;
234350
- fileUrl: string;
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;
234351
235271
  }, {
234352
- fileId: string;
234353
- fileUrl: string;
235272
+ id: string;
235273
+ url: string;
235274
+ source?: {
235275
+ type: "UserUpload";
235276
+ userId: string;
235277
+ } | {
235278
+ type: "Figma";
235279
+ renderMode: "Image" | "HTML";
235280
+ } | undefined;
234354
235281
  }>, "many">>;
234355
235282
  }, "strip", z__default.ZodTypeAny, {
234356
235283
  files?: {
234357
- fileId: string;
234358
- fileUrl: string;
235284
+ id: string;
235285
+ url: string;
235286
+ source?: {
235287
+ type: "UserUpload";
235288
+ userId: string;
235289
+ } | {
235290
+ type: "Figma";
235291
+ renderMode: "Image" | "HTML";
235292
+ } | undefined;
234359
235293
  }[] | undefined;
234360
235294
  iterationId?: string | undefined;
234361
235295
  }, {
234362
235296
  files?: {
234363
- fileId: string;
234364
- fileUrl: string;
235297
+ id: string;
235298
+ url: string;
235299
+ source?: {
235300
+ type: "UserUpload";
235301
+ userId: string;
235302
+ } | {
235303
+ type: "Figma";
235304
+ renderMode: "Image" | "HTML";
235305
+ } | undefined;
234365
235306
  }[] | undefined;
234366
235307
  iterationId?: string | undefined;
234367
235308
  }>>;
@@ -234393,8 +235334,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234393
235334
  agentResponseTrackerId?: string | null | undefined;
234394
235335
  attachments?: {
234395
235336
  files?: {
234396
- fileId: string;
234397
- fileUrl: string;
235337
+ id: string;
235338
+ url: string;
235339
+ source?: {
235340
+ type: "UserUpload";
235341
+ userId: string;
235342
+ } | {
235343
+ type: "Figma";
235344
+ renderMode: "Image" | "HTML";
235345
+ } | undefined;
234398
235346
  }[] | undefined;
234399
235347
  iterationId?: string | undefined;
234400
235348
  } | undefined;
@@ -234421,8 +235369,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234421
235369
  agentResponseTrackerId?: string | null | undefined;
234422
235370
  attachments?: {
234423
235371
  files?: {
234424
- fileId: string;
234425
- fileUrl: string;
235372
+ id: string;
235373
+ url: string;
235374
+ source?: {
235375
+ type: "UserUpload";
235376
+ userId: string;
235377
+ } | {
235378
+ type: "Figma";
235379
+ renderMode: "Image" | "HTML";
235380
+ } | undefined;
234426
235381
  }[] | undefined;
234427
235382
  iterationId?: string | undefined;
234428
235383
  } | undefined;
@@ -234451,8 +235406,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234451
235406
  agentResponseTrackerId?: string | null | undefined;
234452
235407
  attachments?: {
234453
235408
  files?: {
234454
- fileId: string;
234455
- fileUrl: string;
235409
+ id: string;
235410
+ url: string;
235411
+ source?: {
235412
+ type: "UserUpload";
235413
+ userId: string;
235414
+ } | {
235415
+ type: "Figma";
235416
+ renderMode: "Image" | "HTML";
235417
+ } | undefined;
234456
235418
  }[] | undefined;
234457
235419
  iterationId?: string | undefined;
234458
235420
  } | undefined;
@@ -234481,8 +235443,15 @@ declare const DTOThreadMessageResponse: z__default.ZodObject<{
234481
235443
  agentResponseTrackerId?: string | null | undefined;
234482
235444
  attachments?: {
234483
235445
  files?: {
234484
- fileId: string;
234485
- fileUrl: string;
235446
+ id: string;
235447
+ url: string;
235448
+ source?: {
235449
+ type: "UserUpload";
235450
+ userId: string;
235451
+ } | {
235452
+ type: "Figma";
235453
+ renderMode: "Image" | "HTML";
235454
+ } | undefined;
234486
235455
  }[] | undefined;
234487
235456
  iterationId?: string | undefined;
234488
235457
  } | undefined;
@@ -234581,26 +235550,78 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234581
235550
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234582
235551
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234583
235552
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234584
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234585
- fileId: z__default.ZodString;
234586
- fileUrl: z__default.ZodString;
234587
- }, "strip", z__default.ZodTypeAny, {
234588
- fileId: string;
234589
- fileUrl: string;
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;
234590
235590
  }, {
234591
- fileId: string;
234592
- fileUrl: string;
235591
+ id: string;
235592
+ url: string;
235593
+ source?: {
235594
+ type: "UserUpload";
235595
+ userId: string;
235596
+ } | {
235597
+ type: "Figma";
235598
+ renderMode: "Image" | "HTML";
235599
+ } | undefined;
234593
235600
  }>, "many">>;
234594
235601
  }, "strip", z__default.ZodTypeAny, {
234595
235602
  files?: {
234596
- fileId: string;
234597
- fileUrl: string;
235603
+ id: string;
235604
+ url: string;
235605
+ source?: {
235606
+ type: "UserUpload";
235607
+ userId: string;
235608
+ } | {
235609
+ type: "Figma";
235610
+ renderMode: "Image" | "HTML";
235611
+ } | undefined;
234598
235612
  }[] | undefined;
234599
235613
  iterationId?: string | undefined;
234600
235614
  }, {
234601
235615
  files?: {
234602
- fileId: string;
234603
- fileUrl: string;
235616
+ id: string;
235617
+ url: string;
235618
+ source?: {
235619
+ type: "UserUpload";
235620
+ userId: string;
235621
+ } | {
235622
+ type: "Figma";
235623
+ renderMode: "Image" | "HTML";
235624
+ } | undefined;
234604
235625
  }[] | undefined;
234605
235626
  iterationId?: string | undefined;
234606
235627
  }>>;
@@ -234632,8 +235653,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234632
235653
  agentResponseTrackerId?: string | null | undefined;
234633
235654
  attachments?: {
234634
235655
  files?: {
234635
- fileId: string;
234636
- fileUrl: string;
235656
+ id: string;
235657
+ url: string;
235658
+ source?: {
235659
+ type: "UserUpload";
235660
+ userId: string;
235661
+ } | {
235662
+ type: "Figma";
235663
+ renderMode: "Image" | "HTML";
235664
+ } | undefined;
234637
235665
  }[] | undefined;
234638
235666
  iterationId?: string | undefined;
234639
235667
  } | undefined;
@@ -234660,8 +235688,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234660
235688
  agentResponseTrackerId?: string | null | undefined;
234661
235689
  attachments?: {
234662
235690
  files?: {
234663
- fileId: string;
234664
- fileUrl: string;
235691
+ id: string;
235692
+ url: string;
235693
+ source?: {
235694
+ type: "UserUpload";
235695
+ userId: string;
235696
+ } | {
235697
+ type: "Figma";
235698
+ renderMode: "Image" | "HTML";
235699
+ } | undefined;
234665
235700
  }[] | undefined;
234666
235701
  iterationId?: string | undefined;
234667
235702
  } | undefined;
@@ -234707,8 +235742,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234707
235742
  agentResponseTrackerId?: string | null | undefined;
234708
235743
  attachments?: {
234709
235744
  files?: {
234710
- fileId: string;
234711
- fileUrl: string;
235745
+ id: string;
235746
+ url: string;
235747
+ source?: {
235748
+ type: "UserUpload";
235749
+ userId: string;
235750
+ } | {
235751
+ type: "Figma";
235752
+ renderMode: "Image" | "HTML";
235753
+ } | undefined;
234712
235754
  }[] | undefined;
234713
235755
  iterationId?: string | undefined;
234714
235756
  } | undefined;
@@ -234744,8 +235786,15 @@ declare const DTOThreadMessageListResponse: z__default.ZodObject<{
234744
235786
  agentResponseTrackerId?: string | null | undefined;
234745
235787
  attachments?: {
234746
235788
  files?: {
234747
- fileId: string;
234748
- fileUrl: string;
235789
+ id: string;
235790
+ url: string;
235791
+ source?: {
235792
+ type: "UserUpload";
235793
+ userId: string;
235794
+ } | {
235795
+ type: "Figma";
235796
+ renderMode: "Image" | "HTML";
235797
+ } | undefined;
234749
235798
  }[] | undefined;
234750
235799
  iterationId?: string | undefined;
234751
235800
  } | undefined;
@@ -234819,26 +235868,78 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234819
235868
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
234820
235869
  attachments: z__default.ZodOptional<z__default.ZodObject<{
234821
235870
  iterationId: z__default.ZodOptional<z__default.ZodString>;
234822
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
234823
- fileId: z__default.ZodString;
234824
- fileUrl: z__default.ZodString;
234825
- }, "strip", z__default.ZodTypeAny, {
234826
- fileId: string;
234827
- fileUrl: string;
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;
234828
235908
  }, {
234829
- fileId: string;
234830
- fileUrl: string;
235909
+ id: string;
235910
+ url: string;
235911
+ source?: {
235912
+ type: "UserUpload";
235913
+ userId: string;
235914
+ } | {
235915
+ type: "Figma";
235916
+ renderMode: "Image" | "HTML";
235917
+ } | undefined;
234831
235918
  }>, "many">>;
234832
235919
  }, "strip", z__default.ZodTypeAny, {
234833
235920
  files?: {
234834
- fileId: string;
234835
- fileUrl: string;
235921
+ id: string;
235922
+ url: string;
235923
+ source?: {
235924
+ type: "UserUpload";
235925
+ userId: string;
235926
+ } | {
235927
+ type: "Figma";
235928
+ renderMode: "Image" | "HTML";
235929
+ } | undefined;
234836
235930
  }[] | undefined;
234837
235931
  iterationId?: string | undefined;
234838
235932
  }, {
234839
235933
  files?: {
234840
- fileId: string;
234841
- fileUrl: string;
235934
+ id: string;
235935
+ url: string;
235936
+ source?: {
235937
+ type: "UserUpload";
235938
+ userId: string;
235939
+ } | {
235940
+ type: "Figma";
235941
+ renderMode: "Image" | "HTML";
235942
+ } | undefined;
234842
235943
  }[] | undefined;
234843
235944
  iterationId?: string | undefined;
234844
235945
  }>>;
@@ -234870,8 +235971,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234870
235971
  agentResponseTrackerId?: string | null | undefined;
234871
235972
  attachments?: {
234872
235973
  files?: {
234873
- fileId: string;
234874
- fileUrl: string;
235974
+ id: string;
235975
+ url: string;
235976
+ source?: {
235977
+ type: "UserUpload";
235978
+ userId: string;
235979
+ } | {
235980
+ type: "Figma";
235981
+ renderMode: "Image" | "HTML";
235982
+ } | undefined;
234875
235983
  }[] | undefined;
234876
235984
  iterationId?: string | undefined;
234877
235985
  } | undefined;
@@ -234898,8 +236006,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234898
236006
  agentResponseTrackerId?: string | null | undefined;
234899
236007
  attachments?: {
234900
236008
  files?: {
234901
- fileId: string;
234902
- fileUrl: string;
236009
+ id: string;
236010
+ url: string;
236011
+ source?: {
236012
+ type: "UserUpload";
236013
+ userId: string;
236014
+ } | {
236015
+ type: "Figma";
236016
+ renderMode: "Image" | "HTML";
236017
+ } | undefined;
234903
236018
  }[] | undefined;
234904
236019
  iterationId?: string | undefined;
234905
236020
  } | undefined;
@@ -234929,8 +236044,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234929
236044
  agentResponseTrackerId?: string | null | undefined;
234930
236045
  attachments?: {
234931
236046
  files?: {
234932
- fileId: string;
234933
- fileUrl: string;
236047
+ id: string;
236048
+ url: string;
236049
+ source?: {
236050
+ type: "UserUpload";
236051
+ userId: string;
236052
+ } | {
236053
+ type: "Figma";
236054
+ renderMode: "Image" | "HTML";
236055
+ } | undefined;
234934
236056
  }[] | undefined;
234935
236057
  iterationId?: string | undefined;
234936
236058
  } | undefined;
@@ -234960,8 +236082,15 @@ declare const DTOThreadEventMessagesSent: z__default.ZodObject<{
234960
236082
  agentResponseTrackerId?: string | null | undefined;
234961
236083
  attachments?: {
234962
236084
  files?: {
234963
- fileId: string;
234964
- fileUrl: string;
236085
+ id: string;
236086
+ url: string;
236087
+ source?: {
236088
+ type: "UserUpload";
236089
+ userId: string;
236090
+ } | {
236091
+ type: "Figma";
236092
+ renderMode: "Image" | "HTML";
236093
+ } | undefined;
234965
236094
  }[] | undefined;
234966
236095
  iterationId?: string | undefined;
234967
236096
  } | undefined;
@@ -235028,26 +236157,78 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235028
236157
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235029
236158
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235030
236159
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235031
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235032
- fileId: z__default.ZodString;
235033
- fileUrl: z__default.ZodString;
235034
- }, "strip", z__default.ZodTypeAny, {
235035
- fileId: string;
235036
- fileUrl: string;
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;
235037
236197
  }, {
235038
- fileId: string;
235039
- fileUrl: string;
236198
+ id: string;
236199
+ url: string;
236200
+ source?: {
236201
+ type: "UserUpload";
236202
+ userId: string;
236203
+ } | {
236204
+ type: "Figma";
236205
+ renderMode: "Image" | "HTML";
236206
+ } | undefined;
235040
236207
  }>, "many">>;
235041
236208
  }, "strip", z__default.ZodTypeAny, {
235042
236209
  files?: {
235043
- fileId: string;
235044
- fileUrl: string;
236210
+ id: string;
236211
+ url: string;
236212
+ source?: {
236213
+ type: "UserUpload";
236214
+ userId: string;
236215
+ } | {
236216
+ type: "Figma";
236217
+ renderMode: "Image" | "HTML";
236218
+ } | undefined;
235045
236219
  }[] | undefined;
235046
236220
  iterationId?: string | undefined;
235047
236221
  }, {
235048
236222
  files?: {
235049
- fileId: string;
235050
- fileUrl: string;
236223
+ id: string;
236224
+ url: string;
236225
+ source?: {
236226
+ type: "UserUpload";
236227
+ userId: string;
236228
+ } | {
236229
+ type: "Figma";
236230
+ renderMode: "Image" | "HTML";
236231
+ } | undefined;
235051
236232
  }[] | undefined;
235052
236233
  iterationId?: string | undefined;
235053
236234
  }>>;
@@ -235079,8 +236260,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235079
236260
  agentResponseTrackerId?: string | null | undefined;
235080
236261
  attachments?: {
235081
236262
  files?: {
235082
- fileId: string;
235083
- fileUrl: string;
236263
+ id: string;
236264
+ url: string;
236265
+ source?: {
236266
+ type: "UserUpload";
236267
+ userId: string;
236268
+ } | {
236269
+ type: "Figma";
236270
+ renderMode: "Image" | "HTML";
236271
+ } | undefined;
235084
236272
  }[] | undefined;
235085
236273
  iterationId?: string | undefined;
235086
236274
  } | undefined;
@@ -235107,8 +236295,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235107
236295
  agentResponseTrackerId?: string | null | undefined;
235108
236296
  attachments?: {
235109
236297
  files?: {
235110
- fileId: string;
235111
- fileUrl: string;
236298
+ id: string;
236299
+ url: string;
236300
+ source?: {
236301
+ type: "UserUpload";
236302
+ userId: string;
236303
+ } | {
236304
+ type: "Figma";
236305
+ renderMode: "Image" | "HTML";
236306
+ } | undefined;
235112
236307
  }[] | undefined;
235113
236308
  iterationId?: string | undefined;
235114
236309
  } | undefined;
@@ -235138,8 +236333,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235138
236333
  agentResponseTrackerId?: string | null | undefined;
235139
236334
  attachments?: {
235140
236335
  files?: {
235141
- fileId: string;
235142
- fileUrl: string;
236336
+ id: string;
236337
+ url: string;
236338
+ source?: {
236339
+ type: "UserUpload";
236340
+ userId: string;
236341
+ } | {
236342
+ type: "Figma";
236343
+ renderMode: "Image" | "HTML";
236344
+ } | undefined;
235143
236345
  }[] | undefined;
235144
236346
  iterationId?: string | undefined;
235145
236347
  } | undefined;
@@ -235169,8 +236371,15 @@ declare const DTOThreadEventMessagesUpdated: z__default.ZodObject<{
235169
236371
  agentResponseTrackerId?: string | null | undefined;
235170
236372
  attachments?: {
235171
236373
  files?: {
235172
- fileId: string;
235173
- fileUrl: string;
236374
+ id: string;
236375
+ url: string;
236376
+ source?: {
236377
+ type: "UserUpload";
236378
+ userId: string;
236379
+ } | {
236380
+ type: "Figma";
236381
+ renderMode: "Image" | "HTML";
236382
+ } | undefined;
235174
236383
  }[] | undefined;
235175
236384
  iterationId?: string | undefined;
235176
236385
  } | undefined;
@@ -235309,26 +236518,78 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235309
236518
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235310
236519
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235311
236520
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235312
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235313
- fileId: z__default.ZodString;
235314
- fileUrl: z__default.ZodString;
235315
- }, "strip", z__default.ZodTypeAny, {
235316
- fileId: string;
235317
- fileUrl: string;
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;
235318
236558
  }, {
235319
- fileId: string;
235320
- fileUrl: string;
236559
+ id: string;
236560
+ url: string;
236561
+ source?: {
236562
+ type: "UserUpload";
236563
+ userId: string;
236564
+ } | {
236565
+ type: "Figma";
236566
+ renderMode: "Image" | "HTML";
236567
+ } | undefined;
235321
236568
  }>, "many">>;
235322
236569
  }, "strip", z__default.ZodTypeAny, {
235323
236570
  files?: {
235324
- fileId: string;
235325
- fileUrl: string;
236571
+ id: string;
236572
+ url: string;
236573
+ source?: {
236574
+ type: "UserUpload";
236575
+ userId: string;
236576
+ } | {
236577
+ type: "Figma";
236578
+ renderMode: "Image" | "HTML";
236579
+ } | undefined;
235326
236580
  }[] | undefined;
235327
236581
  iterationId?: string | undefined;
235328
236582
  }, {
235329
236583
  files?: {
235330
- fileId: string;
235331
- fileUrl: string;
236584
+ id: string;
236585
+ url: string;
236586
+ source?: {
236587
+ type: "UserUpload";
236588
+ userId: string;
236589
+ } | {
236590
+ type: "Figma";
236591
+ renderMode: "Image" | "HTML";
236592
+ } | undefined;
235332
236593
  }[] | undefined;
235333
236594
  iterationId?: string | undefined;
235334
236595
  }>>;
@@ -235360,8 +236621,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235360
236621
  agentResponseTrackerId?: string | null | undefined;
235361
236622
  attachments?: {
235362
236623
  files?: {
235363
- fileId: string;
235364
- fileUrl: string;
236624
+ id: string;
236625
+ url: string;
236626
+ source?: {
236627
+ type: "UserUpload";
236628
+ userId: string;
236629
+ } | {
236630
+ type: "Figma";
236631
+ renderMode: "Image" | "HTML";
236632
+ } | undefined;
235365
236633
  }[] | undefined;
235366
236634
  iterationId?: string | undefined;
235367
236635
  } | undefined;
@@ -235388,8 +236656,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235388
236656
  agentResponseTrackerId?: string | null | undefined;
235389
236657
  attachments?: {
235390
236658
  files?: {
235391
- fileId: string;
235392
- fileUrl: string;
236659
+ id: string;
236660
+ url: string;
236661
+ source?: {
236662
+ type: "UserUpload";
236663
+ userId: string;
236664
+ } | {
236665
+ type: "Figma";
236666
+ renderMode: "Image" | "HTML";
236667
+ } | undefined;
235393
236668
  }[] | undefined;
235394
236669
  iterationId?: string | undefined;
235395
236670
  } | undefined;
@@ -235419,8 +236694,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235419
236694
  agentResponseTrackerId?: string | null | undefined;
235420
236695
  attachments?: {
235421
236696
  files?: {
235422
- fileId: string;
235423
- fileUrl: string;
236697
+ id: string;
236698
+ url: string;
236699
+ source?: {
236700
+ type: "UserUpload";
236701
+ userId: string;
236702
+ } | {
236703
+ type: "Figma";
236704
+ renderMode: "Image" | "HTML";
236705
+ } | undefined;
235424
236706
  }[] | undefined;
235425
236707
  iterationId?: string | undefined;
235426
236708
  } | undefined;
@@ -235450,8 +236732,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235450
236732
  agentResponseTrackerId?: string | null | undefined;
235451
236733
  attachments?: {
235452
236734
  files?: {
235453
- fileId: string;
235454
- fileUrl: string;
236735
+ id: string;
236736
+ url: string;
236737
+ source?: {
236738
+ type: "UserUpload";
236739
+ userId: string;
236740
+ } | {
236741
+ type: "Figma";
236742
+ renderMode: "Image" | "HTML";
236743
+ } | undefined;
235455
236744
  }[] | undefined;
235456
236745
  iterationId?: string | undefined;
235457
236746
  } | undefined;
@@ -235516,26 +236805,78 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235516
236805
  agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
235517
236806
  attachments: z__default.ZodOptional<z__default.ZodObject<{
235518
236807
  iterationId: z__default.ZodOptional<z__default.ZodString>;
235519
- files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
235520
- fileId: z__default.ZodString;
235521
- fileUrl: z__default.ZodString;
235522
- }, "strip", z__default.ZodTypeAny, {
235523
- fileId: string;
235524
- fileUrl: string;
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;
235525
236845
  }, {
235526
- fileId: string;
235527
- fileUrl: string;
236846
+ id: string;
236847
+ url: string;
236848
+ source?: {
236849
+ type: "UserUpload";
236850
+ userId: string;
236851
+ } | {
236852
+ type: "Figma";
236853
+ renderMode: "Image" | "HTML";
236854
+ } | undefined;
235528
236855
  }>, "many">>;
235529
236856
  }, "strip", z__default.ZodTypeAny, {
235530
236857
  files?: {
235531
- fileId: string;
235532
- fileUrl: string;
236858
+ id: string;
236859
+ url: string;
236860
+ source?: {
236861
+ type: "UserUpload";
236862
+ userId: string;
236863
+ } | {
236864
+ type: "Figma";
236865
+ renderMode: "Image" | "HTML";
236866
+ } | undefined;
235533
236867
  }[] | undefined;
235534
236868
  iterationId?: string | undefined;
235535
236869
  }, {
235536
236870
  files?: {
235537
- fileId: string;
235538
- fileUrl: string;
236871
+ id: string;
236872
+ url: string;
236873
+ source?: {
236874
+ type: "UserUpload";
236875
+ userId: string;
236876
+ } | {
236877
+ type: "Figma";
236878
+ renderMode: "Image" | "HTML";
236879
+ } | undefined;
235539
236880
  }[] | undefined;
235540
236881
  iterationId?: string | undefined;
235541
236882
  }>>;
@@ -235567,8 +236908,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235567
236908
  agentResponseTrackerId?: string | null | undefined;
235568
236909
  attachments?: {
235569
236910
  files?: {
235570
- fileId: string;
235571
- fileUrl: string;
236911
+ id: string;
236912
+ url: string;
236913
+ source?: {
236914
+ type: "UserUpload";
236915
+ userId: string;
236916
+ } | {
236917
+ type: "Figma";
236918
+ renderMode: "Image" | "HTML";
236919
+ } | undefined;
235572
236920
  }[] | undefined;
235573
236921
  iterationId?: string | undefined;
235574
236922
  } | undefined;
@@ -235595,8 +236943,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235595
236943
  agentResponseTrackerId?: string | null | undefined;
235596
236944
  attachments?: {
235597
236945
  files?: {
235598
- fileId: string;
235599
- fileUrl: string;
236946
+ id: string;
236947
+ url: string;
236948
+ source?: {
236949
+ type: "UserUpload";
236950
+ userId: string;
236951
+ } | {
236952
+ type: "Figma";
236953
+ renderMode: "Image" | "HTML";
236954
+ } | undefined;
235600
236955
  }[] | undefined;
235601
236956
  iterationId?: string | undefined;
235602
236957
  } | undefined;
@@ -235626,8 +236981,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235626
236981
  agentResponseTrackerId?: string | null | undefined;
235627
236982
  attachments?: {
235628
236983
  files?: {
235629
- fileId: string;
235630
- fileUrl: string;
236984
+ id: string;
236985
+ url: string;
236986
+ source?: {
236987
+ type: "UserUpload";
236988
+ userId: string;
236989
+ } | {
236990
+ type: "Figma";
236991
+ renderMode: "Image" | "HTML";
236992
+ } | undefined;
235631
236993
  }[] | undefined;
235632
236994
  iterationId?: string | undefined;
235633
236995
  } | undefined;
@@ -235657,8 +237019,15 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
235657
237019
  agentResponseTrackerId?: string | null | undefined;
235658
237020
  attachments?: {
235659
237021
  files?: {
235660
- fileId: string;
235661
- fileUrl: string;
237022
+ id: string;
237023
+ url: string;
237024
+ source?: {
237025
+ type: "UserUpload";
237026
+ userId: string;
237027
+ } | {
237028
+ type: "Figma";
237029
+ renderMode: "Image" | "HTML";
237030
+ } | undefined;
235662
237031
  }[] | undefined;
235663
237032
  iterationId?: string | undefined;
235664
237033
  } | undefined;
@@ -256312,8 +257681,15 @@ declare class ForgeFeatureIterationsEndpoint {
256312
257681
  staticPreviewUrl?: string | undefined;
256313
257682
  isBookmarked?: boolean | undefined;
256314
257683
  thumbnail?: {
256315
- fileId: string;
256316
- 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;
256317
257693
  } | undefined;
256318
257694
  artifactsDiff?: {
256319
257695
  created: string[];
@@ -256464,8 +257840,15 @@ declare class ForgeProjectFeaturesEndpoint {
256464
257840
  staticPreviewUrl?: string | undefined;
256465
257841
  isBookmarked?: boolean | undefined;
256466
257842
  thumbnail?: {
256467
- fileId: string;
256468
- 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;
256469
257852
  } | undefined;
256470
257853
  artifactsDiff?: {
256471
257854
  created: string[];
@@ -264976,4 +266359,4 @@ declare function isValidRedirectPath(path: string): {
264976
266359
  reason: ValidationErrorReason | undefined;
264977
266360
  };
264978
266361
 
264979
- export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileUploadBulkInput, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
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 };