@milaboratories/pl-client 2.7.4 → 2.7.6
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/README.md +7 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -50,3 +50,10 @@ PL_ADDRESS="http://127.0.0.1:6345" PL_TEST_USER="test-user" PL_TEST_PASSWORD="te
|
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
Authentication information (token) cached in git-ignored `.test_auth.json` file.
|
|
53
|
+
|
|
54
|
+
# FAQ
|
|
55
|
+
|
|
56
|
+
## mapfile
|
|
57
|
+
Default bash version on MacOS is 3. mapfile apprears only from 4. To fix issue with `command not found: mapfile` you should install and redeclare bash:
|
|
58
|
+
1. install bash with brew, it will install version 5
|
|
59
|
+
2. ln -s $(brew --prefix)/bin/bash /usr/local/bin/bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-client",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.6",
|
|
4
4
|
"description": "New TS/JS client for Platform API",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"./src/**/*"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@grpc/grpc-js": "^1.12.
|
|
20
|
+
"@grpc/grpc-js": "^1.12.6",
|
|
21
21
|
"@protobuf-ts/grpc-transport": "^2.9.4",
|
|
22
22
|
"@protobuf-ts/runtime": "^2.9.4",
|
|
23
23
|
"@protobuf-ts/runtime-rpc": "^2.9.4",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"undici": "^7.2.3",
|
|
31
31
|
"utility-types": "^3.11.0",
|
|
32
32
|
"yaml": "^2.6.1",
|
|
33
|
-
"@milaboratories/pl-http": "^1.0.
|
|
34
|
-
"@milaboratories/ts-helpers": "^1.1.
|
|
33
|
+
"@milaboratories/pl-http": "^1.0.5",
|
|
34
|
+
"@milaboratories/ts-helpers": "^1.1.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "~5.5.4",
|
|
38
38
|
"vite": "^5.4.11",
|
|
39
39
|
"@types/node": "~20.16.15",
|
|
40
40
|
"@protobuf-ts/plugin": "^2.9.4",
|
|
41
|
-
"@types/http-proxy": "^1.17.
|
|
41
|
+
"@types/http-proxy": "^1.17.16",
|
|
42
42
|
"@types/jest": "^29.5.14",
|
|
43
43
|
"jest": "^29.7.0",
|
|
44
44
|
"@jest/globals": "^29.7.0",
|