@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.d.mts CHANGED
@@ -361011,7 +361011,7 @@ declare class ForgeDocumentsEndpoint {
361011
361011
  declare class ForgeFeatureArtifactsEndpoint {
361012
361012
  private readonly requestExecutor;
361013
361013
  constructor(requestExecutor: RequestExecutor);
361014
- list(workspaceId: string, projectId: string, featureId: string): Promise<{
361014
+ list(workspaceId: string, projectId: string, featureId: string, query?: DTOFeatureArtifactListQuery): Promise<{
361015
361015
  artifacts: {
361016
361016
  id: string;
361017
361017
  createdAt: string;
package/dist/index.d.ts CHANGED
@@ -361011,7 +361011,7 @@ declare class ForgeDocumentsEndpoint {
361011
361011
  declare class ForgeFeatureArtifactsEndpoint {
361012
361012
  private readonly requestExecutor;
361013
361013
  constructor(requestExecutor: RequestExecutor);
361014
- list(workspaceId: string, projectId: string, featureId: string): Promise<{
361014
+ list(workspaceId: string, projectId: string, featureId: string, query?: DTOFeatureArtifactListQuery): Promise<{
361015
361015
  artifacts: {
361016
361016
  id: string;
361017
361017
  createdAt: string;
package/dist/index.js 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
  }