@supernova-studio/client 1.65.2 → 1.65.3

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
@@ -12705,6 +12705,19 @@ var ForgeFeatureMessagesEndpoint = class {
12705
12705
  }
12706
12706
  };
12707
12707
 
12708
+ // src/api/endpoints/forge/iteration-tags.ts
12709
+ var ForgeFeatureIterationTagsEndpoint = class {
12710
+ constructor(requestExecutor) {
12711
+ this.requestExecutor = requestExecutor;
12712
+ }
12713
+ list(workspaceId, projectId, featureId) {
12714
+ return this.requestExecutor.json(
12715
+ `/workspaces/${workspaceId}/forge/projects/${projectId}/features/${featureId}/iteration-tags`,
12716
+ DTOFeatureIterationTagListResponse
12717
+ );
12718
+ }
12719
+ };
12720
+
12708
12721
  // src/api/endpoints/forge/features.ts
12709
12722
  var ForgeProjectFeaturesEndpoint = class {
12710
12723
  constructor(requestExecutor) {
@@ -12712,9 +12725,11 @@ var ForgeProjectFeaturesEndpoint = class {
12712
12725
  __publicField(this, "messages");
12713
12726
  __publicField(this, "iterations");
12714
12727
  __publicField(this, "artifacts");
12728
+ __publicField(this, "iterationTags");
12715
12729
  this.messages = new ForgeFeatureMessagesEndpoint(requestExecutor);
12716
12730
  this.iterations = new ForgeFeatureIterationsEndpoint(requestExecutor);
12717
12731
  this.artifacts = new ForgeFeatureArtifactsEndpoint(requestExecutor);
12732
+ this.iterationTags = new ForgeFeatureIterationTagsEndpoint(requestExecutor);
12718
12733
  }
12719
12734
  list(workspaceId, projectId) {
12720
12735
  return this.requestExecutor.json(