zapier-platform-schema 15.4.0 → 15.4.2
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.4.
|
|
2
|
+
"version": "15.4.2",
|
|
3
3
|
"schemas": {
|
|
4
4
|
"AppSchema": {
|
|
5
5
|
"id": "/AppSchema",
|
|
@@ -103,12 +103,12 @@
|
|
|
103
103
|
"required": ["value", "sample", "label"],
|
|
104
104
|
"properties": {
|
|
105
105
|
"value": {
|
|
106
|
-
"description": "The actual value that is sent into the Zap. Should match sample exactly.",
|
|
106
|
+
"description": "The actual value that is sent into the Zap. This is displayed as light grey text in the editor. Should match sample exactly.",
|
|
107
107
|
"type": "string",
|
|
108
108
|
"minLength": 1
|
|
109
109
|
},
|
|
110
110
|
"sample": {
|
|
111
|
-
"description": "
|
|
111
|
+
"description": "A legacy field that is no longer used by the editor, but it is still required for now and should match the value.",
|
|
112
112
|
"type": "string",
|
|
113
113
|
"minLength": 1
|
|
114
114
|
},
|
|
@@ -872,6 +872,10 @@
|
|
|
872
872
|
"value": "**yes** (with exceptions, see description)"
|
|
873
873
|
}
|
|
874
874
|
}
|
|
875
|
+
},
|
|
876
|
+
"throttle": {
|
|
877
|
+
"description": "Zapier uses this configuration to apply throttling when the limit for the window is exceeded.",
|
|
878
|
+
"$ref": "/ThrottleObjectSchema"
|
|
875
879
|
}
|
|
876
880
|
},
|
|
877
881
|
"additionalProperties": false
|
|
@@ -925,6 +929,10 @@
|
|
|
925
929
|
"value": "**yes** (with exceptions, see description)"
|
|
926
930
|
}
|
|
927
931
|
}
|
|
932
|
+
},
|
|
933
|
+
"throttle": {
|
|
934
|
+
"description": "Zapier uses this configuration to apply throttling when the limit for the window is exceeded.",
|
|
935
|
+
"$ref": "/ThrottleObjectSchema"
|
|
928
936
|
}
|
|
929
937
|
},
|
|
930
938
|
"additionalProperties": false
|
|
@@ -83,6 +83,7 @@ BasicHookOperationSchema.properties = {
|
|
|
83
83
|
inputFields: BasicHookOperationSchema.properties.inputFields,
|
|
84
84
|
outputFields: BasicHookOperationSchema.properties.outputFields,
|
|
85
85
|
sample: BasicHookOperationSchema.properties.sample,
|
|
86
|
+
throttle: BasicHookOperationSchema.properties.throttle,
|
|
86
87
|
};
|
|
87
88
|
|
|
88
89
|
BasicHookOperationSchema.examples = [
|
|
@@ -33,6 +33,7 @@ BasicPollingOperationSchema.properties = {
|
|
|
33
33
|
inputFields: BasicPollingOperationSchema.properties.inputFields,
|
|
34
34
|
outputFields: BasicPollingOperationSchema.properties.outputFields,
|
|
35
35
|
sample: BasicPollingOperationSchema.properties.sample,
|
|
36
|
+
throttle: BasicPollingOperationSchema.properties.throttle,
|
|
36
37
|
};
|
|
37
38
|
|
|
38
39
|
module.exports = makeSchema(
|
|
@@ -11,13 +11,13 @@ module.exports = makeSchema({
|
|
|
11
11
|
properties: {
|
|
12
12
|
value: {
|
|
13
13
|
description:
|
|
14
|
-
'The actual value that is sent into the Zap. Should match sample exactly.',
|
|
14
|
+
'The actual value that is sent into the Zap. This is displayed as light grey text in the editor. Should match sample exactly.',
|
|
15
15
|
type: 'string',
|
|
16
16
|
minLength: 1,
|
|
17
17
|
},
|
|
18
18
|
sample: {
|
|
19
19
|
description:
|
|
20
|
-
"
|
|
20
|
+
"A legacy field that is no longer used by the editor, but it is still required for now and should match the value.",
|
|
21
21
|
type: 'string',
|
|
22
22
|
minLength: 1,
|
|
23
23
|
},
|
package/package.json
CHANGED