@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.
@@ -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
  });