@seamapi/http 1.45.0 → 1.46.0

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.
@@ -2653,7 +2653,7 @@ type SpacesGetRelatedResponse = SetNonNullable<Required<RouteResponse<'/spaces/g
2653
2653
  type SpacesGetRelatedRequest = SeamHttpRequest<SpacesGetRelatedResponse, 'batch'>;
2654
2654
  interface SpacesGetRelatedOptions {
2655
2655
  }
2656
- type SpacesListParameters = RouteRequestParams<'/spaces/list'>;
2656
+ type SpacesListParameters = RouteRequestBody<'/spaces/list'>;
2657
2657
  /**
2658
2658
  * @deprecated Use SpacesListParameters instead.
2659
2659
  */
package/dist/index.cjs CHANGED
@@ -6401,8 +6401,8 @@ var _SeamHttpSpaces = class _SeamHttpSpaces {
6401
6401
  list(parameters, options = {}) {
6402
6402
  return new SeamHttpRequest(this, {
6403
6403
  pathname: "/spaces/list",
6404
- method: "GET",
6405
- params: parameters,
6404
+ method: "POST",
6405
+ body: parameters,
6406
6406
  responseKey: "spaces",
6407
6407
  options
6408
6408
  });