@scx-js/scx-data 0.1.5 → 0.1.6
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.
@@ -15,7 +15,7 @@ function excludedAll() {
|
|
15
15
|
* @return {FieldPolicy}
|
16
16
|
*/
|
17
17
|
function included(...fieldNames) {
|
18
|
-
return excludedAll().included(fieldNames);
|
18
|
+
return excludedAll().included(...fieldNames);
|
19
19
|
}
|
20
20
|
|
21
21
|
/**
|
@@ -24,7 +24,7 @@ function included(...fieldNames) {
|
|
24
24
|
* @return {FieldPolicy}
|
25
25
|
*/
|
26
26
|
function excluded(...fieldNames) {
|
27
|
-
return includedAll().excluded(fieldNames);
|
27
|
+
return includedAll().excluded(...fieldNames);
|
28
28
|
}
|
29
29
|
|
30
30
|
function ignoreNullValue(ignoreNullValue) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@scx-js/scx-data",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.6",
|
4
4
|
"description": "SCX Data",
|
5
5
|
"license": "MIT",
|
6
6
|
"author": "scx567888",
|
@@ -11,6 +11,6 @@
|
|
11
11
|
"url": "https://github.com/scx567888/scx-js.git"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
|
-
"@scx-js/scx-common": "0.1.
|
14
|
+
"@scx-js/scx-common": "0.1.6"
|
15
15
|
}
|
16
16
|
}
|