zapier-platform-schema 15.12.0 → 15.13.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/exported-schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "15.
|
|
2
|
+
"version": "15.13.0",
|
|
3
3
|
"schemas": {
|
|
4
4
|
"AppSchema": {
|
|
5
5
|
"id": "/AppSchema",
|
|
@@ -1285,6 +1285,10 @@
|
|
|
1285
1285
|
"value": "**yes** (with exceptions, see description)"
|
|
1286
1286
|
}
|
|
1287
1287
|
}
|
|
1288
|
+
},
|
|
1289
|
+
"maxPollingDelay": {
|
|
1290
|
+
"description": "The maximum amount of time to wait between polling requests in seconds. Minimum value is 20s and will default to 20 if not set, or set to a lower value.",
|
|
1291
|
+
"type": "integer"
|
|
1288
1292
|
}
|
|
1289
1293
|
},
|
|
1290
1294
|
"additionalProperties": false,
|
|
@@ -61,6 +61,11 @@ BasicHookToPollOperationSchema.properties = {
|
|
|
61
61
|
inputFields: BasicHookToPollOperationSchema.properties.inputFields,
|
|
62
62
|
outputFields: BasicHookToPollOperationSchema.properties.outputFields,
|
|
63
63
|
sample: BasicHookToPollOperationSchema.properties.sample,
|
|
64
|
+
maxPollingDelay: {
|
|
65
|
+
description:
|
|
66
|
+
'The maximum amount of time to wait between polling requests in seconds. Minimum value is 20s and will default to 20 if not set, or set to a lower value.',
|
|
67
|
+
type: 'integer',
|
|
68
|
+
},
|
|
64
69
|
};
|
|
65
70
|
|
|
66
71
|
BasicHookToPollOperationSchema.examples = [
|
package/package.json
CHANGED