@supernova-studio/client 1.15.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -78300,6 +78300,37 @@ declare const DTOForgeProjectActionFeatureDelete: z__default.ZodObject<{
78300
78300
  };
78301
78301
  }>;
78302
78302
  type DTOForgeProjectActionFeatureDelete = z__default.infer<typeof DTOForgeProjectActionFeatureDelete>;
78303
+ declare const DTOForgeProjectActionFeatureMove: z__default.ZodObject<{
78304
+ type: z__default.ZodLiteral<"FeatureMove">;
78305
+ input: z__default.ZodObject<{
78306
+ id: z__default.ZodString;
78307
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78308
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78309
+ }, "strip", z__default.ZodTypeAny, {
78310
+ id: string;
78311
+ sectionId?: string | null | undefined;
78312
+ afterId?: string | null | undefined;
78313
+ }, {
78314
+ id: string;
78315
+ sectionId?: string | null | undefined;
78316
+ afterId?: string | null | undefined;
78317
+ }>;
78318
+ }, "strip", z__default.ZodTypeAny, {
78319
+ type: "FeatureMove";
78320
+ input: {
78321
+ id: string;
78322
+ sectionId?: string | null | undefined;
78323
+ afterId?: string | null | undefined;
78324
+ };
78325
+ }, {
78326
+ type: "FeatureMove";
78327
+ input: {
78328
+ id: string;
78329
+ sectionId?: string | null | undefined;
78330
+ afterId?: string | null | undefined;
78331
+ };
78332
+ }>;
78333
+ type DTOForgeProjectActionFeatureMove = z__default.infer<typeof DTOForgeProjectActionFeatureMove>;
78303
78334
  declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
78304
78335
  type: z__default.ZodLiteral<"ArtifactCreate">;
78305
78336
  input: z__default.ZodObject<Omit<{
@@ -78308,44 +78339,40 @@ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
78308
78339
  iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78309
78340
  title: z__default.ZodString;
78310
78341
  previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78311
- path: z__default.ZodString;
78312
78342
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78313
78343
  createdAt: z__default.ZodDate;
78314
78344
  updatedAt: z__default.ZodDate;
78315
78345
  createdByUserId: z__default.ZodString;
78316
- }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78346
+ sectionId: z__default.ZodOptional<z__default.ZodString>;
78347
+ }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78317
78348
  id: string;
78318
- path: string;
78319
- sortOrder: number;
78320
78349
  title: string;
78321
78350
  previewUrl?: string | null | undefined;
78351
+ sectionId?: string | undefined;
78322
78352
  iterationId?: string | null | undefined;
78323
78353
  }, {
78324
78354
  id: string;
78325
- path: string;
78326
78355
  title: string;
78327
- sortOrder?: number | undefined;
78328
78356
  previewUrl?: string | null | undefined;
78357
+ sectionId?: string | undefined;
78329
78358
  iterationId?: string | null | undefined;
78330
78359
  }>;
78331
78360
  }, "strip", z__default.ZodTypeAny, {
78332
78361
  type: "ArtifactCreate";
78333
78362
  input: {
78334
78363
  id: string;
78335
- path: string;
78336
- sortOrder: number;
78337
78364
  title: string;
78338
78365
  previewUrl?: string | null | undefined;
78366
+ sectionId?: string | undefined;
78339
78367
  iterationId?: string | null | undefined;
78340
78368
  };
78341
78369
  }, {
78342
78370
  type: "ArtifactCreate";
78343
78371
  input: {
78344
78372
  id: string;
78345
- path: string;
78346
78373
  title: string;
78347
- sortOrder?: number | undefined;
78348
78374
  previewUrl?: string | null | undefined;
78375
+ sectionId?: string | undefined;
78349
78376
  iterationId?: string | null | undefined;
78350
78377
  };
78351
78378
  }>;
@@ -78353,42 +78380,37 @@ type DTOForgeProjectActionArtifactCreate = z__default.infer<typeof DTOForgeProje
78353
78380
  declare const DTOForgeProjectActionArtifactUpdate: z__default.ZodObject<{
78354
78381
  type: z__default.ZodLiteral<"ArtifactUpdate">;
78355
78382
  input: z__default.ZodObject<{
78356
- path: z__default.ZodOptional<z__default.ZodString>;
78357
- sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
78358
78383
  title: z__default.ZodOptional<z__default.ZodString>;
78359
78384
  previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78385
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
78360
78386
  } & {
78361
78387
  id: z__default.ZodString;
78362
78388
  }, "strip", z__default.ZodTypeAny, {
78363
78389
  id: string;
78364
- path?: string | undefined;
78365
- sortOrder?: number | undefined;
78366
78390
  title?: string | undefined;
78367
78391
  previewUrl?: string | null | undefined;
78392
+ sectionId?: string | undefined;
78368
78393
  }, {
78369
78394
  id: string;
78370
- path?: string | undefined;
78371
- sortOrder?: number | undefined;
78372
78395
  title?: string | undefined;
78373
78396
  previewUrl?: string | null | undefined;
78397
+ sectionId?: string | undefined;
78374
78398
  }>;
78375
78399
  }, "strip", z__default.ZodTypeAny, {
78376
78400
  type: "ArtifactUpdate";
78377
78401
  input: {
78378
78402
  id: string;
78379
- path?: string | undefined;
78380
- sortOrder?: number | undefined;
78381
78403
  title?: string | undefined;
78382
78404
  previewUrl?: string | null | undefined;
78405
+ sectionId?: string | undefined;
78383
78406
  };
78384
78407
  }, {
78385
78408
  type: "ArtifactUpdate";
78386
78409
  input: {
78387
78410
  id: string;
78388
- path?: string | undefined;
78389
- sortOrder?: number | undefined;
78390
78411
  title?: string | undefined;
78391
78412
  previewUrl?: string | null | undefined;
78413
+ sectionId?: string | undefined;
78392
78414
  };
78393
78415
  }>;
78394
78416
  type DTOForgeProjectActionArtifactUpdate = z__default.infer<typeof DTOForgeProjectActionArtifactUpdate>;
@@ -78413,6 +78435,175 @@ declare const DTOForgeProjectActionArtifactDelete: z__default.ZodObject<{
78413
78435
  };
78414
78436
  }>;
78415
78437
  type DTOForgeProjectActionArtifactDelete = z__default.infer<typeof DTOForgeProjectActionArtifactDelete>;
78438
+ declare const DTOForgeProjectActionArtifactMove: z__default.ZodObject<{
78439
+ type: z__default.ZodLiteral<"ArtifactMove">;
78440
+ input: z__default.ZodObject<{
78441
+ id: z__default.ZodString;
78442
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78443
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78444
+ }, "strip", z__default.ZodTypeAny, {
78445
+ id: string;
78446
+ sectionId?: string | null | undefined;
78447
+ afterId?: string | null | undefined;
78448
+ }, {
78449
+ id: string;
78450
+ sectionId?: string | null | undefined;
78451
+ afterId?: string | null | undefined;
78452
+ }>;
78453
+ }, "strip", z__default.ZodTypeAny, {
78454
+ type: "ArtifactMove";
78455
+ input: {
78456
+ id: string;
78457
+ sectionId?: string | null | undefined;
78458
+ afterId?: string | null | undefined;
78459
+ };
78460
+ }, {
78461
+ type: "ArtifactMove";
78462
+ input: {
78463
+ id: string;
78464
+ sectionId?: string | null | undefined;
78465
+ afterId?: string | null | undefined;
78466
+ };
78467
+ }>;
78468
+ type DTOForgeProjectActionArtifactMove = z__default.infer<typeof DTOForgeProjectActionArtifactMove>;
78469
+ declare const DTOForgeProjectActionSectionCreate: z__default.ZodObject<{
78470
+ type: z__default.ZodLiteral<"SectionCreate">;
78471
+ input: z__default.ZodObject<Pick<{
78472
+ id: z__default.ZodString;
78473
+ projectId: z__default.ZodString;
78474
+ name: z__default.ZodString;
78475
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78476
+ createdAt: z__default.ZodDate;
78477
+ updatedAt: z__default.ZodDate;
78478
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78479
+ }, "id" | "name" | "childType"> & {
78480
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78481
+ }, "strip", z__default.ZodTypeAny, {
78482
+ id: string;
78483
+ name: string;
78484
+ childType: "Artifact" | "Feature";
78485
+ afterSectionId?: string | null | undefined;
78486
+ }, {
78487
+ id: string;
78488
+ name: string;
78489
+ childType: "Artifact" | "Feature";
78490
+ afterSectionId?: string | null | undefined;
78491
+ }>;
78492
+ }, "strip", z__default.ZodTypeAny, {
78493
+ type: "SectionCreate";
78494
+ input: {
78495
+ id: string;
78496
+ name: string;
78497
+ childType: "Artifact" | "Feature";
78498
+ afterSectionId?: string | null | undefined;
78499
+ };
78500
+ }, {
78501
+ type: "SectionCreate";
78502
+ input: {
78503
+ id: string;
78504
+ name: string;
78505
+ childType: "Artifact" | "Feature";
78506
+ afterSectionId?: string | null | undefined;
78507
+ };
78508
+ }>;
78509
+ type DTOForgeProjectActionSectionCreate = z__default.infer<typeof DTOForgeProjectActionSectionCreate>;
78510
+ declare const DTOForgeProjectActionSectionUpdate: z__default.ZodObject<{
78511
+ type: z__default.ZodLiteral<"SectionUpdate">;
78512
+ input: z__default.ZodObject<Pick<{
78513
+ id: z__default.ZodString;
78514
+ projectId: z__default.ZodString;
78515
+ name: z__default.ZodString;
78516
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78517
+ createdAt: z__default.ZodDate;
78518
+ updatedAt: z__default.ZodDate;
78519
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78520
+ }, "id" | "name">, "strip", z__default.ZodTypeAny, {
78521
+ id: string;
78522
+ name: string;
78523
+ }, {
78524
+ id: string;
78525
+ name: string;
78526
+ }>;
78527
+ }, "strip", z__default.ZodTypeAny, {
78528
+ type: "SectionUpdate";
78529
+ input: {
78530
+ id: string;
78531
+ name: string;
78532
+ };
78533
+ }, {
78534
+ type: "SectionUpdate";
78535
+ input: {
78536
+ id: string;
78537
+ name: string;
78538
+ };
78539
+ }>;
78540
+ type DTOForgeProjectActionSectionUpdate = z__default.infer<typeof DTOForgeProjectActionSectionUpdate>;
78541
+ declare const DTOForgeProjectActionSectionDelete: z__default.ZodObject<{
78542
+ type: z__default.ZodLiteral<"SectionDelete">;
78543
+ input: z__default.ZodObject<Pick<{
78544
+ id: z__default.ZodString;
78545
+ projectId: z__default.ZodString;
78546
+ name: z__default.ZodString;
78547
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78548
+ createdAt: z__default.ZodDate;
78549
+ updatedAt: z__default.ZodDate;
78550
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78551
+ }, "id"> & {
78552
+ deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
78553
+ }, "strip", z__default.ZodTypeAny, {
78554
+ id: string;
78555
+ deleteChildren: boolean;
78556
+ }, {
78557
+ id: string;
78558
+ deleteChildren?: boolean | undefined;
78559
+ }>;
78560
+ }, "strip", z__default.ZodTypeAny, {
78561
+ type: "SectionDelete";
78562
+ input: {
78563
+ id: string;
78564
+ deleteChildren: boolean;
78565
+ };
78566
+ }, {
78567
+ type: "SectionDelete";
78568
+ input: {
78569
+ id: string;
78570
+ deleteChildren?: boolean | undefined;
78571
+ };
78572
+ }>;
78573
+ type DTOForgeProjectActionSectionDelete = z__default.infer<typeof DTOForgeProjectActionSectionDelete>;
78574
+ declare const DTOForgeProjectActionSectionMove: z__default.ZodObject<{
78575
+ type: z__default.ZodLiteral<"SectionMove">;
78576
+ input: z__default.ZodObject<Pick<{
78577
+ id: z__default.ZodString;
78578
+ projectId: z__default.ZodString;
78579
+ name: z__default.ZodString;
78580
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78581
+ createdAt: z__default.ZodDate;
78582
+ updatedAt: z__default.ZodDate;
78583
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78584
+ }, "id"> & {
78585
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78586
+ }, "strip", z__default.ZodTypeAny, {
78587
+ id: string;
78588
+ afterSectionId?: string | null | undefined;
78589
+ }, {
78590
+ id: string;
78591
+ afterSectionId?: string | null | undefined;
78592
+ }>;
78593
+ }, "strip", z__default.ZodTypeAny, {
78594
+ type: "SectionMove";
78595
+ input: {
78596
+ id: string;
78597
+ afterSectionId?: string | null | undefined;
78598
+ };
78599
+ }, {
78600
+ type: "SectionMove";
78601
+ input: {
78602
+ id: string;
78603
+ afterSectionId?: string | null | undefined;
78604
+ };
78605
+ }>;
78606
+ type DTOForgeProjectActionSectionMove = z__default.infer<typeof DTOForgeProjectActionSectionMove>;
78416
78607
  declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
78417
78608
  type: z__default.ZodLiteral<"FeatureCreate">;
78418
78609
  input: z__default.ZodObject<{
@@ -78510,6 +78701,35 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78510
78701
  input: {
78511
78702
  id: string;
78512
78703
  };
78704
+ }>, z__default.ZodObject<{
78705
+ type: z__default.ZodLiteral<"FeatureMove">;
78706
+ input: z__default.ZodObject<{
78707
+ id: z__default.ZodString;
78708
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78709
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78710
+ }, "strip", z__default.ZodTypeAny, {
78711
+ id: string;
78712
+ sectionId?: string | null | undefined;
78713
+ afterId?: string | null | undefined;
78714
+ }, {
78715
+ id: string;
78716
+ sectionId?: string | null | undefined;
78717
+ afterId?: string | null | undefined;
78718
+ }>;
78719
+ }, "strip", z__default.ZodTypeAny, {
78720
+ type: "FeatureMove";
78721
+ input: {
78722
+ id: string;
78723
+ sectionId?: string | null | undefined;
78724
+ afterId?: string | null | undefined;
78725
+ };
78726
+ }, {
78727
+ type: "FeatureMove";
78728
+ input: {
78729
+ id: string;
78730
+ sectionId?: string | null | undefined;
78731
+ afterId?: string | null | undefined;
78732
+ };
78513
78733
  }>, z__default.ZodObject<{
78514
78734
  type: z__default.ZodLiteral<"ArtifactCreate">;
78515
78735
  input: z__default.ZodObject<Omit<{
@@ -78518,85 +78738,76 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78518
78738
  iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78519
78739
  title: z__default.ZodString;
78520
78740
  previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78521
- path: z__default.ZodString;
78522
78741
  sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78523
78742
  createdAt: z__default.ZodDate;
78524
78743
  updatedAt: z__default.ZodDate;
78525
78744
  createdByUserId: z__default.ZodString;
78526
- }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78745
+ sectionId: z__default.ZodOptional<z__default.ZodString>;
78746
+ }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78527
78747
  id: string;
78528
- path: string;
78529
- sortOrder: number;
78530
78748
  title: string;
78531
78749
  previewUrl?: string | null | undefined;
78750
+ sectionId?: string | undefined;
78532
78751
  iterationId?: string | null | undefined;
78533
78752
  }, {
78534
78753
  id: string;
78535
- path: string;
78536
78754
  title: string;
78537
- sortOrder?: number | undefined;
78538
78755
  previewUrl?: string | null | undefined;
78756
+ sectionId?: string | undefined;
78539
78757
  iterationId?: string | null | undefined;
78540
78758
  }>;
78541
78759
  }, "strip", z__default.ZodTypeAny, {
78542
78760
  type: "ArtifactCreate";
78543
78761
  input: {
78544
78762
  id: string;
78545
- path: string;
78546
- sortOrder: number;
78547
78763
  title: string;
78548
78764
  previewUrl?: string | null | undefined;
78765
+ sectionId?: string | undefined;
78549
78766
  iterationId?: string | null | undefined;
78550
78767
  };
78551
78768
  }, {
78552
78769
  type: "ArtifactCreate";
78553
78770
  input: {
78554
78771
  id: string;
78555
- path: string;
78556
78772
  title: string;
78557
- sortOrder?: number | undefined;
78558
78773
  previewUrl?: string | null | undefined;
78774
+ sectionId?: string | undefined;
78559
78775
  iterationId?: string | null | undefined;
78560
78776
  };
78561
78777
  }>, z__default.ZodObject<{
78562
78778
  type: z__default.ZodLiteral<"ArtifactUpdate">;
78563
78779
  input: z__default.ZodObject<{
78564
- path: z__default.ZodOptional<z__default.ZodString>;
78565
- sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
78566
78780
  title: z__default.ZodOptional<z__default.ZodString>;
78567
78781
  previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78782
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodString>>;
78568
78783
  } & {
78569
78784
  id: z__default.ZodString;
78570
78785
  }, "strip", z__default.ZodTypeAny, {
78571
78786
  id: string;
78572
- path?: string | undefined;
78573
- sortOrder?: number | undefined;
78574
78787
  title?: string | undefined;
78575
78788
  previewUrl?: string | null | undefined;
78789
+ sectionId?: string | undefined;
78576
78790
  }, {
78577
78791
  id: string;
78578
- path?: string | undefined;
78579
- sortOrder?: number | undefined;
78580
78792
  title?: string | undefined;
78581
78793
  previewUrl?: string | null | undefined;
78794
+ sectionId?: string | undefined;
78582
78795
  }>;
78583
78796
  }, "strip", z__default.ZodTypeAny, {
78584
78797
  type: "ArtifactUpdate";
78585
78798
  input: {
78586
78799
  id: string;
78587
- path?: string | undefined;
78588
- sortOrder?: number | undefined;
78589
78800
  title?: string | undefined;
78590
78801
  previewUrl?: string | null | undefined;
78802
+ sectionId?: string | undefined;
78591
78803
  };
78592
78804
  }, {
78593
78805
  type: "ArtifactUpdate";
78594
78806
  input: {
78595
78807
  id: string;
78596
- path?: string | undefined;
78597
- sortOrder?: number | undefined;
78598
78808
  title?: string | undefined;
78599
78809
  previewUrl?: string | null | undefined;
78810
+ sectionId?: string | undefined;
78600
78811
  };
78601
78812
  }>, z__default.ZodObject<{
78602
78813
  type: z__default.ZodLiteral<"ArtifactDelete">;
@@ -78617,6 +78828,165 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78617
78828
  input: {
78618
78829
  id: string;
78619
78830
  };
78831
+ }>, z__default.ZodObject<{
78832
+ type: z__default.ZodLiteral<"ArtifactMove">;
78833
+ input: z__default.ZodObject<{
78834
+ id: z__default.ZodString;
78835
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78836
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78837
+ }, "strip", z__default.ZodTypeAny, {
78838
+ id: string;
78839
+ sectionId?: string | null | undefined;
78840
+ afterId?: string | null | undefined;
78841
+ }, {
78842
+ id: string;
78843
+ sectionId?: string | null | undefined;
78844
+ afterId?: string | null | undefined;
78845
+ }>;
78846
+ }, "strip", z__default.ZodTypeAny, {
78847
+ type: "ArtifactMove";
78848
+ input: {
78849
+ id: string;
78850
+ sectionId?: string | null | undefined;
78851
+ afterId?: string | null | undefined;
78852
+ };
78853
+ }, {
78854
+ type: "ArtifactMove";
78855
+ input: {
78856
+ id: string;
78857
+ sectionId?: string | null | undefined;
78858
+ afterId?: string | null | undefined;
78859
+ };
78860
+ }>, z__default.ZodObject<{
78861
+ type: z__default.ZodLiteral<"SectionCreate">;
78862
+ input: z__default.ZodObject<Pick<{
78863
+ id: z__default.ZodString;
78864
+ projectId: z__default.ZodString;
78865
+ name: z__default.ZodString;
78866
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78867
+ createdAt: z__default.ZodDate;
78868
+ updatedAt: z__default.ZodDate;
78869
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78870
+ }, "id" | "name" | "childType"> & {
78871
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78872
+ }, "strip", z__default.ZodTypeAny, {
78873
+ id: string;
78874
+ name: string;
78875
+ childType: "Artifact" | "Feature";
78876
+ afterSectionId?: string | null | undefined;
78877
+ }, {
78878
+ id: string;
78879
+ name: string;
78880
+ childType: "Artifact" | "Feature";
78881
+ afterSectionId?: string | null | undefined;
78882
+ }>;
78883
+ }, "strip", z__default.ZodTypeAny, {
78884
+ type: "SectionCreate";
78885
+ input: {
78886
+ id: string;
78887
+ name: string;
78888
+ childType: "Artifact" | "Feature";
78889
+ afterSectionId?: string | null | undefined;
78890
+ };
78891
+ }, {
78892
+ type: "SectionCreate";
78893
+ input: {
78894
+ id: string;
78895
+ name: string;
78896
+ childType: "Artifact" | "Feature";
78897
+ afterSectionId?: string | null | undefined;
78898
+ };
78899
+ }>, z__default.ZodObject<{
78900
+ type: z__default.ZodLiteral<"SectionUpdate">;
78901
+ input: z__default.ZodObject<Pick<{
78902
+ id: z__default.ZodString;
78903
+ projectId: z__default.ZodString;
78904
+ name: z__default.ZodString;
78905
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78906
+ createdAt: z__default.ZodDate;
78907
+ updatedAt: z__default.ZodDate;
78908
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78909
+ }, "id" | "name">, "strip", z__default.ZodTypeAny, {
78910
+ id: string;
78911
+ name: string;
78912
+ }, {
78913
+ id: string;
78914
+ name: string;
78915
+ }>;
78916
+ }, "strip", z__default.ZodTypeAny, {
78917
+ type: "SectionUpdate";
78918
+ input: {
78919
+ id: string;
78920
+ name: string;
78921
+ };
78922
+ }, {
78923
+ type: "SectionUpdate";
78924
+ input: {
78925
+ id: string;
78926
+ name: string;
78927
+ };
78928
+ }>, z__default.ZodObject<{
78929
+ type: z__default.ZodLiteral<"SectionDelete">;
78930
+ input: z__default.ZodObject<Pick<{
78931
+ id: z__default.ZodString;
78932
+ projectId: z__default.ZodString;
78933
+ name: z__default.ZodString;
78934
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78935
+ createdAt: z__default.ZodDate;
78936
+ updatedAt: z__default.ZodDate;
78937
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78938
+ }, "id"> & {
78939
+ deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
78940
+ }, "strip", z__default.ZodTypeAny, {
78941
+ id: string;
78942
+ deleteChildren: boolean;
78943
+ }, {
78944
+ id: string;
78945
+ deleteChildren?: boolean | undefined;
78946
+ }>;
78947
+ }, "strip", z__default.ZodTypeAny, {
78948
+ type: "SectionDelete";
78949
+ input: {
78950
+ id: string;
78951
+ deleteChildren: boolean;
78952
+ };
78953
+ }, {
78954
+ type: "SectionDelete";
78955
+ input: {
78956
+ id: string;
78957
+ deleteChildren?: boolean | undefined;
78958
+ };
78959
+ }>, z__default.ZodObject<{
78960
+ type: z__default.ZodLiteral<"SectionMove">;
78961
+ input: z__default.ZodObject<Pick<{
78962
+ id: z__default.ZodString;
78963
+ projectId: z__default.ZodString;
78964
+ name: z__default.ZodString;
78965
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78966
+ createdAt: z__default.ZodDate;
78967
+ updatedAt: z__default.ZodDate;
78968
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
78969
+ }, "id"> & {
78970
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78971
+ }, "strip", z__default.ZodTypeAny, {
78972
+ id: string;
78973
+ afterSectionId?: string | null | undefined;
78974
+ }, {
78975
+ id: string;
78976
+ afterSectionId?: string | null | undefined;
78977
+ }>;
78978
+ }, "strip", z__default.ZodTypeAny, {
78979
+ type: "SectionMove";
78980
+ input: {
78981
+ id: string;
78982
+ afterSectionId?: string | null | undefined;
78983
+ };
78984
+ }, {
78985
+ type: "SectionMove";
78986
+ input: {
78987
+ id: string;
78988
+ afterSectionId?: string | null | undefined;
78989
+ };
78620
78990
  }>]>;
78621
78991
  type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
78622
78992
  type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
@@ -78657,13 +79027,12 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
78657
79027
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78658
79028
  title: z$1.ZodString;
78659
79029
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78660
- path: z$1.ZodString;
78661
79030
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78662
79031
  createdAt: z$1.ZodDate;
78663
79032
  updatedAt: z$1.ZodDate;
78664
79033
  createdByUserId: z$1.ZodString;
79034
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
78665
79035
  }, "strip", z$1.ZodTypeAny, {
78666
- path: string;
78667
79036
  id: string;
78668
79037
  createdAt: Date;
78669
79038
  updatedAt: Date;
@@ -78673,8 +79042,8 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
78673
79042
  projectId: string;
78674
79043
  previewUrl?: string | null | undefined;
78675
79044
  iterationId?: string | null | undefined;
79045
+ sectionId?: string | undefined;
78676
79046
  }, {
78677
- path: string;
78678
79047
  id: string;
78679
79048
  createdAt: Date;
78680
79049
  updatedAt: Date;
@@ -78684,27 +79053,25 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
78684
79053
  sortOrder?: number | undefined;
78685
79054
  previewUrl?: string | null | undefined;
78686
79055
  iterationId?: string | null | undefined;
79056
+ sectionId?: string | undefined;
78687
79057
  }>;
78688
79058
  type DTOForgeProjectArtifact = z$1.infer<typeof DTOForgeProjectArtifact>;
78689
79059
  declare const DTOForgeProjectArtifactUpdateInput: z$1.ZodObject<{
78690
- path: z$1.ZodOptional<z$1.ZodString>;
78691
- sortOrder: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodNumber>>;
78692
79060
  title: z$1.ZodOptional<z$1.ZodString>;
78693
79061
  previewUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
79062
+ sectionId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
78694
79063
  } & {
78695
79064
  id: z$1.ZodString;
78696
79065
  }, "strip", z$1.ZodTypeAny, {
78697
79066
  id: string;
78698
- path?: string | undefined;
78699
- sortOrder?: number | undefined;
78700
79067
  title?: string | undefined;
78701
79068
  previewUrl?: string | null | undefined;
79069
+ sectionId?: string | undefined;
78702
79070
  }, {
78703
79071
  id: string;
78704
- path?: string | undefined;
78705
- sortOrder?: number | undefined;
78706
79072
  title?: string | undefined;
78707
79073
  previewUrl?: string | null | undefined;
79074
+ sectionId?: string | undefined;
78708
79075
  }>;
78709
79076
  type DTOForgeProjectArtifactUpdateInput = z$1.infer<typeof DTOForgeProjectArtifactUpdateInput>;
78710
79077
  declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<Omit<{
@@ -78713,24 +79080,22 @@ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<Omit<{
78713
79080
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78714
79081
  title: z$1.ZodString;
78715
79082
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78716
- path: z$1.ZodString;
78717
79083
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78718
79084
  createdAt: z$1.ZodDate;
78719
79085
  updatedAt: z$1.ZodDate;
78720
79086
  createdByUserId: z$1.ZodString;
78721
- }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
79087
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
79088
+ }, "createdAt" | "updatedAt" | "sortOrder" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
78722
79089
  id: string;
78723
- path: string;
78724
- sortOrder: number;
78725
79090
  title: string;
78726
79091
  previewUrl?: string | null | undefined;
79092
+ sectionId?: string | undefined;
78727
79093
  iterationId?: string | null | undefined;
78728
79094
  }, {
78729
79095
  id: string;
78730
- path: string;
78731
79096
  title: string;
78732
- sortOrder?: number | undefined;
78733
79097
  previewUrl?: string | null | undefined;
79098
+ sectionId?: string | undefined;
78734
79099
  iterationId?: string | null | undefined;
78735
79100
  }>;
78736
79101
  type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
@@ -78742,6 +79107,20 @@ declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
78742
79107
  id: string;
78743
79108
  }>;
78744
79109
  type DTOForgeProjectArtifactDeleteInput = z$1.infer<typeof DTOForgeProjectArtifactDeleteInput>;
79110
+ declare const DTOForgeProjectArtifactMoveInput: z$1.ZodObject<{
79111
+ id: z$1.ZodString;
79112
+ sectionId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
79113
+ afterId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
79114
+ }, "strip", z$1.ZodTypeAny, {
79115
+ id: string;
79116
+ sectionId?: string | null | undefined;
79117
+ afterId?: string | null | undefined;
79118
+ }, {
79119
+ id: string;
79120
+ sectionId?: string | null | undefined;
79121
+ afterId?: string | null | undefined;
79122
+ }>;
79123
+ type DTOForgeProjectArtifactMoveInput = z$1.infer<typeof DTOForgeProjectArtifactMoveInput>;
78745
79124
  declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78746
79125
  artifact: z$1.ZodObject<{
78747
79126
  id: z$1.ZodString;
@@ -78749,13 +79128,12 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78749
79128
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78750
79129
  title: z$1.ZodString;
78751
79130
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78752
- path: z$1.ZodString;
78753
79131
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78754
79132
  createdAt: z$1.ZodDate;
78755
79133
  updatedAt: z$1.ZodDate;
78756
79134
  createdByUserId: z$1.ZodString;
79135
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
78757
79136
  }, "strip", z$1.ZodTypeAny, {
78758
- path: string;
78759
79137
  id: string;
78760
79138
  createdAt: Date;
78761
79139
  updatedAt: Date;
@@ -78765,8 +79143,8 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78765
79143
  projectId: string;
78766
79144
  previewUrl?: string | null | undefined;
78767
79145
  iterationId?: string | null | undefined;
79146
+ sectionId?: string | undefined;
78768
79147
  }, {
78769
- path: string;
78770
79148
  id: string;
78771
79149
  createdAt: Date;
78772
79150
  updatedAt: Date;
@@ -78776,10 +79154,10 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78776
79154
  sortOrder?: number | undefined;
78777
79155
  previewUrl?: string | null | undefined;
78778
79156
  iterationId?: string | null | undefined;
79157
+ sectionId?: string | undefined;
78779
79158
  }>;
78780
79159
  }, "strip", z$1.ZodTypeAny, {
78781
79160
  artifact: {
78782
- path: string;
78783
79161
  id: string;
78784
79162
  createdAt: Date;
78785
79163
  updatedAt: Date;
@@ -78789,10 +79167,10 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78789
79167
  projectId: string;
78790
79168
  previewUrl?: string | null | undefined;
78791
79169
  iterationId?: string | null | undefined;
79170
+ sectionId?: string | undefined;
78792
79171
  };
78793
79172
  }, {
78794
79173
  artifact: {
78795
- path: string;
78796
79174
  id: string;
78797
79175
  createdAt: Date;
78798
79176
  updatedAt: Date;
@@ -78802,6 +79180,7 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78802
79180
  sortOrder?: number | undefined;
78803
79181
  previewUrl?: string | null | undefined;
78804
79182
  iterationId?: string | null | undefined;
79183
+ sectionId?: string | undefined;
78805
79184
  };
78806
79185
  }>;
78807
79186
  type DTOForgeProjectArtifactGetResponse = z$1.infer<typeof DTOForgeProjectArtifactGetResponse>;
@@ -78812,13 +79191,12 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
78812
79191
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78813
79192
  title: z$1.ZodString;
78814
79193
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78815
- path: z$1.ZodString;
78816
79194
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78817
79195
  createdAt: z$1.ZodDate;
78818
79196
  updatedAt: z$1.ZodDate;
78819
79197
  createdByUserId: z$1.ZodString;
79198
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
78820
79199
  }, "strip", z$1.ZodTypeAny, {
78821
- path: string;
78822
79200
  id: string;
78823
79201
  createdAt: Date;
78824
79202
  updatedAt: Date;
@@ -78828,8 +79206,8 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
78828
79206
  projectId: string;
78829
79207
  previewUrl?: string | null | undefined;
78830
79208
  iterationId?: string | null | undefined;
79209
+ sectionId?: string | undefined;
78831
79210
  }, {
78832
- path: string;
78833
79211
  id: string;
78834
79212
  createdAt: Date;
78835
79213
  updatedAt: Date;
@@ -78839,10 +79217,10 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
78839
79217
  sortOrder?: number | undefined;
78840
79218
  previewUrl?: string | null | undefined;
78841
79219
  iterationId?: string | null | undefined;
79220
+ sectionId?: string | undefined;
78842
79221
  }>;
78843
79222
  }, "strip", z$1.ZodTypeAny, {
78844
79223
  artifact: {
78845
- path: string;
78846
79224
  id: string;
78847
79225
  createdAt: Date;
78848
79226
  updatedAt: Date;
@@ -78852,10 +79230,10 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
78852
79230
  projectId: string;
78853
79231
  previewUrl?: string | null | undefined;
78854
79232
  iterationId?: string | null | undefined;
79233
+ sectionId?: string | undefined;
78855
79234
  };
78856
79235
  }, {
78857
79236
  artifact: {
78858
- path: string;
78859
79237
  id: string;
78860
79238
  createdAt: Date;
78861
79239
  updatedAt: Date;
@@ -78865,6 +79243,7 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
78865
79243
  sortOrder?: number | undefined;
78866
79244
  previewUrl?: string | null | undefined;
78867
79245
  iterationId?: string | null | undefined;
79246
+ sectionId?: string | undefined;
78868
79247
  };
78869
79248
  }>;
78870
79249
  type DTOForgeProjectArtifactCreateResponse = z$1.infer<typeof DTOForgeProjectArtifactCreateResponse>;
@@ -78875,13 +79254,12 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
78875
79254
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78876
79255
  title: z$1.ZodString;
78877
79256
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78878
- path: z$1.ZodString;
78879
79257
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78880
79258
  createdAt: z$1.ZodDate;
78881
79259
  updatedAt: z$1.ZodDate;
78882
79260
  createdByUserId: z$1.ZodString;
79261
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
78883
79262
  }, "strip", z$1.ZodTypeAny, {
78884
- path: string;
78885
79263
  id: string;
78886
79264
  createdAt: Date;
78887
79265
  updatedAt: Date;
@@ -78891,8 +79269,8 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
78891
79269
  projectId: string;
78892
79270
  previewUrl?: string | null | undefined;
78893
79271
  iterationId?: string | null | undefined;
79272
+ sectionId?: string | undefined;
78894
79273
  }, {
78895
- path: string;
78896
79274
  id: string;
78897
79275
  createdAt: Date;
78898
79276
  updatedAt: Date;
@@ -78902,10 +79280,10 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
78902
79280
  sortOrder?: number | undefined;
78903
79281
  previewUrl?: string | null | undefined;
78904
79282
  iterationId?: string | null | undefined;
79283
+ sectionId?: string | undefined;
78905
79284
  }>;
78906
79285
  }, "strip", z$1.ZodTypeAny, {
78907
79286
  artifact: {
78908
- path: string;
78909
79287
  id: string;
78910
79288
  createdAt: Date;
78911
79289
  updatedAt: Date;
@@ -78915,10 +79293,10 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
78915
79293
  projectId: string;
78916
79294
  previewUrl?: string | null | undefined;
78917
79295
  iterationId?: string | null | undefined;
79296
+ sectionId?: string | undefined;
78918
79297
  };
78919
79298
  }, {
78920
79299
  artifact: {
78921
- path: string;
78922
79300
  id: string;
78923
79301
  createdAt: Date;
78924
79302
  updatedAt: Date;
@@ -78928,6 +79306,7 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
78928
79306
  sortOrder?: number | undefined;
78929
79307
  previewUrl?: string | null | undefined;
78930
79308
  iterationId?: string | null | undefined;
79309
+ sectionId?: string | undefined;
78931
79310
  };
78932
79311
  }>;
78933
79312
  type DTOForgeProjectArtifactUpdateResponse = z$1.infer<typeof DTOForgeProjectArtifactUpdateResponse>;
@@ -78939,6 +79318,69 @@ declare const DTOForgeProjectArtifactDeleteResponse: z$1.ZodObject<{
78939
79318
  ok: true;
78940
79319
  }>;
78941
79320
  type DTOForgeProjectArtifactDeleteResponse = z$1.infer<typeof DTOForgeProjectArtifactDeleteResponse>;
79321
+ declare const DTOForgeProjectArtifactMoveResponse: z$1.ZodObject<{
79322
+ artifact: z$1.ZodObject<{
79323
+ id: z$1.ZodString;
79324
+ projectId: z$1.ZodString;
79325
+ iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
79326
+ title: z$1.ZodString;
79327
+ previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
79328
+ sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
79329
+ createdAt: z$1.ZodDate;
79330
+ updatedAt: z$1.ZodDate;
79331
+ createdByUserId: z$1.ZodString;
79332
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
79333
+ }, "strip", z$1.ZodTypeAny, {
79334
+ id: string;
79335
+ createdAt: Date;
79336
+ updatedAt: Date;
79337
+ title: string;
79338
+ sortOrder: number;
79339
+ createdByUserId: string;
79340
+ projectId: string;
79341
+ previewUrl?: string | null | undefined;
79342
+ iterationId?: string | null | undefined;
79343
+ sectionId?: string | undefined;
79344
+ }, {
79345
+ id: string;
79346
+ createdAt: Date;
79347
+ updatedAt: Date;
79348
+ title: string;
79349
+ createdByUserId: string;
79350
+ projectId: string;
79351
+ sortOrder?: number | undefined;
79352
+ previewUrl?: string | null | undefined;
79353
+ iterationId?: string | null | undefined;
79354
+ sectionId?: string | undefined;
79355
+ }>;
79356
+ }, "strip", z$1.ZodTypeAny, {
79357
+ artifact: {
79358
+ id: string;
79359
+ createdAt: Date;
79360
+ updatedAt: Date;
79361
+ title: string;
79362
+ sortOrder: number;
79363
+ createdByUserId: string;
79364
+ projectId: string;
79365
+ previewUrl?: string | null | undefined;
79366
+ iterationId?: string | null | undefined;
79367
+ sectionId?: string | undefined;
79368
+ };
79369
+ }, {
79370
+ artifact: {
79371
+ id: string;
79372
+ createdAt: Date;
79373
+ updatedAt: Date;
79374
+ title: string;
79375
+ createdByUserId: string;
79376
+ projectId: string;
79377
+ sortOrder?: number | undefined;
79378
+ previewUrl?: string | null | undefined;
79379
+ iterationId?: string | null | undefined;
79380
+ sectionId?: string | undefined;
79381
+ };
79382
+ }>;
79383
+ type DTOForgeProjectArtifactMoveResponse = z$1.infer<typeof DTOForgeProjectArtifactMoveResponse>;
78942
79384
  declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78943
79385
  artifacts: z$1.ZodArray<z$1.ZodObject<{
78944
79386
  id: z$1.ZodString;
@@ -78946,13 +79388,12 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78946
79388
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78947
79389
  title: z$1.ZodString;
78948
79390
  previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
78949
- path: z$1.ZodString;
78950
79391
  sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
78951
79392
  createdAt: z$1.ZodDate;
78952
79393
  updatedAt: z$1.ZodDate;
78953
79394
  createdByUserId: z$1.ZodString;
79395
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
78954
79396
  }, "strip", z$1.ZodTypeAny, {
78955
- path: string;
78956
79397
  id: string;
78957
79398
  createdAt: Date;
78958
79399
  updatedAt: Date;
@@ -78962,8 +79403,8 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78962
79403
  projectId: string;
78963
79404
  previewUrl?: string | null | undefined;
78964
79405
  iterationId?: string | null | undefined;
79406
+ sectionId?: string | undefined;
78965
79407
  }, {
78966
- path: string;
78967
79408
  id: string;
78968
79409
  createdAt: Date;
78969
79410
  updatedAt: Date;
@@ -78973,10 +79414,10 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78973
79414
  sortOrder?: number | undefined;
78974
79415
  previewUrl?: string | null | undefined;
78975
79416
  iterationId?: string | null | undefined;
79417
+ sectionId?: string | undefined;
78976
79418
  }>, "many">;
78977
79419
  }, "strip", z$1.ZodTypeAny, {
78978
79420
  artifacts: {
78979
- path: string;
78980
79421
  id: string;
78981
79422
  createdAt: Date;
78982
79423
  updatedAt: Date;
@@ -78986,10 +79427,10 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78986
79427
  projectId: string;
78987
79428
  previewUrl?: string | null | undefined;
78988
79429
  iterationId?: string | null | undefined;
79430
+ sectionId?: string | undefined;
78989
79431
  }[];
78990
79432
  }, {
78991
79433
  artifacts: {
78992
- path: string;
78993
79434
  id: string;
78994
79435
  createdAt: Date;
78995
79436
  updatedAt: Date;
@@ -78999,6 +79440,7 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
78999
79440
  sortOrder?: number | undefined;
79000
79441
  previewUrl?: string | null | undefined;
79001
79442
  iterationId?: string | null | undefined;
79443
+ sectionId?: string | undefined;
79002
79444
  }[];
79003
79445
  }>;
79004
79446
  type DTOForgeProjectArtifactsListResponse = z$1.infer<typeof DTOForgeProjectArtifactsListResponse>;
@@ -80711,7 +81153,7 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
80711
81153
  name: z__default.ZodString;
80712
81154
  projectId: z__default.ZodString;
80713
81155
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80714
- sortOrder: z__default.ZodNumber;
81156
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
80715
81157
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
80716
81158
  }, "strip", z__default.ZodTypeAny, {
80717
81159
  id: string;
@@ -80722,19 +81164,19 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
80722
81164
  createdByUserId: string;
80723
81165
  projectId: string;
80724
81166
  updatedAt?: Date | undefined;
80725
- isArchived?: boolean | undefined;
80726
81167
  sectionId?: string | undefined;
81168
+ isArchived?: boolean | undefined;
80727
81169
  }, {
80728
81170
  id: string;
80729
81171
  name: string;
80730
81172
  createdAt: Date;
80731
81173
  description: string;
80732
- sortOrder: number;
80733
81174
  createdByUserId: string;
80734
81175
  projectId: string;
80735
81176
  updatedAt?: Date | undefined;
80736
- isArchived?: boolean | undefined;
81177
+ sortOrder?: number | undefined;
80737
81178
  sectionId?: string | undefined;
81179
+ isArchived?: boolean | undefined;
80738
81180
  }>;
80739
81181
  type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
80740
81182
  declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
@@ -80747,7 +81189,7 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
80747
81189
  name: z__default.ZodString;
80748
81190
  projectId: z__default.ZodString;
80749
81191
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80750
- sortOrder: z__default.ZodNumber;
81192
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
80751
81193
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
80752
81194
  }, "strip", z__default.ZodTypeAny, {
80753
81195
  id: string;
@@ -80758,19 +81200,19 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
80758
81200
  createdByUserId: string;
80759
81201
  projectId: string;
80760
81202
  updatedAt?: Date | undefined;
80761
- isArchived?: boolean | undefined;
80762
81203
  sectionId?: string | undefined;
81204
+ isArchived?: boolean | undefined;
80763
81205
  }, {
80764
81206
  id: string;
80765
81207
  name: string;
80766
81208
  createdAt: Date;
80767
81209
  description: string;
80768
- sortOrder: number;
80769
81210
  createdByUserId: string;
80770
81211
  projectId: string;
80771
81212
  updatedAt?: Date | undefined;
80772
- isArchived?: boolean | undefined;
81213
+ sortOrder?: number | undefined;
80773
81214
  sectionId?: string | undefined;
81215
+ isArchived?: boolean | undefined;
80774
81216
  }>, "many">;
80775
81217
  }, "strip", z__default.ZodTypeAny, {
80776
81218
  features: {
@@ -80782,8 +81224,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
80782
81224
  createdByUserId: string;
80783
81225
  projectId: string;
80784
81226
  updatedAt?: Date | undefined;
80785
- isArchived?: boolean | undefined;
80786
81227
  sectionId?: string | undefined;
81228
+ isArchived?: boolean | undefined;
80787
81229
  }[];
80788
81230
  }, {
80789
81231
  features: {
@@ -80791,12 +81233,12 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
80791
81233
  name: string;
80792
81234
  createdAt: Date;
80793
81235
  description: string;
80794
- sortOrder: number;
80795
81236
  createdByUserId: string;
80796
81237
  projectId: string;
80797
81238
  updatedAt?: Date | undefined;
80798
- isArchived?: boolean | undefined;
81239
+ sortOrder?: number | undefined;
80799
81240
  sectionId?: string | undefined;
81241
+ isArchived?: boolean | undefined;
80800
81242
  }[];
80801
81243
  }>;
80802
81244
  type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
@@ -80847,16 +81289,16 @@ declare const DTOForgeProjectFeatureDeleteInput: z__default.ZodObject<{
80847
81289
  type DTOForgeProjectFeatureDeleteInput = z__default.infer<typeof DTOForgeProjectFeatureDeleteInput>;
80848
81290
  declare const DTOForgeProjectFeatureMoveInput: z__default.ZodObject<{
80849
81291
  id: z__default.ZodString;
80850
- sectionId: z__default.ZodOptional<z__default.ZodString>;
80851
- afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
81292
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
81293
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
80852
81294
  }, "strip", z__default.ZodTypeAny, {
80853
81295
  id: string;
80854
- sectionId?: string | undefined;
80855
- afterFeatureId?: string | null | undefined;
81296
+ sectionId?: string | null | undefined;
81297
+ afterId?: string | null | undefined;
80856
81298
  }, {
80857
81299
  id: string;
80858
- sectionId?: string | undefined;
80859
- afterFeatureId?: string | null | undefined;
81300
+ sectionId?: string | null | undefined;
81301
+ afterId?: string | null | undefined;
80860
81302
  }>;
80861
81303
  type DTOForgeProjectFeatureMoveInput = z__default.infer<typeof DTOForgeProjectFeatureMoveInput>;
80862
81304
  declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
@@ -80869,7 +81311,7 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
80869
81311
  name: z__default.ZodString;
80870
81312
  projectId: z__default.ZodString;
80871
81313
  sectionId: z__default.ZodOptional<z__default.ZodString>;
80872
- sortOrder: z__default.ZodNumber;
81314
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
80873
81315
  updatedAt: z__default.ZodOptional<z__default.ZodDate>;
80874
81316
  }, "strip", z__default.ZodTypeAny, {
80875
81317
  id: string;
@@ -80880,19 +81322,19 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
80880
81322
  createdByUserId: string;
80881
81323
  projectId: string;
80882
81324
  updatedAt?: Date | undefined;
80883
- isArchived?: boolean | undefined;
80884
81325
  sectionId?: string | undefined;
81326
+ isArchived?: boolean | undefined;
80885
81327
  }, {
80886
81328
  id: string;
80887
81329
  name: string;
80888
81330
  createdAt: Date;
80889
81331
  description: string;
80890
- sortOrder: number;
80891
81332
  createdByUserId: string;
80892
81333
  projectId: string;
80893
81334
  updatedAt?: Date | undefined;
80894
- isArchived?: boolean | undefined;
81335
+ sortOrder?: number | undefined;
80895
81336
  sectionId?: string | undefined;
81337
+ isArchived?: boolean | undefined;
80896
81338
  }>;
80897
81339
  }, "strip", z__default.ZodTypeAny, {
80898
81340
  feature: {
@@ -80904,8 +81346,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
80904
81346
  createdByUserId: string;
80905
81347
  projectId: string;
80906
81348
  updatedAt?: Date | undefined;
80907
- isArchived?: boolean | undefined;
80908
81349
  sectionId?: string | undefined;
81350
+ isArchived?: boolean | undefined;
80909
81351
  };
80910
81352
  }, {
80911
81353
  feature: {
@@ -80913,12 +81355,12 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
80913
81355
  name: string;
80914
81356
  createdAt: Date;
80915
81357
  description: string;
80916
- sortOrder: number;
80917
81358
  createdByUserId: string;
80918
81359
  projectId: string;
80919
81360
  updatedAt?: Date | undefined;
80920
- isArchived?: boolean | undefined;
81361
+ sortOrder?: number | undefined;
80921
81362
  sectionId?: string | undefined;
81363
+ isArchived?: boolean | undefined;
80922
81364
  };
80923
81365
  }>;
80924
81366
  type DTOForgeProjectFeatureGetResponse = z__default.infer<typeof DTOForgeProjectFeatureGetResponse>;
@@ -99831,6 +100273,121 @@ declare const DTORemoveForgeProjectResponse: z$1.ZodObject<{
99831
100273
  }>;
99832
100274
  type DTORemoveForgeProjectResponse = z$1.infer<typeof DTORemoveForgeProjectResponse>;
99833
100275
 
100276
+ declare const DTOForgeSection: z__default.ZodObject<{
100277
+ id: z__default.ZodString;
100278
+ projectId: z__default.ZodString;
100279
+ name: z__default.ZodString;
100280
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100281
+ createdAt: z__default.ZodDate;
100282
+ updatedAt: z__default.ZodDate;
100283
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100284
+ }, "strip", z__default.ZodTypeAny, {
100285
+ id: string;
100286
+ name: string;
100287
+ createdAt: Date;
100288
+ updatedAt: Date;
100289
+ childType: "Artifact" | "Feature";
100290
+ sortOrder: number;
100291
+ projectId: string;
100292
+ }, {
100293
+ id: string;
100294
+ name: string;
100295
+ createdAt: Date;
100296
+ updatedAt: Date;
100297
+ childType: "Artifact" | "Feature";
100298
+ projectId: string;
100299
+ sortOrder?: number | undefined;
100300
+ }>;
100301
+ type DTOForgeSection = z__default.infer<typeof DTOForgeSection>;
100302
+ declare const DTOForgeSectionCreateInput: z__default.ZodObject<Pick<{
100303
+ id: z__default.ZodString;
100304
+ projectId: z__default.ZodString;
100305
+ name: z__default.ZodString;
100306
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100307
+ createdAt: z__default.ZodDate;
100308
+ updatedAt: z__default.ZodDate;
100309
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100310
+ }, "id" | "name" | "childType"> & {
100311
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100312
+ }, "strip", z__default.ZodTypeAny, {
100313
+ id: string;
100314
+ name: string;
100315
+ childType: "Artifact" | "Feature";
100316
+ afterSectionId?: string | null | undefined;
100317
+ }, {
100318
+ id: string;
100319
+ name: string;
100320
+ childType: "Artifact" | "Feature";
100321
+ afterSectionId?: string | null | undefined;
100322
+ }>;
100323
+ type DTOForgeSectionCreateInput = z__default.infer<typeof DTOForgeSectionCreateInput>;
100324
+ declare const DTOForgeSectionUpdateInput: z__default.ZodObject<Pick<{
100325
+ id: z__default.ZodString;
100326
+ projectId: z__default.ZodString;
100327
+ name: z__default.ZodString;
100328
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100329
+ createdAt: z__default.ZodDate;
100330
+ updatedAt: z__default.ZodDate;
100331
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100332
+ }, "id" | "name">, "strip", z__default.ZodTypeAny, {
100333
+ id: string;
100334
+ name: string;
100335
+ }, {
100336
+ id: string;
100337
+ name: string;
100338
+ }>;
100339
+ type DTOForgeSectionUpdateInput = z__default.infer<typeof DTOForgeSectionUpdateInput>;
100340
+ declare const DTOForgeSectionDeleteInput: z__default.ZodObject<Pick<{
100341
+ id: z__default.ZodString;
100342
+ projectId: z__default.ZodString;
100343
+ name: z__default.ZodString;
100344
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100345
+ createdAt: z__default.ZodDate;
100346
+ updatedAt: z__default.ZodDate;
100347
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100348
+ }, "id"> & {
100349
+ deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
100350
+ }, "strip", z__default.ZodTypeAny, {
100351
+ id: string;
100352
+ deleteChildren: boolean;
100353
+ }, {
100354
+ id: string;
100355
+ deleteChildren?: boolean | undefined;
100356
+ }>;
100357
+ type DTOForgeSectionDeleteInput = z__default.infer<typeof DTOForgeSectionDeleteInput>;
100358
+ declare const DTOForgeSectionMoveInput: z__default.ZodObject<Pick<{
100359
+ id: z__default.ZodString;
100360
+ projectId: z__default.ZodString;
100361
+ name: z__default.ZodString;
100362
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
100363
+ createdAt: z__default.ZodDate;
100364
+ updatedAt: z__default.ZodDate;
100365
+ childType: z__default.ZodEnum<["Artifact", "Feature"]>;
100366
+ }, "id"> & {
100367
+ afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100368
+ }, "strip", z__default.ZodTypeAny, {
100369
+ id: string;
100370
+ afterSectionId?: string | null | undefined;
100371
+ }, {
100372
+ id: string;
100373
+ afterSectionId?: string | null | undefined;
100374
+ }>;
100375
+ type DTOForgeSectionMoveInput = z__default.infer<typeof DTOForgeSectionMoveInput>;
100376
+ declare const DTOForgeSectionItemMoveInput: z__default.ZodObject<{
100377
+ id: z__default.ZodString;
100378
+ sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100379
+ afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
100380
+ }, "strip", z__default.ZodTypeAny, {
100381
+ id: string;
100382
+ sectionId?: string | null | undefined;
100383
+ afterId?: string | null | undefined;
100384
+ }, {
100385
+ id: string;
100386
+ sectionId?: string | null | undefined;
100387
+ afterId?: string | null | undefined;
100388
+ }>;
100389
+ type DTOForgeSectionItemMoveInput = z__default.infer<typeof DTOForgeSectionItemMoveInput>;
100390
+
99834
100391
  declare const DTOForgeChatMessage: z$1.ZodObject<{
99835
100392
  id: z$1.ZodString;
99836
100393
  threadId: z$1.ZodString;
@@ -138745,8 +139302,8 @@ declare class ForgeFeaturesEndpoint {
138745
139302
  createdByUserId: string;
138746
139303
  projectId: string;
138747
139304
  updatedAt?: Date | undefined;
138748
- isArchived?: boolean | undefined;
138749
139305
  sectionId?: string | undefined;
139306
+ isArchived?: boolean | undefined;
138750
139307
  }[];
138751
139308
  }>;
138752
139309
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -138759,8 +139316,8 @@ declare class ForgeFeaturesEndpoint {
138759
139316
  createdByUserId: string;
138760
139317
  projectId: string;
138761
139318
  updatedAt?: Date | undefined;
138762
- isArchived?: boolean | undefined;
138763
139319
  sectionId?: string | undefined;
139320
+ isArchived?: boolean | undefined;
138764
139321
  };
138765
139322
  }>;
138766
139323
  }
@@ -140106,8 +140663,8 @@ declare class ForgeProjectFeaturesEndpoint {
140106
140663
  createdByUserId: string;
140107
140664
  projectId: string;
140108
140665
  updatedAt?: Date | undefined;
140109
- isArchived?: boolean | undefined;
140110
140666
  sectionId?: string | undefined;
140667
+ isArchived?: boolean | undefined;
140111
140668
  }[];
140112
140669
  }>;
140113
140670
  get(workspaceId: string, projectId: string, featureId: string): Promise<{
@@ -140120,8 +140677,8 @@ declare class ForgeProjectFeaturesEndpoint {
140120
140677
  createdByUserId: string;
140121
140678
  projectId: string;
140122
140679
  updatedAt?: Date | undefined;
140123
- isArchived?: boolean | undefined;
140124
140680
  sectionId?: string | undefined;
140681
+ isArchived?: boolean | undefined;
140125
140682
  };
140126
140683
  }>;
140127
140684
  }
@@ -143273,4 +143830,4 @@ declare function isValidRedirectPath(path: string): {
143273
143830
  reason: ValidationErrorReason | undefined;
143274
143831
  };
143275
143832
 
143276
- export { BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
143833
+ export { BackendForgeProjectRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };