This commit is contained in:
diPhantxm
2023-04-11 23:20:46 +03:00
parent 226f40275a
commit 838f28d3d9

View File

@@ -363,7 +363,7 @@ func (c FBO) ListSupplyRequests(params *ListSupplyRequestsParams) (*ListSupplyRe
resp := &ListSupplyRequestsResponse{} resp := &ListSupplyRequestsResponse{}
response, err := c.client.Request(http.MethodPost, url, params, resp) response, err := c.client.Request(http.MethodPost, url, params, resp, nil)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@@ -406,7 +406,7 @@ func (c FBO) GetSupplyRequestInfo(params *GetSupplyRequestInfoParams) (*GetSuppl
resp := &GetSupplyRequestInfoResponse{} resp := &GetSupplyRequestInfoResponse{}
response, err := c.client.Request(http.MethodPost, url, params, resp) response, err := c.client.Request(http.MethodPost, url, params, resp, nil)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@@ -462,7 +462,7 @@ func (c FBO) ListProductsInSupplyRequest(params *ListProductsInSupplyRequestPara
resp := &ListProductsInSupplyRequestResponse{} resp := &ListProductsInSupplyRequestResponse{}
response, err := c.client.Request(http.MethodPost, url, params, resp) response, err := c.client.Request(http.MethodPost, url, params, resp, nil)
if err != nil { if err != nil {
return nil, err return nil, err
} }