@supernova-studio/client 1.56.0 → 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
@@ -12523,12 +12523,13 @@ var ForgeFeatureArtifactsEndpoint = class {
12523
12523
  constructor(requestExecutor) {
12524
12524
  this.requestExecutor = requestExecutor;
12525
12525
  }
12526
- list(workspaceId, projectId, featureId) {
12526
+ list(workspaceId, projectId, featureId, query) {
12527
12527
  return this.requestExecutor.json(
12528
12528
  `/workspaces/${workspaceId}/forge/projects/${projectId}/features/${featureId}/artifacts`,
12529
12529
  DTOFeatureArtifactListResponse,
12530
12530
  {
12531
- method: "GET"
12531
+ method: "GET",
12532
+ query: query ? serializeQuery(query) : void 0
12532
12533
  }
12533
12534
  );
12534
12535
  }