soyba-lib 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soyba-lib",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "main": "src/index.js",
5
5
  "type": "module",
6
6
  "description": "Thư viện YBA (Sổ Y Bạ) - Truy vấn lịch sử khám bệnh",
package/src/index.js CHANGED
@@ -17,7 +17,7 @@ class YBAClient {
17
17
  hasApiKey: !!this.apiKey,
18
18
  timeout: this.timeout
19
19
  });
20
- this.httpsAgent = new https.Agent({ rejectUnauthorized: false });
20
+ this.httpsAgent = new https.Agent({ rejectUnauthorized: false, keepAlive: true });
21
21
  }
22
22
 
23
23