@shipengine/alchemy 6.0.97-next.1 → 6.0.97

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.
Files changed (3) hide show
  1. package/index.js +1 -0
  2. package/index.mjs +1 -0
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -37965,6 +37965,7 @@ const useListRateShoppers = (params) => {
37965
37965
  const useGetRateShopper = (rateShopperId) => {
37966
37966
  const { client } = useShipEngine();
37967
37967
  return reactQuery.useQuery({
37968
+ enabled: !!rateShopperId,
37968
37969
  onError,
37969
37970
  queryFn: () => {
37970
37971
  return client.rateShoppers.get(rateShopperId);
package/index.mjs CHANGED
@@ -37943,6 +37943,7 @@ const useListRateShoppers = (params) => {
37943
37943
  const useGetRateShopper = (rateShopperId) => {
37944
37944
  const { client } = useShipEngine();
37945
37945
  return useQuery({
37946
+ enabled: !!rateShopperId,
37946
37947
  onError,
37947
37948
  queryFn: () => {
37948
37949
  return client.rateShoppers.get(rateShopperId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/alchemy",
3
- "version": "6.0.97-next.1",
3
+ "version": "6.0.97",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {