@stemy/backend 3.5.1 → 3.5.2
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/bundles/stemy-backend.umd.js +3 -1
- package/bundles/stemy-backend.umd.js.map +1 -1
- package/esm2015/utilities/decorators.js +3 -2
- package/fesm2015/stemy-backend.js +2 -1
- package/fesm2015/stemy-backend.js.map +1 -1
- package/package.json +1 -1
- package/stemy-backend.metadata.json +1 -1
- package/utilities/decorators.d.ts +1 -1
|
@@ -5959,8 +5959,10 @@
|
|
|
5959
5959
|
var PrimitiveArray = mongoose.Types.Array;
|
|
5960
5960
|
var DocumentArray = mongoose.Types.DocumentArray;
|
|
5961
5961
|
|
|
5962
|
-
function IsDocumented() {
|
|
5962
|
+
function IsDocumented(summary) {
|
|
5963
|
+
if (summary === void 0) { summary = null; }
|
|
5963
5964
|
return routingControllersOpenapi.OpenAPI(function (operation) {
|
|
5965
|
+
operation.summary = summary || operation.summary;
|
|
5964
5966
|
operation.tags = ["Documented"].concat(operation.tags || []);
|
|
5965
5967
|
return operation;
|
|
5966
5968
|
});
|