@shipengine/alchemy 6.0.66 → 6.0.68
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.
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -35159,7 +35159,7 @@ const useListAccountAddons = (params) => {
|
|
|
35159
35159
|
onError,
|
|
35160
35160
|
queryFn: () => client.accountAddons.list(),
|
|
35161
35161
|
queryKey: ["useListAccountAddons"],
|
|
35162
|
-
select: (result) => result.data
|
|
35162
|
+
select: (result) => result.data.addons
|
|
35163
35163
|
}));
|
|
35164
35164
|
};
|
|
35165
35165
|
|
package/index.mjs
CHANGED
|
@@ -35137,7 +35137,7 @@ const useListAccountAddons = (params) => {
|
|
|
35137
35137
|
onError,
|
|
35138
35138
|
queryFn: () => client.accountAddons.list(),
|
|
35139
35139
|
queryKey: ["useListAccountAddons"],
|
|
35140
|
-
select: (result) => result.data
|
|
35140
|
+
select: (result) => result.data.addons
|
|
35141
35141
|
}));
|
|
35142
35142
|
};
|
|
35143
35143
|
|