@vectorx/functions-framework 0.3.0 → 0.4.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.
Files changed (2) hide show
  1. package/lib/request.js +1 -0
  2. package/package.json +2 -2
package/lib/request.js CHANGED
@@ -150,6 +150,7 @@ class Request {
150
150
  clearTimeout(timer);
151
151
  return Promise.reject(x);
152
152
  });
153
+ console.log("=== res ===", res);
153
154
  const ret = {
154
155
  data: stream ? (res.body ? stream_1.Readable.toWeb(res.body) : res.body) : res.json(),
155
156
  statusCode: res.status,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectorx/functions-framework",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "VectorX Functions Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",
@@ -25,7 +25,7 @@
25
25
  "node": ">=18.0.0"
26
26
  },
27
27
  "dependencies": {
28
- "@vectorx/ai-types": "0.3.0",
28
+ "@vectorx/ai-types": "0.4.0",
29
29
  "async_hooks": "^1.0.0",
30
30
  "chalk": "4",
31
31
  "commander": "^12.1.0",