doc-detective-common 3.1.2-dev.3 → 3.2.0-dev.1
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/schemas/config_v3.schema.json +632 -28
- package/dist/schemas/dragAndDrop_v3.schema.json +224 -0
- package/dist/schemas/loadCookie_v3.schema.json +5 -2
- package/dist/schemas/report_v3.schema.json +632 -28
- package/dist/schemas/resolvedTests_v3.schema.json +1274 -66
- package/dist/schemas/saveCookie_v3.schema.json +6 -12
- package/dist/schemas/spec_v3.schema.json +632 -28
- package/dist/schemas/step_v3.schema.json +316 -14
- package/dist/schemas/test_v3.schema.json +632 -28
- package/package.json +3 -3
- package/src/schemas/build/dragAndDrop_v3.schema.json +121 -0
- package/src/schemas/build/loadCookie_v3.schema.json +5 -1
- package/src/schemas/build/saveCookie_v3.schema.json +6 -6
- package/src/schemas/build/step_v3.schema.json +29 -0
- package/src/schemas/dereferenceSchemas.js +1 -0
- package/src/schemas/output_schemas/config_v3.schema.json +632 -28
- package/src/schemas/output_schemas/dragAndDrop_v3.schema.json +224 -0
- package/src/schemas/output_schemas/loadCookie_v3.schema.json +5 -2
- package/src/schemas/output_schemas/report_v3.schema.json +632 -28
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +1274 -66
- package/src/schemas/output_schemas/saveCookie_v3.schema.json +6 -12
- package/src/schemas/output_schemas/spec_v3.schema.json +632 -28
- package/src/schemas/output_schemas/step_v3.schema.json +316 -14
- package/src/schemas/output_schemas/test_v3.schema.json +632 -28
- package/src/schemas/schemas.json +4688 -541
- package/src/schemas/src_schemas/dragAndDrop_v3.schema.json +117 -0
- package/src/schemas/src_schemas/loadCookie_v3.schema.json +5 -1
- package/src/schemas/src_schemas/saveCookie_v3.schema.json +6 -4
- package/src/schemas/src_schemas/step_v3.schema.json +27 -0
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"type": "string",
|
|
44
44
|
"title": "Cookie file path",
|
|
45
45
|
"description": "File path to save the cookie, relative to directory. Uses Netscape cookie format.",
|
|
46
|
-
"pattern": "^(?:[A-Za-z0-9_.-]+\\.(?:txt|cookies)|\\$[A-Za-z_][A-Za-z0-9_]*)$",
|
|
47
46
|
"transform": [
|
|
48
47
|
"trim"
|
|
49
48
|
]
|
|
@@ -100,11 +99,6 @@
|
|
|
100
99
|
"required": [
|
|
101
100
|
"directory"
|
|
102
101
|
]
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"required": [
|
|
106
|
-
"overwrite"
|
|
107
|
-
]
|
|
108
102
|
}
|
|
109
103
|
]
|
|
110
104
|
}
|
|
@@ -155,7 +149,6 @@
|
|
|
155
149
|
"type": "string",
|
|
156
150
|
"title": "Cookie file path",
|
|
157
151
|
"description": "File path to save the cookie, relative to directory. Uses Netscape cookie format.",
|
|
158
|
-
"pattern": "^(?:[A-Za-z0-9_.-]+\\.(?:txt|cookies)|\\$[A-Za-z_][A-Za-z0-9_]*)$",
|
|
159
152
|
"transform": [
|
|
160
153
|
"trim"
|
|
161
154
|
]
|
|
@@ -212,11 +205,6 @@
|
|
|
212
205
|
"required": [
|
|
213
206
|
"directory"
|
|
214
207
|
]
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"required": [
|
|
218
|
-
"overwrite"
|
|
219
|
-
]
|
|
220
208
|
}
|
|
221
209
|
]
|
|
222
210
|
}
|
|
@@ -228,6 +216,7 @@
|
|
|
228
216
|
},
|
|
229
217
|
"examples": [
|
|
230
218
|
"session_token",
|
|
219
|
+
"test_env_cookie",
|
|
231
220
|
{
|
|
232
221
|
"name": "auth_cookie",
|
|
233
222
|
"path": "auth-cookie.txt"
|
|
@@ -236,6 +225,11 @@
|
|
|
236
225
|
"name": "session_token",
|
|
237
226
|
"variable": "SESSION_TOKEN"
|
|
238
227
|
},
|
|
228
|
+
{
|
|
229
|
+
"name": "test_cookie",
|
|
230
|
+
"path": "test-cookie.txt",
|
|
231
|
+
"overwrite": true
|
|
232
|
+
},
|
|
239
233
|
{
|
|
240
234
|
"name": "user_session",
|
|
241
235
|
"path": "user-session.txt",
|