@kintone/dts-gen 5.0.16 → 5.0.20
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.
- package/CHANGELOG.md +35 -0
- package/kintone.d.ts +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.20](https://github.com/kintone/js-sdk/compare/@kintone/dts-gen@5.0.19...@kintone/dts-gen@5.0.20) (2022-02-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @kintone/dts-gen
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 5.0.19 (2022-02-14)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** update dependency @kintone/rest-api-client to ^2.0.34 ([#1341](https://github.com/kintone/js-sdk/issues/1341)) ([0e01847](https://github.com/kintone/js-sdk/commit/0e018475d77c68f42d414d563377aef56a7a1d41))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## 5.0.18 (2022-02-04)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @kintone/dts-gen
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## 5.0.17 (2022-01-18)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @kintone/dts-gen
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## 5.0.16 (2022-01-11)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @kintone/dts-gen
|
package/kintone.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ declare namespace kintone {
|
|
|
102
102
|
function getFieldElement(fieldCode: string): HTMLElement | null;
|
|
103
103
|
function set(record: any): void;
|
|
104
104
|
function getSpaceElement(id: string): HTMLElement | null;
|
|
105
|
-
function setFieldShown(fieldCode: string,
|
|
105
|
+
function setFieldShown(fieldCode: string, isShown: boolean): void;
|
|
106
106
|
function setGroupFieldOpen(fieldCode: string, isOpen: boolean): void;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -123,7 +123,7 @@ declare namespace kintone {
|
|
|
123
123
|
function getFieldElement(fieldCode: string): HTMLElement | null;
|
|
124
124
|
function set(record: any): void;
|
|
125
125
|
function getSpaceElement(id: string): HTMLElement | null;
|
|
126
|
-
function setFieldShown(fieldCode: string,
|
|
126
|
+
function setFieldShown(fieldCode: string, isShown: boolean): void;
|
|
127
127
|
function setGroupFieldOpen(fieldCode: string, isOpen: boolean): void;
|
|
128
128
|
}
|
|
129
129
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kintone/dts-gen",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.20",
|
|
4
4
|
"description": "Types for kintone js api and Types generating tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/lodash": "^4.14.178",
|
|
40
|
-
"ts-loader": "^
|
|
41
|
-
"webpack": "^5.
|
|
42
|
-
"webpack-cli": "^4.9.
|
|
40
|
+
"ts-loader": "^9.2.6",
|
|
41
|
+
"webpack": "^5.68.0",
|
|
42
|
+
"webpack-cli": "^4.9.2"
|
|
43
43
|
},
|
|
44
44
|
"bin": {
|
|
45
45
|
"kintone-dts-gen": "dist/index.js"
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"keywords": [
|
|
61
61
|
"kintone"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "214616592838a7c3855f0594909d9122378ba5b5"
|
|
64
64
|
}
|