zapier-platform-schema 17.4.0 → 17.6.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "17.4.0",
2
+ "version": "17.6.0",
3
3
  "schemas": {
4
4
  "AppSchema": {
5
5
  "id": "/AppSchema",
@@ -308,7 +308,9 @@
308
308
  "boolean",
309
309
  "datetime",
310
310
  "copy",
311
- "password"
311
+ "password",
312
+ "integer",
313
+ "text"
312
314
  ]
313
315
  },
314
316
  "required": {
@@ -29,7 +29,16 @@ module.exports = makeSchema(
29
29
  type: {
30
30
  description: 'The type of this value used to be.',
31
31
  type: 'string',
32
- enum: ['string', 'number', 'boolean', 'datetime', 'copy', 'password'],
32
+ enum: [
33
+ 'string',
34
+ 'number',
35
+ 'boolean',
36
+ 'datetime',
37
+ 'copy',
38
+ 'password',
39
+ 'integer',
40
+ 'text',
41
+ ],
33
42
  },
34
43
  required: {
35
44
  description:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zapier-platform-schema",
3
- "version": "17.4.0",
3
+ "version": "17.6.0",
4
4
  "description": "Schema definition for CLI apps in the Zapier Developer Platform.",
5
5
  "repository": "zapier/zapier-platform",
6
6
  "homepage": "https://platform.zapier.com/",