@timardex/cluemart-shared 1.3.60 → 1.3.62
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/dist/graphql/index.cjs +4 -4
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +9 -1
- package/dist/graphql/index.d.ts +9 -1
- package/dist/graphql/index.mjs +4 -4
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5723,7 +5723,9 @@ var UPDATE_APP_SETTINGS_MUTATION = import_client63.gql`
|
|
|
5723
5723
|
`;
|
|
5724
5724
|
var CRAWL_GOOGLE_MARKETS_MUTATION = import_client63.gql`
|
|
5725
5725
|
mutation crawlGoogleMarkets {
|
|
5726
|
-
crawlGoogleMarkets
|
|
5726
|
+
crawlGoogleMarkets() {
|
|
5727
|
+
message
|
|
5728
|
+
}
|
|
5727
5729
|
}
|
|
5728
5730
|
`;
|
|
5729
5731
|
|
|
@@ -5759,9 +5761,7 @@ var useUpdateAppSettings = () => {
|
|
|
5759
5761
|
return { error, loading, updateAppSettings };
|
|
5760
5762
|
};
|
|
5761
5763
|
var useCrawlGoogleMarkets = () => {
|
|
5762
|
-
const [crawlGoogleMarkets, { loading, error }] = (0, import_client65.useMutation)(
|
|
5763
|
-
CRAWL_GOOGLE_MARKETS_MUTATION
|
|
5764
|
-
);
|
|
5764
|
+
const [crawlGoogleMarkets, { loading, error }] = (0, import_client65.useMutation)(CRAWL_GOOGLE_MARKETS_MUTATION);
|
|
5765
5765
|
return { crawlGoogleMarkets, error, loading };
|
|
5766
5766
|
};
|
|
5767
5767
|
|