@shopby/shop-sdk 1.16.0 → 1.16.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.
@@ -346,11 +346,11 @@ var display = function (httpRequest) { return ({
346
346
  });
347
347
  },
348
348
  deleteSpaceUnmapping: function (request) {
349
- var requestBody = request.requestBody;
349
+ var queryString = request.queryString;
350
350
  return httpRequest({
351
351
  method: 'DELETE',
352
352
  url: '/space/unmapping',
353
- requestBody: requestBody,
353
+ queryString: queryString,
354
354
  useAccessToken: true,
355
355
  });
356
356
  },
@@ -1170,7 +1170,7 @@ export interface PostSpaceMappingUnclassifiedRequest {
1170
1170
  };
1171
1171
  }
1172
1172
  export interface DeleteSpaceUnmappingRequest {
1173
- requestBody: {
1173
+ queryString: {
1174
1174
  spaceNo: number;
1175
1175
  productNos: string;
1176
1176
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",