@fugood/bricks-project 2.22.0-beta.26 → 2.22.0-beta.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.22.0-beta.26",
3
+ "version": "2.22.0-beta.27",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js"
@@ -14,5 +14,5 @@
14
14
  "lodash": "^4.17.4",
15
15
  "uuid": "^8.3.1"
16
16
  },
17
- "gitHead": "7d2bf8e3b93d8b58295801a9ccaff1926f9736c0"
17
+ "gitHead": "6a1bca38b9962ca9d6ec45842b4c9a6426369d78"
18
18
  }
@@ -2534,6 +2534,9 @@ Default property:
2534
2534
  idleTimeout?: number | DataLink
2535
2535
  /* HTTP request body limit, 0 is unlimited */
2536
2536
  bodyLimit?: number | DataLink
2537
+ /* CORS allowed origins
2538
+ You can use wildcard like `*`, `*.example.com`, `http://*.example.com` */
2539
+ corsOrigins?: Array<string | DataLink> | DataLink
2537
2540
  /* Authorization type of HTTP request */
2538
2541
  authType?: 'none' | 'basic' | 'bearer' | DataLink
2539
2542
  /* Username of basic auth */
@@ -2567,6 +2570,8 @@ Default property:
2567
2570
  | DataLink
2568
2571
  /* Response Body */
2569
2572
  resBody?: any
2573
+ /* Custom response headers */
2574
+ resHeader?: {} | DataLink
2570
2575
  /* Event name of SSE */
2571
2576
  sseEvent?: string | DataLink
2572
2577
  /* SSE single request mode, block new request until the previous request is processed */