@websolutespa/payload-plugin-bowl 1.9.13 → 1.9.14
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/CHANGELOG.md +33 -0
- package/dist/index.js +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @websolutespa/payload-plugin-bowl
|
|
2
2
|
|
|
3
|
+
## 1.9.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d3621aa: - Alignment to stable version
|
|
8
|
+
- a65fe5c: Alignment to stable version
|
|
9
|
+
- 7103bb7: Alignment to stable version
|
|
10
|
+
- f4fd88e: Add healthcheck endpoint
|
|
11
|
+
|
|
12
|
+
## 1.9.14-next.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Alignment to stable version
|
|
17
|
+
|
|
3
18
|
## 1.9.13
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -8,6 +23,12 @@
|
|
|
8
23
|
- Updated dependencies
|
|
9
24
|
- @websolutespa/bom-core@1.8.12
|
|
10
25
|
|
|
26
|
+
## 1.9.13-next.0
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- - Alignment to stable version
|
|
31
|
+
|
|
11
32
|
## 1.9.12
|
|
12
33
|
|
|
13
34
|
### Patch Changes
|
|
@@ -48,12 +69,24 @@
|
|
|
48
69
|
|
|
49
70
|
- Add withComponentBlock helper
|
|
50
71
|
|
|
72
|
+
## 1.9.7-next.0
|
|
73
|
+
|
|
74
|
+
### Patch Changes
|
|
75
|
+
|
|
76
|
+
- Alignment to stable version
|
|
77
|
+
|
|
51
78
|
## 1.9.6
|
|
52
79
|
|
|
53
80
|
### Patch Changes
|
|
54
81
|
|
|
55
82
|
- Modified: pageService depth, context categories depth, mergeFields
|
|
56
83
|
|
|
84
|
+
## 1.9.6-next.0
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- f4fd88e: Add healthcheck endpoint
|
|
89
|
+
|
|
57
90
|
## 1.9.5
|
|
58
91
|
|
|
59
92
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -8058,6 +8058,15 @@ var Users = /* @__PURE__ */ __name((options2) => ({
|
|
|
8058
8058
|
]
|
|
8059
8059
|
}), "Users");
|
|
8060
8060
|
|
|
8061
|
+
// src/core/api/health.service.ts
|
|
8062
|
+
var healthGet = {
|
|
8063
|
+
path: "/health",
|
|
8064
|
+
method: "get",
|
|
8065
|
+
handler: async (req, res, next) => {
|
|
8066
|
+
return res.status(200).send({ status: "ok" });
|
|
8067
|
+
}
|
|
8068
|
+
};
|
|
8069
|
+
|
|
8061
8070
|
// src/debug.ts
|
|
8062
8071
|
var fs = __toESM(require("fs"));
|
|
8063
8072
|
var path = __toESM(require("path"));
|
|
@@ -8401,6 +8410,7 @@ var bowl = /* @__PURE__ */ __name((sourceOptions = {}) => (sourceConfig) => {
|
|
|
8401
8410
|
localeGet,
|
|
8402
8411
|
optinGet,
|
|
8403
8412
|
optoutGet,
|
|
8413
|
+
healthGet,
|
|
8404
8414
|
...sourceEndpoints
|
|
8405
8415
|
]
|
|
8406
8416
|
};
|