zapier-platform-schema 17.5.0 → 17.7.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.5.0",
2
+ "version": "17.7.0",
3
3
  "schemas": {
4
4
  "AppSchema": {
5
5
  "id": "/AppSchema",
@@ -1662,6 +1662,10 @@
1662
1662
  }
1663
1663
  ]
1664
1664
  },
1665
+ "canPaginate": {
1666
+ "description": "Does this search support pagination?",
1667
+ "type": "boolean"
1668
+ },
1665
1669
  "inputFields": {
1666
1670
  "description": "What should the form a user sees and configures look like?",
1667
1671
  "$ref": "/InputFieldsSchema"
@@ -30,6 +30,10 @@ BasicSearchOperationSchema.properties = {
30
30
  'How will Zapier get a single record? If you find yourself reaching for this - consider resources and their built-in get methods.',
31
31
  oneOf: [{ $ref: RequestSchema.id }, { $ref: FunctionSchema.id }],
32
32
  },
33
+ canPaginate: {
34
+ description: 'Does this search support pagination?',
35
+ type: 'boolean',
36
+ },
33
37
  inputFields: BasicSearchOperationSchema.properties.inputFields,
34
38
  inputFieldGroups: BasicSearchOperationSchema.properties.inputFieldGroups,
35
39
  outputFields: BasicSearchOperationSchema.properties.outputFields,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zapier-platform-schema",
3
- "version": "17.5.0",
3
+ "version": "17.7.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/",