@wix/auto_sdk_ecom_delivery-profile 1.0.63 → 1.0.64

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.
@@ -191,7 +191,7 @@ function queryDeliveryProfiles(payload) {
191
191
  function __queryDeliveryProfiles({ host }) {
192
192
  const metadata = {
193
193
  entityFqdn: "wix.ecom.v1.delivery_profile",
194
- method: "POST",
194
+ method: "GET",
195
195
  methodFqn: "wix.ecom.deliveryprofile.v1.DeliveryProfiles.QueryDeliveryProfiles",
196
196
  packageName: PACKAGE_NAME,
197
197
  url: resolveWixEcomDeliveryprofileV1DeliveryProfilesUrl({
@@ -199,7 +199,7 @@ function queryDeliveryProfiles(payload) {
199
199
  data: payload,
200
200
  host
201
201
  }),
202
- data: payload,
202
+ params: toURLSearchParams(payload, true),
203
203
  transformResponse: (payload2) => transformPaths(payload2, [
204
204
  {
205
205
  transformFn: transformRESTTimestampToSDKTimestamp,