@supernova-studio/client 1.38.0 → 1.38.1

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.mjs CHANGED
@@ -5208,7 +5208,6 @@ var ForgeProjectContextTailwindConfig = z177.object({
5208
5208
  version: z177.string()
5209
5209
  });
5210
5210
  var ForgeProjectContext = z177.object({
5211
- createdAt: z177.coerce.date(),
5212
5211
  definition: z177.string(),
5213
5212
  dependencies: z177.array(ForgeProjectContextDependency),
5214
5213
  designSystemId: z177.string(),
@@ -5219,6 +5218,7 @@ var ForgeProjectContext = z177.object({
5219
5218
  platform: z177.enum(["React", "Vue", "Angular"]),
5220
5219
  styling: z177.enum(["CSS", "Tailwind"]),
5221
5220
  tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
5221
+ createdAt: z177.coerce.date(),
5222
5222
  updatedAt: z177.coerce.date(),
5223
5223
  workspaceId: z177.string()
5224
5224
  });
@@ -9477,15 +9477,77 @@ var DTODeleteForgeIterationMessageResponse = z314.object({
9477
9477
  ok: z314.literal(true)
9478
9478
  });
9479
9479
 
9480
+ // src/api/dto/forge/project.ts
9481
+ import { z as z316 } from "zod";
9482
+
9483
+ // src/api/dto/forge/project-invitation.ts
9484
+ import { z as z315 } from "zod";
9485
+ var DTOForgeProjectInvitation = ForgeProjectInvitation;
9486
+ var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
9487
+ email: true,
9488
+ role: true
9489
+ }).extend({
9490
+ workspaceRole: WorkspaceRoleSchema
9491
+ });
9492
+ var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation.omit({
9493
+ workspaceRole: true
9494
+ });
9495
+ var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
9496
+ email: true
9497
+ });
9498
+ var DTOForgeProjectInvitationsListResponse = z315.object({
9499
+ invitations: z315.array(DTOForgeProjectInvitation)
9500
+ });
9501
+ var DTOForgeProjectInvitationGetResponse = z315.object({
9502
+ invitation: DTOForgeProjectInvitation
9503
+ });
9504
+ var DTOForgeProjectInvitationCreateResponse = z315.object({
9505
+ invitation: DTOForgeProjectInvitation
9506
+ });
9507
+ var DTOForgeProjectInvitationUpdateResponse = z315.object({
9508
+ invitation: DTOForgeProjectInvitation.nullable()
9509
+ });
9510
+ var DTOForgeProjectInvitationRemoveResponse = z315.object({
9511
+ ok: z315.literal(true)
9512
+ });
9513
+
9514
+ // src/api/dto/forge/project.ts
9515
+ var DTOForgeProject = ForgeProject.omit({ fpContextId: true }).extend({
9516
+ context: ForgeProjectContext
9517
+ });
9518
+ var DTOForgeProjectCreate = ForgeProject.pick({
9519
+ instruction: true,
9520
+ name: true,
9521
+ meta: true,
9522
+ tags: true,
9523
+ accessMode: true,
9524
+ defaultRole: true,
9525
+ fpContextId: true,
9526
+ isArchived: true,
9527
+ emoji: true
9528
+ }).extend({ membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional() });
9529
+ var DTOForgeProjectUpdate = DTOForgeProjectCreate.omit({ membersToInvite: true }).partial().extend({
9530
+ id: z316.string()
9531
+ });
9532
+ var DTOForgeProjectGetResponse = z316.object({ project: DTOForgeProject.nullable() });
9533
+ var DTOForgeProjectListResponse = z316.object({ projects: z316.array(DTOForgeProject) });
9534
+ var DTOForgeProjectCreateResponse = z316.object({
9535
+ project: DTOForgeProject
9536
+ });
9537
+ var DTOForgeProjectUpdateResponse = z316.object({
9538
+ project: DTOForgeProject
9539
+ });
9540
+ var DTOForgeProjectRemoveResponse = z316.object({ ok: z316.literal(true) });
9541
+
9480
9542
  // src/api/dto/forge/project-action.ts
9481
- import z318 from "zod";
9543
+ import z320 from "zod";
9482
9544
 
9483
9545
  // src/api/dto/forge/project-artifact.ts
9484
- import { z as z316 } from "zod";
9546
+ import { z as z318 } from "zod";
9485
9547
 
9486
9548
  // src/api/dto/forge/project-section.ts
9487
- import z315 from "zod";
9488
- var AfterSectionId = z315.string().uuid().nullish().optional();
9549
+ import z317 from "zod";
9550
+ var AfterSectionId = z317.string().uuid().nullish().optional();
9489
9551
  var DTOForgeSection = ForgeSection;
9490
9552
  var DTOForgeSectionCreateInput = DTOForgeSection.pick({
9491
9553
  id: true,
@@ -9496,12 +9558,12 @@ var DTOForgeSectionCreateInput = DTOForgeSection.pick({
9496
9558
  });
9497
9559
  var DTOForgeSectionUpdateInput = DTOForgeSection.pick({ id: true, name: true });
9498
9560
  var DTOForgeSectionDeleteInput = DTOForgeSection.pick({ id: true }).extend({
9499
- deleteChildren: z315.boolean().default(false)
9561
+ deleteChildren: z317.boolean().default(false)
9500
9562
  });
9501
9563
  var DTOForgeSectionMoveInput = DTOForgeSection.pick({ id: true }).extend({
9502
9564
  afterSectionId: AfterSectionId
9503
9565
  });
9504
- var DTOForgeSectionItemMoveInput = z315.object({
9566
+ var DTOForgeSectionItemMoveInput = z317.object({
9505
9567
  id: Id,
9506
9568
  sectionId: Id.nullish().optional(),
9507
9569
  // undefined=stay, null=no section, string=move to section
@@ -9511,118 +9573,118 @@ var DTOForgeSectionItemMoveInput = z315.object({
9511
9573
 
9512
9574
  // src/api/dto/forge/project-artifact.ts
9513
9575
  var DTOForgeProjectArtifact = ForgeProjectArtifact;
9514
- var DTOForgeProjectArtifactUpdateInput = z316.object({
9515
- id: z316.string(),
9516
- title: z316.string().optional()
9576
+ var DTOForgeProjectArtifactUpdateInput = z318.object({
9577
+ id: z318.string(),
9578
+ title: z318.string().optional()
9517
9579
  });
9518
- var DTOForgeProjectArtifactCreateInput = z316.object({
9519
- id: z316.string(),
9520
- title: z316.string(),
9521
- sectionId: z316.string().optional(),
9522
- afterArtifactId: z316.string().optional().nullable()
9580
+ var DTOForgeProjectArtifactCreateInput = z318.object({
9581
+ id: z318.string(),
9582
+ title: z318.string(),
9583
+ sectionId: z318.string().optional(),
9584
+ afterArtifactId: z318.string().optional().nullable()
9523
9585
  });
9524
- var DTOForgeProjectArtifactDeleteInput = z316.object({
9586
+ var DTOForgeProjectArtifactDeleteInput = z318.object({
9525
9587
  id: Id
9526
9588
  });
9527
9589
  var DTOForgeProjectArtifactMoveInput = DTOForgeSectionItemMoveInput;
9528
- var DTOForgeProjectArtifactGetResponse = z316.object({
9590
+ var DTOForgeProjectArtifactGetResponse = z318.object({
9529
9591
  artifact: DTOForgeProjectArtifact
9530
9592
  });
9531
- var DTOForgeProjectArtifactCreateResponse = z316.object({
9593
+ var DTOForgeProjectArtifactCreateResponse = z318.object({
9532
9594
  artifact: DTOForgeProjectArtifact
9533
9595
  });
9534
- var DTOForgeProjectArtifactUpdateResponse = z316.object({
9596
+ var DTOForgeProjectArtifactUpdateResponse = z318.object({
9535
9597
  artifact: DTOForgeProjectArtifact
9536
9598
  });
9537
- var DTOForgeProjectArtifactDeleteResponse = z316.object({
9538
- ok: z316.literal(true)
9599
+ var DTOForgeProjectArtifactDeleteResponse = z318.object({
9600
+ ok: z318.literal(true)
9539
9601
  });
9540
- var DTOForgeProjectArtifactMoveResponse = z316.object({
9602
+ var DTOForgeProjectArtifactMoveResponse = z318.object({
9541
9603
  artifact: DTOForgeProjectArtifact
9542
9604
  });
9543
- var DTOForgeProjectArtifactsListResponse = z316.object({
9544
- artifacts: z316.array(DTOForgeProjectArtifact)
9605
+ var DTOForgeProjectArtifactsListResponse = z318.object({
9606
+ artifacts: z318.array(DTOForgeProjectArtifact)
9545
9607
  });
9546
9608
 
9547
9609
  // src/api/dto/forge/project-feature.ts
9548
- import z317 from "zod";
9610
+ import z319 from "zod";
9549
9611
  var DTOForgeProjectFeature = ProjectFeature;
9550
- var DTOForgeProjectFeatureListResponse = z317.object({
9612
+ var DTOForgeProjectFeatureListResponse = z319.object({
9551
9613
  features: DTOForgeProjectFeature.array()
9552
9614
  });
9553
- var DTOForgeProjectFeatureGetResponse = z317.object({
9615
+ var DTOForgeProjectFeatureGetResponse = z319.object({
9554
9616
  feature: DTOForgeProjectFeature
9555
9617
  });
9556
- var DTOForgeProjectFeatureCreateInput = z317.object({
9618
+ var DTOForgeProjectFeatureCreateInput = z319.object({
9557
9619
  id: Id,
9558
- name: z317.string(),
9559
- description: z317.string(),
9620
+ name: z319.string(),
9621
+ description: z319.string(),
9560
9622
  sectionId: Id.optional(),
9561
9623
  afterFeatureId: Id.nullable().optional(),
9562
9624
  initialMessage: DTOFeatureMessageCreateInput
9563
9625
  });
9564
- var DTOForgeProjectFeatureUpdateInput = z317.object({
9626
+ var DTOForgeProjectFeatureUpdateInput = z319.object({
9565
9627
  id: Id,
9566
- name: z317.string().optional(),
9567
- description: z317.string().optional(),
9568
- isArchived: z317.boolean().optional(),
9628
+ name: z319.string().optional(),
9629
+ description: z319.string().optional(),
9630
+ isArchived: z319.boolean().optional(),
9569
9631
  status: ProjectFeatureStatus.optional()
9570
9632
  });
9571
- var DTOForgeProjectFeatureDeleteInput = z317.object({
9633
+ var DTOForgeProjectFeatureDeleteInput = z319.object({
9572
9634
  id: Id
9573
9635
  });
9574
9636
  var DTOForgeProjectFeatureMoveInput = DTOForgeSectionItemMoveInput;
9575
9637
 
9576
9638
  // src/api/dto/forge/project-action.ts
9577
- var DTOForgeProjectActionFeatureCreate = z318.object({
9578
- type: z318.literal("FeatureCreate"),
9639
+ var DTOForgeProjectActionFeatureCreate = z320.object({
9640
+ type: z320.literal("FeatureCreate"),
9579
9641
  input: DTOForgeProjectFeatureCreateInput
9580
9642
  });
9581
- var DTOForgeProjectActionFeatureUpdate = z318.object({
9582
- type: z318.literal("FeatureUpdate"),
9643
+ var DTOForgeProjectActionFeatureUpdate = z320.object({
9644
+ type: z320.literal("FeatureUpdate"),
9583
9645
  input: DTOForgeProjectFeatureUpdateInput
9584
9646
  });
9585
- var DTOForgeProjectActionFeatureMove = z318.object({
9586
- type: z318.literal("FeatureMove"),
9647
+ var DTOForgeProjectActionFeatureMove = z320.object({
9648
+ type: z320.literal("FeatureMove"),
9587
9649
  input: DTOForgeProjectFeatureMoveInput
9588
9650
  });
9589
- var DTOForgeProjectActionFeatureDelete = z318.object({
9590
- type: z318.literal("FeatureDelete"),
9651
+ var DTOForgeProjectActionFeatureDelete = z320.object({
9652
+ type: z320.literal("FeatureDelete"),
9591
9653
  input: DTOForgeProjectFeatureDeleteInput
9592
9654
  });
9593
- var DTOForgeProjectActionArtifactCreate = z318.object({
9594
- type: z318.literal("ArtifactCreate"),
9655
+ var DTOForgeProjectActionArtifactCreate = z320.object({
9656
+ type: z320.literal("ArtifactCreate"),
9595
9657
  input: DTOForgeProjectArtifactCreateInput
9596
9658
  });
9597
- var DTOForgeProjectActionArtifactUpdate = z318.object({
9598
- type: z318.literal("ArtifactUpdate"),
9659
+ var DTOForgeProjectActionArtifactUpdate = z320.object({
9660
+ type: z320.literal("ArtifactUpdate"),
9599
9661
  input: DTOForgeProjectArtifactUpdateInput
9600
9662
  });
9601
- var DTOForgeProjectActionArtifactDelete = z318.object({
9602
- type: z318.literal("ArtifactDelete"),
9663
+ var DTOForgeProjectActionArtifactDelete = z320.object({
9664
+ type: z320.literal("ArtifactDelete"),
9603
9665
  input: DTOForgeProjectArtifactDeleteInput
9604
9666
  });
9605
- var DTOForgeProjectActionArtifactMove = z318.object({
9606
- type: z318.literal("ArtifactMove"),
9667
+ var DTOForgeProjectActionArtifactMove = z320.object({
9668
+ type: z320.literal("ArtifactMove"),
9607
9669
  input: DTOForgeProjectArtifactMoveInput
9608
9670
  });
9609
- var DTOForgeProjectActionSectionCreate = z318.object({
9610
- type: z318.literal("SectionCreate"),
9671
+ var DTOForgeProjectActionSectionCreate = z320.object({
9672
+ type: z320.literal("SectionCreate"),
9611
9673
  input: DTOForgeSectionCreateInput
9612
9674
  });
9613
- var DTOForgeProjectActionSectionUpdate = z318.object({
9614
- type: z318.literal("SectionUpdate"),
9675
+ var DTOForgeProjectActionSectionUpdate = z320.object({
9676
+ type: z320.literal("SectionUpdate"),
9615
9677
  input: DTOForgeSectionUpdateInput
9616
9678
  });
9617
- var DTOForgeProjectActionSectionDelete = z318.object({
9618
- type: z318.literal("SectionDelete"),
9679
+ var DTOForgeProjectActionSectionDelete = z320.object({
9680
+ type: z320.literal("SectionDelete"),
9619
9681
  input: DTOForgeSectionDeleteInput
9620
9682
  });
9621
- var DTOForgeProjectActionSectionMove = z318.object({
9622
- type: z318.literal("SectionMove"),
9683
+ var DTOForgeProjectActionSectionMove = z320.object({
9684
+ type: z320.literal("SectionMove"),
9623
9685
  input: DTOForgeSectionMoveInput
9624
9686
  });
9625
- var DTOForgeProjectAction = z318.discriminatedUnion("type", [
9687
+ var DTOForgeProjectAction = z320.discriminatedUnion("type", [
9626
9688
  //features
9627
9689
  DTOForgeProjectActionFeatureCreate,
9628
9690
  DTOForgeProjectActionFeatureUpdate,
@@ -9639,22 +9701,22 @@ var DTOForgeProjectAction = z318.discriminatedUnion("type", [
9639
9701
  DTOForgeProjectActionSectionDelete,
9640
9702
  DTOForgeProjectActionSectionMove
9641
9703
  ]).and(
9642
- z318.object({
9643
- tId: z318.string().optional()
9704
+ z320.object({
9705
+ tId: z320.string().optional()
9644
9706
  })
9645
9707
  );
9646
9708
 
9647
9709
  // src/api/dto/forge/project-artifact-room.ts
9648
- import { z as z319 } from "zod";
9649
- var DTOForgeProjectArtifactRoom = z319.object({
9650
- id: z319.string()
9710
+ import { z as z321 } from "zod";
9711
+ var DTOForgeProjectArtifactRoom = z321.object({
9712
+ id: z321.string()
9651
9713
  });
9652
- var DTOForgeProjectArtifactRoomResponse = z319.object({
9714
+ var DTOForgeProjectArtifactRoomResponse = z321.object({
9653
9715
  room: DTOForgeProjectArtifactRoom
9654
9716
  });
9655
9717
 
9656
9718
  // src/api/dto/forge/project-context.ts
9657
- import { z as z320 } from "zod";
9719
+ import { z as z322 } from "zod";
9658
9720
  var DTOForgeProjectContext = ForgeProjectContext;
9659
9721
  var DTOCreateForgeProjectContext = DTOForgeProjectContext.pick({
9660
9722
  definition: true,
@@ -9666,87 +9728,81 @@ var DTOCreateForgeProjectContext = DTOForgeProjectContext.pick({
9666
9728
  tailwindConfig: true,
9667
9729
  styling: true
9668
9730
  }).extend({ npmProxySettings: DTONpmRegistryConfig });
9669
- var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial().extend({ id: z320.string() });
9670
- var DTOForgeProjectContextGetResponse = z320.object({ context: DTOForgeProjectContext });
9671
- var DTOForgeProjectContextListResponse = z320.object({ contexts: z320.array(DTOForgeProjectContext) });
9672
- var DTOForgeProjectContextCreateResponse = z320.object({ context: DTOForgeProjectContext });
9673
- var DTOForgeProjectContextUpdateResponse = z320.object({ context: DTOForgeProjectContext });
9674
- var DTOForgeProjectContextRemoveResponse = z320.object({
9675
- ok: z320.literal(true)
9731
+ var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial().extend({ id: z322.string() });
9732
+ var DTOForgeProjectContextGetResponse = z322.object({ context: DTOForgeProjectContext });
9733
+ var DTOForgeProjectContextListResponse = z322.object({ contexts: z322.array(DTOForgeProjectContext) });
9734
+ var DTOForgeProjectContextCreateResponse = z322.object({ context: DTOForgeProjectContext });
9735
+ var DTOForgeProjectContextUpdateResponse = z322.object({ context: DTOForgeProjectContext });
9736
+ var DTOForgeProjectContextRemoveResponse = z322.object({
9737
+ ok: z322.literal(true)
9676
9738
  });
9677
9739
 
9740
+ // src/api/dto/forge/project-context-v2.ts
9741
+ import { z as z323 } from "zod";
9742
+ var DTOForgeComponentSetType = z323.enum(["Shadcn"]);
9743
+ var DTOForgeComponentSet = z323.object({
9744
+ type: DTOForgeComponentSetType
9745
+ });
9746
+ var DTOForgeIconSetType = z323.enum(["Phosphor", "Lucide", "Tabler"]);
9747
+ var DTOForgeIconSet = z323.object({
9748
+ type: DTOForgeIconSetType
9749
+ // ... additional icon set props
9750
+ });
9751
+ var DTOForgeProjectContextV2 = z323.object({
9752
+ name: z323.string(),
9753
+ description: z323.string(),
9754
+ productContext: z323.string(),
9755
+ componentSet: DTOForgeComponentSet,
9756
+ iconSet: DTOForgeIconSet,
9757
+ additionalContext: z323.string()
9758
+ });
9759
+ var DTOForgeProjectContextCreateV2 = DTOForgeProjectContextV2;
9760
+ var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.partial();
9761
+ var DTOForgeProjectContextResponseV2 = z323.object({ context: DTOForgeProjectContextV2 });
9762
+ var DTOForgeProjectContextListQueryV2 = z323.object({ workspaceId: z323.string() });
9763
+ var DTOForgeProjectContextListResponseV2 = z323.object({ contexts: z323.array(DTOForgeProjectContextV2) });
9764
+
9678
9765
  // src/api/dto/forge/project-figma-node.ts
9679
9766
  var DTOForgeProjectFigmaNode = ForgeProjectFigmaNode;
9680
9767
  var DTOForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput;
9681
9768
 
9682
9769
  // src/api/dto/forge/project-file.ts
9683
- import { z as z321 } from "zod";
9684
- var DTOForgeProjectFile = z321.object({
9685
- id: z321.string(),
9686
- name: z321.string(),
9687
- checksum: z321.string(),
9688
- pendingUpload: z321.boolean().optional(),
9689
- url: z321.string(),
9690
- size: z321.number()
9691
- });
9692
- var DTOForgeProjectFileListResponse = z321.object({
9693
- files: z321.array(DTOForgeProjectFile)
9694
- });
9695
- var DTOForgeProjectFileUploadPayloadItem = z321.object({
9696
- size: z321.number(),
9697
- name: z321.string(),
9698
- checksum: z321.string()
9699
- });
9700
- var DTOForgeProjectFileUploadPayload = z321.object({
9701
- files: z321.array(DTOForgeProjectFileUploadPayloadItem)
9702
- });
9703
- var DTOForgeProjectFileUploadResponse = z321.object({
9704
- files: z321.array(DTOForgeProjectFile),
9705
- uploadUrls: z321.array(
9706
- z321.object({
9707
- fileId: z321.string(),
9708
- uploadUrl: z321.string()
9770
+ import { z as z324 } from "zod";
9771
+ var DTOForgeProjectFile = z324.object({
9772
+ id: z324.string(),
9773
+ name: z324.string(),
9774
+ checksum: z324.string(),
9775
+ pendingUpload: z324.boolean().optional(),
9776
+ url: z324.string(),
9777
+ size: z324.number()
9778
+ });
9779
+ var DTOForgeProjectFileListResponse = z324.object({
9780
+ files: z324.array(DTOForgeProjectFile)
9781
+ });
9782
+ var DTOForgeProjectFileUploadPayloadItem = z324.object({
9783
+ size: z324.number(),
9784
+ name: z324.string(),
9785
+ checksum: z324.string()
9786
+ });
9787
+ var DTOForgeProjectFileUploadPayload = z324.object({
9788
+ files: z324.array(DTOForgeProjectFileUploadPayloadItem)
9789
+ });
9790
+ var DTOForgeProjectFileUploadResponse = z324.object({
9791
+ files: z324.array(DTOForgeProjectFile),
9792
+ uploadUrls: z324.array(
9793
+ z324.object({
9794
+ fileId: z324.string(),
9795
+ uploadUrl: z324.string()
9709
9796
  })
9710
9797
  )
9711
9798
  });
9712
- var DTOForgeProjectFileUploadFinalizePayload = z321.object({
9713
- fileIds: z321.array(z321.string())
9714
- });
9715
- var DTOForgeProjectFileUploadFinalizeResponse = z321.object({ ok: z321.literal(true) });
9716
-
9717
- // src/api/dto/forge/project-invitation.ts
9718
- import { z as z322 } from "zod";
9719
- var DTOForgeProjectInvitation = ForgeProjectInvitation;
9720
- var DTOCreateForgeProjectInvitation = DTOForgeProjectInvitation.pick({
9721
- email: true,
9722
- role: true
9723
- }).extend({
9724
- workspaceRole: WorkspaceRoleSchema
9725
- });
9726
- var DTOUpdateForgeProjectInvitation = DTOCreateForgeProjectInvitation.omit({
9727
- workspaceRole: true
9728
- });
9729
- var DTORemoveForgeProjectInvitation = DTOCreateForgeProjectInvitation.pick({
9730
- email: true
9731
- });
9732
- var DTOForgeProjectInvitationsListResponse = z322.object({
9733
- invitations: z322.array(DTOForgeProjectInvitation)
9734
- });
9735
- var DTOForgeProjectInvitationGetResponse = z322.object({
9736
- invitation: DTOForgeProjectInvitation
9737
- });
9738
- var DTOForgeProjectInvitationCreateResponse = z322.object({
9739
- invitation: DTOForgeProjectInvitation
9740
- });
9741
- var DTOForgeProjectInvitationUpdateResponse = z322.object({
9742
- invitation: DTOForgeProjectInvitation.nullable()
9743
- });
9744
- var DTOForgeProjectInvitationRemoveResponse = z322.object({
9745
- ok: z322.literal(true)
9799
+ var DTOForgeProjectFileUploadFinalizePayload = z324.object({
9800
+ fileIds: z324.array(z324.string())
9746
9801
  });
9802
+ var DTOForgeProjectFileUploadFinalizeResponse = z324.object({ ok: z324.literal(true) });
9747
9803
 
9748
9804
  // src/api/dto/forge/project-iteration-old.ts
9749
- import { z as z323 } from "zod";
9805
+ import { z as z325 } from "zod";
9750
9806
  var DTOForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta;
9751
9807
  var DTOForgeProjectIteration = ForgeProjectIteration.omit({
9752
9808
  artifacts: true,
@@ -9757,7 +9813,7 @@ var DTOForgeProjectIteration = ForgeProjectIteration.omit({
9757
9813
  messages: DTOForgeIterationMessage.array(),
9758
9814
  mergeMeta: DTOForgeProjectIterationMergeMeta.optional()
9759
9815
  });
9760
- var DTOGetForgeProjectIterationResponse = z323.object({
9816
+ var DTOGetForgeProjectIterationResponse = z325.object({
9761
9817
  iteration: DTOForgeProjectIteration.nullable()
9762
9818
  });
9763
9819
  var DTOCreateForgeProjectIteration = DTOForgeProjectIteration.omit({
@@ -9767,20 +9823,20 @@ var DTOCreateForgeProjectIteration = DTOForgeProjectIteration.omit({
9767
9823
  mergeMeta: true,
9768
9824
  createdAt: true
9769
9825
  });
9770
- var DTOUpdateForgeProjectIteration = DTOCreateForgeProjectIteration.extend({ id: z323.string() });
9771
- var DTOCreateForgeProjectIterationResponse = z323.object({
9826
+ var DTOUpdateForgeProjectIteration = DTOCreateForgeProjectIteration.extend({ id: z325.string() });
9827
+ var DTOCreateForgeProjectIterationResponse = z325.object({
9772
9828
  iteration: DTOForgeProjectIteration
9773
9829
  });
9774
- var DTOUpdateForgeProjectIterationResponse = z323.object({
9830
+ var DTOUpdateForgeProjectIterationResponse = z325.object({
9775
9831
  iteration: DTOForgeProjectIteration.nullable()
9776
9832
  });
9777
- var DTODeleteForgeProjectIterationResponse = z323.object({
9778
- ok: z323.literal(true)
9833
+ var DTODeleteForgeProjectIterationResponse = z325.object({
9834
+ ok: z325.literal(true)
9779
9835
  });
9780
- var DTOForgeProjectIterationListResponse = z323.object({ iterations: z323.array(DTOForgeProjectIteration) });
9836
+ var DTOForgeProjectIterationListResponse = z325.object({ iterations: z325.array(DTOForgeProjectIteration) });
9781
9837
 
9782
9838
  // src/api/dto/forge/project-member.ts
9783
- import { z as z324 } from "zod";
9839
+ import { z as z326 } from "zod";
9784
9840
  var DTOForgeProjectMemberRole = ForgeProjectRole;
9785
9841
  var DTOForgeProjectMember = ForgeProjectMembership.extend({
9786
9842
  user: DTOUser,
@@ -9794,202 +9850,173 @@ var DTOUpdateForgeProjectMember = DTOCreateForgeProjectMember;
9794
9850
  var DTORemoveForgeProjectMember = DTOForgeProjectMember.pick({
9795
9851
  userId: true
9796
9852
  });
9797
- var DTOForgeProjectMembersListResponse = z324.object({
9798
- members: z324.array(DTOForgeProjectMember),
9799
- invitations: z324.array(DTOForgeProjectInvitation)
9853
+ var DTOForgeProjectMembersListResponse = z326.object({
9854
+ members: z326.array(DTOForgeProjectMember),
9855
+ invitations: z326.array(DTOForgeProjectInvitation)
9800
9856
  });
9801
- var DTOForgeProjectMemberGetResponse = z324.object({
9857
+ var DTOForgeProjectMemberGetResponse = z326.object({
9802
9858
  member: DTOForgeProjectMember
9803
9859
  });
9804
- var DTOForgeProjectMemberCreateResponse = z324.object({
9860
+ var DTOForgeProjectMemberCreateResponse = z326.object({
9805
9861
  member: DTOForgeProjectMember
9806
9862
  });
9807
- var DTOForgeProjectMemberUpdateResponse = z324.object({
9863
+ var DTOForgeProjectMemberUpdateResponse = z326.object({
9808
9864
  member: DTOForgeProjectMember.nullable()
9809
9865
  });
9810
- var DTOForgeProjectMemberRemoveResponse = z324.object({
9811
- ok: z324.literal(true)
9866
+ var DTOForgeProjectMemberRemoveResponse = z326.object({
9867
+ ok: z326.literal(true)
9812
9868
  });
9813
- var DTOAddMembersToForgeProject = z324.object({
9869
+ var DTOAddMembersToForgeProject = z326.object({
9814
9870
  membersToInvite: DTOCreateForgeProjectInvitation.array().min(1)
9815
9871
  });
9816
9872
 
9817
9873
  // src/api/dto/forge/project-room.ts
9818
- import { z as z325 } from "zod";
9819
- var DTOForgeProjectRoom = z325.object({
9820
- id: z325.string()
9874
+ import { z as z327 } from "zod";
9875
+ var DTOForgeProjectRoom = z327.object({
9876
+ id: z327.string()
9821
9877
  });
9822
- var DTOForgeProjectRoomResponse = z325.object({
9878
+ var DTOForgeProjectRoomResponse = z327.object({
9823
9879
  room: DTOForgeProjectRoom
9824
9880
  });
9825
9881
 
9826
- // src/api/dto/forge/project.ts
9827
- import { z as z326 } from "zod";
9828
- var DTOForgeProject = ForgeProject.omit({ fpContextId: true }).extend({
9829
- context: ForgeProjectContext
9830
- });
9831
- var DTOForgeProjectCreate = ForgeProject.pick({
9832
- instruction: true,
9833
- name: true,
9834
- meta: true,
9835
- tags: true,
9836
- accessMode: true,
9837
- defaultRole: true,
9838
- fpContextId: true,
9839
- isArchived: true,
9840
- emoji: true
9841
- }).extend({ membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional() });
9842
- var DTOForgeProjectUpdate = DTOForgeProjectCreate.omit({ membersToInvite: true }).partial().extend({
9843
- id: z326.string()
9844
- });
9845
- var DTOForgeProjectGetResponse = z326.object({ project: DTOForgeProject.nullable() });
9846
- var DTOForgeProjectListResponse = z326.object({ projects: z326.array(DTOForgeProject) });
9847
- var DTOForgeProjectCreateResponse = z326.object({
9848
- project: DTOForgeProject
9849
- });
9850
- var DTOForgeProjectUpdateResponse = z326.object({
9851
- project: DTOForgeProject
9852
- });
9853
- var DTOForgeProjectRemoveResponse = z326.object({ ok: z326.literal(true) });
9854
-
9855
9882
  // src/api/dto/forge/threads.ts
9856
- import { z as z327 } from "zod";
9883
+ import { z as z328 } from "zod";
9857
9884
  var DTOForgeChatMessage = ForgeChatMessage;
9858
9885
  var DTOForgeChatThread = ForgeChatThread;
9859
9886
  var DTOForgeChatMessageSenderType = ForgeChatMessageSenderType;
9860
9887
  var DTOForgeChatMessageSender = ForgeChatMessageSender;
9861
- var DTOForgeChatThreadCreateInput = z327.object({
9862
- title: z327.string().optional()
9888
+ var DTOForgeChatThreadCreateInput = z328.object({
9889
+ title: z328.string().optional()
9863
9890
  });
9864
- var DTOForgeChatThreadCreateResponse = z327.object({
9891
+ var DTOForgeChatThreadCreateResponse = z328.object({
9865
9892
  thread: DTOForgeChatThread
9866
9893
  });
9867
- var DTOForgeChatThreadUpdateInput = z327.object({
9868
- title: z327.string()
9894
+ var DTOForgeChatThreadUpdateInput = z328.object({
9895
+ title: z328.string()
9869
9896
  });
9870
- var DTOForgeChatThreadUpdateResponse = z327.object({
9897
+ var DTOForgeChatThreadUpdateResponse = z328.object({
9871
9898
  thread: DTOForgeChatThread
9872
9899
  });
9873
- var DTOForgeChatThreadDeleteResponse = z327.object({
9874
- success: z327.boolean()
9900
+ var DTOForgeChatThreadDeleteResponse = z328.object({
9901
+ success: z328.boolean()
9875
9902
  });
9876
- var DTOForgeChatThreadListQuery = z327.object({
9877
- limit: z327.number().optional(),
9878
- offset: z327.number().optional()
9903
+ var DTOForgeChatThreadListQuery = z328.object({
9904
+ limit: z328.number().optional(),
9905
+ offset: z328.number().optional()
9879
9906
  });
9880
- var DTOForgeChatThreadListResponse = z327.object({
9881
- threads: z327.array(DTOForgeChatThread),
9882
- pagination: z327.object({
9883
- offset: z327.number(),
9884
- limit: z327.number(),
9885
- total: z327.number()
9907
+ var DTOForgeChatThreadListResponse = z328.object({
9908
+ threads: z328.array(DTOForgeChatThread),
9909
+ pagination: z328.object({
9910
+ offset: z328.number(),
9911
+ limit: z328.number(),
9912
+ total: z328.number()
9886
9913
  })
9887
9914
  });
9888
- var DTOForgeChatMessageCreateInput = z327.object({
9889
- payload: z327.string(),
9915
+ var DTOForgeChatMessageCreateInput = z328.object({
9916
+ payload: z328.string(),
9890
9917
  sender: DTOForgeChatMessageSender.optional(),
9891
- opikTraceId: z327.string().optional(),
9892
- replyToMessageId: z327.string().optional()
9918
+ opikTraceId: z328.string().optional(),
9919
+ replyToMessageId: z328.string().optional()
9893
9920
  });
9894
- var DTOForgeChatMessageCreateResponse = z327.object({
9921
+ var DTOForgeChatMessageCreateResponse = z328.object({
9895
9922
  message: DTOForgeChatMessage
9896
9923
  });
9897
- var DTOForgeChatMessageListQuery = z327.object({
9898
- limit: z327.string().optional().transform((val) => val ? parseInt(val, 10) : void 0),
9899
- offset: z327.string().optional().transform((val) => val ? parseInt(val, 10) : void 0)
9924
+ var DTOForgeChatMessageListQuery = z328.object({
9925
+ limit: z328.string().optional().transform((val) => val ? parseInt(val, 10) : void 0),
9926
+ offset: z328.string().optional().transform((val) => val ? parseInt(val, 10) : void 0)
9900
9927
  });
9901
- var DTOForgeChatMessageListResponse = z327.object({
9902
- messages: z327.array(DTOForgeChatMessage),
9903
- totalCount: z327.number(),
9904
- hasMore: z327.boolean()
9928
+ var DTOForgeChatMessageListResponse = z328.object({
9929
+ messages: z328.array(DTOForgeChatMessage),
9930
+ totalCount: z328.number(),
9931
+ hasMore: z328.boolean()
9905
9932
  });
9906
- var DTOForgeChatExportResponse = z327.object({
9907
- csvDownloadUrl: z327.string().nullable()
9933
+ var DTOForgeChatExportResponse = z328.object({
9934
+ csvDownloadUrl: z328.string().nullable()
9908
9935
  });
9909
- var DTOForgeChatMessageScoreInput = z327.object({
9910
- messageId: z327.string(),
9911
- name: z327.string(),
9912
- value: z327.number(),
9913
- categoryName: z327.string().optional(),
9914
- reason: z327.string().optional()
9936
+ var DTOForgeChatMessageScoreInput = z328.object({
9937
+ messageId: z328.string(),
9938
+ name: z328.string(),
9939
+ value: z328.number(),
9940
+ categoryName: z328.string().optional(),
9941
+ reason: z328.string().optional()
9915
9942
  });
9916
- var DTOForgeChatMessageTagInput = z327.object({
9917
- messageId: z327.string(),
9918
- tags: z327.array(z327.string())
9943
+ var DTOForgeChatMessageTagInput = z328.object({
9944
+ messageId: z328.string(),
9945
+ tags: z328.array(z328.string())
9919
9946
  });
9920
- var DTOForgeChatMessageScoreRequest = z327.object({
9947
+ var DTOForgeChatMessageScoreRequest = z328.object({
9921
9948
  scores: DTOForgeChatMessageScoreInput.array(),
9922
9949
  tags: DTOForgeChatMessageTagInput.array().optional().default([])
9923
9950
  });
9924
9951
 
9925
9952
  // src/api/dto/liveblocks/auth-response.ts
9926
- import { z as z328 } from "zod";
9927
- var DTOLiveblocksAuthResponse = z328.object({
9928
- token: z328.string()
9953
+ import { z as z329 } from "zod";
9954
+ var DTOLiveblocksAuthResponse = z329.object({
9955
+ token: z329.string()
9929
9956
  });
9930
9957
 
9931
9958
  // src/api/dto/portal/portal-settings.ts
9932
- import { z as z329 } from "zod";
9959
+ import { z as z330 } from "zod";
9933
9960
  var DTOPortalSettingsTheme = PortalSettingsTheme;
9934
9961
  var DTOPortalSettingsSidebarLink = PortalSettingsSidebarLink;
9935
9962
  var DTOPortalSettingsSidebarSection = PortalSettingsSidebarSection;
9936
9963
  var DTOPortalSettingsSidebar = PortalSettingsSidebar;
9937
- var DTOPortalSettings = z329.object({
9938
- id: z329.string(),
9939
- workspaceId: z329.string(),
9940
- enabledDesignSystemIds: z329.array(z329.string()),
9941
- enabledBrandPersistentIds: z329.array(z329.string()),
9964
+ var DTOPortalSettings = z330.object({
9965
+ id: z330.string(),
9966
+ workspaceId: z330.string(),
9967
+ enabledDesignSystemIds: z330.array(z330.string()),
9968
+ enabledBrandPersistentIds: z330.array(z330.string()),
9942
9969
  theme: DTOPortalSettingsTheme.nullish(),
9943
9970
  sidebar: DTOPortalSettingsSidebar.nullish(),
9944
- createdAt: z329.coerce.date(),
9945
- updatedAt: z329.coerce.date()
9971
+ createdAt: z330.coerce.date(),
9972
+ updatedAt: z330.coerce.date()
9946
9973
  });
9947
- var DTOPortalSettingsGetResponse = z329.object({
9974
+ var DTOPortalSettingsGetResponse = z330.object({
9948
9975
  portalSettings: DTOPortalSettings
9949
9976
  });
9950
- var DTOPortalSettingsUpdatePayload = z329.object({
9951
- enabledDesignSystemIds: z329.array(z329.string()).optional(),
9952
- enabledBrandPersistentIds: z329.array(z329.string()).optional(),
9977
+ var DTOPortalSettingsUpdatePayload = z330.object({
9978
+ enabledDesignSystemIds: z330.array(z330.string()).optional(),
9979
+ enabledBrandPersistentIds: z330.array(z330.string()).optional(),
9953
9980
  theme: DTOPortalSettingsTheme.nullish(),
9954
9981
  sidebar: DTOPortalSettingsSidebar.nullish()
9955
9982
  });
9956
9983
 
9957
9984
  // src/api/dto/themes/override.ts
9958
- import { z as z330 } from "zod";
9985
+ import { z as z331 } from "zod";
9959
9986
  var DTOThemeOverride = DesignTokenTypedData.and(
9960
- z330.object({
9961
- tokenPersistentId: z330.string(),
9987
+ z331.object({
9988
+ tokenPersistentId: z331.string(),
9962
9989
  origin: ThemeOverrideOrigin.optional()
9963
9990
  })
9964
9991
  );
9965
9992
  var DTOThemeOverrideCreatePayload = DesignTokenTypedData.and(
9966
- z330.object({
9967
- tokenPersistentId: z330.string()
9993
+ z331.object({
9994
+ tokenPersistentId: z331.string()
9968
9995
  })
9969
9996
  );
9970
9997
 
9971
9998
  // src/api/dto/themes/theme.ts
9972
- import { z as z331 } from "zod";
9973
- var DTOTheme = z331.object({
9974
- id: z331.string(),
9975
- persistentId: z331.string(),
9976
- designSystemVersionId: z331.string(),
9977
- brandId: z331.string(),
9999
+ import { z as z332 } from "zod";
10000
+ var DTOTheme = z332.object({
10001
+ id: z332.string(),
10002
+ persistentId: z332.string(),
10003
+ designSystemVersionId: z332.string(),
10004
+ brandId: z332.string(),
9978
10005
  meta: ObjectMeta,
9979
- codeName: z331.string(),
10006
+ codeName: z332.string(),
9980
10007
  overrides: DTOThemeOverride.array()
9981
10008
  });
9982
- var DTOThemeResponse = z331.object({
10009
+ var DTOThemeResponse = z332.object({
9983
10010
  theme: DTOTheme
9984
10011
  });
9985
- var DTOThemeListResponse = z331.object({
10012
+ var DTOThemeListResponse = z332.object({
9986
10013
  themes: DTOTheme.array()
9987
10014
  });
9988
- var DTOThemeCreatePayload = z331.object({
10015
+ var DTOThemeCreatePayload = z332.object({
9989
10016
  meta: ObjectMeta,
9990
- persistentId: z331.string(),
9991
- brandId: z331.string(),
9992
- codeName: z331.string(),
10017
+ persistentId: z332.string(),
10018
+ brandId: z332.string(),
10019
+ codeName: z332.string(),
9993
10020
  overrides: DTOThemeOverride.array()
9994
10021
  });
9995
10022
 
@@ -10225,13 +10252,13 @@ var ExportersEndpoint = class {
10225
10252
  };
10226
10253
 
10227
10254
  // src/api/endpoints/codegen/jobs.ts
10228
- import { z as z332 } from "zod";
10255
+ import { z as z333 } from "zod";
10229
10256
  var ExporterJobsEndpoint = class {
10230
10257
  constructor(requestExecutor) {
10231
10258
  this.requestExecutor = requestExecutor;
10232
10259
  }
10233
10260
  list(workspaceId) {
10234
- return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs`, z332.any());
10261
+ return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs`, z333.any());
10235
10262
  }
10236
10263
  get(workspaceId, jobId) {
10237
10264
  return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs/${jobId}`, DTOExportJobResponseLegacy);
@@ -10289,7 +10316,7 @@ var CodegenEndpoint = class {
10289
10316
  };
10290
10317
 
10291
10318
  // src/api/endpoints/design-system/versions/brands.ts
10292
- import { z as z333 } from "zod";
10319
+ import { z as z334 } from "zod";
10293
10320
  var BrandsEndpoint = class {
10294
10321
  constructor(requestExecutor) {
10295
10322
  this.requestExecutor = requestExecutor;
@@ -10323,7 +10350,7 @@ var BrandsEndpoint = class {
10323
10350
  });
10324
10351
  }
10325
10352
  delete(dsId, vId, brandId) {
10326
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, z333.any(), {
10353
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, z334.any(), {
10327
10354
  method: "DELETE"
10328
10355
  });
10329
10356
  }
@@ -10599,7 +10626,7 @@ var ImportJobsEndpoint = class {
10599
10626
  };
10600
10627
 
10601
10628
  // src/api/endpoints/design-system/versions/overrides.ts
10602
- import { z as z334 } from "zod";
10629
+ import { z as z335 } from "zod";
10603
10630
  var OverridesEndpoint = class {
10604
10631
  constructor(requestExecutor) {
10605
10632
  this.requestExecutor = requestExecutor;
@@ -10607,7 +10634,7 @@ var OverridesEndpoint = class {
10607
10634
  create(dsId, versionId, themeId, body) {
10608
10635
  return this.requestExecutor.json(
10609
10636
  `/design-systems/${dsId}/versions/${versionId}/themes/${themeId}/overrides`,
10610
- z334.any(),
10637
+ z335.any(),
10611
10638
  {
10612
10639
  method: "POST",
10613
10640
  body
@@ -10617,7 +10644,7 @@ var OverridesEndpoint = class {
10617
10644
  };
10618
10645
 
10619
10646
  // src/api/endpoints/design-system/versions/property-definitions.ts
10620
- import { z as z335 } from "zod";
10647
+ import { z as z336 } from "zod";
10621
10648
  var ElementPropertyDefinitionsEndpoint = class {
10622
10649
  constructor(requestExecutor) {
10623
10650
  this.requestExecutor = requestExecutor;
@@ -10645,7 +10672,7 @@ var ElementPropertyDefinitionsEndpoint = class {
10645
10672
  delete(designSystemId, versionId, defId) {
10646
10673
  return this.requestExecutor.json(
10647
10674
  `/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions/${defId}`,
10648
- z335.any(),
10675
+ z336.any(),
10649
10676
  { method: "DELETE" }
10650
10677
  );
10651
10678
  }
@@ -10684,7 +10711,7 @@ var VersionStatsEndpoint = class {
10684
10711
  };
10685
10712
 
10686
10713
  // src/api/endpoints/design-system/versions/themes.ts
10687
- import { z as z336 } from "zod";
10714
+ import { z as z337 } from "zod";
10688
10715
  var ThemesEndpoint = class {
10689
10716
  constructor(requestExecutor) {
10690
10717
  this.requestExecutor = requestExecutor;
@@ -10707,7 +10734,7 @@ var ThemesEndpoint = class {
10707
10734
  });
10708
10735
  }
10709
10736
  delete(dsId, versionId, themeId) {
10710
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`, z336.any(), {
10737
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`, z337.any(), {
10711
10738
  method: "DELETE"
10712
10739
  });
10713
10740
  }
@@ -10880,7 +10907,7 @@ var DesignSystemContactsEndpoint = class {
10880
10907
  };
10881
10908
 
10882
10909
  // src/api/endpoints/design-system/design-systems.ts
10883
- import { z as z340 } from "zod";
10910
+ import { z as z341 } from "zod";
10884
10911
 
10885
10912
  // src/api/endpoints/design-system/figma-node-structures.ts
10886
10913
  var FigmaNodeStructuresEndpoint = class {
@@ -10957,7 +10984,7 @@ var DesignSystemPageRedirectsEndpoint = class {
10957
10984
  };
10958
10985
 
10959
10986
  // src/api/endpoints/design-system/sources.ts
10960
- import { z as z337 } from "zod";
10987
+ import { z as z338 } from "zod";
10961
10988
  var DesignSystemSourcesEndpoint = class {
10962
10989
  constructor(requestExecutor) {
10963
10990
  this.requestExecutor = requestExecutor;
@@ -10975,7 +11002,7 @@ var DesignSystemSourcesEndpoint = class {
10975
11002
  return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse);
10976
11003
  }
10977
11004
  delete(dsId, sourceId) {
10978
- return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, z337.any(), { method: "DELETE" });
11005
+ return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, z338.any(), { method: "DELETE" });
10979
11006
  }
10980
11007
  updateFigmaSource(dsId, sourceId, payload) {
10981
11008
  return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse, {
@@ -11018,7 +11045,7 @@ var DesignSystemSourcesEndpoint = class {
11018
11045
  };
11019
11046
 
11020
11047
  // src/api/endpoints/design-system/storybook.ts
11021
- import { z as z338 } from "zod";
11048
+ import { z as z339 } from "zod";
11022
11049
  var StorybookEntriesEndpoint = class {
11023
11050
  constructor(requestExecutor) {
11024
11051
  this.requestExecutor = requestExecutor;
@@ -11036,14 +11063,14 @@ var StorybookEntriesEndpoint = class {
11036
11063
  );
11037
11064
  }
11038
11065
  delete(dsId, entryId) {
11039
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, z338.any(), {
11066
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, z339.any(), {
11040
11067
  method: "DELETE"
11041
11068
  });
11042
11069
  }
11043
11070
  };
11044
11071
 
11045
11072
  // src/api/endpoints/design-system/storybook-hosting.ts
11046
- import { z as z339 } from "zod";
11073
+ import { z as z340 } from "zod";
11047
11074
  var StorybookHostingEndpoint = class {
11048
11075
  constructor(requestExecutor) {
11049
11076
  this.requestExecutor = requestExecutor;
@@ -11057,7 +11084,7 @@ var StorybookHostingEndpoint = class {
11057
11084
  delete(dsId, storybookUploadId) {
11058
11085
  return this.requestExecutor.json(
11059
11086
  `/design-systems/${dsId}/storybook/${storybookUploadId}`,
11060
- z339.object({ ok: z339.boolean() }),
11087
+ z340.object({ ok: z340.boolean() }),
11061
11088
  {
11062
11089
  method: "DELETE"
11063
11090
  }
@@ -11115,7 +11142,7 @@ var DesignSystemsEndpoint = class {
11115
11142
  return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse);
11116
11143
  }
11117
11144
  delete(dsId) {
11118
- return this.requestExecutor.json(`/design-systems/${dsId}`, z340.any(), { method: "DELETE" });
11145
+ return this.requestExecutor.json(`/design-systems/${dsId}`, z341.any(), { method: "DELETE" });
11119
11146
  }
11120
11147
  update(dsId, body) {
11121
11148
  return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse, {
@@ -11238,7 +11265,7 @@ var ForgeFeatureArtifactsEndpoint = class {
11238
11265
  };
11239
11266
 
11240
11267
  // src/api/endpoints/forge/feature-iterations.ts
11241
- import z341 from "zod";
11268
+ import z342 from "zod";
11242
11269
  var ForgeFeatureIterationsEndpoint = class {
11243
11270
  constructor(requestExecutor) {
11244
11271
  this.requestExecutor = requestExecutor;
@@ -11255,7 +11282,7 @@ var ForgeFeatureIterationsEndpoint = class {
11255
11282
  updateArtifacts(workspaceId, projectId, featureId, body) {
11256
11283
  return this.requestExecutor.json(
11257
11284
  `/workspaces/${workspaceId}/forge/projects/${projectId}/features/${featureId}/iterations/update-artifacts`,
11258
- z341.any(),
11285
+ z342.any(),
11259
11286
  {
11260
11287
  body,
11261
11288
  method: "POST"
@@ -11490,7 +11517,7 @@ var ForgeProjectMembersEndpoint = class {
11490
11517
  };
11491
11518
 
11492
11519
  // src/api/endpoints/forge/projects.ts
11493
- import z342 from "zod";
11520
+ import z343 from "zod";
11494
11521
  var ForgeProjectsEndpoint = class {
11495
11522
  constructor(requestExecutor) {
11496
11523
  this.requestExecutor = requestExecutor;
@@ -11535,7 +11562,7 @@ var ForgeProjectsEndpoint = class {
11535
11562
  );
11536
11563
  }
11537
11564
  action(workspaceId, projectId, body) {
11538
- return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/projects/${projectId}/action`, z342.any(), {
11565
+ return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/projects/${projectId}/action`, z343.any(), {
11539
11566
  body,
11540
11567
  method: "POST"
11541
11568
  });
@@ -11618,7 +11645,7 @@ var ForgeProjectIterationsEndpoint = class {
11618
11645
  };
11619
11646
 
11620
11647
  // src/api/endpoints/workspaces/chat-threads.ts
11621
- import { z as z343 } from "zod";
11648
+ import { z as z344 } from "zod";
11622
11649
  var WorkspaceChatThreadsEndpoint = class {
11623
11650
  constructor(requestExecutor) {
11624
11651
  this.requestExecutor = requestExecutor;
@@ -11650,7 +11677,7 @@ var WorkspaceChatThreadsEndpoint = class {
11650
11677
  );
11651
11678
  }
11652
11679
  delete(workspaceId, threadId) {
11653
- return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}`, z343.any(), {
11680
+ return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}`, z344.any(), {
11654
11681
  method: "DELETE"
11655
11682
  });
11656
11683
  }
@@ -11682,7 +11709,7 @@ var ChatThreadMessagesEndpoint = class {
11682
11709
  );
11683
11710
  }
11684
11711
  score(workspaceId, threadId, body) {
11685
- return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}/scores`, z343.any(), {
11712
+ return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}/scores`, z344.any(), {
11686
11713
  method: "POST",
11687
11714
  body
11688
11715
  });
@@ -11690,7 +11717,7 @@ var ChatThreadMessagesEndpoint = class {
11690
11717
  };
11691
11718
 
11692
11719
  // src/api/endpoints/workspaces/integrations.ts
11693
- import { z as z344 } from "zod";
11720
+ import { z as z345 } from "zod";
11694
11721
  var WorkspaceIntegrationsEndpoint = class {
11695
11722
  constructor(requestExecutor) {
11696
11723
  this.requestExecutor = requestExecutor;
@@ -11699,7 +11726,7 @@ var WorkspaceIntegrationsEndpoint = class {
11699
11726
  return this.requestExecutor.json(`/workspaces/${wsId}/integrations`, DTOIntegrationsGetListResponse);
11700
11727
  }
11701
11728
  delete(wsId, iId) {
11702
- return this.requestExecutor.json(`/workspaces/${wsId}/integrations/${iId}`, z344.unknown(), { method: "DELETE" });
11729
+ return this.requestExecutor.json(`/workspaces/${wsId}/integrations/${iId}`, z345.unknown(), { method: "DELETE" });
11703
11730
  }
11704
11731
  };
11705
11732
 
@@ -11731,7 +11758,7 @@ var WorkspaceInvitationsEndpoint = class {
11731
11758
  };
11732
11759
 
11733
11760
  // src/api/endpoints/workspaces/members.ts
11734
- import { z as z345 } from "zod";
11761
+ import { z as z346 } from "zod";
11735
11762
  var WorkspaceMembersEndpoint = class {
11736
11763
  constructor(requestExecutor) {
11737
11764
  this.requestExecutor = requestExecutor;
@@ -11748,7 +11775,7 @@ var WorkspaceMembersEndpoint = class {
11748
11775
  });
11749
11776
  }
11750
11777
  invite(workspaceId, body) {
11751
- return this.requestExecutor.json(`/workspaces/${workspaceId}/members`, z345.any(), { method: "POST", body });
11778
+ return this.requestExecutor.json(`/workspaces/${workspaceId}/members`, z346.any(), { method: "POST", body });
11752
11779
  }
11753
11780
  delete(workspaceId, userId) {
11754
11781
  return this.requestExecutor.json(`/workspaces/${workspaceId}/members/${userId}`, DTOWorkspaceResponse, {
@@ -11777,7 +11804,7 @@ var WorkspaceNpmRegistryEndpoint = class {
11777
11804
  };
11778
11805
 
11779
11806
  // src/api/endpoints/workspaces/workspaces.ts
11780
- import { z as z346 } from "zod";
11807
+ import { z as z347 } from "zod";
11781
11808
  var WorkspacesEndpoint = class {
11782
11809
  constructor(requestExecutor) {
11783
11810
  this.requestExecutor = requestExecutor;
@@ -11809,10 +11836,10 @@ var WorkspacesEndpoint = class {
11809
11836
  return this.requestExecutor.json(`/workspaces/${workspaceId}`, DTOWorkspaceResponse, { method: "GET" });
11810
11837
  }
11811
11838
  delete(workspaceId) {
11812
- return this.requestExecutor.json(`/workspaces/${workspaceId}`, z346.any(), { method: "DELETE" });
11839
+ return this.requestExecutor.json(`/workspaces/${workspaceId}`, z347.any(), { method: "DELETE" });
11813
11840
  }
11814
11841
  subscription(workspaceId) {
11815
- return this.requestExecutor.json(`/workspaces/${workspaceId}/subscription`, z346.any(), { method: "GET" });
11842
+ return this.requestExecutor.json(`/workspaces/${workspaceId}/subscription`, z347.any(), { method: "GET" });
11816
11843
  }
11817
11844
  getPortalSettings(workspaceId) {
11818
11845
  return this.requestExecutor.json(`/workspaces/${workspaceId}/portal/settings`, DTOPortalSettingsGetResponse, {
@@ -11923,9 +11950,9 @@ ${bodyText}`,
11923
11950
 
11924
11951
  // src/api/transport/request-executor.ts
11925
11952
  import fetch from "node-fetch";
11926
- import { z as z347 } from "zod";
11927
- var ResponseWrapper = z347.object({
11928
- result: z347.record(z347.any())
11953
+ import { z as z348 } from "zod";
11954
+ var ResponseWrapper = z348.object({
11955
+ result: z348.record(z348.any())
11929
11956
  });
11930
11957
  var RequestExecutor = class {
11931
11958
  constructor(testServerConfig) {
@@ -12002,25 +12029,25 @@ var SupernovaApiClient = class {
12002
12029
  };
12003
12030
 
12004
12031
  // src/events/design-system.ts
12005
- import { z as z348 } from "zod";
12006
- var DTOEventFigmaNodesRendered = z348.object({
12007
- type: z348.literal("DesignSystem.FigmaNodesRendered"),
12008
- designSystemId: z348.string(),
12009
- versionId: z348.string(),
12010
- figmaNodePersistentIds: z348.string().array()
12011
- });
12012
- var DTOEventDataSourcesImported = z348.object({
12013
- type: z348.literal("DesignSystem.ImportJobFinished"),
12014
- designSystemId: z348.string(),
12015
- versionId: z348.string(),
12016
- importJobId: z348.string(),
12032
+ import { z as z349 } from "zod";
12033
+ var DTOEventFigmaNodesRendered = z349.object({
12034
+ type: z349.literal("DesignSystem.FigmaNodesRendered"),
12035
+ designSystemId: z349.string(),
12036
+ versionId: z349.string(),
12037
+ figmaNodePersistentIds: z349.string().array()
12038
+ });
12039
+ var DTOEventDataSourcesImported = z349.object({
12040
+ type: z349.literal("DesignSystem.ImportJobFinished"),
12041
+ designSystemId: z349.string(),
12042
+ versionId: z349.string(),
12043
+ importJobId: z349.string(),
12017
12044
  dataSourceType: DataSourceRemoteType,
12018
- dataSourceIds: z348.string().array()
12045
+ dataSourceIds: z349.string().array()
12019
12046
  });
12020
12047
 
12021
12048
  // src/events/event.ts
12022
- import { z as z349 } from "zod";
12023
- var DTOEvent = z349.discriminatedUnion("type", [DTOEventDataSourcesImported, DTOEventFigmaNodesRendered]);
12049
+ import { z as z350 } from "zod";
12050
+ var DTOEvent = z350.discriminatedUnion("type", [DTOEventDataSourcesImported, DTOEventFigmaNodesRendered]);
12024
12051
 
12025
12052
  // src/sync/docs-local-action-executor.ts
12026
12053
  function applyActionsLocally(input) {
@@ -12316,7 +12343,7 @@ var LocalDocsElementActionExecutor = class {
12316
12343
  import PQueue from "p-queue";
12317
12344
 
12318
12345
  // src/yjs/design-system-content/documentation-hierarchy.ts
12319
- import { z as z350 } from "zod";
12346
+ import { z as z351 } from "zod";
12320
12347
 
12321
12348
  // src/yjs/version-room/base.ts
12322
12349
  var VersionRoomBaseYDoc = class {
@@ -12866,24 +12893,24 @@ var FrontendVersionRoomYDoc = class {
12866
12893
  };
12867
12894
 
12868
12895
  // src/yjs/design-system-content/documentation-hierarchy.ts
12869
- var DocumentationHierarchySettings = z350.object({
12870
- routingVersion: z350.string(),
12871
- isDraftFeatureAdopted: z350.boolean(),
12872
- isApprovalFeatureEnabled: z350.boolean(),
12873
- approvalRequiredForPublishing: z350.boolean()
12896
+ var DocumentationHierarchySettings = z351.object({
12897
+ routingVersion: z351.string(),
12898
+ isDraftFeatureAdopted: z351.boolean(),
12899
+ isApprovalFeatureEnabled: z351.boolean(),
12900
+ approvalRequiredForPublishing: z351.boolean()
12874
12901
  });
12875
12902
  function yjsToDocumentationHierarchy(doc) {
12876
12903
  return new FrontendVersionRoomYDoc(doc).getDocumentationHierarchy();
12877
12904
  }
12878
12905
 
12879
12906
  // src/yjs/design-system-content/item-configuration.ts
12880
- import { z as z351 } from "zod";
12881
- var DTODocumentationPageRoomHeaderData = z351.object({
12882
- title: z351.string(),
12907
+ import { z as z352 } from "zod";
12908
+ var DTODocumentationPageRoomHeaderData = z352.object({
12909
+ title: z352.string(),
12883
12910
  configuration: DTODocumentationItemConfigurationV2
12884
12911
  });
12885
- var DTODocumentationPageRoomHeaderDataUpdate = z351.object({
12886
- title: z351.string().optional(),
12912
+ var DTODocumentationPageRoomHeaderDataUpdate = z352.object({
12913
+ title: z352.string().optional(),
12887
12914
  configuration: DTODocumentationItemConfigurationV2.omit({ header: true }).extend({ header: DocumentationItemHeaderV2.partial() }).optional()
12888
12915
  });
12889
12916
  function itemConfigurationToYjs(yDoc, item) {
@@ -12918,9 +12945,9 @@ var PageBlockEditorModel = PageBlockEditorModelV2;
12918
12945
  var PageSectionEditorModel = PageSectionEditorModelV2;
12919
12946
 
12920
12947
  // src/yjs/docs-editor/model/page.ts
12921
- import { z as z352 } from "zod";
12922
- var DocumentationPageEditorModel = z352.object({
12923
- blocks: z352.array(DocumentationPageContentItem)
12948
+ import { z as z353 } from "zod";
12949
+ var DocumentationPageEditorModel = z353.object({
12950
+ blocks: z353.array(DocumentationPageContentItem)
12924
12951
  });
12925
12952
 
12926
12953
  // src/yjs/docs-editor/prosemirror/inner-editor-schema.ts
@@ -16597,7 +16624,7 @@ var blocks = [
16597
16624
 
16598
16625
  // src/yjs/docs-editor/prosemirror-to-blocks.ts
16599
16626
  import { yXmlFragmentToProsemirrorJSON } from "y-prosemirror";
16600
- import { z as z353 } from "zod";
16627
+ import { z as z354 } from "zod";
16601
16628
  function yDocToPage(yDoc, definitions) {
16602
16629
  return yXmlFragmentToPage(yDoc.getXmlFragment("default"), definitions);
16603
16630
  }
@@ -16673,7 +16700,7 @@ function prosemirrorNodeToSectionItem(prosemirrorNode, definitionsMap) {
16673
16700
  if (!id) return null;
16674
16701
  return {
16675
16702
  id,
16676
- title: getProsemirrorAttribute(prosemirrorNode, "title", z353.string()) ?? "",
16703
+ title: getProsemirrorAttribute(prosemirrorNode, "title", z354.string()) ?? "",
16677
16704
  columns: (prosemirrorNode.content ?? []).filter((c) => c.type === "sectionItemColumn").map((c) => prosemirrorNodeToSectionColumns(c, definitionsMap)).filter(nonNullFilter)
16678
16705
  };
16679
16706
  }
@@ -16707,7 +16734,7 @@ function internalProsemirrorNodesToBlocks(prosemirrorNodes, definitionsMap, dept
16707
16734
  });
16708
16735
  }
16709
16736
  function internalProsemirrorNodeToBlock(prosemirrorNode, definitionsMap, depth) {
16710
- const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId", z353.string());
16737
+ const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId", z354.string());
16711
16738
  if (!definitionId) {
16712
16739
  console.warn(`definitionId on ${prosemirrorNode.type} is required to be interpreted as a block, skipping node`);
16713
16740
  return [];
@@ -16748,7 +16775,7 @@ function parseAsRichText(prosemirrorNode, definition, property) {
16748
16775
  const id = getProsemirrorBlockId(prosemirrorNode);
16749
16776
  if (!id) return null;
16750
16777
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
16751
- const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type", z353.string().optional()));
16778
+ const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type", z354.string().optional()));
16752
16779
  return {
16753
16780
  id,
16754
16781
  type: "Block",
@@ -16871,9 +16898,9 @@ function parseRichTextAttribute(mark) {
16871
16898
  return null;
16872
16899
  }
16873
16900
  function parseProsemirrorLink(mark) {
16874
- const href = getProsemirrorAttribute(mark, "href", z353.string().optional());
16901
+ const href = getProsemirrorAttribute(mark, "href", z354.string().optional());
16875
16902
  if (!href) return null;
16876
- const target = getProsemirrorAttribute(mark, "target", z353.string().optional());
16903
+ const target = getProsemirrorAttribute(mark, "target", z354.string().optional());
16877
16904
  const openInNewTab = target === "_blank";
16878
16905
  if (href.startsWith("@")) {
16879
16906
  return {
@@ -16892,9 +16919,9 @@ function parseProsemirrorLink(mark) {
16892
16919
  }
16893
16920
  }
16894
16921
  function parseProsemirrorCommentHighlight(mark) {
16895
- const highlightId = getProsemirrorAttribute(mark, "highlightId", z353.string().optional());
16922
+ const highlightId = getProsemirrorAttribute(mark, "highlightId", z354.string().optional());
16896
16923
  if (!highlightId) return null;
16897
- const isResolved = getProsemirrorAttribute(mark, "resolved", z353.boolean().optional()) ?? false;
16924
+ const isResolved = getProsemirrorAttribute(mark, "resolved", z354.boolean().optional()) ?? false;
16898
16925
  return {
16899
16926
  type: "Comment",
16900
16927
  commentHighlightId: highlightId,
@@ -16905,7 +16932,7 @@ function parseAsTable(prosemirrorNode, definition, property) {
16905
16932
  const id = getProsemirrorBlockId(prosemirrorNode);
16906
16933
  if (!id) return null;
16907
16934
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
16908
- const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", z353.boolean().optional()) !== false;
16935
+ const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", z354.boolean().optional()) !== false;
16909
16936
  const tableChild = prosemirrorNode.content?.find((c) => c.type === "table");
16910
16937
  if (!tableChild) {
16911
16938
  return emptyTable(id, variantId, 0);
@@ -16951,9 +16978,9 @@ function parseAsTable(prosemirrorNode, definition, property) {
16951
16978
  function parseAsTableCell(prosemirrorNode) {
16952
16979
  const id = getProsemirrorBlockId(prosemirrorNode);
16953
16980
  if (!id) return null;
16954
- const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign", z353.string().optional());
16981
+ const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign", z354.string().optional());
16955
16982
  let columnWidth;
16956
- const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth", z353.array(z353.number()).nullish());
16983
+ const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth", z354.array(z354.number()).nullish());
16957
16984
  if (columnWidthArray) {
16958
16985
  columnWidth = roundDimension(columnWidthArray[0]);
16959
16986
  }
@@ -16989,7 +17016,7 @@ function parseAsTableNode(prosemirrorNode) {
16989
17016
  value: parseRichText(prosemirrorNode.content ?? [])
16990
17017
  };
16991
17018
  case "image":
16992
- const items = getProsemirrorAttribute(prosemirrorNode, "items", z353.string());
17019
+ const items = getProsemirrorAttribute(prosemirrorNode, "items", z354.string());
16993
17020
  if (!items) return null;
16994
17021
  const parsedItems = PageBlockItemV2.array().safeParse(JSON.parse(items));
16995
17022
  if (!parsedItems.success) return null;
@@ -17103,7 +17130,7 @@ function definitionExpectsPlaceholderItem(definition) {
17103
17130
  );
17104
17131
  }
17105
17132
  function parseBlockItems(prosemirrorNode, definition) {
17106
- const itemsString = getProsemirrorAttribute(prosemirrorNode, "items", z353.string());
17133
+ const itemsString = getProsemirrorAttribute(prosemirrorNode, "items", z354.string());
17107
17134
  if (!itemsString) return null;
17108
17135
  const itemsJson = JSON.parse(itemsString);
17109
17136
  if (!Array.isArray(itemsJson)) {
@@ -17114,18 +17141,18 @@ function parseBlockItems(prosemirrorNode, definition) {
17114
17141
  }
17115
17142
  function parseAppearance(prosemirrorNode) {
17116
17143
  let appearance = {};
17117
- const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance", z353.string().optional());
17144
+ const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance", z354.string().optional());
17118
17145
  if (rawAppearanceString) {
17119
17146
  const parsedAppearance = PageBlockAppearanceV2.safeParse(JSON.parse(rawAppearanceString));
17120
17147
  if (parsedAppearance.success) {
17121
17148
  appearance = parsedAppearance.data;
17122
17149
  }
17123
17150
  }
17124
- const columns = getProsemirrorAttribute(prosemirrorNode, "columns", z353.number().optional());
17151
+ const columns = getProsemirrorAttribute(prosemirrorNode, "columns", z354.number().optional());
17125
17152
  if (columns) {
17126
17153
  appearance.numberOfColumns = columns;
17127
17154
  }
17128
- const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor", z353.string().optional());
17155
+ const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor", z354.string().optional());
17129
17156
  if (backgroundColor) {
17130
17157
  const parsedColor = PageBlockColorV2.safeParse(JSON.parse(backgroundColor));
17131
17158
  if (parsedColor.success) {
@@ -17226,12 +17253,12 @@ function valueSchemaForPropertyType(type) {
17226
17253
  }
17227
17254
  }
17228
17255
  function getProsemirrorBlockId(prosemirrorNode) {
17229
- const id = getProsemirrorAttribute(prosemirrorNode, "id", z353.string());
17256
+ const id = getProsemirrorAttribute(prosemirrorNode, "id", z354.string());
17230
17257
  if (!id) console.warn(`Prosemirror attribute "id" on ${prosemirrorNode.type} is required`);
17231
17258
  return id;
17232
17259
  }
17233
17260
  function getProsemirrorBlockVariantId(prosemirrorNode) {
17234
- return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(z353.string()));
17261
+ return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(z354.string()));
17235
17262
  }
17236
17263
  function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchema) {
17237
17264
  const parsedAttr = validationSchema.safeParse(prosemirrorNode.attrs?.[attributeName]);
@@ -18658,10 +18685,14 @@ export {
18658
18685
  DTOForgeChatThreadListResponse,
18659
18686
  DTOForgeChatThreadUpdateInput,
18660
18687
  DTOForgeChatThreadUpdateResponse,
18688
+ DTOForgeComponentSet,
18689
+ DTOForgeComponentSetType,
18661
18690
  DTOForgeFeatureRoom,
18662
18691
  DTOForgeFeatureRoomResponse,
18663
18692
  DTOForgeFigmaArtifact,
18664
18693
  DTOForgeFileArtifact,
18694
+ DTOForgeIconSet,
18695
+ DTOForgeIconSetType,
18665
18696
  DTOForgeIterationMessage,
18666
18697
  DTOForgeIterationMessagesListResponse,
18667
18698
  DTOForgeParticipant,
@@ -18696,10 +18727,16 @@ export {
18696
18727
  DTOForgeProjectArtifactsListResponse,
18697
18728
  DTOForgeProjectContext,
18698
18729
  DTOForgeProjectContextCreateResponse,
18730
+ DTOForgeProjectContextCreateV2,
18699
18731
  DTOForgeProjectContextGetResponse,
18732
+ DTOForgeProjectContextListQueryV2,
18700
18733
  DTOForgeProjectContextListResponse,
18734
+ DTOForgeProjectContextListResponseV2,
18701
18735
  DTOForgeProjectContextRemoveResponse,
18736
+ DTOForgeProjectContextResponseV2,
18702
18737
  DTOForgeProjectContextUpdateResponse,
18738
+ DTOForgeProjectContextUpdateV2,
18739
+ DTOForgeProjectContextV2,
18703
18740
  DTOForgeProjectCreate,
18704
18741
  DTOForgeProjectCreateResponse,
18705
18742
  DTOForgeProjectFeature,