@openfn/language-kobotoolbox 4.1.0 → 4.1.1
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/ast.json +1 -1
- package/package.json +2 -2
- package/types/Adaptor.d.ts +1 -1
package/ast.json
CHANGED
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
143
|
"title": "param",
|
|
144
|
-
"description": "Maximum number of submissions to fetch. Pass Infinity to disable the limit and download all submissions",
|
|
144
|
+
"description": "Maximum number of submissions to fetch. Pass `Infinity` to disable the limit and download all submissions",
|
|
145
145
|
"type": {
|
|
146
146
|
"type": "OptionalType",
|
|
147
147
|
"expression": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/language-kobotoolbox",
|
|
3
3
|
"label": "KoboToolbox",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.1",
|
|
5
5
|
"description": "A KoboToolbox Language Pack for OpenFn",
|
|
6
6
|
"homepage": "https://docs.openfn.org",
|
|
7
7
|
"repository": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"configuration-schema.json"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@openfn/language-common": "2.
|
|
21
|
+
"@openfn/language-common": "2.5.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"assertion-error": "^1.0.1",
|
package/types/Adaptor.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export function getForms(): Operation;
|
|
|
40
40
|
* @param {object} [options.sort] - Field and direction to sort submissions by.
|
|
41
41
|
* @param {object} [options.query] - Query options to filter the submissions. See query operators {@link http://docs.mongodb.org/manual/reference/operator/query/.}
|
|
42
42
|
* @param {number} [options.start=0] - The index of the first submission to return.
|
|
43
|
-
* @param {number} [options.limit=30000] - Maximum number of submissions to fetch. Pass Infinity to disable the limit and download all submissions
|
|
43
|
+
* @param {number} [options.limit=30000] - Maximum number of submissions to fetch. Pass `Infinity` to disable the limit and download all submissions
|
|
44
44
|
* @param {number} [options.pageSize=10000] - Limits the size of each page of submissions. Maximum value is 30000.
|
|
45
45
|
* @state data - an array of submission objects
|
|
46
46
|
* @returns {Operation}
|