zapier-platform-schema 11.3.1 → 11.3.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": "11.3.
|
|
2
|
+
"version": "11.3.2",
|
|
3
3
|
"schemas": {
|
|
4
4
|
"AppSchema": {
|
|
5
5
|
"id": "/AppSchema",
|
|
@@ -417,6 +417,10 @@
|
|
|
417
417
|
"description": "If `true`, don't throw an exception for response 400 <= status < 600 automatically before resolving with the response. Defaults to `false`.",
|
|
418
418
|
"type": "boolean",
|
|
419
419
|
"default": false
|
|
420
|
+
},
|
|
421
|
+
"skipEncodingChars": {
|
|
422
|
+
"description": "Contains the characters that you want left unencoded in the query params (`req.params`). If unspecified, `z.request()` will percent-encode non-ascii characters and these reserved characters: ``:$/?#[]@$&+,;=^@`\\``.",
|
|
423
|
+
"type": "string"
|
|
420
424
|
}
|
|
421
425
|
},
|
|
422
426
|
"additionalProperties": false
|
|
@@ -87,6 +87,11 @@ module.exports = makeSchema(
|
|
|
87
87
|
type: 'boolean',
|
|
88
88
|
default: false,
|
|
89
89
|
},
|
|
90
|
+
skipEncodingChars: {
|
|
91
|
+
description:
|
|
92
|
+
'Contains the characters that you want left unencoded in the query params (`req.params`). If unspecified, `z.request()` will percent-encode non-ascii characters and these reserved characters: ``:$/?#[]@$&+,;=^@`\\``.',
|
|
93
|
+
type: 'string',
|
|
94
|
+
},
|
|
90
95
|
},
|
|
91
96
|
additionalProperties: false,
|
|
92
97
|
examples: [
|
package/package.json
CHANGED