@supernova-studio/client 1.55.4 → 1.56.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
@@ -10716,6 +10716,10 @@ var DTOForgeProjectFeatureDeleteInput = z329.object({
10716
10716
  var DTOForgeProjectFeatureGetByIdParam = z329.object({
10717
10717
  id: Id
10718
10718
  });
10719
+ var DTOFeatureArtifactListQuery = z329.object({
10720
+ messageId: z329.string().optional(),
10721
+ iterationId: z329.string().optional()
10722
+ });
10719
10723
  var DTOForgeProjectFeatureMoveInput = DTOForgeSectionItemMoveInput;
10720
10724
 
10721
10725
  // src/api/dto/forge/project-action.ts
@@ -12519,12 +12523,13 @@ var ForgeFeatureArtifactsEndpoint = class {
12519
12523
  constructor(requestExecutor) {
12520
12524
  this.requestExecutor = requestExecutor;
12521
12525
  }
12522
- list(workspaceId, projectId, featureId) {
12526
+ list(workspaceId, projectId, featureId, query) {
12523
12527
  return this.requestExecutor.json(
12524
12528
  `/workspaces/${workspaceId}/forge/projects/${projectId}/features/${featureId}/artifacts`,
12525
12529
  DTOFeatureArtifactListResponse,
12526
12530
  {
12527
- method: "GET"
12531
+ method: "GET",
12532
+ query: query ? serializeQuery(query) : void 0
12528
12533
  }
12529
12534
  );
12530
12535
  }
@@ -20221,6 +20226,7 @@ export {
20221
20226
  DTOFeatureArtifactCreateInput,
20222
20227
  DTOFeatureArtifactDeleteInput,
20223
20228
  DTOFeatureArtifactGetByIdParam,
20229
+ DTOFeatureArtifactListQuery,
20224
20230
  DTOFeatureArtifactListResponse,
20225
20231
  DTOFeatureArtifactResponse,
20226
20232
  DTOFeatureArtifactWithContentResponse,