docs: fix typos in ValueSourceType docstring (#39573)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
SpiliosDmk 2026-07-26 06:50:52 +03:00 committed by GitHub
parent 4a44befb00
commit ac0320a70d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 13 additions and 13 deletions

View File

@ -67,10 +67,10 @@ class FormInputType(enum.StrEnum):
class ValueSourceType(enum.StrEnum):
"""ValueSourceType records whether the value comes from a static setting
in form definiton, or a variable while the workflow is running.
in form definition, or a variable while the workflow is running.
"""
# `VARIABLE` means that the value comes from a variable in workflow execution
VARIABLE = enum.auto()
# `CONSTANT` measn that the value comes from a static setting in form definition.
# `CONSTANT` means that the value comes from a static setting in form definition.
CONSTANT = enum.auto()

View File

@ -22993,11 +22993,11 @@ User action configuration.
#### ValueSourceType
ValueSourceType records whether the value comes from a static setting
in form definiton, or a variable while the workflow is running.
in form definition, or a variable while the workflow is running.
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
#### VerificationTokenResponse

View File

@ -4052,11 +4052,11 @@ User action configuration.
#### ValueSourceType
ValueSourceType records whether the value comes from a static setting
in form definiton, or a variable while the workflow is running.
in form definition, or a variable while the workflow is running.
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
#### WeightKeywordSetting

View File

@ -1600,11 +1600,11 @@ User action configuration.
#### ValueSourceType
ValueSourceType records whether the value comes from a static setting
in form definiton, or a variable while the workflow is running.
in form definition, or a variable while the workflow is running.
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
#### VerificationTokenResponse

View File

@ -2528,7 +2528,7 @@ export const zAgentConfigSnapshotDetailResponse = z.object({
* ValueSourceType
*
* ValueSourceType records whether the value comes from a static setting
* in form definiton, or a variable while the workflow is running.
* in form definition, or a variable while the workflow is running.
*/
export const zValueSourceType = z.enum(['constant', 'variable'])

View File

@ -3895,7 +3895,7 @@ export const zAgentKnowledgeRetrievalConfig = z.object({
* ValueSourceType
*
* ValueSourceType records whether the value comes from a static setting
* in form definiton, or a variable while the workflow is running.
* in form definition, or a variable while the workflow is running.
*/
export const zValueSourceType = z.enum(['constant', 'variable'])

View File

@ -430,7 +430,7 @@ export const zFileListInputConfig = z.object({
* ValueSourceType
*
* ValueSourceType records whether the value comes from a static setting
* in form definiton, or a variable while the workflow is running.
* in form definition, or a variable while the workflow is running.
*/
export const zValueSourceType = z.enum(['constant', 'variable'])

View File

@ -1894,7 +1894,7 @@ export const zUserActionConfig = z.object({
* ValueSourceType
*
* ValueSourceType records whether the value comes from a static setting
* in form definiton, or a variable while the workflow is running.
* in form definition, or a variable while the workflow is running.
*/
export const zValueSourceType = z.enum(['constant', 'variable'])

View File

@ -641,7 +641,7 @@ export const zUserActionConfig = z.object({
* ValueSourceType
*
* ValueSourceType records whether the value comes from a static setting
* in form definiton, or a variable while the workflow is running.
* in form definition, or a variable while the workflow is running.
*/
export const zValueSourceType = z.enum(['constant', 'variable'])