zapier-platform-core 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zapier-platform-core",
3
- "version": "15.12.0",
3
+ "version": "15.13.0",
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/",
@@ -53,7 +53,7 @@
53
53
  "node-fetch": "2.6.7",
54
54
  "oauth-sign": "0.9.0",
55
55
  "semver": "7.5.2",
56
- "zapier-platform-schema": "15.12.0"
56
+ "zapier-platform-schema": "15.13.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@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: 15.12.0
7
+ * zapier-platform-schema version: 15.13.0
8
8
  * schema-to-ts compiler version: 0.1.0
9
9
  */
10
10
 
@@ -1260,6 +1260,13 @@ export interface BasicHookToPollOperation {
1260
1260
  * this belongs to a resource that has a top-level sample
1261
1261
  */
1262
1262
  sample?: { [k: string]: unknown };
1263
+
1264
+ /**
1265
+ * The maximum amount of time to wait between polling requests in
1266
+ * seconds. Minimum value is 20s and will default to 20 if not set,
1267
+ * or set to a lower value.
1268
+ */
1269
+ maxPollingDelay?: number;
1263
1270
  }
1264
1271
 
1265
1272
  /**