@eka-care/ekascribe-ts-sdk 1.5.52 → 1.5.53

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.
@@ -34,16 +34,13 @@ const searchBySessionId = (sessions, sessionId) => {
34
34
  // Combined search function that applies multiple criteria
35
35
  const performSearch = (sessions, searchCriteria) => {
36
36
  let filteredSessions = sessions;
37
- console.log(sessions, searchCriteria, 'searchCriteria');
38
37
  // Apply patient name filter if provided
39
38
  if (searchCriteria.patientName) {
40
39
  filteredSessions = searchByPatientName(filteredSessions, searchCriteria.patientName);
41
- console.log(filteredSessions, 'filteredSessions - patientName');
42
40
  }
43
41
  // Apply session ID filter if provided
44
42
  if (searchCriteria.sessionId) {
45
43
  filteredSessions = searchBySessionId(filteredSessions, searchCriteria.sessionId);
46
- console.log(filteredSessions, 'filteredSessions - sessionId');
47
44
  }
48
45
  // If no search criteria provided, return all sessions
49
46
  if (!searchCriteria.patientName && !searchCriteria.sessionId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "1.5.52",
3
+ "version": "1.5.53",
4
4
  "main": "dist/index.js",
5
5
  "repository": "git@github.com:eka-care/eka-js-sdk.git",
6
6
  "author": "Sanikagoyal28 <sanikagoyal9@gmail.com>",