@or-sdk/hitl 0.34.59 → 0.34.60-beta.3302.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.
- package/README.md +2 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -34,13 +34,13 @@ const HitlApi = require('@or-sdk/hitl').HITL;
|
|
|
34
34
|
|
|
35
35
|
// with direct api url
|
|
36
36
|
const hitlApi = new HitlApi({
|
|
37
|
-
token: this.config.flowToken
|
|
37
|
+
token: `FLOW ${this.config.flowToken}`,
|
|
38
38
|
hitlUrl: this.config.env.HITL_API_URL
|
|
39
39
|
});
|
|
40
40
|
|
|
41
41
|
// with service discovery(slower)
|
|
42
42
|
const hitlApi = new HitlApi({
|
|
43
|
-
token: this.config.flowToken
|
|
43
|
+
token: `FLOW ${this.config.flowToken}`,
|
|
44
44
|
discoveryUrl: this.config.env.SERVICE_DISCOVERY_API_URL,
|
|
45
45
|
});
|
|
46
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/hitl",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.60-beta.3302.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -30,6 +30,5 @@
|
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
|
-
}
|
|
34
|
-
"gitHead": "13959f81065ca58807006d89fd90c56e4f692128"
|
|
33
|
+
}
|
|
35
34
|
}
|