@supernova-studio/client 1.65.2 → 1.65.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +18 -4
- package/dist/index.d.ts +18 -4
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10482,7 +10482,7 @@ var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
|
10482
10482
|
updatedAt: true,
|
|
10483
10483
|
thumbnail: true
|
|
10484
10484
|
}).partial().extend({
|
|
10485
|
-
thumbnailFileId: z325.string().
|
|
10485
|
+
thumbnailFileId: z325.string().nullish()
|
|
10486
10486
|
});
|
|
10487
10487
|
var DTOForgeProjectContextResponseV2 = z325.object({ context: DTOForgeProjectContextV2 });
|
|
10488
10488
|
var DTOForgeProjectContextListQueryV2 = z325.object({
|
|
@@ -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(
|
|
@@ -20831,6 +20846,7 @@ export {
|
|
|
20831
20846
|
ForgeDocumentsEndpoint,
|
|
20832
20847
|
ForgeEndpoint,
|
|
20833
20848
|
ForgeFeatureArtifactsEndpoint,
|
|
20849
|
+
ForgeFeatureIterationTagsEndpoint,
|
|
20834
20850
|
ForgeFeatureIterationsEndpoint,
|
|
20835
20851
|
ForgeFeatureMessagesEndpoint,
|
|
20836
20852
|
ForgeMemoryEndpoint,
|