ninegrid2 6.508.0 → 6.510.0

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.
@@ -154,7 +154,8 @@ filterString = "a" + filterString;
154
154
  // 안정적인 JSON 파싱을 위해 'JSON Mode' 또는 Function Calling 사용을 강력히 권장
155
155
  // LangChain의 SelfQueryRetriever를 사용하면 이 부분을 자동화할 수 있습니다.
156
156
  //try {
157
- return JSON.parse(filterString);
157
+ const a = JSON.parse(filterString);
158
+ return a;
158
159
  //} catch (parseError) {
159
160
  // console.error("Failed to parse filter string as JSON:", parseError);
160
161
  // console.error("String that failed to parse:", filterString);
@@ -28008,7 +28008,8 @@ filterString = "a" + filterString;
28008
28008
  // 안정적인 JSON 파싱을 위해 'JSON Mode' 또는 Function Calling 사용을 강력히 권장
28009
28009
  // LangChain의 SelfQueryRetriever를 사용하면 이 부분을 자동화할 수 있습니다.
28010
28010
  //try {
28011
- return JSON.parse(filterString);
28011
+ const a = JSON.parse(filterString);
28012
+ return a;
28012
28013
  //} catch (parseError) {
28013
28014
  // console.error("Failed to parse filter string as JSON:", parseError);
28014
28015
  // console.error("String that failed to parse:", filterString);
@@ -28006,7 +28006,8 @@ filterString = "a" + filterString;
28006
28006
  // 안정적인 JSON 파싱을 위해 'JSON Mode' 또는 Function Calling 사용을 강력히 권장
28007
28007
  // LangChain의 SelfQueryRetriever를 사용하면 이 부분을 자동화할 수 있습니다.
28008
28008
  //try {
28009
- return JSON.parse(filterString);
28009
+ const a = JSON.parse(filterString);
28010
+ return a;
28010
28011
  //} catch (parseError) {
28011
28012
  // console.error("Failed to parse filter string as JSON:", parseError);
28012
28013
  // console.error("String that failed to parse:", filterString);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.508.0",
4
+ "version": "6.510.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -154,7 +154,8 @@ filterString = "a" + filterString;
154
154
  // 안정적인 JSON 파싱을 위해 'JSON Mode' 또는 Function Calling 사용을 강력히 권장
155
155
  // LangChain의 SelfQueryRetriever를 사용하면 이 부분을 자동화할 수 있습니다.
156
156
  //try {
157
- return JSON.parse(filterString);
157
+ const a = JSON.parse(filterString);
158
+ return a;
158
159
  //} catch (parseError) {
159
160
  // console.error("Failed to parse filter string as JSON:", parseError);
160
161
  // console.error("String that failed to parse:", filterString);