@wix/auto_sdk_stores_customizations-v-3 1.0.31 → 1.0.33

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.
@@ -254,7 +254,7 @@ function queryCustomizations(payload) {
254
254
  function __queryCustomizations({ host }) {
255
255
  const metadata = {
256
256
  entityFqdn: "wix.stores.catalog.v3.customization",
257
- method: "POST",
257
+ method: "GET",
258
258
  methodFqn: "wix.stores.catalog.customization.v3.CustomizationService.QueryCustomizations",
259
259
  packageName: PACKAGE_NAME,
260
260
  url: resolveWixStoresCatalogCustomizationV3CustomizationServiceUrl({
@@ -262,7 +262,7 @@ function queryCustomizations(payload) {
262
262
  data: payload,
263
263
  host
264
264
  }),
265
- data: payload,
265
+ params: toURLSearchParams(payload, true),
266
266
  transformResponse: (payload2) => transformPaths(payload2, [
267
267
  {
268
268
  transformFn: transformRESTTimestampToSDKTimestamp,