@kintone/rest-api-client
Advanced tools
Comparing version 1.11.1 to 1.11.2
@@ -6,2 +6,15 @@ # Change Log | ||
## [1.11.2](https://github.com/kintone/js-sdk/compare/@kintone/rest-api-client@1.11.1...@kintone/rest-api-client@1.11.2) (2021-03-18) | ||
### Bug Fixes | ||
* **rest-api-client:** fix ReminderNotificationForResponse type ([#751](https://github.com/kintone/js-sdk/issues/751)) ([4e194a3](https://github.com/kintone/js-sdk/commit/4e194a3707ecc6ac87113cb4f6c59371c0fda3d6)) | ||
* **rest-api-client:** prevent infinite loop when `condition` contains OR clause ([#726](https://github.com/kintone/js-sdk/issues/726)) ([6afdd84](https://github.com/kintone/js-sdk/commit/6afdd84c265684188536b816aebfaee8dee2694f)) | ||
* **rest-api-client:** remove an unnecessary property from the notifications param of app.updateGeneralNotifications ([#750](https://github.com/kintone/js-sdk/issues/750)) ([8b07e24](https://github.com/kintone/js-sdk/commit/8b07e243ff4e1009a20654bf0621f4afc6c810c7)) | ||
## [1.11.1](https://github.com/kintone/js-sdk/compare/@kintone/rest-api-client@1.11.0...@kintone/rest-api-client@1.11.1) (2021-03-09) | ||
@@ -8,0 +21,0 @@ |
@@ -1280,3 +1280,2 @@ var __assign = (this && this.__assign) || function () { | ||
], | ||
notifyToCommenter: true, | ||
revision: 1, | ||
@@ -1365,3 +1364,2 @@ }; | ||
fileImported: true, | ||
notifyToCommenter: true, | ||
}, | ||
@@ -1368,0 +1366,0 @@ ], |
@@ -246,3 +246,3 @@ var __assign = (this && this.__assign) || function () { | ||
condition = params.condition, rest = __rest(params, ["condition"]); | ||
conditionQuery = condition ? condition + " and " : ""; | ||
conditionQuery = condition ? "(" + condition + ") and " : ""; | ||
query = conditionQuery + "$id > " + id + " order by $id asc limit " + GET_RECORDS_LIMIT; | ||
@@ -249,0 +249,0 @@ return [4 /*yield*/, this.getRecords(__assign(__assign({}, rest), { query: query }))]; |
@@ -13,3 +13,2 @@ import { Entity } from "../entity"; | ||
fileImported?: boolean; | ||
notifyToCommenter?: boolean; | ||
}; | ||
@@ -75,4 +74,7 @@ export declare type GeneralNotificationForResponse = { | ||
daysLater: string; | ||
hoursLater?: string; | ||
time?: string; | ||
hoursLater: string; | ||
} | { | ||
code: string; | ||
daysLater: string; | ||
time: string; | ||
}; | ||
@@ -79,0 +81,0 @@ filterCond: string; |
@@ -1282,3 +1282,2 @@ "use strict"; | ||
], | ||
notifyToCommenter: true, | ||
revision: 1, | ||
@@ -1367,3 +1366,2 @@ }; | ||
fileImported: true, | ||
notifyToCommenter: true, | ||
}, | ||
@@ -1370,0 +1368,0 @@ ], |
@@ -249,3 +249,3 @@ "use strict"; | ||
condition = params.condition, rest = __rest(params, ["condition"]); | ||
conditionQuery = condition ? condition + " and " : ""; | ||
conditionQuery = condition ? "(" + condition + ") and " : ""; | ||
query = conditionQuery + "$id > " + id + " order by $id asc limit " + GET_RECORDS_LIMIT; | ||
@@ -252,0 +252,0 @@ return [4 /*yield*/, this.getRecords(__assign(__assign({}, rest), { query: query }))]; |
@@ -13,3 +13,2 @@ import { Entity } from "../entity"; | ||
fileImported?: boolean; | ||
notifyToCommenter?: boolean; | ||
}; | ||
@@ -75,4 +74,7 @@ export declare type GeneralNotificationForResponse = { | ||
daysLater: string; | ||
hoursLater?: string; | ||
time?: string; | ||
hoursLater: string; | ||
} | { | ||
code: string; | ||
daysLater: string; | ||
time: string; | ||
}; | ||
@@ -79,0 +81,0 @@ filterCond: string; |
{ | ||
"name": "@kintone/rest-api-client", | ||
"version": "1.11.1", | ||
"version": "1.11.2", | ||
"publishConfig": { | ||
@@ -67,3 +67,3 @@ "access": "public" | ||
"@types/qs": "^6.9.6", | ||
"rollup": "^2.40.0", | ||
"rollup": "^2.41.4", | ||
"rollup-plugin-ecma-version-validator": "^0.1.6", | ||
@@ -93,3 +93,3 @@ "rollup-plugin-node-builtins": "^2.1.2", | ||
}, | ||
"gitHead": "230bd05abff8e1e30814cfb34891d0cfbda6b754" | ||
"gitHead": "f9a3db9abe54813122efbb55072b27263f3c22af" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
2122413