@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/graphql/index.cjs
CHANGED
|
@@ -3399,7 +3399,9 @@ var UPDATE_APP_SETTINGS_MUTATION = import_client63.gql`
|
|
|
3399
3399
|
`;
|
|
3400
3400
|
var CRAWL_GOOGLE_MARKETS_MUTATION = import_client63.gql`
|
|
3401
3401
|
mutation crawlGoogleMarkets {
|
|
3402
|
-
crawlGoogleMarkets
|
|
3402
|
+
crawlGoogleMarkets() {
|
|
3403
|
+
message
|
|
3404
|
+
}
|
|
3403
3405
|
}
|
|
3404
3406
|
`;
|
|
3405
3407
|
|
|
@@ -3435,9 +3437,7 @@ var useUpdateAppSettings = () => {
|
|
|
3435
3437
|
return { error, loading, updateAppSettings };
|
|
3436
3438
|
};
|
|
3437
3439
|
var useCrawlGoogleMarkets = () => {
|
|
3438
|
-
const [crawlGoogleMarkets, { loading, error }] = (0, import_client65.useMutation)(
|
|
3439
|
-
CRAWL_GOOGLE_MARKETS_MUTATION
|
|
3440
|
-
);
|
|
3440
|
+
const [crawlGoogleMarkets, { loading, error }] = (0, import_client65.useMutation)(CRAWL_GOOGLE_MARKETS_MUTATION);
|
|
3441
3441
|
return { crawlGoogleMarkets, error, loading };
|
|
3442
3442
|
};
|
|
3443
3443
|
|