From e31b0b349e8f0dce0235e2e37c3878ca9f7eb654 Mon Sep 17 00:00:00 2001 From: martinforejt Date: Fri, 4 Oct 2024 12:33:51 +0200 Subject: [PATCH 1/2] docs: revert storages editor input --- .../input_schema/specification.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sources/platform/actors/development/actor_definition/input_schema/specification.md b/sources/platform/actors/development/actor_definition/input_schema/specification.md index 9a8412985e..64fdd51569 100644 --- a/sources/platform/actors/development/actor_definition/input_schema/specification.md +++ b/sources/platform/actors/development/actor_definition/input_schema/specification.md @@ -183,16 +183,16 @@ Rendered input: Properties: -| Property | Value | Required | Description | -|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------| -| `editor` | One of | Yes | Visual editor used for
the input field. | -| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. | -| `minLength` | Integer | No | Minimum length of the string. | -| `maxLength` | Integer | No | Maximum length of the string. | -| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. | -| `enumTitles` | [String] | No | Titles for the `enum` keys described. | -| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. | -| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. | +| Property | Value | Required | Description | +|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------| +| `editor` | One of | Yes | Visual editor used for
the input field. | +| `pattern` | String | No | Regular expression that will be
used to validate the input.
If validation fails,
the Actor will not run. | +| `minLength` | Integer | No | Minimum length of the string. | +| `maxLength` | Integer | No | Maximum length of the string. | +| `enum` | [String] | Required if
`editor`
is `select` | Using this field, you can limit values
to the given array of strings.
Input will be displayed as select box. | +| `enumTitles` | [String] | No | Titles for the `enum` keys described. | +| `nullable` | Boolean | No | Specifies whether `null`
is an allowed value. | +| `isSecret` | Boolean | No | Specifies whether the input field
will be stored encrypted.
Only available
with `textfield` and `textarea` editors. | :::note Regex escape From 8561dba0ebd62a4719a984ccd38f368cf714505d Mon Sep 17 00:00:00 2001 From: martinforejt Date: Fri, 4 Oct 2024 13:46:40 +0200 Subject: [PATCH 2/2] fix typo lint --- sources/platform/storage/dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/storage/dataset.md b/sources/platform/storage/dataset.md index a54b377eec..f871a87a67 100644 --- a/sources/platform/storage/dataset.md +++ b/sources/platform/storage/dataset.md @@ -284,7 +284,7 @@ For more information, visit our [Python SDK documentation](/sdk/python/docs/conc Fields in a dataset that begin with a `#` are treated as hidden. You can exclude these fields when downloading data by using either `skipHidden=1` or `clean=1` in your query parameters. This feature is useful for excluding debug information from the final dataset output. -The following example demonstrates a dataset record with hiddent fields, including HTTP response and error details. +The following example demonstrates a dataset record with hidden fields, including HTTP response and error details. ```json {