zapier-platform-schema 18.6.0 → 19.0.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": "
|
|
2
|
+
"version": "19.0.0",
|
|
3
3
|
"schemas": {
|
|
4
4
|
"AppSchema": {
|
|
5
5
|
"id": "/AppSchema",
|
|
@@ -1221,7 +1221,7 @@
|
|
|
1221
1221
|
"$ref": "/FunctionSchema"
|
|
1222
1222
|
},
|
|
1223
1223
|
"performList": {
|
|
1224
|
-
"description": "Fetch a list of items on demand during testing instead of waiting for a hook. You can also consider resources and their built-in hook/list methods. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier push`.",
|
|
1224
|
+
"description": "Fetch a list of items on demand during testing instead of waiting for a hook. You can also consider resources and their built-in hook/list methods. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier-platform push`.",
|
|
1225
1225
|
"oneOf": [
|
|
1226
1226
|
{
|
|
1227
1227
|
"$ref": "/RequestSchema"
|
|
@@ -1242,7 +1242,7 @@
|
|
|
1242
1242
|
"type": "boolean"
|
|
1243
1243
|
},
|
|
1244
1244
|
"performSubscribe": {
|
|
1245
|
-
"description": "Takes a URL and any necessary data from the user and subscribes. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier push`.",
|
|
1245
|
+
"description": "Takes a URL and any necessary data from the user and subscribes. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier-platform push`.",
|
|
1246
1246
|
"oneOf": [
|
|
1247
1247
|
{
|
|
1248
1248
|
"$ref": "/RequestSchema"
|
|
@@ -1259,7 +1259,7 @@
|
|
|
1259
1259
|
}
|
|
1260
1260
|
},
|
|
1261
1261
|
"performUnsubscribe": {
|
|
1262
|
-
"description": "Takes a URL and data from a previous subscribe call and unsubscribes. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier push`.",
|
|
1262
|
+
"description": "Takes a URL and data from a previous subscribe call and unsubscribes. Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier-platform push`.",
|
|
1263
1263
|
"oneOf": [
|
|
1264
1264
|
{
|
|
1265
1265
|
"$ref": "/RequestSchema"
|
|
@@ -14,7 +14,7 @@ const BasicHookOperationSchema = JSON.parse(
|
|
|
14
14
|
);
|
|
15
15
|
|
|
16
16
|
const hookTechnicallyRequired =
|
|
17
|
-
'Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier push`.';
|
|
17
|
+
'Note: this is required for public apps to ensure the best UX for the end-user. For private apps, this is strongly recommended for testing REST Hooks. Otherwise, you can ignore warnings about this property with the `--without-style` flag during `zapier-platform push`.';
|
|
18
18
|
|
|
19
19
|
BasicHookOperationSchema.id = '/BasicHookOperationSchema';
|
|
20
20
|
|
package/package.json
CHANGED