doc-detective-common 4.0.2-dev.11 → 4.0.2-dev.12
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.
package/dist/index.cjs
CHANGED
|
@@ -6252,9 +6252,9 @@ var schemas_default = {
|
|
|
6252
6252
|
anyOf: [
|
|
6253
6253
|
{
|
|
6254
6254
|
title: "Screenshot (simple)",
|
|
6255
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6255
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6256
6256
|
type: "string",
|
|
6257
|
-
pattern: "([A-Za-z0-9_
|
|
6257
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6258
6258
|
transform: [
|
|
6259
6259
|
"trim"
|
|
6260
6260
|
]
|
|
@@ -6265,9 +6265,9 @@ var schemas_default = {
|
|
|
6265
6265
|
properties: {
|
|
6266
6266
|
path: {
|
|
6267
6267
|
title: "Screenshot (simple)",
|
|
6268
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6268
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6269
6269
|
type: "string",
|
|
6270
|
-
pattern: "([A-Za-z0-9_
|
|
6270
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6271
6271
|
transform: [
|
|
6272
6272
|
"trim"
|
|
6273
6273
|
]
|
|
@@ -6498,9 +6498,9 @@ var schemas_default = {
|
|
|
6498
6498
|
schemas: {
|
|
6499
6499
|
path: {
|
|
6500
6500
|
title: "Screenshot (simple)",
|
|
6501
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6501
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6502
6502
|
type: "string",
|
|
6503
|
-
pattern: "([A-Za-z0-9_
|
|
6503
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6504
6504
|
transform: [
|
|
6505
6505
|
"trim"
|
|
6506
6506
|
]
|
|
@@ -6511,9 +6511,9 @@ var schemas_default = {
|
|
|
6511
6511
|
properties: {
|
|
6512
6512
|
path: {
|
|
6513
6513
|
title: "Screenshot (simple)",
|
|
6514
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6514
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6515
6515
|
type: "string",
|
|
6516
|
-
pattern: "([A-Za-z0-9_
|
|
6516
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6517
6517
|
transform: [
|
|
6518
6518
|
"trim"
|
|
6519
6519
|
]
|
|
@@ -6895,6 +6895,12 @@ var schemas_default = {
|
|
|
6895
6895
|
"image.png",
|
|
6896
6896
|
"static/images/image.png",
|
|
6897
6897
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
6898
|
+
"https://example.com/static/images/image.png",
|
|
6899
|
+
{
|
|
6900
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
6901
|
+
maxVariation: 0.05,
|
|
6902
|
+
overwrite: "aboveVariation"
|
|
6903
|
+
},
|
|
6898
6904
|
{
|
|
6899
6905
|
path: "image.png",
|
|
6900
6906
|
directory: "static/images",
|
|
@@ -14915,9 +14921,9 @@ var schemas_default = {
|
|
|
14915
14921
|
anyOf: [
|
|
14916
14922
|
{
|
|
14917
14923
|
title: "Screenshot (simple)",
|
|
14918
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
14924
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
14919
14925
|
type: "string",
|
|
14920
|
-
pattern: "([A-Za-z0-9_
|
|
14926
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
14921
14927
|
transform: [
|
|
14922
14928
|
"trim"
|
|
14923
14929
|
]
|
|
@@ -14928,9 +14934,9 @@ var schemas_default = {
|
|
|
14928
14934
|
properties: {
|
|
14929
14935
|
path: {
|
|
14930
14936
|
title: "Screenshot (simple)",
|
|
14931
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
14937
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
14932
14938
|
type: "string",
|
|
14933
|
-
pattern: "([A-Za-z0-9_
|
|
14939
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
14934
14940
|
transform: [
|
|
14935
14941
|
"trim"
|
|
14936
14942
|
]
|
|
@@ -15161,9 +15167,9 @@ var schemas_default = {
|
|
|
15161
15167
|
schemas: {
|
|
15162
15168
|
path: {
|
|
15163
15169
|
title: "Screenshot (simple)",
|
|
15164
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15170
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
15165
15171
|
type: "string",
|
|
15166
|
-
pattern: "([A-Za-z0-9_
|
|
15172
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
15167
15173
|
transform: [
|
|
15168
15174
|
"trim"
|
|
15169
15175
|
]
|
|
@@ -15174,9 +15180,9 @@ var schemas_default = {
|
|
|
15174
15180
|
properties: {
|
|
15175
15181
|
path: {
|
|
15176
15182
|
title: "Screenshot (simple)",
|
|
15177
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15183
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
15178
15184
|
type: "string",
|
|
15179
|
-
pattern: "([A-Za-z0-9_
|
|
15185
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
15180
15186
|
transform: [
|
|
15181
15187
|
"trim"
|
|
15182
15188
|
]
|
|
@@ -15558,6 +15564,12 @@ var schemas_default = {
|
|
|
15558
15564
|
"image.png",
|
|
15559
15565
|
"static/images/image.png",
|
|
15560
15566
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
15567
|
+
"https://example.com/static/images/image.png",
|
|
15568
|
+
{
|
|
15569
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
15570
|
+
maxVariation: 0.05,
|
|
15571
|
+
overwrite: "aboveVariation"
|
|
15572
|
+
},
|
|
15561
15573
|
{
|
|
15562
15574
|
path: "image.png",
|
|
15563
15575
|
directory: "static/images",
|
|
@@ -28008,9 +28020,9 @@ var schemas_default = {
|
|
|
28008
28020
|
anyOf: [
|
|
28009
28021
|
{
|
|
28010
28022
|
title: "Screenshot (simple)",
|
|
28011
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28023
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28012
28024
|
type: "string",
|
|
28013
|
-
pattern: "([A-Za-z0-9_
|
|
28025
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28014
28026
|
transform: [
|
|
28015
28027
|
"trim"
|
|
28016
28028
|
]
|
|
@@ -28021,9 +28033,9 @@ var schemas_default = {
|
|
|
28021
28033
|
properties: {
|
|
28022
28034
|
path: {
|
|
28023
28035
|
title: "Screenshot (simple)",
|
|
28024
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28036
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28025
28037
|
type: "string",
|
|
28026
|
-
pattern: "([A-Za-z0-9_
|
|
28038
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28027
28039
|
transform: [
|
|
28028
28040
|
"trim"
|
|
28029
28041
|
]
|
|
@@ -28254,9 +28266,9 @@ var schemas_default = {
|
|
|
28254
28266
|
schemas: {
|
|
28255
28267
|
path: {
|
|
28256
28268
|
title: "Screenshot (simple)",
|
|
28257
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28269
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28258
28270
|
type: "string",
|
|
28259
|
-
pattern: "([A-Za-z0-9_
|
|
28271
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28260
28272
|
transform: [
|
|
28261
28273
|
"trim"
|
|
28262
28274
|
]
|
|
@@ -28267,9 +28279,9 @@ var schemas_default = {
|
|
|
28267
28279
|
properties: {
|
|
28268
28280
|
path: {
|
|
28269
28281
|
title: "Screenshot (simple)",
|
|
28270
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28282
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28271
28283
|
type: "string",
|
|
28272
|
-
pattern: "([A-Za-z0-9_
|
|
28284
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28273
28285
|
transform: [
|
|
28274
28286
|
"trim"
|
|
28275
28287
|
]
|
|
@@ -28651,6 +28663,12 @@ var schemas_default = {
|
|
|
28651
28663
|
"image.png",
|
|
28652
28664
|
"static/images/image.png",
|
|
28653
28665
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
28666
|
+
"https://example.com/static/images/image.png",
|
|
28667
|
+
{
|
|
28668
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
28669
|
+
maxVariation: 0.05,
|
|
28670
|
+
overwrite: "aboveVariation"
|
|
28671
|
+
},
|
|
28654
28672
|
{
|
|
28655
28673
|
path: "image.png",
|
|
28656
28674
|
directory: "static/images",
|
|
@@ -36671,9 +36689,9 @@ var schemas_default = {
|
|
|
36671
36689
|
anyOf: [
|
|
36672
36690
|
{
|
|
36673
36691
|
title: "Screenshot (simple)",
|
|
36674
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36692
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36675
36693
|
type: "string",
|
|
36676
|
-
pattern: "([A-Za-z0-9_
|
|
36694
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36677
36695
|
transform: [
|
|
36678
36696
|
"trim"
|
|
36679
36697
|
]
|
|
@@ -36684,9 +36702,9 @@ var schemas_default = {
|
|
|
36684
36702
|
properties: {
|
|
36685
36703
|
path: {
|
|
36686
36704
|
title: "Screenshot (simple)",
|
|
36687
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36705
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36688
36706
|
type: "string",
|
|
36689
|
-
pattern: "([A-Za-z0-9_
|
|
36707
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36690
36708
|
transform: [
|
|
36691
36709
|
"trim"
|
|
36692
36710
|
]
|
|
@@ -36917,9 +36935,9 @@ var schemas_default = {
|
|
|
36917
36935
|
schemas: {
|
|
36918
36936
|
path: {
|
|
36919
36937
|
title: "Screenshot (simple)",
|
|
36920
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36938
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36921
36939
|
type: "string",
|
|
36922
|
-
pattern: "([A-Za-z0-9_
|
|
36940
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36923
36941
|
transform: [
|
|
36924
36942
|
"trim"
|
|
36925
36943
|
]
|
|
@@ -36930,9 +36948,9 @@ var schemas_default = {
|
|
|
36930
36948
|
properties: {
|
|
36931
36949
|
path: {
|
|
36932
36950
|
title: "Screenshot (simple)",
|
|
36933
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36951
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36934
36952
|
type: "string",
|
|
36935
|
-
pattern: "([A-Za-z0-9_
|
|
36953
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36936
36954
|
transform: [
|
|
36937
36955
|
"trim"
|
|
36938
36956
|
]
|
|
@@ -37314,6 +37332,12 @@ var schemas_default = {
|
|
|
37314
37332
|
"image.png",
|
|
37315
37333
|
"static/images/image.png",
|
|
37316
37334
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
37335
|
+
"https://example.com/static/images/image.png",
|
|
37336
|
+
{
|
|
37337
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
37338
|
+
maxVariation: 0.05,
|
|
37339
|
+
overwrite: "aboveVariation"
|
|
37340
|
+
},
|
|
37317
37341
|
{
|
|
37318
37342
|
path: "image.png",
|
|
37319
37343
|
directory: "static/images",
|
|
@@ -46028,9 +46052,9 @@ var schemas_default = {
|
|
|
46028
46052
|
anyOf: [
|
|
46029
46053
|
{
|
|
46030
46054
|
title: "Screenshot (simple)",
|
|
46031
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46055
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46032
46056
|
type: "string",
|
|
46033
|
-
pattern: "([A-Za-z0-9_
|
|
46057
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46034
46058
|
transform: [
|
|
46035
46059
|
"trim"
|
|
46036
46060
|
]
|
|
@@ -46041,9 +46065,9 @@ var schemas_default = {
|
|
|
46041
46065
|
properties: {
|
|
46042
46066
|
path: {
|
|
46043
46067
|
title: "Screenshot (simple)",
|
|
46044
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46068
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46045
46069
|
type: "string",
|
|
46046
|
-
pattern: "([A-Za-z0-9_
|
|
46070
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46047
46071
|
transform: [
|
|
46048
46072
|
"trim"
|
|
46049
46073
|
]
|
|
@@ -46274,9 +46298,9 @@ var schemas_default = {
|
|
|
46274
46298
|
schemas: {
|
|
46275
46299
|
path: {
|
|
46276
46300
|
title: "Screenshot (simple)",
|
|
46277
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46301
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46278
46302
|
type: "string",
|
|
46279
|
-
pattern: "([A-Za-z0-9_
|
|
46303
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46280
46304
|
transform: [
|
|
46281
46305
|
"trim"
|
|
46282
46306
|
]
|
|
@@ -46287,9 +46311,9 @@ var schemas_default = {
|
|
|
46287
46311
|
properties: {
|
|
46288
46312
|
path: {
|
|
46289
46313
|
title: "Screenshot (simple)",
|
|
46290
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46314
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46291
46315
|
type: "string",
|
|
46292
|
-
pattern: "([A-Za-z0-9_
|
|
46316
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46293
46317
|
transform: [
|
|
46294
46318
|
"trim"
|
|
46295
46319
|
]
|
|
@@ -46671,6 +46695,12 @@ var schemas_default = {
|
|
|
46671
46695
|
"image.png",
|
|
46672
46696
|
"static/images/image.png",
|
|
46673
46697
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
46698
|
+
"https://example.com/static/images/image.png",
|
|
46699
|
+
{
|
|
46700
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
46701
|
+
maxVariation: 0.05,
|
|
46702
|
+
overwrite: "aboveVariation"
|
|
46703
|
+
},
|
|
46674
46704
|
{
|
|
46675
46705
|
path: "image.png",
|
|
46676
46706
|
directory: "static/images",
|
|
@@ -54165,9 +54195,9 @@ var schemas_default = {
|
|
|
54165
54195
|
anyOf: [
|
|
54166
54196
|
{
|
|
54167
54197
|
title: "Screenshot (simple)",
|
|
54168
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54198
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54169
54199
|
type: "string",
|
|
54170
|
-
pattern: "([A-Za-z0-9_
|
|
54200
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54171
54201
|
transform: [
|
|
54172
54202
|
"trim"
|
|
54173
54203
|
]
|
|
@@ -54178,9 +54208,9 @@ var schemas_default = {
|
|
|
54178
54208
|
properties: {
|
|
54179
54209
|
path: {
|
|
54180
54210
|
title: "Screenshot (simple)",
|
|
54181
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54211
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54182
54212
|
type: "string",
|
|
54183
|
-
pattern: "([A-Za-z0-9_
|
|
54213
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54184
54214
|
transform: [
|
|
54185
54215
|
"trim"
|
|
54186
54216
|
]
|
|
@@ -54411,9 +54441,9 @@ var schemas_default = {
|
|
|
54411
54441
|
schemas: {
|
|
54412
54442
|
path: {
|
|
54413
54443
|
title: "Screenshot (simple)",
|
|
54414
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54444
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54415
54445
|
type: "string",
|
|
54416
|
-
pattern: "([A-Za-z0-9_
|
|
54446
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54417
54447
|
transform: [
|
|
54418
54448
|
"trim"
|
|
54419
54449
|
]
|
|
@@ -54424,9 +54454,9 @@ var schemas_default = {
|
|
|
54424
54454
|
properties: {
|
|
54425
54455
|
path: {
|
|
54426
54456
|
title: "Screenshot (simple)",
|
|
54427
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54457
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54428
54458
|
type: "string",
|
|
54429
|
-
pattern: "([A-Za-z0-9_
|
|
54459
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54430
54460
|
transform: [
|
|
54431
54461
|
"trim"
|
|
54432
54462
|
]
|
|
@@ -54808,6 +54838,12 @@ var schemas_default = {
|
|
|
54808
54838
|
"image.png",
|
|
54809
54839
|
"static/images/image.png",
|
|
54810
54840
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
54841
|
+
"https://example.com/static/images/image.png",
|
|
54842
|
+
{
|
|
54843
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
54844
|
+
maxVariation: 0.05,
|
|
54845
|
+
overwrite: "aboveVariation"
|
|
54846
|
+
},
|
|
54811
54847
|
{
|
|
54812
54848
|
path: "image.png",
|
|
54813
54849
|
directory: "static/images",
|
|
@@ -64012,9 +64048,9 @@ var schemas_default = {
|
|
|
64012
64048
|
anyOf: [
|
|
64013
64049
|
{
|
|
64014
64050
|
title: "Screenshot (simple)",
|
|
64015
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64051
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64016
64052
|
type: "string",
|
|
64017
|
-
pattern: "([A-Za-z0-9_
|
|
64053
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64018
64054
|
transform: [
|
|
64019
64055
|
"trim"
|
|
64020
64056
|
]
|
|
@@ -64025,9 +64061,9 @@ var schemas_default = {
|
|
|
64025
64061
|
properties: {
|
|
64026
64062
|
path: {
|
|
64027
64063
|
title: "Screenshot (simple)",
|
|
64028
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64064
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64029
64065
|
type: "string",
|
|
64030
|
-
pattern: "([A-Za-z0-9_
|
|
64066
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64031
64067
|
transform: [
|
|
64032
64068
|
"trim"
|
|
64033
64069
|
]
|
|
@@ -64258,9 +64294,9 @@ var schemas_default = {
|
|
|
64258
64294
|
schemas: {
|
|
64259
64295
|
path: {
|
|
64260
64296
|
title: "Screenshot (simple)",
|
|
64261
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64297
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64262
64298
|
type: "string",
|
|
64263
|
-
pattern: "([A-Za-z0-9_
|
|
64299
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64264
64300
|
transform: [
|
|
64265
64301
|
"trim"
|
|
64266
64302
|
]
|
|
@@ -64271,9 +64307,9 @@ var schemas_default = {
|
|
|
64271
64307
|
properties: {
|
|
64272
64308
|
path: {
|
|
64273
64309
|
title: "Screenshot (simple)",
|
|
64274
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64310
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64275
64311
|
type: "string",
|
|
64276
|
-
pattern: "([A-Za-z0-9_
|
|
64312
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64277
64313
|
transform: [
|
|
64278
64314
|
"trim"
|
|
64279
64315
|
]
|
|
@@ -64655,6 +64691,12 @@ var schemas_default = {
|
|
|
64655
64691
|
"image.png",
|
|
64656
64692
|
"static/images/image.png",
|
|
64657
64693
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
64694
|
+
"https://example.com/static/images/image.png",
|
|
64695
|
+
{
|
|
64696
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
64697
|
+
maxVariation: 0.05,
|
|
64698
|
+
overwrite: "aboveVariation"
|
|
64699
|
+
},
|
|
64658
64700
|
{
|
|
64659
64701
|
path: "image.png",
|
|
64660
64702
|
directory: "static/images",
|
|
@@ -72149,9 +72191,9 @@ var schemas_default = {
|
|
|
72149
72191
|
anyOf: [
|
|
72150
72192
|
{
|
|
72151
72193
|
title: "Screenshot (simple)",
|
|
72152
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72194
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72153
72195
|
type: "string",
|
|
72154
|
-
pattern: "([A-Za-z0-9_
|
|
72196
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72155
72197
|
transform: [
|
|
72156
72198
|
"trim"
|
|
72157
72199
|
]
|
|
@@ -72162,9 +72204,9 @@ var schemas_default = {
|
|
|
72162
72204
|
properties: {
|
|
72163
72205
|
path: {
|
|
72164
72206
|
title: "Screenshot (simple)",
|
|
72165
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72207
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72166
72208
|
type: "string",
|
|
72167
|
-
pattern: "([A-Za-z0-9_
|
|
72209
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72168
72210
|
transform: [
|
|
72169
72211
|
"trim"
|
|
72170
72212
|
]
|
|
@@ -72395,9 +72437,9 @@ var schemas_default = {
|
|
|
72395
72437
|
schemas: {
|
|
72396
72438
|
path: {
|
|
72397
72439
|
title: "Screenshot (simple)",
|
|
72398
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72440
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72399
72441
|
type: "string",
|
|
72400
|
-
pattern: "([A-Za-z0-9_
|
|
72442
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72401
72443
|
transform: [
|
|
72402
72444
|
"trim"
|
|
72403
72445
|
]
|
|
@@ -72408,9 +72450,9 @@ var schemas_default = {
|
|
|
72408
72450
|
properties: {
|
|
72409
72451
|
path: {
|
|
72410
72452
|
title: "Screenshot (simple)",
|
|
72411
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72453
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72412
72454
|
type: "string",
|
|
72413
|
-
pattern: "([A-Za-z0-9_
|
|
72455
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72414
72456
|
transform: [
|
|
72415
72457
|
"trim"
|
|
72416
72458
|
]
|
|
@@ -72792,6 +72834,12 @@ var schemas_default = {
|
|
|
72792
72834
|
"image.png",
|
|
72793
72835
|
"static/images/image.png",
|
|
72794
72836
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
72837
|
+
"https://example.com/static/images/image.png",
|
|
72838
|
+
{
|
|
72839
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
72840
|
+
maxVariation: 0.05,
|
|
72841
|
+
overwrite: "aboveVariation"
|
|
72842
|
+
},
|
|
72795
72843
|
{
|
|
72796
72844
|
path: "image.png",
|
|
72797
72845
|
directory: "static/images",
|
|
@@ -76476,9 +76524,9 @@ var schemas_default = {
|
|
|
76476
76524
|
anyOf: [
|
|
76477
76525
|
{
|
|
76478
76526
|
title: "Screenshot (simple)",
|
|
76479
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76527
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76480
76528
|
type: "string",
|
|
76481
|
-
pattern: "([A-Za-z0-9_
|
|
76529
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76482
76530
|
transform: [
|
|
76483
76531
|
"trim"
|
|
76484
76532
|
]
|
|
@@ -76489,9 +76537,9 @@ var schemas_default = {
|
|
|
76489
76537
|
properties: {
|
|
76490
76538
|
path: {
|
|
76491
76539
|
title: "Screenshot (simple)",
|
|
76492
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76540
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76493
76541
|
type: "string",
|
|
76494
|
-
pattern: "([A-Za-z0-9_
|
|
76542
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76495
76543
|
transform: [
|
|
76496
76544
|
"trim"
|
|
76497
76545
|
]
|
|
@@ -76722,9 +76770,9 @@ var schemas_default = {
|
|
|
76722
76770
|
schemas: {
|
|
76723
76771
|
path: {
|
|
76724
76772
|
title: "Screenshot (simple)",
|
|
76725
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76773
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76726
76774
|
type: "string",
|
|
76727
|
-
pattern: "([A-Za-z0-9_
|
|
76775
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76728
76776
|
transform: [
|
|
76729
76777
|
"trim"
|
|
76730
76778
|
]
|
|
@@ -76735,9 +76783,9 @@ var schemas_default = {
|
|
|
76735
76783
|
properties: {
|
|
76736
76784
|
path: {
|
|
76737
76785
|
title: "Screenshot (simple)",
|
|
76738
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76786
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76739
76787
|
type: "string",
|
|
76740
|
-
pattern: "([A-Za-z0-9_
|
|
76788
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76741
76789
|
transform: [
|
|
76742
76790
|
"trim"
|
|
76743
76791
|
]
|
|
@@ -77119,6 +77167,12 @@ var schemas_default = {
|
|
|
77119
77167
|
"image.png",
|
|
77120
77168
|
"static/images/image.png",
|
|
77121
77169
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
77170
|
+
"https://example.com/static/images/image.png",
|
|
77171
|
+
{
|
|
77172
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
77173
|
+
maxVariation: 0.05,
|
|
77174
|
+
overwrite: "aboveVariation"
|
|
77175
|
+
},
|
|
77122
77176
|
{
|
|
77123
77177
|
path: "image.png",
|
|
77124
77178
|
directory: "static/images",
|
|
@@ -83378,9 +83432,9 @@ var schemas_default = {
|
|
|
83378
83432
|
anyOf: [
|
|
83379
83433
|
{
|
|
83380
83434
|
title: "Screenshot (simple)",
|
|
83381
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83435
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83382
83436
|
type: "string",
|
|
83383
|
-
pattern: "([A-Za-z0-9_
|
|
83437
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83384
83438
|
transform: [
|
|
83385
83439
|
"trim"
|
|
83386
83440
|
]
|
|
@@ -83391,9 +83445,9 @@ var schemas_default = {
|
|
|
83391
83445
|
properties: {
|
|
83392
83446
|
path: {
|
|
83393
83447
|
title: "Screenshot (simple)",
|
|
83394
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83448
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83395
83449
|
type: "string",
|
|
83396
|
-
pattern: "([A-Za-z0-9_
|
|
83450
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83397
83451
|
transform: [
|
|
83398
83452
|
"trim"
|
|
83399
83453
|
]
|
|
@@ -83624,9 +83678,9 @@ var schemas_default = {
|
|
|
83624
83678
|
schemas: {
|
|
83625
83679
|
path: {
|
|
83626
83680
|
title: "Screenshot (simple)",
|
|
83627
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83681
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83628
83682
|
type: "string",
|
|
83629
|
-
pattern: "([A-Za-z0-9_
|
|
83683
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83630
83684
|
transform: [
|
|
83631
83685
|
"trim"
|
|
83632
83686
|
]
|
|
@@ -83637,9 +83691,9 @@ var schemas_default = {
|
|
|
83637
83691
|
properties: {
|
|
83638
83692
|
path: {
|
|
83639
83693
|
title: "Screenshot (simple)",
|
|
83640
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83694
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83641
83695
|
type: "string",
|
|
83642
|
-
pattern: "([A-Za-z0-9_
|
|
83696
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83643
83697
|
transform: [
|
|
83644
83698
|
"trim"
|
|
83645
83699
|
]
|
|
@@ -84021,6 +84075,12 @@ var schemas_default = {
|
|
|
84021
84075
|
"image.png",
|
|
84022
84076
|
"static/images/image.png",
|
|
84023
84077
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
84078
|
+
"https://example.com/static/images/image.png",
|
|
84079
|
+
{
|
|
84080
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
84081
|
+
maxVariation: 0.05,
|
|
84082
|
+
overwrite: "aboveVariation"
|
|
84083
|
+
},
|
|
84024
84084
|
{
|
|
84025
84085
|
path: "image.png",
|
|
84026
84086
|
directory: "static/images",
|
|
@@ -91515,9 +91575,9 @@ var schemas_default = {
|
|
|
91515
91575
|
anyOf: [
|
|
91516
91576
|
{
|
|
91517
91577
|
title: "Screenshot (simple)",
|
|
91518
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
91578
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91519
91579
|
type: "string",
|
|
91520
|
-
pattern: "([A-Za-z0-9_
|
|
91580
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91521
91581
|
transform: [
|
|
91522
91582
|
"trim"
|
|
91523
91583
|
]
|
|
@@ -91528,9 +91588,9 @@ var schemas_default = {
|
|
|
91528
91588
|
properties: {
|
|
91529
91589
|
path: {
|
|
91530
91590
|
title: "Screenshot (simple)",
|
|
91531
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
91591
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91532
91592
|
type: "string",
|
|
91533
|
-
pattern: "([A-Za-z0-9_
|
|
91593
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91534
91594
|
transform: [
|
|
91535
91595
|
"trim"
|
|
91536
91596
|
]
|
|
@@ -91761,9 +91821,9 @@ var schemas_default = {
|
|
|
91761
91821
|
schemas: {
|
|
91762
91822
|
path: {
|
|
91763
91823
|
title: "Screenshot (simple)",
|
|
91764
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
91824
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91765
91825
|
type: "string",
|
|
91766
|
-
pattern: "([A-Za-z0-9_
|
|
91826
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91767
91827
|
transform: [
|
|
91768
91828
|
"trim"
|
|
91769
91829
|
]
|
|
@@ -91774,9 +91834,9 @@ var schemas_default = {
|
|
|
91774
91834
|
properties: {
|
|
91775
91835
|
path: {
|
|
91776
91836
|
title: "Screenshot (simple)",
|
|
91777
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
91837
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91778
91838
|
type: "string",
|
|
91779
|
-
pattern: "([A-Za-z0-9_
|
|
91839
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91780
91840
|
transform: [
|
|
91781
91841
|
"trim"
|
|
91782
91842
|
]
|
|
@@ -92158,6 +92218,12 @@ var schemas_default = {
|
|
|
92158
92218
|
"image.png",
|
|
92159
92219
|
"static/images/image.png",
|
|
92160
92220
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
92221
|
+
"https://example.com/static/images/image.png",
|
|
92222
|
+
{
|
|
92223
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
92224
|
+
maxVariation: 0.05,
|
|
92225
|
+
overwrite: "aboveVariation"
|
|
92226
|
+
},
|
|
92161
92227
|
{
|
|
92162
92228
|
path: "image.png",
|
|
92163
92229
|
directory: "static/images",
|
|
@@ -99932,9 +99998,9 @@ var schemas_default = {
|
|
|
99932
99998
|
anyOf: [
|
|
99933
99999
|
{
|
|
99934
100000
|
title: "Screenshot (simple)",
|
|
99935
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100001
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
99936
100002
|
type: "string",
|
|
99937
|
-
pattern: "([A-Za-z0-9_
|
|
100003
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
99938
100004
|
transform: [
|
|
99939
100005
|
"trim"
|
|
99940
100006
|
]
|
|
@@ -99945,9 +100011,9 @@ var schemas_default = {
|
|
|
99945
100011
|
properties: {
|
|
99946
100012
|
path: {
|
|
99947
100013
|
title: "Screenshot (simple)",
|
|
99948
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100014
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
99949
100015
|
type: "string",
|
|
99950
|
-
pattern: "([A-Za-z0-9_
|
|
100016
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
99951
100017
|
transform: [
|
|
99952
100018
|
"trim"
|
|
99953
100019
|
]
|
|
@@ -100178,9 +100244,9 @@ var schemas_default = {
|
|
|
100178
100244
|
schemas: {
|
|
100179
100245
|
path: {
|
|
100180
100246
|
title: "Screenshot (simple)",
|
|
100181
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100247
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
100182
100248
|
type: "string",
|
|
100183
|
-
pattern: "([A-Za-z0-9_
|
|
100249
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
100184
100250
|
transform: [
|
|
100185
100251
|
"trim"
|
|
100186
100252
|
]
|
|
@@ -100191,9 +100257,9 @@ var schemas_default = {
|
|
|
100191
100257
|
properties: {
|
|
100192
100258
|
path: {
|
|
100193
100259
|
title: "Screenshot (simple)",
|
|
100194
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100260
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
100195
100261
|
type: "string",
|
|
100196
|
-
pattern: "([A-Za-z0-9_
|
|
100262
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
100197
100263
|
transform: [
|
|
100198
100264
|
"trim"
|
|
100199
100265
|
]
|
|
@@ -100575,6 +100641,12 @@ var schemas_default = {
|
|
|
100575
100641
|
"image.png",
|
|
100576
100642
|
"static/images/image.png",
|
|
100577
100643
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
100644
|
+
"https://example.com/static/images/image.png",
|
|
100645
|
+
{
|
|
100646
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
100647
|
+
maxVariation: 0.05,
|
|
100648
|
+
overwrite: "aboveVariation"
|
|
100649
|
+
},
|
|
100578
100650
|
{
|
|
100579
100651
|
path: "image.png",
|
|
100580
100652
|
directory: "static/images",
|
|
@@ -108422,9 +108494,9 @@ var schemas_default = {
|
|
|
108422
108494
|
anyOf: [
|
|
108423
108495
|
{
|
|
108424
108496
|
title: "Screenshot (simple)",
|
|
108425
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
108497
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108426
108498
|
type: "string",
|
|
108427
|
-
pattern: "([A-Za-z0-9_
|
|
108499
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108428
108500
|
transform: [
|
|
108429
108501
|
"trim"
|
|
108430
108502
|
]
|
|
@@ -108435,9 +108507,9 @@ var schemas_default = {
|
|
|
108435
108507
|
properties: {
|
|
108436
108508
|
path: {
|
|
108437
108509
|
title: "Screenshot (simple)",
|
|
108438
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
108510
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108439
108511
|
type: "string",
|
|
108440
|
-
pattern: "([A-Za-z0-9_
|
|
108512
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108441
108513
|
transform: [
|
|
108442
108514
|
"trim"
|
|
108443
108515
|
]
|
|
@@ -108668,9 +108740,9 @@ var schemas_default = {
|
|
|
108668
108740
|
schemas: {
|
|
108669
108741
|
path: {
|
|
108670
108742
|
title: "Screenshot (simple)",
|
|
108671
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
108743
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108672
108744
|
type: "string",
|
|
108673
|
-
pattern: "([A-Za-z0-9_
|
|
108745
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108674
108746
|
transform: [
|
|
108675
108747
|
"trim"
|
|
108676
108748
|
]
|
|
@@ -108681,9 +108753,9 @@ var schemas_default = {
|
|
|
108681
108753
|
properties: {
|
|
108682
108754
|
path: {
|
|
108683
108755
|
title: "Screenshot (simple)",
|
|
108684
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
108756
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108685
108757
|
type: "string",
|
|
108686
|
-
pattern: "([A-Za-z0-9_
|
|
108758
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108687
108759
|
transform: [
|
|
108688
108760
|
"trim"
|
|
108689
108761
|
]
|
|
@@ -109065,6 +109137,12 @@ var schemas_default = {
|
|
|
109065
109137
|
"image.png",
|
|
109066
109138
|
"static/images/image.png",
|
|
109067
109139
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
109140
|
+
"https://example.com/static/images/image.png",
|
|
109141
|
+
{
|
|
109142
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
109143
|
+
maxVariation: 0.05,
|
|
109144
|
+
overwrite: "aboveVariation"
|
|
109145
|
+
},
|
|
109068
109146
|
{
|
|
109069
109147
|
path: "image.png",
|
|
109070
109148
|
directory: "static/images",
|
|
@@ -116559,9 +116637,9 @@ var schemas_default = {
|
|
|
116559
116637
|
anyOf: [
|
|
116560
116638
|
{
|
|
116561
116639
|
title: "Screenshot (simple)",
|
|
116562
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
116640
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116563
116641
|
type: "string",
|
|
116564
|
-
pattern: "([A-Za-z0-9_
|
|
116642
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116565
116643
|
transform: [
|
|
116566
116644
|
"trim"
|
|
116567
116645
|
]
|
|
@@ -116572,9 +116650,9 @@ var schemas_default = {
|
|
|
116572
116650
|
properties: {
|
|
116573
116651
|
path: {
|
|
116574
116652
|
title: "Screenshot (simple)",
|
|
116575
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
116653
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116576
116654
|
type: "string",
|
|
116577
|
-
pattern: "([A-Za-z0-9_
|
|
116655
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116578
116656
|
transform: [
|
|
116579
116657
|
"trim"
|
|
116580
116658
|
]
|
|
@@ -116805,9 +116883,9 @@ var schemas_default = {
|
|
|
116805
116883
|
schemas: {
|
|
116806
116884
|
path: {
|
|
116807
116885
|
title: "Screenshot (simple)",
|
|
116808
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
116886
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116809
116887
|
type: "string",
|
|
116810
|
-
pattern: "([A-Za-z0-9_
|
|
116888
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116811
116889
|
transform: [
|
|
116812
116890
|
"trim"
|
|
116813
116891
|
]
|
|
@@ -116818,9 +116896,9 @@ var schemas_default = {
|
|
|
116818
116896
|
properties: {
|
|
116819
116897
|
path: {
|
|
116820
116898
|
title: "Screenshot (simple)",
|
|
116821
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
116899
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116822
116900
|
type: "string",
|
|
116823
|
-
pattern: "([A-Za-z0-9_
|
|
116901
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116824
116902
|
transform: [
|
|
116825
116903
|
"trim"
|
|
116826
116904
|
]
|
|
@@ -117202,6 +117280,12 @@ var schemas_default = {
|
|
|
117202
117280
|
"image.png",
|
|
117203
117281
|
"static/images/image.png",
|
|
117204
117282
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
117283
|
+
"https://example.com/static/images/image.png",
|
|
117284
|
+
{
|
|
117285
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
117286
|
+
maxVariation: 0.05,
|
|
117287
|
+
overwrite: "aboveVariation"
|
|
117288
|
+
},
|
|
117205
117289
|
{
|
|
117206
117290
|
path: "image.png",
|
|
117207
117291
|
directory: "static/images",
|