shuttlepro-shared 1.3.12 → 1.3.13

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.
@@ -8,12 +8,10 @@ const CACHE_KEY_ALL = "integrations_all";
8
8
  */
9
9
  const getCachedAllIntegrations = async () => {
10
10
  let integrations = await getRedisData(CACHE_KEY_ALL);
11
- console.log(integrations, "integrations");
12
11
  if (!integrations) {
13
12
  integrations = await Integration.find({}).lean().exec();
14
13
  await setRedisData(CACHE_KEY_ALL, integrations);
15
14
  }
16
- console.log(integrations, "after integrations");
17
15
  return integrations?.map((x) => {
18
16
  return {
19
17
  ...x,
@@ -82,8 +80,6 @@ const findIntegrationByFilter = async (
82
80
  ) => {
83
81
  const allIntegrations = await getCachedAllIntegrations();
84
82
 
85
- console.log(allIntegrations, "allIntegrations");
86
-
87
83
  let filteredIntegrations = allIntegrations;
88
84
  if (workspaceId) {
89
85
  filteredIntegrations = allIntegrations.filter(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {