@cedarjs/api 1.0.0-canary.12978 → 1.0.0-canary.12986
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.
|
@@ -141,7 +141,7 @@ interface ValidationRecipe {
|
|
|
141
141
|
/**
|
|
142
142
|
* Requires that a field NOT be present, meaning it must be `null` or `undefined`.
|
|
143
143
|
*
|
|
144
|
-
* Opposite of the [`presence`](https://
|
|
144
|
+
* Opposite of the [`presence`](https://cedarjs.com/docs/services.html#presence) validator.
|
|
145
145
|
*/
|
|
146
146
|
absence?: boolean | AbsenceValidatorOptions;
|
|
147
147
|
/**
|
|
@@ -167,7 +167,7 @@ interface ValidationRecipe {
|
|
|
167
167
|
/**
|
|
168
168
|
* Requires that the given value not equal to any in a list of given values.
|
|
169
169
|
*
|
|
170
|
-
* Opposite of the [inclusion](https://
|
|
170
|
+
* Opposite of the [inclusion](https://cedarjs.com/docs/services.html#inclusion) validation.
|
|
171
171
|
*/
|
|
172
172
|
exclusion?: unknown[] | ExclusionValidatorOptions;
|
|
173
173
|
/**
|
|
@@ -177,7 +177,7 @@ interface ValidationRecipe {
|
|
|
177
177
|
/**
|
|
178
178
|
* Requires that the given value is equal to one in a list of given values.
|
|
179
179
|
*
|
|
180
|
-
* Opposite of the [exclusion](https://
|
|
180
|
+
* Opposite of the [exclusion](https://cedarjs.com/docs/services.html#exclusion) validation.
|
|
181
181
|
*/
|
|
182
182
|
inclusion?: unknown[] | InclusionValidatorOptions;
|
|
183
183
|
/**
|
|
@@ -191,7 +191,7 @@ interface ValidationRecipe {
|
|
|
191
191
|
/**
|
|
192
192
|
* Requires that a field be present, meaning it must not be null or undefined.
|
|
193
193
|
*
|
|
194
|
-
* Opposite of the [absence](https://
|
|
194
|
+
* Opposite of the [absence](https://cedarjs.com/docs/services.html#absence) validator.
|
|
195
195
|
*/
|
|
196
196
|
presence?: boolean | PresenceValidatorOptions;
|
|
197
197
|
/**
|
|
@@ -141,7 +141,7 @@ interface ValidationRecipe {
|
|
|
141
141
|
/**
|
|
142
142
|
* Requires that a field NOT be present, meaning it must be `null` or `undefined`.
|
|
143
143
|
*
|
|
144
|
-
* Opposite of the [`presence`](https://
|
|
144
|
+
* Opposite of the [`presence`](https://cedarjs.com/docs/services.html#presence) validator.
|
|
145
145
|
*/
|
|
146
146
|
absence?: boolean | AbsenceValidatorOptions;
|
|
147
147
|
/**
|
|
@@ -167,7 +167,7 @@ interface ValidationRecipe {
|
|
|
167
167
|
/**
|
|
168
168
|
* Requires that the given value not equal to any in a list of given values.
|
|
169
169
|
*
|
|
170
|
-
* Opposite of the [inclusion](https://
|
|
170
|
+
* Opposite of the [inclusion](https://cedarjs.com/docs/services.html#inclusion) validation.
|
|
171
171
|
*/
|
|
172
172
|
exclusion?: unknown[] | ExclusionValidatorOptions;
|
|
173
173
|
/**
|
|
@@ -177,7 +177,7 @@ interface ValidationRecipe {
|
|
|
177
177
|
/**
|
|
178
178
|
* Requires that the given value is equal to one in a list of given values.
|
|
179
179
|
*
|
|
180
|
-
* Opposite of the [exclusion](https://
|
|
180
|
+
* Opposite of the [exclusion](https://cedarjs.com/docs/services.html#exclusion) validation.
|
|
181
181
|
*/
|
|
182
182
|
inclusion?: unknown[] | InclusionValidatorOptions;
|
|
183
183
|
/**
|
|
@@ -191,7 +191,7 @@ interface ValidationRecipe {
|
|
|
191
191
|
/**
|
|
192
192
|
* Requires that a field be present, meaning it must not be null or undefined.
|
|
193
193
|
*
|
|
194
|
-
* Opposite of the [absence](https://
|
|
194
|
+
* Opposite of the [absence](https://cedarjs.com/docs/services.html#absence) validator.
|
|
195
195
|
*/
|
|
196
196
|
presence?: boolean | PresenceValidatorOptions;
|
|
197
197
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/api",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12986+275f121cf",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"title-case": "3.0.3"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@cedarjs/framework-tools": "1.0.0-canary.
|
|
100
|
+
"@cedarjs/framework-tools": "1.0.0-canary.12986",
|
|
101
101
|
"@types/aws-lambda": "8.10.159",
|
|
102
102
|
"@types/jsonwebtoken": "9.0.10",
|
|
103
103
|
"@types/memjs": "1",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"publishConfig": {
|
|
129
129
|
"access": "public"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "275f121cfd767cf5b457325de829a281c93440c7"
|
|
132
132
|
}
|