Skip to content

Commit

Permalink
Don't commit the removal of REST to the next major release.
Browse files Browse the repository at this point in the history
  • Loading branch information
byrichardpowell committed Nov 18, 2024
1 parent 176bc8a commit 339c5f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class RemixRestClient {
/**
* Performs a GET request on the given path.
*
* @deprecated In the next major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
* @deprecated In a future major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
*/
public async get(params: GetRequestParams) {
return this.makeRequest({
Expand All @@ -79,7 +79,7 @@ class RemixRestClient {
/**
* Performs a POST request on the given path.
*
* @deprecated In the next major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
* @deprecated In a future major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
*/
public async post(params: PostRequestParams) {
return this.makeRequest({
Expand All @@ -91,7 +91,7 @@ class RemixRestClient {
/**
* Performs a PUT request on the given path.
*
* @deprecated In the next major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
* @deprecated In a future major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
*/
public async put(params: PutRequestParams) {
return this.makeRequest({
Expand All @@ -103,7 +103,7 @@ class RemixRestClient {
/**
* Performs a DELETE request on the given path.
*
* @deprecated In the next major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
* @deprecated In a future major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
*/
public async delete(params: DeleteRequestParams) {
return this.makeRequest({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export interface AdminApiContextWithRest<
/**
* Methods for interacting with the Shopify Admin REST API
*
* @deprecated In the next major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
* @deprecated In a future major release REST will be removed from this package. Please see [all-in on graphql](https://www.shopify.com/ca/partners/blog/all-in-on-graphql).
*
* There are methods for interacting with individual REST resources. You can also make `GET`, `POST`, `PUT` and `DELETE` requests should the REST resources not meet your needs.
*
Expand Down

0 comments on commit 339c5f8

Please sign in to comment.