zapier-platform-core 18.0.5 → 18.0.7
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/package.json +3 -3
- package/types/schemas.generated.d.ts +17 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zapier-platform-core",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.7",
|
|
4
4
|
"description": "The core SDK for CLI apps in the Zapier Developer Platform.",
|
|
5
5
|
"repository": "zapier/zapier-platform",
|
|
6
6
|
"homepage": "https://platform.zapier.com/",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"content-disposition": "0.5.4",
|
|
35
35
|
"dotenv": "17.2.1",
|
|
36
36
|
"fernet": "^0.3.3",
|
|
37
|
-
"form-data": "4.0.
|
|
37
|
+
"form-data": "4.0.5",
|
|
38
38
|
"lodash": "4.17.21",
|
|
39
39
|
"mime-types": "3.0.1",
|
|
40
40
|
"node-abort-controller": "3.1.1",
|
|
41
41
|
"node-fetch": "2.7.0",
|
|
42
42
|
"oauth-sign": "0.9.0",
|
|
43
43
|
"semver": "7.7.2",
|
|
44
|
-
"zapier-platform-schema": "18.0.
|
|
44
|
+
"zapier-platform-schema": "18.0.7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node-fetch": "^2.6.11",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* files, and/or the schema-to-ts tool and run its CLI to regenerate
|
|
5
5
|
* these typings.
|
|
6
6
|
*
|
|
7
|
-
* zapier-platform-schema version: 18.0.
|
|
7
|
+
* zapier-platform-schema version: 18.0.7
|
|
8
8
|
* schema-to-ts compiler version: 0.1.0
|
|
9
9
|
*/
|
|
10
10
|
import type {
|
|
@@ -1555,6 +1555,22 @@ export interface PlainOutputField {
|
|
|
1555
1555
|
* `outputFields` of polling triggers.
|
|
1556
1556
|
*/
|
|
1557
1557
|
steadyState?: boolean;
|
|
1558
|
+
|
|
1559
|
+
/**
|
|
1560
|
+
* An example value for this field. Can be any type (string, number,
|
|
1561
|
+
* boolean, object, array, null) to match the expected field output.
|
|
1562
|
+
* Values provided here will be combined with values in the
|
|
1563
|
+
* operation level `sample` field, with this field taking
|
|
1564
|
+
* precedence. This is most useful when using a function to generate
|
|
1565
|
+
* dynamic `outputFields`.
|
|
1566
|
+
*/
|
|
1567
|
+
sample?:
|
|
1568
|
+
| string
|
|
1569
|
+
| number
|
|
1570
|
+
| boolean
|
|
1571
|
+
| Record<string, unknown>
|
|
1572
|
+
| unknown[]
|
|
1573
|
+
| null;
|
|
1558
1574
|
}
|
|
1559
1575
|
|
|
1560
1576
|
/** An array or collection of input field groups. */
|