@itentialopensource/adapter-google_drive 0.9.0 → 0.10.0

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/PROPERTIES.md CHANGED
@@ -54,7 +54,8 @@ This section defines **all** the properties that are available for the adapter,
54
54
  "healthcheck_on_timeout": false,
55
55
  "return_raw": false,
56
56
  "archiving": false,
57
- "return_request": false
57
+ "return_request": false,
58
+ "keep_alive_interval": 0
58
59
  },
59
60
  "ssl": {
60
61
  "ecdhCurve": "",
@@ -403,6 +404,10 @@ The request section defines properties to help handle requests.
403
404
  <td style="padding:15px">return_request</td>
404
405
  <td style="padding:15px">Optional flag. Default is false. Will return the actual request that is made including headers. This should only be used during debugging issues as there could be credentials in the actual request.</td>
405
406
  </tr>
407
+ <tr>
408
+ <td style="padding:15px">keep_alive_interval</td>
409
+ <td style="padding:15px">Optional. TCP keep-alive interval in seconds for long-lived connections. Set to 0 to disable keep-alive (default). When enabled, minimum value is 30 seconds.</td>
410
+ </tr>
406
411
  </table>
407
412
  <br>
408
413
 
package/TAB2.md CHANGED
@@ -90,6 +90,9 @@ Sample Properties can be used to help you configure the adapter in the Itential
90
90
  "client_id": "",
91
91
  "client_secret": "",
92
92
  "grant_type": "",
93
+ "auth_request_datatype": "",
94
+ "auth_response_datatype": "",
95
+ "token_response_placement": "",
93
96
  "sensitive": [],
94
97
  "sso": {
95
98
  "protocol": "",
@@ -159,7 +162,8 @@ Sample Properties can be used to help you configure the adapter in the Itential
159
162
  "healthcheck_on_timeout": true,
160
163
  "return_raw": false,
161
164
  "archiving": false,
162
- "return_request": false
165
+ "return_request": false,
166
+ "keep_alive_interval": 0
163
167
  },
164
168
  "proxy": {
165
169
  "enabled": false,
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-google_drive",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "This adapter integrates with system described as: google drive",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "3.8.0",
7
- "engineVersion": "1.79.2",
7
+ "engineVersion": "1.80.0",
8
8
  "adapterType": "http",
9
9
  "scripts": {
10
10
  "preinstall": "node utils/setup.js",
@@ -49,7 +49,7 @@
49
49
  "author": "Itential",
50
50
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-google_drive#readme",
51
51
  "dependencies": {
52
- "@itentialopensource/adapter-utils": "6.0.2",
52
+ "@itentialopensource/adapter-utils": "6.1.7",
53
53
  "acorn": "8.14.1",
54
54
  "ajv": "8.17.1",
55
55
  "axios": "1.12.2",
@@ -695,6 +695,12 @@
695
695
  "type": "boolean",
696
696
  "description": "This property turns on returning the response information - need to be carefull in case credentials are in the path",
697
697
  "default": false
698
+ },
699
+ "keep_alive_interval": {
700
+ "type": "integer",
701
+ "description": "TCP keep-alive interval in seconds for long-lived connections. Set to 0 to disable (default). Minimum 30 seconds when enabled.",
702
+ "default": 0,
703
+ "minimum": 0
698
704
  }
699
705
  },
700
706
  "required": [
@@ -1762,4 +1768,4 @@
1762
1768
  }
1763
1769
  }
1764
1770
  }
1765
- }
1771
+ }