@milaboratories/pl-client 2.7.2 → 2.7.4
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/core/ll_client.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-client",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.4",
|
|
4
4
|
"description": "New TS/JS client for Platform API",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"lru-cache": "^11.0.2",
|
|
27
27
|
"https-proxy-agent": "^7.0.6",
|
|
28
28
|
"cacheable-lookup": "^6.1.0",
|
|
29
|
-
"long": "^5.2.
|
|
30
|
-
"undici": "^7.2.
|
|
29
|
+
"long": "^5.2.4",
|
|
30
|
+
"undici": "^7.2.3",
|
|
31
31
|
"utility-types": "^3.11.0",
|
|
32
32
|
"yaml": "^2.6.1",
|
|
33
|
-
"@milaboratories/pl-http": "^1.0.
|
|
33
|
+
"@milaboratories/pl-http": "^1.0.4",
|
|
34
34
|
"@milaboratories/ts-helpers": "^1.1.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
package/src/core/ll_client.ts
CHANGED
|
@@ -101,7 +101,7 @@ export class LLPlClient {
|
|
|
101
101
|
this.grpcTransport = new GrpcTransport(grpcOptions);
|
|
102
102
|
this.grpcPl = new PlatformClient(this.grpcTransport);
|
|
103
103
|
|
|
104
|
-
this.httpDispatcher = defaultHttpDispatcher();
|
|
104
|
+
this.httpDispatcher = defaultHttpDispatcher(this.conf.httpProxy);
|
|
105
105
|
|
|
106
106
|
if (statusListener !== undefined) {
|
|
107
107
|
this.statusListener = statusListener;
|