@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.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -362586,11 +362586,25 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
362586
362586
|
}>;
|
|
362587
362587
|
}
|
|
362588
362588
|
|
|
362589
|
+
declare class ForgeFeatureIterationTagsEndpoint {
|
|
362590
|
+
private readonly requestExecutor;
|
|
362591
|
+
constructor(requestExecutor: RequestExecutor);
|
|
362592
|
+
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
362593
|
+
tags: {
|
|
362594
|
+
id: string;
|
|
362595
|
+
iterationId: string;
|
|
362596
|
+
featureId: string;
|
|
362597
|
+
messageId?: string | undefined;
|
|
362598
|
+
}[];
|
|
362599
|
+
}>;
|
|
362600
|
+
}
|
|
362601
|
+
|
|
362589
362602
|
declare class ForgeProjectFeaturesEndpoint {
|
|
362590
362603
|
private readonly requestExecutor;
|
|
362591
362604
|
readonly messages: ForgeFeatureMessagesEndpoint;
|
|
362592
362605
|
readonly iterations: ForgeFeatureIterationsEndpoint;
|
|
362593
362606
|
readonly artifacts: ForgeFeatureArtifactsEndpoint;
|
|
362607
|
+
readonly iterationTags: ForgeFeatureIterationTagsEndpoint;
|
|
362594
362608
|
constructor(requestExecutor: RequestExecutor);
|
|
362595
362609
|
list(workspaceId: string, projectId: string): Promise<{
|
|
362596
362610
|
features: {
|
package/dist/index.d.ts
CHANGED
|
@@ -362586,11 +362586,25 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
362586
362586
|
}>;
|
|
362587
362587
|
}
|
|
362588
362588
|
|
|
362589
|
+
declare class ForgeFeatureIterationTagsEndpoint {
|
|
362590
|
+
private readonly requestExecutor;
|
|
362591
|
+
constructor(requestExecutor: RequestExecutor);
|
|
362592
|
+
list(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
362593
|
+
tags: {
|
|
362594
|
+
id: string;
|
|
362595
|
+
iterationId: string;
|
|
362596
|
+
featureId: string;
|
|
362597
|
+
messageId?: string | undefined;
|
|
362598
|
+
}[];
|
|
362599
|
+
}>;
|
|
362600
|
+
}
|
|
362601
|
+
|
|
362589
362602
|
declare class ForgeProjectFeaturesEndpoint {
|
|
362590
362603
|
private readonly requestExecutor;
|
|
362591
362604
|
readonly messages: ForgeFeatureMessagesEndpoint;
|
|
362592
362605
|
readonly iterations: ForgeFeatureIterationsEndpoint;
|
|
362593
362606
|
readonly artifacts: ForgeFeatureArtifactsEndpoint;
|
|
362607
|
+
readonly iterationTags: ForgeFeatureIterationTagsEndpoint;
|
|
362594
362608
|
constructor(requestExecutor: RequestExecutor);
|
|
362595
362609
|
list(workspaceId: string, projectId: string): Promise<{
|
|
362596
362610
|
features: {
|
package/dist/index.js
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(
|