@lwrjs/server 0.17.2-alpha.3 → 0.17.2-alpha.30

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.
@@ -113,7 +113,7 @@ var AbstractMiddlewareRequest = class {
113
113
  uiBasePath,
114
114
  environment,
115
115
  host,
116
- requestDepth
116
+ requestDepth: String(requestDepth)
117
117
  };
118
118
  return {
119
119
  runtimeEnvironment,
@@ -94,7 +94,7 @@ export class AbstractMiddlewareRequest {
94
94
  uiBasePath,
95
95
  environment,
96
96
  host,
97
- requestDepth,
97
+ requestDepth: String(requestDepth), // stringify to use as a header
98
98
  };
99
99
  return {
100
100
  runtimeEnvironment,
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.17.2-alpha.3",
7
+ "version": "0.17.2-alpha.30",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -37,24 +37,24 @@
37
37
  "build": "tsc -b"
38
38
  },
39
39
  "devDependencies": {
40
- "@lwrjs/types": "0.17.2-alpha.3",
40
+ "@lwrjs/types": "0.17.2-alpha.30",
41
41
  "@types/koa-compress": "^4.0.6",
42
42
  "@types/koa__router": "^8.0.4",
43
43
  "jest-express": "^1.12.0"
44
44
  },
45
45
  "dependencies": {
46
46
  "@koa/router": "^10.0.0",
47
- "@lwrjs/diagnostics": "0.17.2-alpha.3",
48
- "@lwrjs/instrumentation": "0.17.2-alpha.3",
49
- "@lwrjs/shared-utils": "0.17.2-alpha.3",
47
+ "@lwrjs/diagnostics": "0.17.2-alpha.30",
48
+ "@lwrjs/instrumentation": "0.17.2-alpha.30",
49
+ "@lwrjs/shared-utils": "0.17.2-alpha.30",
50
50
  "@types/express": "^4.17.21",
51
51
  "@types/koa": "^2.15.0",
52
52
  "express": "^4.20.0",
53
- "koa": "^2.15.3",
53
+ "koa": "^2.15.4",
54
54
  "koa-compose": "^4.1.0"
55
55
  },
56
56
  "engines": {
57
- "node": ">=18.0.0"
57
+ "node": ">=20.0.0"
58
58
  },
59
- "gitHead": "43757693dfca356cff105d4896a7a3cbf11ac017"
59
+ "gitHead": "818bbb13d2d4b14d128c4c4f23229c9ce7458a23"
60
60
  }