Comparing version 0.4.17 to 0.4.18
{ | ||
"name": "remult", | ||
"version": "0.4.17", | ||
"version": "0.4.18", | ||
"description": "remult core lib", | ||
@@ -5,0 +5,0 @@ "homepage": "https://remult.github.io/", |
@@ -139,2 +139,34 @@ "use strict"; | ||
apiPath.get = secure(meta.options.allowApiRead, true, { | ||
description: "return an array of " + key + ". supports filter operators", | ||
parameters: [{ | ||
"name": "_limit", | ||
"in": "path", | ||
"description": "limit the number of returned rows, default 100", | ||
"required": false, | ||
"example": "25", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "_page", | ||
"in": "path", | ||
"description": "to be used for paging", | ||
"required": false, | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "_sort", | ||
"in": "path", | ||
"description": "the columns to sort on", | ||
"example": "name,id", | ||
"required": false, | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "_order ", | ||
"in": "path", | ||
"description": "the sort order to user for the columns in `_sort`", | ||
"example": "desc,asc", | ||
"required": false, | ||
"type": "string" | ||
}], | ||
responses: { | ||
@@ -141,0 +173,0 @@ "200": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
612428
9240