@jaypie/express 1.2.23 → 1.2.24
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 +4 -13
- package/dist/cjs/index.cjs +4 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +5 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
# Jaypie Express
|
|
1
|
+
# Jaypie Express 🐦⬛
|
|
2
2
|
|
|
3
|
-
Express
|
|
3
|
+
Express.js handler utilities for Jaypie applications.
|
|
4
4
|
|
|
5
|
-
See [
|
|
6
|
-
|
|
7
|
-
## 📝 Changelog
|
|
8
|
-
|
|
9
|
-
| Date | Version | Summary |
|
|
10
|
-
| ---------- | ------- | -------------- |
|
|
11
|
-
| 1/23/2026 | 1.2.5 | Fix array query params with bracket notation in API Gateway v1 |
|
|
12
|
-
| 5/21/2024 | 1.0.0 | Initial release |
|
|
13
|
-
| 5/19/2024 | 0.1.0 | Initial deploy |
|
|
14
|
-
| 5/12/2024 | 0.0.1 | Initial commit |
|
|
5
|
+
See [jaypie.net](https://jaypie.net) for documentation.
|
|
15
6
|
|
|
16
7
|
## 📜 License
|
|
17
8
|
|
|
18
|
-
[MIT License](./LICENSE.txt). Published by Finlayson Studio
|
|
9
|
+
[MIT License](./LICENSE.txt). Published by Finlayson Studio.
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1865,6 +1865,10 @@ function expressHandler(handlerOrOptions, optionsOrHandler) {
|
|
|
1865
1865
|
//
|
|
1866
1866
|
// Build a request-local setup list to avoid mutating the shared array
|
|
1867
1867
|
const requestSetup = [];
|
|
1868
|
+
// Load the Datadog LLM Observability API key into the environment when enabled
|
|
1869
|
+
requestSetup.push(async () => {
|
|
1870
|
+
await datadog.loadDatadogApiKey();
|
|
1871
|
+
});
|
|
1868
1872
|
// Load secrets into process.env if configured
|
|
1869
1873
|
if (secrets && secrets.length > 0) {
|
|
1870
1874
|
const secretsToLoad = secrets;
|