@kintone/rest-api-client 2.0.24 → 2.0.25

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 CHANGED
@@ -3,6 +3,17 @@
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
+ ## [2.0.25](https://github.com/kintone/js-sdk/compare/@kintone/rest-api-client@2.0.24...@kintone/rest-api-client@2.0.25) (2021-11-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency axios to ^0.24.0 ([#1182](https://github.com/kintone/js-sdk/issues/1182)) ([ff21391](https://github.com/kintone/js-sdk/commit/ff21391d17adb476e77d3f82df0539328bcd3772))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.0.24](https://github.com/kintone/js-sdk/compare/@kintone/rest-api-client@2.0.23...@kintone/rest-api-client@2.0.24) (2021-10-27)
7
18
 
8
19
  **Note:** Version bump only for package @kintone/rest-api-client
package/README.md CHANGED
@@ -90,26 +90,26 @@ client.record
90
90
 
91
91
  ## Parameters for `KintoneRestAPIClient`
92
92
 
93
- | Name | Type | Required | Description |
94
- | -------------------------- | :--------------------------------------------------------------: | :-------------------------: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
95
- | baseUrl | String | Conditionally<br />Required | The base URL for your Kintone environment.<br />It must start with `https`. (e.g. https://example.kintone.com) <br />Required in Node.js environment. If you omit it in browser environment, `location.origin` will be used. |
96
- | auth | Object | Conditionally<br />Required | The object for authentication. See [Authentication](#Authentication). |
97
- | guestSpaceId | Number or String | | The guest space ID. If you are dealing with apps that are in guest spaces, please specify this. |
98
- | basicAuth | Object | | If your Kintone environment uses Basic authentication, please specify its username and password. |
99
- | basicAuth.username | String | | The username of Basic authentication. |
100
- | basicAuth.password | String | | The password of Basic authentication. |
101
- | clientCertAuth | Object | | **This parameter is available only in Node.js environment.**<br />If your Kintone environment uses [Client Certificate authentication](https://jp.cybozu.help/general/en/admin/list_security/list_secureaccess/overview.html), please specify the certificate file and password. |
102
- | clientCertAuth.pfx | [Buffer](https://nodejs.org/api/buffer.html#buffer_class_buffer) | | The [client certificate file](https://jp.cybozu.help/general/en/user/list_access/remote/webbrowser.html). Required, unless you specify `pfxFilePath`. |
103
- | clientCertAuth.pfxFilePath | String | | The path to [client certificate file](https://jp.cybozu.help/general/en/user/list_access/remote/webbrowser.html). Required, unless you specify `pfx`. |
104
- | clientCertAuth.password | String | | The password of client certificate. |
105
- | proxy | Object | | **This parameter is available only in Node.js environment.**<br />If you use a proxy, please specify its configuration. |
106
- | proxy.host | String | | The host of the proxy server. |
107
- | proxy.port | Number | | The port of the proxy server. |
108
- | proxy.auth | Object | | If the proxy server requires Basic authentication, please specify its username and password. |
109
- | proxy.auth.username | String | | The username of Basic authentication for the proxy server. |
110
- | proxy.auth.password | String | | The password of Basic authentication for the proxy server. |
111
- | userAgent | String | | **This parameter is available only in Node.js environment.**<br />A User-Agent HTTP header |
112
- | featureFlags | Object | | Feature flags that you can configure. See [Feature flags](#Feature-flags). |
93
+ | Name | Type | Required | Description |
94
+ | -------------------------- | :--------------------------------------------------------------: | :-------------------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
95
+ | baseUrl | String | Conditionally<br />Required | The base URL for your Kintone environment.<br />It must start with `https`. (e.g. https://example.kintone.com) <br />Required in Node.js environment. If you omit it in browser environment, `location.origin` will be used. |
96
+ | auth | Object | Conditionally<br />Required | The object for authentication. See [Authentication](#Authentication). |
97
+ | guestSpaceId | Number or String | | The guest space ID. If you are dealing with apps that are in guest spaces, please specify this. |
98
+ | basicAuth | Object | | If your Kintone environment uses Basic authentication, please specify its username and password. |
99
+ | basicAuth.username | String | | The username of Basic authentication. |
100
+ | basicAuth.password | String | | The password of Basic authentication. |
101
+ | clientCertAuth | Object | | **This parameter is available only in Node.js environment.**<br />If your Kintone environment uses [Client Certificate authentication](https://jp.cybozu.help/general/en/admin/list_security/list_access/secureaccess.html), please specify the certificate file and password. |
102
+ | clientCertAuth.pfx | [Buffer](https://nodejs.org/api/buffer.html#buffer_class_buffer) | | The [client certificate file](https://jp.cybozu.help/general/en/user/list_access/remote/webbrowser.html). Required, unless you specify `pfxFilePath`. |
103
+ | clientCertAuth.pfxFilePath | String | | The path to [client certificate file](https://jp.cybozu.help/general/en/user/list_access/remote/webbrowser.html). Required, unless you specify `pfx`. |
104
+ | clientCertAuth.password | String | | The password of client certificate. |
105
+ | proxy | Object | | **This parameter is available only in Node.js environment.**<br />If you use a proxy, please specify its configuration. |
106
+ | proxy.host | String | | The host of the proxy server. |
107
+ | proxy.port | Number | | The port of the proxy server. |
108
+ | proxy.auth | Object | | If the proxy server requires Basic authentication, please specify its username and password. |
109
+ | proxy.auth.username | String | | The username of Basic authentication for the proxy server. |
110
+ | proxy.auth.password | String | | The password of Basic authentication for the proxy server. |
111
+ | userAgent | String | | **This parameter is available only in Node.js environment.**<br />A User-Agent HTTP header |
112
+ | featureFlags | Object | | Feature flags that you can configure. See [Feature flags](#Feature-flags). |
113
113
 
114
114
  ### Authentication
115
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kintone/rest-api-client",
3
- "version": "2.0.24",
3
+ "version": "2.0.25",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -64,7 +64,7 @@
64
64
  "@types/core-js": "^2.5.5",
65
65
  "@types/js-base64": "^2.3.2",
66
66
  "@types/qs": "^6.9.7",
67
- "rollup": "^2.58.3",
67
+ "rollup": "^2.60.0",
68
68
  "rollup-plugin-ecma-version-validator": "^0.1.6",
69
69
  "rollup-plugin-node-builtins": "^2.1.2",
70
70
  "rollup-plugin-node-globals": "^1.4.0",
@@ -72,7 +72,7 @@
72
72
  "rollup-plugin-terser": "^7.0.2"
73
73
  },
74
74
  "dependencies": {
75
- "axios": "^0.23.0",
75
+ "axios": "^0.24.0",
76
76
  "core-js": "^3.18.3",
77
77
  "form-data": "^4.0.0",
78
78
  "js-base64": "^2.6.4",
@@ -89,5 +89,5 @@
89
89
  },
90
90
  "./package.json": "./package.json"
91
91
  },
92
- "gitHead": "4d9fa61bff1b933b3488b6bec22f60ee6f7794d4"
92
+ "gitHead": "1b3d194962a117222bbfcb4a692d0fda7833430c"
93
93
  }