Skip to content

Commit

Permalink
pde-4238 Change config to configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kola-er committed Sep 1, 2023
1 parent cd6760d commit d366564
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packages/schema/docs/build/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ Key | Required | Type | Description
`inputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What should the form a user sees and configures look like?
`outputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What fields of data will this return? Will use resource outputFields if missing, will also use sample if available.
`sample` | **yes** (with exceptions, see description) | `object` | What does a sample of data look like? Will use resource sample if missing. Requirement waived if `display.hidden` is true or if this belongs to a resource that has a top-level sample
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.

#### Examples

Expand Down Expand Up @@ -404,7 +404,7 @@ Key | Required | Type | Description
`inputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What should the form a user sees and configures look like?
`outputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What fields of data will this return? Will use resource outputFields if missing, will also use sample if available.
`sample` | **yes** (with exceptions, see description) | `object` | What does a sample of data look like? Will use resource sample if missing. Requirement waived if `display.hidden` is true or if this belongs to a resource that has a top-level sample
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.
`shouldLock` | no | `boolean` | Should this action be performed one at a time (avoid concurrency)?

#### Examples
Expand Down Expand Up @@ -525,7 +525,7 @@ Key | Required | Type | Description
`inputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What should the form a user sees and configures look like?
`outputFields` | no | [/DynamicFieldsSchema](#dynamicfieldsschema) | What fields of data will this return? Will use resource outputFields if missing, will also use sample if available.
`sample` | **yes** (with exceptions, see description) | `object` | What does a sample of data look like? Will use resource sample if missing. Requirement waived if `display.hidden` is true or if this belongs to a resource that has a top-level sample
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.
`lock` | no | [/LockObjectSchema](#lockobjectschema) | **INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.

#### Examples

Expand Down Expand Up @@ -1147,7 +1147,7 @@ A unique identifier for this item.

## /LockObjectSchema

**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.
**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.

#### Details

Expand Down
8 changes: 4 additions & 4 deletions packages/schema/exported-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@
},
"LockObjectSchema": {
"id": "/LockObjectSchema",
"description": "**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.",
"description": "**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.",
"type": "object",
"required": ["key"],
"properties": {
Expand Down Expand Up @@ -723,7 +723,7 @@
}
},
"lock": {
"description": "**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.",
"description": "**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.",
"$ref": "/LockObjectSchema"
}
},
Expand Down Expand Up @@ -940,7 +940,7 @@
}
},
"lock": {
"description": "**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.",
"description": "**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.",
"$ref": "/LockObjectSchema"
}
},
Expand Down Expand Up @@ -1303,7 +1303,7 @@
}
},
"lock": {
"description": "**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.",
"description": "**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.",
"$ref": "/LockObjectSchema"
},
"shouldLock": {
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/lib/schemas/BasicOperationSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = makeSchema(
},
lock: {
description:
'**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.',
'**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.',
$ref: LockObjectSchema.id,
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/lib/schemas/LockObjectSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const makeSchema = require('../utils/makeSchema');
module.exports = makeSchema({
id: '/LockObjectSchema',
description:
'**INTERNAL USE ONLY**. Zapier uses this config for internal operation locking.',
'**INTERNAL USE ONLY**. Zapier uses this configuration for internal operation locking.',
type: 'object',
required: ['key'],
properties: {
Expand Down

0 comments on commit d366564

Please sign in to comment.