shuttlepro-shared 1.1.87 → 1.1.89

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.
@@ -1,6 +1,6 @@
1
1
  const workspaceRepository = require("./workspace.repository");
2
2
  const integrationRepository = require("./integration.repository");
3
- const descriptionTemplateRepository = require("./description.repository");
3
+ const descriptionTemplateRepository = require("./descriptionTemplates.repository");
4
4
  exports.module = {
5
5
  workspaceRepository,
6
6
  integrationRepository,
@@ -85,8 +85,8 @@ const findIntegrationByFilter = async (filter, workspaceId = null) => {
85
85
  );
86
86
  };
87
87
  const findAllIntegrationByFilter = async (
88
- filter,
89
- bodyFilter,
88
+ filter = {},
89
+ bodyFilter = {},
90
90
  workspaceId = null
91
91
  ) => {
92
92
  const allIntegrations = await getCachedAllIntegrations();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.1.87",
3
+ "version": "1.1.89",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {