Comparing version 0.2.10 to 0.2.11
{ | ||
"name": "remult", | ||
"version": "0.2.10", | ||
"version": "0.2.11", | ||
"description": "remult core lib", | ||
@@ -5,0 +5,0 @@ "homepage": "https://remult.github.io/", |
@@ -16,4 +16,3 @@ import { Allowed, AllowedForInstance } from "./context"; | ||
* @example | ||
* dbName = 'myProducts' | ||
* dbName:'myProducts' | ||
*/ | ||
@@ -26,9 +25,11 @@ dbName?: string; | ||
* Determines if this Entity is available for get requests using Rest Api | ||
* @see [allowed](http://remult-ts.github.io/guide/allowed.html)*/ | ||
* @see [allowed](http://remult.github.io/guide/allowed.html)*/ | ||
allowApiRead?: Allowed; | ||
/** @see [allowed](http://remult-ts.github.io/guide/allowed.html)*/ | ||
/** | ||
* Determines if this entity can be updated through the api. | ||
* @see [allowed](http://remult.github.io/guide/allowed.html)*/ | ||
allowApiUpdate?: AllowedForInstance<entityType>; | ||
/** @see [allowed](http://remult-ts.github.io/guide/allowed.html)*/ | ||
/** @see [allowed](http://remult.github.io/guide/allowed.html)*/ | ||
allowApiDelete?: AllowedForInstance<entityType>; | ||
/** @see [allowed](http://remult-ts.github.io/guide/allowed.html)*/ | ||
/** @see [allowed](http://remult.github.io/guide/allowed.html)*/ | ||
allowApiInsert?: AllowedForInstance<entityType>; | ||
@@ -35,0 +36,0 @@ /** sets the `allowApiUpdate`, `allowApiDelete` and `allowApiInsert` properties in a single set */ |
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
580482
8817