@wp-playground/blueprints 0.5.1 → 0.5.3
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/blueprint-schema.json +5 -0
- package/index.cjs +453 -112
- package/index.d.ts +15 -1
- package/index.js +2308 -1910
- package/lib/steps/define-wp-config-consts.d.ts +18 -1
- package/lib/steps/index.d.ts +1 -1
- package/lib/utils/flatten-directory.d.ts +12 -0
- package/lib/utils/run-php-with-zip-functions.d.ts +2 -0
- package/lib/utils/update-file.d.ts +12 -0
- package/lib/utils/wp-content-files-excluded-from-exports.d.ts +6 -0
- package/lib/utils/zip-name-to-human-name.d.ts +9 -0
- package/package.json +3 -3
- package/lib/steps/common.d.ts +0 -13
package/index.cjs
CHANGED
|
@@ -1,109 +1,362 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var hn=(t,e,r)=>{if(!e.has(t))throw TypeError("Cannot "+r)};var H=(t,e,r)=>(hn(t,e,"read from private field"),r?r.call(t):e.get(t)),ee=(t,e,r)=>{if(e.has(t))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(t):e.set(t,r)},pe=(t,e,r,n)=>(hn(t,e,"write to private field"),n?n.call(t,r):e.set(t,r),r);var _e=(t,e,r)=>(hn(t,e,"access private method"),r);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});if(typeof File>"u"){class t extends Blob{constructor(r,n,s){super(r);let i;s!=null&&s.lastModified&&(i=new Date),(!i||isNaN(i.getFullYear()))&&(i=new Date),this.lastModifiedDate=i,this.lastModified=i.getMilliseconds(),this.name=n||""}}global.File=t}function pi(t){return new Promise(function(e,r){t.onload=t.onerror=function(n){t.onload=t.onerror=null,n.type==="load"?e(t.result):r(new Error("Failed to read the blob/file"))}})}typeof Blob.prototype.arrayBuffer>"u"&&(Blob.prototype.arrayBuffer=function(){const e=new FileReader;return e.readAsArrayBuffer(this),pi(e)});typeof Blob.prototype.text>"u"&&(Blob.prototype.text=function(){const e=new FileReader;return e.readAsText(this),pi(e)});function Xo(){const t=new Uint8Array([1,2,3,4]),r=new File([t],"test").stream();try{return r.getReader({mode:"byob"}),r.getReader({mode:"byob"}),!0}catch{return!1}}(typeof Blob.prototype.stream>"u"||!Xo())&&(Blob.prototype.stream=function(){let t=0;const e=this;return new ReadableStream({type:"bytes",autoAllocateChunkSize:512*1024,async pull(r){const n=r.byobRequest.view,i=await e.slice(t,t+n.byteLength).arrayBuffer(),a=new Uint8Array(i);new Uint8Array(n.buffer).set(a);const l=a.byteLength;r.byobRequest.respond(l),t+=l,t>=e.size&&r.close()}})});if(typeof CustomEvent>"u"){class t extends Event{constructor(r,n={}){super(r,n),this.detail=n.detail}initCustomEvent(){}}globalThis.CustomEvent=t}const On=["db.php","plugins/akismet","plugins/hello.php","plugins/wordpress-importer","plugins/sqlite-database-integration","mu-plugins/playground-includes","mu-plugins/export-wxz.php","mu-plugins/0-playground.php","themes/twentytwenty","themes/twentytwentyone","themes/twentytwentytwo","themes/twentytwentythree","themes/twentytwentyfour","themes/twentytwentyfive","themes/twentytwentysix"],Cn=async(t,{pluginPath:e,pluginName:r},n)=>{n==null||n.tracker.setCaption(`Activating ${r||e}`);const s=[`${await t.documentRoot}/wp-load.php`,`${await t.documentRoot}/wp-admin/includes/plugin.php`];if(!s.every(l=>t.fileExists(l)))throw new Error(`Required WordPress files do not exist: ${s.join(", ")}`);if((await t.run({code:`<?php
|
|
2
|
+
define( 'WP_ADMIN', true );
|
|
3
|
+
${s.map(l=>`require_once( '${l}' );`).join(`
|
|
4
|
+
`)}
|
|
5
|
+
$plugin_path = '${e}';
|
|
6
|
+
if (!is_dir($plugin_path)) {
|
|
7
|
+
activate_plugin($plugin_path);
|
|
8
|
+
return;
|
|
9
|
+
}
|
|
10
|
+
// Find plugin entry file
|
|
11
|
+
foreach ( ( glob( $plugin_path . '/*.php' ) ?: array() ) as $file ) {
|
|
12
|
+
$info = get_plugin_data( $file, false, false );
|
|
13
|
+
if ( ! empty( $info['Name'] ) ) {
|
|
14
|
+
activate_plugin( $file );
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
echo 'NO_ENTRY_FILE';
|
|
19
|
+
`})).text.endsWith("NO_ENTRY_FILE"))throw new Error("Could not find plugin entry file.")},Nn=async(t,{themeFolderName:e},r)=>{r==null||r.tracker.setCaption(`Activating ${e}`);const n=`${await t.documentRoot}/wp-load.php`;if(!t.fileExists(n))throw new Error(`Required WordPress file does not exist: ${n}`);await t.run({code:`<?php
|
|
20
|
+
define( 'WP_ADMIN', true );
|
|
21
|
+
require_once( '${n}' );
|
|
22
|
+
switch_theme( '${e}' );
|
|
23
|
+
`})};class jn{constructor({concurrency:e}){this._running=0,this.concurrency=e,this.queue=[]}get running(){return this._running}async acquire(){for(;;)if(this._running>=this.concurrency)await new Promise(e=>this.queue.push(e));else{this._running++;let e=!1;return()=>{e||(e=!0,this._running--,this.queue.length>0&&this.queue.shift()())}}}async run(e){const r=await this.acquire();try{return await e()}finally{r()}}}function ye(...t){let e=t.join("/");const r=e[0]==="/",n=e.substring(e.length-1)==="/";return e=fi(e),!e&&!r&&(e="."),e&&n&&(e+="/"),e}function ea(t){if(t==="/")return"/";t=fi(t);const e=t.lastIndexOf("/");return e===-1?"":e===0?"/":t.substr(0,e)}function fi(t){const e=t[0]==="/";return t=ta(t.split("/").filter(r=>!!r),!e).join("/"),(e?"/":"")+t.replace(/\/$/,"")}function ta(t,e){let r=0;for(let n=t.length-1;n>=0;n--){const s=t[n];s==="."?t.splice(n,1):s===".."?(t.splice(n,1),r++):r&&(t.splice(n,1),r--)}if(e)for(;r;r--)t.unshift("..");return t}function hr(t){return`json_decode(base64_decode('${ra(JSON.stringify(t))}'), true)`}function on(t){const e={};for(const r in t)e[r]=hr(t[r]);return e}function ra(t){return na(new TextEncoder().encode(t))}function na(t){const e=String.fromCodePoint(...t);return btoa(e)}const sa=`<?php
|
|
2
24
|
|
|
3
|
-
|
|
25
|
+
/**
|
|
26
|
+
* Rewrites the wp-config.php file to ensure specific constants are defined
|
|
27
|
+
* with specific values.
|
|
28
|
+
*
|
|
29
|
+
* Example:
|
|
30
|
+
*
|
|
31
|
+
* \`\`\`php
|
|
32
|
+
* <?php
|
|
33
|
+
* define('WP_DEBUG', true);
|
|
34
|
+
* // The third define() argument is also supported:
|
|
35
|
+
* define('SAVEQUERIES', false, true);
|
|
36
|
+
*
|
|
37
|
+
* // Expression
|
|
38
|
+
* define(true ? 'WP_DEBUG_LOG' : 'WP_DEBUG_LOG', 123);
|
|
39
|
+
*
|
|
40
|
+
* // Guarded expressions shouldn't be wrapped twice
|
|
41
|
+
* if(!defined(1 ? 'A' : 'B')) {
|
|
42
|
+
* define(1 ? 'A' : 'B', 0);
|
|
43
|
+
* }
|
|
44
|
+
*
|
|
45
|
+
* // More advanced expression
|
|
46
|
+
* define((function() use($x) {
|
|
47
|
+
* return [$x, 'a'];
|
|
48
|
+
* })(), 123);
|
|
49
|
+
* \`\`\`
|
|
50
|
+
*
|
|
51
|
+
* Rewritten with
|
|
52
|
+
*
|
|
53
|
+
* $constants = [
|
|
54
|
+
* 'WP_DEBUG' => false,
|
|
55
|
+
* 'WP_DEBUG_LOG' => true,
|
|
56
|
+
* 'SAVEQUERIES' => true,
|
|
57
|
+
* 'NEW_CONSTANT' => "new constant",
|
|
58
|
+
* ];
|
|
59
|
+
*
|
|
60
|
+
* \`\`\`php
|
|
61
|
+
* <?php
|
|
62
|
+
* define('WP_DEBUG_LOG',true);
|
|
63
|
+
* define('NEW_CONSTANT','new constant');
|
|
64
|
+
* ?><?php
|
|
65
|
+
* define('WP_DEBUG',false);
|
|
66
|
+
* // The third define() argument is also supported:
|
|
67
|
+
* define('SAVEQUERIES',true, true);
|
|
68
|
+
*
|
|
69
|
+
* // Expression
|
|
70
|
+
* if(!defined($const ? 'WP_DEBUG_LOG' : 'WP_DEBUG_LOG')) {
|
|
71
|
+
* define($const ? 'WP_DEBUG_LOG' : 'WP_DEBUG_LOG', 123);
|
|
72
|
+
* }
|
|
73
|
+
*
|
|
74
|
+
* // Guarded expressions shouldn't be wrapped twice
|
|
75
|
+
* if(!defined(1 ? 'A' : 'B')) {
|
|
76
|
+
* define(1 ? 'A' : 'B', 0);
|
|
77
|
+
* }
|
|
78
|
+
*
|
|
79
|
+
* // More advanced expression
|
|
80
|
+
* if(!defined((function() use($x) {
|
|
81
|
+
* return [$x, 'a'];
|
|
82
|
+
* })())) {
|
|
83
|
+
* define((function() use($x) {
|
|
84
|
+
* return [$x, 'a'];
|
|
85
|
+
* })(), 123);
|
|
86
|
+
* }
|
|
87
|
+
* \`\`\`
|
|
88
|
+
*
|
|
89
|
+
* @param mixed $content
|
|
90
|
+
* @return string
|
|
91
|
+
*/
|
|
92
|
+
function rewrite_wp_config_to_define_constants($content, $constants = [])
|
|
4
93
|
{
|
|
5
|
-
$
|
|
6
|
-
$
|
|
7
|
-
$
|
|
8
|
-
|
|
94
|
+
$tokens = array_reverse(token_get_all($content));
|
|
95
|
+
$output = [];
|
|
96
|
+
$defined_expressions = [];
|
|
97
|
+
|
|
98
|
+
// Look through all the tokens and find the define calls
|
|
99
|
+
do {
|
|
100
|
+
$buffer = [];
|
|
101
|
+
$name_buffer = [];
|
|
102
|
+
$value_buffer = [];
|
|
103
|
+
$third_arg_buffer = [];
|
|
104
|
+
|
|
105
|
+
// Capture everything until the define call into output.
|
|
106
|
+
// Capturing the define call into a buffer.
|
|
107
|
+
// Example:
|
|
108
|
+
// <?php echo 'a'; define (
|
|
109
|
+
// ^^^^^^^^^^^^^^^^^^^^^^
|
|
110
|
+
// output |buffer
|
|
111
|
+
while ($token = array_pop($tokens)) {
|
|
112
|
+
if (is_array($token) && $token[0] === T_STRING && (strtolower($token[1]) === 'define' || strtolower($token[1]) === 'defined')) {
|
|
113
|
+
$buffer[] = $token;
|
|
114
|
+
break;
|
|
115
|
+
}
|
|
116
|
+
$output[] = $token;
|
|
117
|
+
}
|
|
9
118
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
$root . '/'
|
|
15
|
-
);
|
|
16
|
-
while (sizeof($directories)) {
|
|
17
|
-
$current_dir = array_pop($directories);
|
|
119
|
+
// Maybe we didn't find a define call and reached the end of the file?
|
|
120
|
+
if (!count($tokens)) {
|
|
121
|
+
break;
|
|
122
|
+
}
|
|
18
123
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
124
|
+
// Keep track of the "defined" expressions that are already accounted for
|
|
125
|
+
if($token[1] === 'defined') {
|
|
126
|
+
$output[] = $token;
|
|
127
|
+
$defined_expression = [];
|
|
128
|
+
$open_parenthesis = 0;
|
|
129
|
+
// Capture everything up to the opening parenthesis, including the parenthesis
|
|
130
|
+
// e.g. defined (
|
|
131
|
+
// ^^^^
|
|
132
|
+
while ($token = array_pop($tokens)) {
|
|
133
|
+
$output[] = $token;
|
|
134
|
+
if ($token === "(") {
|
|
135
|
+
++$open_parenthesis;
|
|
136
|
+
break;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
24
139
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
140
|
+
// Capture everything up to the closing parenthesis, including the parenthesis
|
|
141
|
+
// e.g. defined (
|
|
142
|
+
// ^^^^
|
|
143
|
+
while ($token = array_pop($tokens)) {
|
|
144
|
+
$output[] = $token;
|
|
145
|
+
if ($token === ")") {
|
|
146
|
+
--$open_parenthesis;
|
|
147
|
+
}
|
|
148
|
+
if ($open_parenthesis === 0) {
|
|
149
|
+
break;
|
|
150
|
+
}
|
|
151
|
+
$defined_expression[] = $token;
|
|
152
|
+
}
|
|
29
153
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
154
|
+
$defined_expressions[] = stringify_tokens(skip_whitespace($defined_expression));
|
|
155
|
+
continue;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Capture everything up to the opening parenthesis, including the parenthesis
|
|
159
|
+
// e.g. define (
|
|
160
|
+
// ^^^^
|
|
161
|
+
while ($token = array_pop($tokens)) {
|
|
162
|
+
$buffer[] = $token;
|
|
163
|
+
if ($token === "(") {
|
|
164
|
+
break;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// Capture the first argument – it's the first expression after the opening
|
|
169
|
+
// parenthesis and before the comma:
|
|
170
|
+
// Examples:
|
|
171
|
+
// define("WP_DEBUG", true);
|
|
172
|
+
// ^^^^^^^^^^^
|
|
173
|
+
//
|
|
174
|
+
// define(count([1,2]) > 2 ? 'WP_DEBUG' : 'FOO', true);
|
|
175
|
+
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
176
|
+
$open_parenthesis = 0;
|
|
177
|
+
while ($token = array_pop($tokens)) {
|
|
178
|
+
$buffer[] = $token;
|
|
179
|
+
if ($token === "(" || $token === "[" || $token === "{") {
|
|
180
|
+
++$open_parenthesis;
|
|
181
|
+
} elseif ($token === ")" || $token === "]" || $token === "}") {
|
|
182
|
+
--$open_parenthesis;
|
|
183
|
+
} elseif ($token === "," && $open_parenthesis === 0) {
|
|
184
|
+
break;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// Don't capture the comma as a part of the constant name
|
|
188
|
+
$name_buffer[] = $token;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// Capture everything until the closing parenthesis
|
|
192
|
+
// define("WP_DEBUG", true);
|
|
193
|
+
// ^^^^^^
|
|
194
|
+
$open_parenthesis = 0;
|
|
195
|
+
$is_second_argument = true;
|
|
196
|
+
while ($token = array_pop($tokens)) {
|
|
197
|
+
$buffer[] = $token;
|
|
198
|
+
if ($token === ")" && $open_parenthesis === 0) {
|
|
199
|
+
// Final parenthesis of the define call.
|
|
200
|
+
break;
|
|
201
|
+
} else if ($token === "(" || $token === "[" || $token === "{") {
|
|
202
|
+
++$open_parenthesis;
|
|
203
|
+
} elseif ($token === ")" || $token === "]" || $token === "}") {
|
|
204
|
+
--$open_parenthesis;
|
|
205
|
+
} elseif ($token === "," && $open_parenthesis === 0) {
|
|
206
|
+
// This define call has more than 2 arguments! The third one is the
|
|
207
|
+
// boolean value indicating $is_case_insensitive. Let's continue capturing
|
|
208
|
+
// to $third_arg_buffer.
|
|
209
|
+
$is_second_argument = false;
|
|
210
|
+
}
|
|
211
|
+
if ($is_second_argument) {
|
|
212
|
+
$value_buffer[] = $token;
|
|
213
|
+
} else {
|
|
214
|
+
$third_arg_buffer[] = $token;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// Capture until the semicolon
|
|
219
|
+
// define("WP_DEBUG", true) ;
|
|
220
|
+
// ^^^
|
|
221
|
+
while ($token = array_pop($tokens)) {
|
|
222
|
+
$buffer[] = $token;
|
|
223
|
+
if ($token === ";") {
|
|
224
|
+
break;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// Decide whether $name_buffer is a constant name or an expression
|
|
229
|
+
$name_token = null;
|
|
230
|
+
$name_token_index = $token;
|
|
231
|
+
$name_is_literal = true;
|
|
232
|
+
foreach ($name_buffer as $k => $token) {
|
|
233
|
+
if (is_array($token)) {
|
|
234
|
+
if ($token[0] === T_WHITESPACE || $token[0] === T_COMMENT || $token[0] === T_DOC_COMMENT) {
|
|
235
|
+
continue;
|
|
236
|
+
} else if ($token[0] === T_STRING || $token[0] === T_CONSTANT_ENCAPSED_STRING) {
|
|
237
|
+
$name_token = $token;
|
|
238
|
+
$name_token_index = $k;
|
|
239
|
+
} else {
|
|
240
|
+
$name_is_literal = false;
|
|
241
|
+
break;
|
|
36
242
|
}
|
|
37
|
-
|
|
243
|
+
} else if ($token !== "(" && $token !== ")") {
|
|
244
|
+
$name_is_literal = false;
|
|
245
|
+
break;
|
|
38
246
|
}
|
|
39
247
|
}
|
|
40
|
-
|
|
41
|
-
|
|
248
|
+
|
|
249
|
+
// We can't handle expressions as constant names. Let's wrap that define
|
|
250
|
+
// call in an if(!defined()) statement, just in case it collides with
|
|
251
|
+
// a constant name.
|
|
252
|
+
if (!$name_is_literal) {
|
|
253
|
+
// Ensure the defined expression is not already accounted for
|
|
254
|
+
foreach ($defined_expressions as $defined_expression) {
|
|
255
|
+
if ($defined_expression === stringify_tokens(skip_whitespace($name_buffer))) {
|
|
256
|
+
$output = array_merge($output, $buffer);
|
|
257
|
+
continue 2;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
$output = array_merge(
|
|
261
|
+
$output,
|
|
262
|
+
["if(!defined("],
|
|
263
|
+
$name_buffer,
|
|
264
|
+
[")) {\\n "],
|
|
265
|
+
['define('],
|
|
266
|
+
$name_buffer,
|
|
267
|
+
[','],
|
|
268
|
+
$value_buffer,
|
|
269
|
+
$third_arg_buffer,
|
|
270
|
+
[");"],
|
|
271
|
+
["\\n}\\n"]
|
|
272
|
+
);
|
|
273
|
+
continue;
|
|
42
274
|
}
|
|
43
|
-
$zip->close();
|
|
44
|
-
chmod($output, 0777);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
275
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
276
|
+
// Yay, we have a literal constant name in the buffer now. Let's
|
|
277
|
+
// get its value:
|
|
278
|
+
$name = eval('return ' . $name_token[1] . ';');
|
|
51
279
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
280
|
+
// If the constant name is not in the list of constants we're looking,
|
|
281
|
+
// we can ignore it.
|
|
282
|
+
if (!array_key_exists($name, $constants)) {
|
|
283
|
+
$output = array_merge($output, $buffer);
|
|
284
|
+
continue;
|
|
55
285
|
}
|
|
286
|
+
|
|
287
|
+
// We now have a define() call that defines a constant we're looking for.
|
|
288
|
+
// Let's rewrite its value to the one
|
|
289
|
+
$output = array_merge(
|
|
290
|
+
$output,
|
|
291
|
+
['define('],
|
|
292
|
+
$name_buffer,
|
|
293
|
+
[','],
|
|
294
|
+
[var_export($constants[$name], true)],
|
|
295
|
+
$third_arg_buffer,
|
|
296
|
+
[");"],
|
|
297
|
+
);
|
|
298
|
+
|
|
299
|
+
// Remove the constant from the list so we can process any remaining
|
|
300
|
+
// constants later.
|
|
301
|
+
unset($constants[$name]);
|
|
302
|
+
} while (count($tokens));
|
|
303
|
+
|
|
304
|
+
// Add any constants that weren't found in the file
|
|
305
|
+
if (count($constants)) {
|
|
306
|
+
$prepend = [
|
|
307
|
+
"<?php \\n"
|
|
308
|
+
];
|
|
309
|
+
foreach ($constants as $name => $value) {
|
|
310
|
+
$prepend = array_merge(
|
|
311
|
+
$prepend,
|
|
312
|
+
[
|
|
313
|
+
"define(",
|
|
314
|
+
var_export($name, true),
|
|
315
|
+
',',
|
|
316
|
+
var_export($value, true),
|
|
317
|
+
");\\n",
|
|
318
|
+
],
|
|
319
|
+
);
|
|
320
|
+
}
|
|
321
|
+
$prepend[] = "?>";
|
|
322
|
+
$output = array_merge(
|
|
323
|
+
$prepend,
|
|
324
|
+
$output,
|
|
325
|
+
);
|
|
56
326
|
}
|
|
57
327
|
|
|
58
|
-
|
|
328
|
+
// Translate the output tokens back into a string
|
|
329
|
+
return stringify_tokens($output);
|
|
59
330
|
}
|
|
60
331
|
|
|
61
|
-
function
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
$zip->extractTo($extractTo);
|
|
70
|
-
$zip->close();
|
|
71
|
-
chmod($extractTo, 0777);
|
|
332
|
+
function stringify_tokens($tokens) {
|
|
333
|
+
$output = '';
|
|
334
|
+
foreach ($tokens as $token) {
|
|
335
|
+
if (is_array($token)) {
|
|
336
|
+
$output .= $token[1];
|
|
337
|
+
} else {
|
|
338
|
+
$output .= $token;
|
|
339
|
+
}
|
|
72
340
|
}
|
|
341
|
+
return $output;
|
|
73
342
|
}
|
|
74
343
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
{
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
344
|
+
function skip_whitespace($tokens) {
|
|
345
|
+
$output = [];
|
|
346
|
+
foreach ($tokens as $token) {
|
|
347
|
+
if (is_array($token) && ($token[0] === T_WHITESPACE || $token[0] === T_COMMENT || $token[0] === T_DOC_COMMENT)) {
|
|
348
|
+
continue;
|
|
349
|
+
}
|
|
350
|
+
$output[] = $token;
|
|
81
351
|
}
|
|
82
|
-
return
|
|
352
|
+
return $output;
|
|
83
353
|
}
|
|
84
|
-
`,
|
|
85
|
-
|
|
86
|
-
$
|
|
87
|
-
|
|
88
|
-
$
|
|
89
|
-
|
|
90
|
-
activate_plugin($plugin_path);
|
|
91
|
-
return;
|
|
92
|
-
}
|
|
93
|
-
// Find plugin entry file
|
|
94
|
-
foreach ( ( glob( $plugin_path . '/*.php' ) ?: array() ) as $file ) {
|
|
95
|
-
$info = get_plugin_data( $file, false, false );
|
|
96
|
-
if ( ! empty( $info['Name'] ) ) {
|
|
97
|
-
activate_plugin( $file );
|
|
98
|
-
return;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
echo 'NO_ENTRY_FILE';
|
|
102
|
-
`})).text.endsWith("NO_ENTRY_FILE"))throw new Error("Could not find plugin entry file.")},Nn=async(t,{themeFolderName:e},r)=>{r==null||r.tracker.setCaption(`Activating ${e}`);const n=`${await t.documentRoot}/wp-load.php`;if(!t.fileExists(n))throw new Error(`Required WordPress file does not exist: ${n}`);await t.run({code:`<?php
|
|
103
|
-
define( 'WP_ADMIN', true );
|
|
104
|
-
require_once( '${n}' );
|
|
105
|
-
switch_theme( '${e}' );
|
|
106
|
-
`})},qt=async(t,{consts:e})=>{for(const r in e)await t.defineConstant(r,e[r])},ta=`<?php
|
|
354
|
+
`,qt=async(t,{consts:e,method:r="rewrite-wp-config"})=>{switch(r){case"define-before-run":await ia(t,e);break;case"rewrite-wp-config":{const n=await t.documentRoot,s=ye(n,"/wp-config.php"),i=await t.readFileAsText(s),a=await oa(t,i,e);await t.writeFile(s,a);break}default:throw new Error(`Invalid method: ${r}`)}};async function ia(t,e){for(const r in e)await t.defineConstant(r,e[r])}async function oa(t,e,r){await t.writeFile("/tmp/code.php",e);const n=on({consts:r});return await t.run({code:`${sa}
|
|
355
|
+
$wp_config_path = '/tmp/code.php';
|
|
356
|
+
$wp_config = file_get_contents($wp_config_path);
|
|
357
|
+
$new_wp_config = rewrite_wp_config_to_define_constants($wp_config, ${n.consts});
|
|
358
|
+
file_put_contents($wp_config_path, $new_wp_config);
|
|
359
|
+
`}),await t.readFileAsText("/tmp/code.php")}const aa=`<?php
|
|
107
360
|
|
|
108
361
|
/**
|
|
109
362
|
* This transport delegates PHP HTTP requests to JavaScript synchronous XHR.
|
|
@@ -176,6 +429,7 @@ class Wp_Http_Fetch implements Requests_Transport
|
|
|
176
429
|
$before_response_body = strpos( $this->headers, "\\r\\n\\r\\n" );
|
|
177
430
|
if ( isset( $options['filename'] ) && $options['filename'] && false !== $before_response_body ) {
|
|
178
431
|
$response_body = substr( $this->headers, $before_response_body + 4 );
|
|
432
|
+
$this->headers = substr( $this->headers, 0, $before_response_body );
|
|
179
433
|
file_put_contents($options['filename'], $response_body);
|
|
180
434
|
}
|
|
181
435
|
|
|
@@ -233,7 +487,7 @@ class Wp_Http_Fetch implements Requests_Transport
|
|
|
233
487
|
return true;
|
|
234
488
|
}
|
|
235
489
|
}
|
|
236
|
-
`,
|
|
490
|
+
`,ca=`<?php
|
|
237
491
|
|
|
238
492
|
/**
|
|
239
493
|
* This transport does not perform any HTTP requests and only exists
|
|
@@ -276,7 +530,7 @@ class Requests_Transport_Dummy implements Requests_Transport
|
|
|
276
530
|
return true;
|
|
277
531
|
}
|
|
278
532
|
}
|
|
279
|
-
`,
|
|
533
|
+
`,la=`<?php
|
|
280
534
|
/**
|
|
281
535
|
* Add a notice to wp-login.php offering the username and password.
|
|
282
536
|
*/
|
|
@@ -365,9 +619,10 @@ add_filter('got_url_rewrite', '__return_true');
|
|
|
365
619
|
* * Requests_Transport_Dummy – Does not send any requests and only exists to keep
|
|
366
620
|
* the Requests class happy.
|
|
367
621
|
*/
|
|
622
|
+
$__requests_class = class_exists( '\\WpOrg\\Requests\\Requests' ) ? '\\WpOrg\\Requests\\Requests' : 'Requests';
|
|
368
623
|
if (defined('USE_FETCH_FOR_REQUESTS') && USE_FETCH_FOR_REQUESTS) {
|
|
369
624
|
require(__DIR__ . '/playground-includes/wp_http_fetch.php');
|
|
370
|
-
|
|
625
|
+
$__requests_class::add_transport('WP_Http_Fetch');
|
|
371
626
|
|
|
372
627
|
/**
|
|
373
628
|
* Add Fetch transport to the list of transports that WordPress
|
|
@@ -395,9 +650,9 @@ if (defined('USE_FETCH_FOR_REQUESTS') && USE_FETCH_FOR_REQUESTS) {
|
|
|
395
650
|
});
|
|
396
651
|
} else {
|
|
397
652
|
require(__DIR__ . '/playground-includes/requests_transport_dummy.php');
|
|
398
|
-
|
|
653
|
+
$__requests_class::add_transport('Requests_Transport_Dummy');
|
|
399
654
|
}
|
|
400
|
-
|
|
655
|
+
`;async function Ir(t,e,r){let n="";await t.fileExists(e)&&(n=await t.readFileAsText(e)),await t.writeFile(e,r(n))}const hi=async(t,e)=>{const r=new ua(t,e.wordpressPath||"/wordpress",e.siteUrl);e.addPhpInfo===!0&&await r.addPhpInfo(),e.siteUrl&&await r.patchSiteUrl(),e.patchSecrets===!0&&await r.patchSecrets(),e.disableSiteHealth===!0&&await r.disableSiteHealth(),e.disableWpNewBlogNotification===!0&&await r.disableWpNewBlogNotification(),e.makeEditorFrameControlled===!0&&await mi(t,r.wordpressPath,[`${r.wordpressPath}/wp-includes/js/dist/block-editor.js`,`${r.wordpressPath}/wp-includes/js/dist/block-editor.min.js`]),e.prepareForRunningInsideWebBrowser===!0&&await r.prepareForRunningInsideWebBrowser(),e.addFetchNetworkTransport===!0&&await r.addFetchNetworkTransport()};class ua{constructor(e,r,n){this.php=e,this.scopedSiteUrl=n,this.wordpressPath=r}async addPhpInfo(){await this.php.writeFile(`${this.wordpressPath}/phpinfo.php`,"<?php phpinfo(); ")}async patchSiteUrl(){await qt(this.php,{consts:{WP_HOME:this.scopedSiteUrl,WP_SITEURL:this.scopedSiteUrl}})}async patchSecrets(){await qt(this.php,{consts:{AUTH_KEY:et(40),SECURE_AUTH_KEY:et(40),LOGGED_IN_KEY:et(40),NONCE_KEY:et(40),AUTH_SALT:et(40),SECURE_AUTH_SALT:et(40),LOGGED_IN_SALT:et(40),NONCE_SALT:et(40)}})}async disableSiteHealth(){await Ir(this.php,`${this.wordpressPath}/wp-includes/default-filters.php`,e=>e.replace(/add_filter[^;]+wp_maybe_grant_site_health_caps[^;]+;/i,""))}async disableWpNewBlogNotification(){await Ir(this.php,`${this.wordpressPath}/wp-config.php`,e=>`${e} function wp_new_blog_notification(...$args){} `)}async prepareForRunningInsideWebBrowser(){await this.php.mkdir(`${this.wordpressPath}/wp-content/mu-plugins`),await this.php.writeFile(`${this.wordpressPath}/wp-content/mu-plugins/0-playground.php`,la),await this.php.mkdir(`${this.wordpressPath}/wp-content/mu-plugins/playground-includes`),await this.php.writeFile(`${this.wordpressPath}/wp-content/mu-plugins/playground-includes/requests_transport_dummy.php`,ca)}async addFetchNetworkTransport(){await qt(this.php,{consts:{USE_FETCH_FOR_REQUESTS:!0}});const e=[`${this.wordpressPath}/wp-includes/Requests/Transport/fsockopen.php`,`${this.wordpressPath}/wp-includes/Requests/Transport/cURL.php`,`${this.wordpressPath}/wp-includes/Requests/src/Transport/Fsockopen.php`,`${this.wordpressPath}/wp-includes/Requests/src/Transport/Curl.php`];for(const r of e)await this.php.fileExists(r)&&await Ir(this.php,r,n=>n.includes("public static function test2")?n:n.replace("public static function test","public static function test( $capabilities = array() ) { return false; } public static function test2"));await this.php.writeFile(`${this.wordpressPath}/wp-content/mu-plugins/playground-includes/wp_http_fetch.php`,aa),await this.php.mkdir(`${this.wordpressPath}/wp-content/fonts`)}}function et(t){const e="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+=-[]/.,<>?";let r="";for(let n=t;n>0;--n)r+=e[Math.floor(Math.random()*e.length)];return r}async function mi(t,e,r){const n=`
|
|
401
656
|
/**
|
|
402
657
|
* A synchronous function to read a blob URL as text.
|
|
403
658
|
*
|
|
@@ -441,7 +696,7 @@ if (defined('USE_FETCH_FOR_REQUESTS') && USE_FETCH_FOR_REQUESTS) {
|
|
|
441
696
|
srcDoc: undefined
|
|
442
697
|
})
|
|
443
698
|
)
|
|
444
|
-
});`;for(const s of r)await t.fileExists(s)&&await
|
|
699
|
+
});`;for(const s of r)await t.fileExists(s)&&await Ir(t,s,i=>`${n} ${i.replace(/\(\s*"iframe",/,"(__playground_ControlledIframe,")}`);await t.writeFile(`${e}/wp-includes/empty.html`,"<!doctype html><script>const hash = window.location.hash.substring(1); if ( hash ) document.write(decodeURIComponent(hash))<\/script>")}const yi=async(t,{code:e})=>await t.run({code:e}),gi=async(t,{options:e})=>await t.run(e),In=async(t,{path:e})=>{await t.unlink(e)},$i=async(t,{sql:e},r)=>{r==null||r.tracker.setCaption("Executing SQL Queries");const n=`/tmp/${crypto.randomUUID()}.sql`;await t.writeFile(n,new Uint8Array(await e.arrayBuffer()));const s=await t.documentRoot,i=on({docroot:s,sqlFilename:n}),a=await t.run({code:`<?php
|
|
445
700
|
require_once ${i.docroot} . '/wp-load.php';
|
|
446
701
|
|
|
447
702
|
$handle = fopen(${i.sqlFilename}, 'r');
|
|
@@ -460,34 +715,117 @@ if (defined('USE_FETCH_FOR_REQUESTS') && USE_FETCH_FOR_REQUESTS) {
|
|
|
460
715
|
$wpdb->query($buffer);
|
|
461
716
|
$buffer = '';
|
|
462
717
|
}
|
|
463
|
-
`});return await
|
|
718
|
+
`});return await In(t,{path:n}),a},_i=async(t,{key:e,value:r})=>{await t.setPhpIniEntry(e,r)},wi=async(t,{request:e})=>await t.request(e),vi=async(t,{fromPath:e,toPath:r})=>{await t.writeFile(r,await t.readFileAsBuffer(e))},bi=async(t,{fromPath:e,toPath:r})=>{await t.mv(e,r)},Pi=async(t,{path:e})=>{await t.mkdir(e)},Ei=async(t,{path:e})=>{await t.rmdir(e)},Dn=async(t,{path:e,data:r})=>{r instanceof File&&(r=new Uint8Array(await r.arrayBuffer())),await t.writeFile(e,r)},Si=async(t,{siteUrl:e})=>{await qt(t,{consts:{WP_HOME:e,WP_SITEURL:e}})},Ti=async(t,{file:e})=>{var l;const r=await t.request({url:"/wp-admin/admin.php?import=wordpress"}),n=(l=Ds(r).getElementById("import-upload-form"))==null?void 0:l.getAttribute("action"),s=await t.request({url:`/wp-admin/${n}`,method:"POST",files:{import:e}}),i=Ds(s).querySelector("#wpbody-content form");if(!i)throw console.log(s.text),new Error("Could not find an importer form in response. See the response text above for details.");const a=da(i);a.fetch_attachments="1";for(const p in a)if(p.startsWith("user_map[")){const u="user_new["+p.slice(9,-1)+"]";a[u]="1"}await t.request({url:i.action,method:"POST",formData:a})};function Ds(t){return new DOMParser().parseFromString(t.text,"text/html")}function da(t){return Object.fromEntries(new FormData(t).entries())}const As=`<?php
|
|
719
|
+
|
|
720
|
+
function zipDir($root, $output, $options = array())
|
|
721
|
+
{
|
|
722
|
+
$root = rtrim($root, '/');
|
|
723
|
+
$additionalPaths = array_key_exists('additional_paths', $options) ? $options['additional_paths'] : array();
|
|
724
|
+
$excludePaths = array_key_exists('exclude_paths', $options) ? $options['exclude_paths'] : array();
|
|
725
|
+
$zip_root = array_key_exists('zip_root', $options) ? $options['zip_root'] : $root;
|
|
726
|
+
|
|
727
|
+
$zip = new ZipArchive;
|
|
728
|
+
$res = $zip->open($output, ZipArchive::CREATE);
|
|
729
|
+
if ($res === TRUE) {
|
|
730
|
+
$directories = array(
|
|
731
|
+
$root . '/'
|
|
732
|
+
);
|
|
733
|
+
while (sizeof($directories)) {
|
|
734
|
+
$current_dir = array_pop($directories);
|
|
735
|
+
|
|
736
|
+
if ($handle = opendir($current_dir)) {
|
|
737
|
+
while (false !== ($entry = readdir($handle))) {
|
|
738
|
+
if ($entry == '.' || $entry == '..') {
|
|
739
|
+
continue;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
$entry = join_paths($current_dir, $entry);
|
|
743
|
+
if (in_array($entry, $excludePaths)) {
|
|
744
|
+
continue;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
if (is_dir($entry)) {
|
|
748
|
+
$directory_path = $entry . '/';
|
|
749
|
+
array_push($directories, $directory_path);
|
|
750
|
+
} else if (is_file($entry)) {
|
|
751
|
+
$zip->addFile($entry, substr($entry, strlen($zip_root)));
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
closedir($handle);
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
foreach ($additionalPaths as $disk_path => $zip_path) {
|
|
758
|
+
$zip->addFile($disk_path, $zip_path);
|
|
759
|
+
}
|
|
760
|
+
$zip->close();
|
|
761
|
+
chmod($output, 0777);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
function join_paths()
|
|
766
|
+
{
|
|
767
|
+
$paths = array();
|
|
768
|
+
|
|
769
|
+
foreach (func_get_args() as $arg) {
|
|
770
|
+
if ($arg !== '') {
|
|
771
|
+
$paths[] = $arg;
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
return preg_replace('#/+#', '/', join('/', $paths));
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
function unzip($zipPath, $extractTo, $overwrite = true)
|
|
779
|
+
{
|
|
780
|
+
if (!is_dir($extractTo)) {
|
|
781
|
+
mkdir($extractTo, 0777, true);
|
|
782
|
+
}
|
|
783
|
+
$zip = new ZipArchive;
|
|
784
|
+
$res = $zip->open($zipPath);
|
|
785
|
+
if ($res === TRUE) {
|
|
786
|
+
$zip->extractTo($extractTo);
|
|
787
|
+
$zip->close();
|
|
788
|
+
chmod($extractTo, 0777);
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
function delTree($dir)
|
|
794
|
+
{
|
|
795
|
+
$files = array_diff(scandir($dir), array('.', '..'));
|
|
796
|
+
foreach ($files as $file) {
|
|
797
|
+
(is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
|
|
798
|
+
}
|
|
799
|
+
return rmdir($dir);
|
|
800
|
+
}
|
|
801
|
+
`;async function ki(t,e){const r=await t.run({code:As+e});if(r.exitCode!==0)throw console.log(As+e),console.log(e+""),console.log(r.errors),r.errors;return r}const an=async(t,{zipPath:e,extractToPath:r})=>{const n=on({zipPath:e,extractToPath:r});await ki(t,`unzip(${n.zipPath}, ${n.extractToPath});`)},Ri=async(t,{wordPressFilesZip:e,pathInZip:r=""})=>{const n="/import.zip";await t.writeFile(n,new Uint8Array(await e.arrayBuffer()));const s=await t.documentRoot;let i=ye("/tmp","import");await t.mkdir(i),await an(t,{zipPath:n,extractToPath:i}),await t.unlink(n),i=ye(i,r);const a=ye(i,"wp-content"),l=ye(s,"wp-content");for(const y of On){const k=ye(a,y);await Fs(t,k);const R=ye(l,y);await t.fileExists(R)&&(await t.mkdir(ea(k)),await t.mv(R,k))}const p=ye(i,"wp-content","database");await t.fileExists(p)||await t.mv(ye(s,"wp-content","database"),p);const u=await t.listFiles(i);for(const y of u)await Fs(t,ye(s,y)),await t.mv(ye(i,y),ye(s,y));await t.rmdir(i);const f=hr(ye(s,"wp-admin","upgrade.php"));await t.run({code:`<?php
|
|
464
802
|
$_GET['step'] = 'upgrade_db';
|
|
465
803
|
require ${f};
|
|
466
|
-
`})};async function
|
|
804
|
+
`})};async function Fs(t,e){await t.fileExists(e)&&(await t.isDir(e)?await t.rmdir(e):await t.unlink(e))}async function Oi(t){const e=await t.request({url:"/wp-admin/export.php?download=true&content=all"});return new File([e.bytes],"export.xml")}async function Ci(t){const e=await t.request({url:"/wp-admin/export.php?download=true&content=all&export_wxz=1"});return new File([e.bytes],"export.wxz")}async function Ni(t,{targetPath:e,zipFile:r}){const n=r.name,s=n.replace(/\.zip$/,""),i=ye(await t.documentRoot,"wp-content"),a=ye(i,crypto.randomUUID()),l=ye(a,n),p=ye(a,"assets",s);await t.fileExists(p)&&await t.rmdir(a,{recursive:!0}),await t.mkdir(a),await Dn(t,{path:l,data:r});try{await an(t,{zipPath:l,extractToPath:p});let u=await t.listFiles(p,{prependPath:!0});u=u.filter(w=>!w.endsWith("/__MACOSX"));const f=u.length===1&&await t.isDir(u[0]);let y,k="";f?(k=u[0],y=u[0].split("/").pop()):(k=p,y=s);const R=`${e}/${y}`;return await t.mv(k,R),{assetFolderPath:R,assetFolderName:y}}finally{await t.rmdir(a,{recursive:!0})}}function cn(t){const e=t.split(".").shift().replace(/-/g," ");return e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()}const ji=async(t,{pluginZipFile:e,options:r={}},n)=>{const s=e.name.split("/").pop()||"plugin.zip",i=cn(s);n==null||n.tracker.setCaption(`Installing the ${i} plugin`);try{const{assetFolderPath:a}=await Ni(t,{zipFile:e,targetPath:`${await t.documentRoot}/wp-content/plugins`});("activate"in r?r.activate:!0)&&await Cn(t,{pluginPath:a,pluginName:i},n),await pa(t)}catch(a){console.error(`Proceeding without the ${i} plugin. Could not install it in wp-admin. The original error was: ${a}`),console.error(a)}};async function pa(t){await t.isDir("/wordpress/wp-content/plugins/gutenberg")&&!await t.fileExists("/wordpress/.gutenberg-patched")&&(await t.writeFile("/wordpress/.gutenberg-patched","1"),await mi(t,"/wordpress",["/wordpress/wp-content/plugins/gutenberg/build/block-editor/index.js","/wordpress/wp-content/plugins/gutenberg/build/block-editor/index.min.js"]))}const Ii=async(t,{themeZipFile:e,options:r={}},n)=>{const s=cn(e.name);n==null||n.tracker.setCaption(`Installing the ${s} theme`);try{const{assetFolderName:i}=await Ni(t,{zipFile:e,targetPath:`${await t.documentRoot}/wp-content/themes`});("activate"in r?r.activate:!0)&&await Nn(t,{themeFolderName:i},n)}catch(i){console.error(`Proceeding without the ${s} theme. Could not install it in wp-admin. The original error was: ${i}`),console.error(i)}},Di=async(t,{username:e="admin",password:r="password"}={},n)=>{n==null||n.tracker.setCaption((n==null?void 0:n.initialCaption)||"Logging in"),await t.request({url:"/wp-login.php"}),await t.request({url:"/wp-login.php",method:"POST",formData:{log:e,pwd:r,rememberme:"forever"}})},Ai=async(t,{options:e})=>{await t.request({url:"/wp-admin/install.php?step=2",method:"POST",formData:{language:"en",prefix:"wp_",weblog_title:"My WordPress Website",user_name:e.adminPassword||"admin",admin_password:e.adminPassword||"password",admin_password2:e.adminPassword||"password",Submit:"Install WordPress",pw_weak:"1",admin_email:"admin@localhost.com"}})},Fi=async(t,{options:e})=>{const r=`<?php
|
|
467
805
|
include 'wordpress/wp-load.php';
|
|
468
|
-
$site_options = ${
|
|
806
|
+
$site_options = ${hr(e)};
|
|
469
807
|
foreach($site_options as $name => $value) {
|
|
470
808
|
update_option($name, $value);
|
|
471
809
|
}
|
|
472
810
|
echo "Success";
|
|
473
811
|
`,n=await t.run({code:r});return Mi(n),{code:r,result:n}},qi=async(t,{meta:e,userId:r})=>{const n=`<?php
|
|
474
812
|
include 'wordpress/wp-load.php';
|
|
475
|
-
$meta = ${
|
|
813
|
+
$meta = ${hr(e)};
|
|
476
814
|
foreach($meta as $name => $value) {
|
|
477
|
-
update_user_meta(${
|
|
815
|
+
update_user_meta(${hr(r)}, $name, $value);
|
|
478
816
|
}
|
|
479
817
|
echo "Success";
|
|
480
|
-
`,s=await t.run({code:n});return Mi(s),{code:n,result:s}};async function Mi(t){if(t.text!=="Success")throw console.log(t),new Error(`Failed to run code: ${t.text} ${t.errors}`)}const Ui=async(t,{selfContained:e=!1}={})=>{const r="/tmp/wordpress-playground.zip",n=await t.documentRoot,s=
|
|
818
|
+
`,s=await t.run({code:n});return Mi(s),{code:n,result:s}};async function Mi(t){if(t.text!=="Success")throw console.log(t),new Error(`Failed to run code: ${t.text} ${t.errors}`)}const Ui=async(t,{selfContained:e=!1}={})=>{const r="/tmp/wordpress-playground.zip",n=await t.documentRoot,s=ye(n,"wp-content");let i=On;e&&(i=i.filter(p=>!p.startsWith("themes/twenty")).filter(p=>p!=="plugins/sqlite-database-integration"));const a=on({zipPath:r,wpContentPath:s,documentRoot:n,exceptPaths:i.map(p=>ye(n,"wp-content",p)),additionalPaths:e?{[ye(n,"wp-config.php")]:"wp-config.php"}:{}});await ki(t,`zipDir(${a.wpContentPath}, ${a.zipPath}, array(
|
|
481
819
|
'exclude_paths' => ${a.exceptPaths},
|
|
482
820
|
'zip_root' => ${a.documentRoot},
|
|
483
821
|
'additional_paths' => ${a.additionalPaths}
|
|
484
|
-
));`);const l=await t.readFileAsBuffer(r);return t.unlink(r),l},
|
|
822
|
+
));`);const l=await t.readFileAsBuffer(r);return t.unlink(r),l},fa=Object.freeze(Object.defineProperty({__proto__:null,activatePlugin:Cn,activateTheme:Nn,applyWordPressPatches:hi,cp:vi,defineSiteUrl:Si,defineWpConfigConsts:qt,exportWXR:Oi,exportWXZ:Ci,importFile:Ti,importWordPressFiles:Ri,installPlugin:ji,installTheme:Ii,login:Di,mkdir:Pi,mv:bi,request:wi,rm:In,rmdir:Ei,runPHP:yi,runPHPWithOptions:gi,runSql:$i,runWpInstallationWizard:Ai,setPhpIniEntry:_i,setSiteOptions:Fi,unzip:an,updateUserMeta:qi,writeFile:Dn,zipWpContent:Ui},Symbol.toStringTag,{value:"Module"})),ha=5*1024*1024;function ma(t,e){const r=t.headers.get("content-length")||"",n=parseInt(r,10)||ha;function s(i,a){e(new CustomEvent("progress",{detail:{loaded:i,total:a}}))}return new Response(new ReadableStream({async start(i){if(!t.body){i.close();return}const a=t.body.getReader();let l=0;for(;;)try{const{done:p,value:u}=await a.read();if(u&&(l+=u.byteLength),p){s(l,l),i.close();break}else s(l,n),i.enqueue(u)}catch(p){console.error({e:p}),i.error(p);break}}}),{status:t.status,statusText:t.statusText,headers:t.headers})}const mn=1e-5;class An extends EventTarget{constructor({weight:e=1,caption:r="",fillTime:n=4}={}){super(),this._selfWeight=1,this._selfDone=!1,this._selfProgress=0,this._selfCaption="",this._isFilling=!1,this._subTrackers=[],this._weight=e,this._selfCaption=r,this._fillTime=n}stage(e,r=""){if(e||(e=this._selfWeight),this._selfWeight-e<-mn)throw new Error(`Cannot add a stage with weight ${e} as the total weight of registered stages would exceed 1.`);this._selfWeight-=e;const n=new An({caption:r,weight:e,fillTime:this._fillTime});return this._subTrackers.push(n),n.addEventListener("progress",()=>this.notifyProgress()),n.addEventListener("done",()=>{this.done&&this.notifyDone()}),n}fillSlowly({stopBeforeFinishing:e=!0}={}){if(this._isFilling)return;this._isFilling=!0;const r=100,n=this._fillTime/r;this._fillInterval=setInterval(()=>{this.set(this._selfProgress+1),e&&this._selfProgress>=99&&clearInterval(this._fillInterval)},n)}set(e){this._selfProgress=Math.min(e,100),this.notifyProgress(),this._selfProgress+mn>=100&&this.finish()}finish(){this._fillInterval&&clearInterval(this._fillInterval),this._selfDone=!0,this._selfProgress=100,this._isFilling=!1,this._fillInterval=void 0,this.notifyProgress(),this.notifyDone()}get caption(){for(let e=this._subTrackers.length-1;e>=0;e--)if(!this._subTrackers[e].done){const r=this._subTrackers[e].caption;if(r)return r}return this._selfCaption}setCaption(e){this._selfCaption=e,this.notifyProgress()}get done(){return this.progress+mn>=100}get progress(){if(this._selfDone)return 100;const e=this._subTrackers.reduce((r,n)=>r+n.progress*n.weight,this._selfProgress*this._selfWeight);return Math.round(e*1e4)/1e4}get weight(){return this._weight}get observer(){return this._progressObserver||(this._progressObserver=e=>{this.set(e)}),this._progressObserver}get loadingListener(){return this._loadingListener||(this._loadingListener=e=>{this.set(e.detail.loaded/e.detail.total*100)}),this._loadingListener}pipe(e){e.setProgress({progress:this.progress,caption:this.caption}),this.addEventListener("progress",r=>{e.setProgress({progress:r.detail.progress,caption:r.detail.caption})}),this.addEventListener("done",()=>{e.setLoaded()})}addEventListener(e,r){super.addEventListener(e,r)}removeEventListener(e,r){super.removeEventListener(e,r)}notifyProgress(){const e=this;this.dispatchEvent(new CustomEvent("progress",{detail:{get progress(){return e.progress},get caption(){return e.caption}}}))}notifyDone(){this.dispatchEvent(new CustomEvent("done"))}}const qs=Symbol("error"),Ms=Symbol("message");class Fn extends Event{constructor(e,r={}){super(e),this[qs]=r.error===void 0?null:r.error,this[Ms]=r.message===void 0?"":r.message}get error(){return this[qs]}get message(){return this[Ms]}}Object.defineProperty(Fn.prototype,"error",{enumerable:!0});Object.defineProperty(Fn.prototype,"message",{enumerable:!0});const ya=typeof globalThis.ErrorEvent=="function"?globalThis.ErrorEvent:Fn;function ga(t){return t instanceof Error?"exitCode"in t&&(t==null?void 0:t.exitCode)===0||(t==null?void 0:t.name)==="ExitStatus"&&"status"in t&&t.status===0:!1}class $a extends EventTarget{constructor(){super(...arguments),this.listenersCount=0}addEventListener(e,r){++this.listenersCount,super.addEventListener(e,r)}removeEventListener(e,r){--this.listenersCount,super.removeEventListener(e,r)}hasListeners(){return this.listenersCount>0}}function _a(t){t.asm={...t.asm};const e=new $a;for(const r in t.asm)if(typeof t.asm[r]=="function"){const n=t.asm[r];t.asm[r]=function(...s){var i;try{return n(...s)}catch(a){if(!(a instanceof Error))throw a;const l=va(a,(i=t.lastAsyncifyStackSource)==null?void 0:i.stack);if(t.lastAsyncifyStackSource&&(a.cause=t.lastAsyncifyStackSource),e.hasListeners()){e.dispatchEvent(new ya("error",{error:a,message:l}));return}throw ga(a)||Ea(l),a}}}return e}let vn=[];function wa(){return vn}function va(t,e){if(t.message==="unreachable"){let r=ba;e||(r+=`
|
|
485
823
|
|
|
486
824
|
This stack trace is lacking. For a better one initialize
|
|
487
825
|
the PHP runtime with { debug: true }, e.g. PHPNode.load('8.1', { debug: true }).
|
|
488
826
|
|
|
489
|
-
`),
|
|
490
|
-
`;return r}return t.message}const
|
|
827
|
+
`),vn=Sa(e||t.stack||"");for(const n of vn)r+=` * ${n}
|
|
828
|
+
`;return r}return t.message}const ba=`
|
|
491
829
|
"unreachable" WASM instruction executed.
|
|
492
830
|
|
|
493
831
|
The typical reason is a PHP function missing from the ASYNCIFY_ONLY
|
|
@@ -511,13 +849,13 @@ the Dockerfile, you'll need to trigger this error again with long stack
|
|
|
511
849
|
traces enabled. In node.js, you can do it using the --stack-trace-limit=100
|
|
512
850
|
CLI option:
|
|
513
851
|
|
|
514
|
-
`,
|
|
515
|
-
${
|
|
516
|
-
${
|
|
517
|
-
`))console.log(`${
|
|
518
|
-
`).slice(1).map(r=>{const n=r.trim().substring(3).split(" ");return{fn:n.length>=2?n[0]:"<unknown>",isWasm:r.includes("wasm://")}}).filter(({fn:r,isWasm:n})=>n&&!r.startsWith("dynCall_")&&!r.startsWith("invoke_")).map(({fn:r})=>r);return Array.from(new Set(e))}catch{return[]}}class Mt{constructor(e,r,n,s="",i=0){this.httpStatusCode=e,this.headers=r,this.bytes=n,this.exitCode=i,this.errors=s}static fromRawData(e){return new Mt(e.httpStatusCode,e.headers,e.bytes,e.errors,e.exitCode)}toRawData(){return{headers:this.headers,bytes:this.bytes,errors:this.errors,exitCode:this.exitCode,httpStatusCode:this.httpStatusCode}}get json(){return JSON.parse(this.text)}get text(){return new TextDecoder().decode(this.bytes)}}const Li=["8.3","8.2","8.1","8.0","7.4","7.3","7.2","7.1","7.0"],
|
|
852
|
+
`,Us="\x1B[41m",Pa="\x1B[1m",Ls="\x1B[0m",zs="\x1B[K";let Hs=!1;function Ea(t){if(!Hs){Hs=!0,console.log(`${Us}
|
|
853
|
+
${zs}
|
|
854
|
+
${Pa} WASM ERROR${Ls}${Us}`);for(const e of t.split(`
|
|
855
|
+
`))console.log(`${zs} ${e} `);console.log(`${Ls}`)}}function Sa(t){try{const e=t.split(`
|
|
856
|
+
`).slice(1).map(r=>{const n=r.trim().substring(3).split(" ");return{fn:n.length>=2?n[0]:"<unknown>",isWasm:r.includes("wasm://")}}).filter(({fn:r,isWasm:n})=>n&&!r.startsWith("dynCall_")&&!r.startsWith("invoke_")).map(({fn:r})=>r);return Array.from(new Set(e))}catch{return[]}}ReadableStream.prototype[Symbol.asyncIterator]||(ReadableStream.prototype[Symbol.asyncIterator]=async function*(){const t=this.getReader();try{for(;;){const{done:e,value:r}=await t.read();if(e)return;yield r}}finally{t.releaseLock()}},ReadableStream.prototype.iterate=ReadableStream.prototype[Symbol.asyncIterator]);class Mt{constructor(e,r,n,s="",i=0){this.httpStatusCode=e,this.headers=r,this.bytes=n,this.exitCode=i,this.errors=s}static fromRawData(e){return new Mt(e.httpStatusCode,e.headers,e.bytes,e.errors,e.exitCode)}toRawData(){return{headers:this.headers,bytes:this.bytes,errors:this.errors,exitCode:this.exitCode,httpStatusCode:this.httpStatusCode}}get json(){return JSON.parse(this.text)}get text(){return new TextDecoder().decode(this.bytes)}}const Li=["8.3","8.2","8.1","8.0","7.4","7.3","7.2","7.1","7.0"],Ta=Li[0],zi=["iconv","mbstring","xml-bundle","gd"],Vs={"kitchen-sink":zi};var gt,Lt;class ka{constructor(e,r={}){ee(this,gt,void 0);ee(this,Lt,void 0);this.requestHandler=e,pe(this,gt,{}),pe(this,Lt,{handleRedirects:!1,maxRedirects:4,...r})}async request(e,r=0){const n=await this.requestHandler.request({...e,headers:{...e.headers,cookie:this.serializeCookies()}});if(n.headers["set-cookie"]&&this.setCookies(n.headers["set-cookie"]),H(this,Lt).handleRedirects&&n.headers.location&&r<H(this,Lt).maxRedirects){const s=new URL(n.headers.location[0],this.requestHandler.absoluteUrl);return this.request({url:s.toString(),method:"GET",headers:{}},r+1)}return n}pathToInternalUrl(e){return this.requestHandler.pathToInternalUrl(e)}internalUrlToPath(e){return this.requestHandler.internalUrlToPath(e)}get absoluteUrl(){return this.requestHandler.absoluteUrl}get documentRoot(){return this.requestHandler.documentRoot}setCookies(e){for(const r of e)try{if(!r.includes("="))continue;const n=r.indexOf("="),s=r.substring(0,n),i=r.substring(n+1).split(";")[0];H(this,gt)[s]=i}catch(n){console.error(n)}}serializeCookies(){const e=[];for(const r in H(this,gt))e.push(`${r}=${H(this,gt)[r]}`);return e.join("; ")}}gt=new WeakMap,Lt=new WeakMap;const Ra="http://example.com";function Ws(t){return t.toString().substring(t.origin.length)}function xs(t,e){return!e||!t.startsWith(e)?t:t.substring(e.length)}function Oa(t,e){return!e||t.startsWith(e)?t:e+t}var ze,zt,yr,$t,Ht,He,Vt,Wt,Wr,Hi,xr,Vi,Br,Wi;class Ca{constructor(e,r={}){ee(this,Wr);ee(this,xr);ee(this,Br);ee(this,ze,void 0);ee(this,zt,void 0);ee(this,yr,void 0);ee(this,$t,void 0);ee(this,Ht,void 0);ee(this,He,void 0);ee(this,Vt,void 0);ee(this,Wt,void 0);pe(this,Wt,new jn({concurrency:1}));const{documentRoot:n="/www/",absoluteUrl:s=typeof location=="object"?location==null?void 0:location.href:""}=r;this.php=e,pe(this,ze,n);const i=new URL(s);pe(this,yr,i.hostname),pe(this,$t,i.port?Number(i.port):i.protocol==="https:"?443:80),pe(this,zt,(i.protocol||"").replace(":",""));const a=H(this,$t)!==443&&H(this,$t)!==80;pe(this,Ht,[H(this,yr),a?`:${H(this,$t)}`:""].join("")),pe(this,He,i.pathname.replace(/\/+$/,"")),pe(this,Vt,[`${H(this,zt)}://`,H(this,Ht),H(this,He)].join(""))}pathToInternalUrl(e){return`${this.absoluteUrl}${e}`}internalUrlToPath(e){const r=new URL(e);return r.pathname.startsWith(H(this,He))&&(r.pathname=r.pathname.slice(H(this,He).length)),Ws(r)}get isRequestRunning(){return H(this,Wt).running>0}get absoluteUrl(){return H(this,Vt)}get documentRoot(){return H(this,ze)}async request(e){const r=e.url.startsWith("http://")||e.url.startsWith("https://"),n=new URL(e.url,r?void 0:Ra),s=xs(n.pathname,H(this,He)),i=`${H(this,ze)}${s}`;return Ia(i)?await _e(this,xr,Vi).call(this,e,n):_e(this,Wr,Hi).call(this,i)}}ze=new WeakMap,zt=new WeakMap,yr=new WeakMap,$t=new WeakMap,Ht=new WeakMap,He=new WeakMap,Vt=new WeakMap,Wt=new WeakMap,Wr=new WeakSet,Hi=function(e){if(!this.php.fileExists(e))return new Mt(404,{"x-file-type":["static"]},new TextEncoder().encode("404 File not found"));const r=this.php.readFileAsBuffer(e);return new Mt(200,{"content-length":[`${r.byteLength}`],"content-type":[ja(e)],"accept-ranges":["bytes"],"cache-control":["public, max-age=0"]},r)},xr=new WeakSet,Vi=async function(e,r){var s;const n=await H(this,Wt).acquire();try{this.php.addServerGlobalEntry("DOCUMENT_ROOT",H(this,ze)),this.php.addServerGlobalEntry("HTTPS",H(this,Vt).startsWith("https://")?"on":"");let i="GET";const a={host:H(this,Ht),...no(e.headers||{})},l=[];if(e.files&&Object.keys(e.files).length){i="POST";for(const f in e.files){const y=e.files[f];l.push({key:f,name:y.name,type:y.type,data:new Uint8Array(await y.arrayBuffer())})}(s=a["content-type"])!=null&&s.startsWith("multipart/form-data")&&(e.formData=Na(e.body||""),a["content-type"]="application/x-www-form-urlencoded",delete e.body)}let p;e.formData!==void 0?(i="POST",a["content-type"]=a["content-type"]||"application/x-www-form-urlencoded",p=new URLSearchParams(e.formData).toString()):p=e.body;let u;try{u=_e(this,Br,Wi).call(this,r.pathname)}catch{return new Mt(404,{},new TextEncoder().encode("404 File not found"))}return await this.php.run({relativeUri:Oa(Ws(r),H(this,He)),protocol:H(this,zt),method:e.method||i,body:p,fileInfos:l,scriptPath:u,headers:a})}finally{n()}},Br=new WeakSet,Wi=function(e){let r=xs(e,H(this,He));r.includes(".php")?r=r.split(".php")[0]+".php":(r.endsWith("/")||(r+="/"),r.endsWith("index.php")||(r+="index.php"));const n=`${H(this,ze)}${r}`;if(this.php.fileExists(n))return n;if(!this.php.fileExists(`${H(this,ze)}/index.php`))throw new Error(`File not found: ${n}`);return`${H(this,ze)}/index.php`};function Na(t){const e={},r=t.match(/--(.*)\r\n/);if(!r)return e;const n=r[1],s=t.split(`--${n}`);return s.shift(),s.pop(),s.forEach(i=>{const a=i.indexOf(`\r
|
|
519
857
|
\r
|
|
520
|
-
`),l=i.substring(0,a).trim(),p=i.substring(a+4).trim(),u=l.match(/name="([^"]+)"/);if(u){const f=u[1];e[f]=p}}),e}function
|
|
858
|
+
`),l=i.substring(0,a).trim(),p=i.substring(a+4).trim(),u=l.match(/name="([^"]+)"/);if(u){const f=u[1];e[f]=p}}),e}function ja(t){switch(t.split(".").pop()){case"css":return"text/css";case"js":return"application/javascript";case"png":return"image/png";case"jpg":case"jpeg":return"image/jpeg";case"gif":return"image/gif";case"svg":return"image/svg+xml";case"woff":return"font/woff";case"woff2":return"font/woff2";case"ttf":return"font/ttf";case"otf":return"font/otf";case"eot":return"font/eot";case"ico":return"image/x-icon";case"html":return"text/html";case"json":return"application/json";case"xml":return"application/xml";case"txt":case"md":return"text/plain";default:return"application-octet-stream"}}function Ia(t){return Da(t)||Aa(t)}function Da(t){return t.endsWith(".php")||t.includes(".php/")}function Aa(t){return!t.split("/").pop().includes(".")}const Mr={0:"No error occurred. System call completed successfully.",1:"Argument list too long.",2:"Permission denied.",3:"Address in use.",4:"Address not available.",5:"Address family not supported.",6:"Resource unavailable, or operation would block.",7:"Connection already in progress.",8:"Bad file descriptor.",9:"Bad message.",10:"Device or resource busy.",11:"Operation canceled.",12:"No child processes.",13:"Connection aborted.",14:"Connection refused.",15:"Connection reset.",16:"Resource deadlock would occur.",17:"Destination address required.",18:"Mathematics argument out of domain of function.",19:"Reserved.",20:"File exists.",21:"Bad address.",22:"File too large.",23:"Host is unreachable.",24:"Identifier removed.",25:"Illegal byte sequence.",26:"Operation in progress.",27:"Interrupted function.",28:"Invalid argument.",29:"I/O error.",30:"Socket is connected.",31:"There is a directory under that path.",32:"Too many levels of symbolic links.",33:"File descriptor value too large.",34:"Too many links.",35:"Message too large.",36:"Reserved.",37:"Filename too long.",38:"Network is down.",39:"Connection aborted by network.",40:"Network unreachable.",41:"Too many files open in system.",42:"No buffer space available.",43:"No such device.",44:"There is no such file or directory OR the parent directory does not exist.",45:"Executable file format error.",46:"No locks available.",47:"Reserved.",48:"Not enough space.",49:"No message of the desired type.",50:"Protocol not available.",51:"No space left on device.",52:"Function not supported.",53:"The socket is not connected.",54:"Not a directory or a symbolic link to a directory.",55:"Directory not empty.",56:"State not recoverable.",57:"Not a socket.",58:"Not supported, or operation not supported on socket.",59:"Inappropriate I/O control operation.",60:"No such device or address.",61:"Value too large to be stored in data type.",62:"Previous owner died.",63:"Operation not permitted.",64:"Broken pipe.",65:"Protocol error.",66:"Protocol not supported.",67:"Protocol wrong type for socket.",68:"Result too large.",69:"Read-only file system.",70:"Invalid seek.",71:"No such process.",72:"Reserved.",73:"Connection timed out.",74:"Text file busy.",75:"Cross-device link.",76:"Extension: Capabilities insufficient."};function Fa(t){const e=typeof t=="object"?t==null?void 0:t.errno:null;if(e in Mr)return Mr[e]}function xe(t=""){return function(r,n,s){const i=s.value;s.value=function(...a){try{return i.apply(this,a)}catch(l){const p=typeof l=="object"?l==null?void 0:l.errno:null;if(p in Mr){const u=Mr[p],f=typeof a[0]=="string"?a[0]:null,y=f!==null?t.replaceAll("{path}",f):t;throw new Error(`${y}: ${u}`,{cause:l})}throw l}}}}const qa=new Map;function Ma(t){return qa.get(t)}(function(){var t;return typeof process<"u"&&((t=process.release)==null?void 0:t.name)==="node"?"NODE":typeof window<"u"?"WEB":typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope?"WORKER":"NODE"})();var Ua=Object.defineProperty,La=Object.getOwnPropertyDescriptor,Be=(t,e,r,n)=>{for(var s=n>1?void 0:n?La(e,r):e,i=t.length-1,a;i>=0;i--)(a=t[i])&&(s=(n?a(e,r,s):a(s))||s);return n&&s&&Ua(e,r,s),s};const we="string",It="number",te=Symbol("__private__dont__use");var _t,nt,wt,st,Ye,xt,gr,Gr,xi,Kr,Bi,Jr,Gi,Yr,Ki,Qr,Ji,Zr,Yi,Xr,Qi,en,Zi,tn,Xi,rn,eo,nn,to,sn,ro;class Ge{constructor(e,r){ee(this,Gr);ee(this,Kr);ee(this,Jr);ee(this,Yr);ee(this,Qr);ee(this,Zr);ee(this,Xr);ee(this,en);ee(this,tn);ee(this,rn);ee(this,nn);ee(this,sn);ee(this,_t,void 0);ee(this,nt,void 0);ee(this,wt,void 0);ee(this,st,void 0);ee(this,Ye,void 0);ee(this,xt,void 0);ee(this,gr,void 0);pe(this,_t,[]),pe(this,nt,!1),pe(this,wt,null),pe(this,st,{}),pe(this,Ye,new Map),pe(this,xt,[]),pe(this,gr,new jn({concurrency:1})),e!==void 0&&this.initializeRuntime(e),r&&(this.requestHandler=new ka(new Ca(this,r)))}addEventListener(e,r){H(this,Ye).has(e)||H(this,Ye).set(e,new Set),H(this,Ye).get(e).add(r)}removeEventListener(e,r){var n;(n=H(this,Ye).get(e))==null||n.delete(r)}dispatchEvent(e){const r=H(this,Ye).get(e.type);if(r)for(const n of r)n(e)}async onMessage(e){H(this,xt).push(e)}async setSpawnHandler(e){this[te].spawnProcess=e}get absoluteUrl(){return this.requestHandler.requestHandler.absoluteUrl}get documentRoot(){return this.requestHandler.requestHandler.documentRoot}pathToInternalUrl(e){return this.requestHandler.requestHandler.pathToInternalUrl(e)}internalUrlToPath(e){return this.requestHandler.requestHandler.internalUrlToPath(e)}initializeRuntime(e){if(this[te])throw new Error("PHP runtime already initialized.");const r=Ma(e);if(!r)throw new Error("Invalid PHP runtime id.");this[te]=r,r.onMessage=async n=>{for(const s of H(this,xt)){const i=await s(n);if(i)return i}return""},pe(this,wt,_a(r))}setPhpIniPath(e){if(H(this,nt))throw new Error("Cannot set PHP ini path after calling run().");this[te].ccall("wasm_set_phpini_path",null,["string"],[e])}setPhpIniEntry(e,r){if(H(this,nt))throw new Error("Cannot set PHP ini entries after calling run().");H(this,_t).push([e,r])}chdir(e){this[te].FS.chdir(e)}async request(e,r){if(!this.requestHandler)throw new Error("No request handler available.");return this.requestHandler.request(e,r)}async run(e){const r=await H(this,gr).acquire();try{H(this,nt)||(_e(this,Gr,xi).call(this),pe(this,nt,!0)),_e(this,en,Zi).call(this,e.scriptPath||""),_e(this,Jr,Gi).call(this,e.relativeUri||""),_e(this,Qr,Ji).call(this,e.method||"GET");const n=no(e.headers||{}),s=n.host||"example.com:443";if(_e(this,Yr,Ki).call(this,s,e.protocol||"http"),_e(this,Zr,Yi).call(this,n),e.body&&_e(this,Xr,Qi).call(this,e.body),e.fileInfos)for(const i of e.fileInfos)_e(this,rn,eo).call(this,i);return e.code&&_e(this,nn,to).call(this," ?>"+e.code),_e(this,tn,Xi).call(this),await _e(this,sn,ro).call(this)}finally{r(),this.dispatchEvent({type:"request.end"})}}addServerGlobalEntry(e,r){H(this,st)[e]=r}defineConstant(e,r){let n={};try{n=JSON.parse(this.fileExists("/tmp/consts.json")&&this.readFileAsText("/tmp/consts.json")||"{}")}catch{}this.writeFile("/tmp/consts.json",JSON.stringify({...n,[e]:r}))}mkdir(e){this[te].FS.mkdirTree(e)}mkdirTree(e){this.mkdir(e)}readFileAsText(e){return new TextDecoder().decode(this.readFileAsBuffer(e))}readFileAsBuffer(e){return this[te].FS.readFile(e)}writeFile(e,r){this[te].FS.writeFile(e,r)}unlink(e){this[te].FS.unlink(e)}mv(e,r){try{this[te].FS.rename(e,r)}catch(n){const s=Fa(n);throw s?new Error(`Could not move ${e} to ${r}: ${s}`,{cause:n}):n}}rmdir(e,r={recursive:!0}){r!=null&&r.recursive&&this.listFiles(e).forEach(n=>{const s=`${e}/${n}`;this.isDir(s)?this.rmdir(s,r):this.unlink(s)}),this[te].FS.rmdir(e)}listFiles(e,r={prependPath:!1}){if(!this.fileExists(e))return[];try{const n=this[te].FS.readdir(e).filter(s=>s!=="."&&s!=="..");if(r.prependPath){const s=e.replace(/\/$/,"");return n.map(i=>`${s}/${i}`)}return n}catch(n){return console.error(n,{path:e}),[]}}isDir(e){return this.fileExists(e)?this[te].FS.isDir(this[te].FS.lookupPath(e).node.mode):!1}fileExists(e){try{return this[te].FS.lookupPath(e),!0}catch{return!1}}exit(e=0){return this[te]._exit(e)}}_t=new WeakMap,nt=new WeakMap,wt=new WeakMap,st=new WeakMap,Ye=new WeakMap,xt=new WeakMap,gr=new WeakMap,Gr=new WeakSet,xi=function(){if(this.setPhpIniEntry("auto_prepend_file","/tmp/consts.php"),this.fileExists("/tmp/consts.php")||this.writeFile("/tmp/consts.php",`<?php
|
|
521
859
|
if(file_exists('/tmp/consts.json')) {
|
|
522
860
|
$consts = json_decode(file_get_contents('/tmp/consts.json'), true);
|
|
523
861
|
foreach ($consts as $const => $value) {
|
|
@@ -528,13 +866,16 @@ ${wa} WASM ERROR${Us}${Ms}`);for(const e of t.split(`
|
|
|
528
866
|
}`),H(this,_t).length>0){const e=H(this,_t).map(([r,n])=>`${r}=${n}`).join(`
|
|
529
867
|
`)+`
|
|
530
868
|
|
|
531
|
-
`;this[te].ccall("wasm_set_phpini_entries",null,[_e],[e])}this[te].ccall("php_wasm_init",null,[],[])},Kr=new WeakSet,Bi=function(){const e="/tmp/headers.json";if(!this.fileExists(e))throw new Error("SAPI Error: Could not find response headers file.");const r=JSON.parse(this.readFileAsText(e)),n={};for(const s of r.headers){if(!s.includes(": "))continue;const i=s.indexOf(": "),a=s.substring(0,i).toLowerCase(),l=s.substring(i+2);a in n||(n[a]=[]),n[a].push(l)}return{headers:n,httpStatusCode:r.status}},Gr=new WeakSet,Ki=function(e){if(this[te].ccall("wasm_set_request_uri",null,[_e],[e]),e.includes("?")){const r=e.substring(e.indexOf("?")+1);this[te].ccall("wasm_set_query_string",null,[_e],[r])}},Jr=new WeakSet,Gi=function(e,r){this[te].ccall("wasm_set_request_host",null,[_e],[e]);let n;try{n=parseInt(new URL(e).port,10)}catch{}(!n||isNaN(n)||n===80)&&(n=r==="https"?443:80),this[te].ccall("wasm_set_request_port",null,[It],[n]),(r==="https"||!r&&n===443)&&this.addServerGlobalEntry("HTTPS","on")},Yr=new WeakSet,Ji=function(e){this[te].ccall("wasm_set_request_method",null,[_e],[e])},Zr=new WeakSet,Yi=function(e){e.cookie&&this[te].ccall("wasm_set_cookies",null,[_e],[e.cookie]),e["content-type"]&&this[te].ccall("wasm_set_content_type",null,[_e],[e["content-type"]]),e["content-length"]&&this[te].ccall("wasm_set_content_length",null,[It],[parseInt(e["content-length"],10)]);for(const r in e){let n="HTTP_";["content-type","content-length"].includes(r.toLowerCase())&&(n=""),this.addServerGlobalEntry(`${n}${r.toUpperCase().replace(/-/g,"_")}`,e[r])}},Qr=new WeakSet,Zi=function(e){this[te].ccall("wasm_set_request_body",null,[_e],[e]),this[te].ccall("wasm_set_content_length",null,[It],[new TextEncoder().encode(e).length])},Xr=new WeakSet,Qi=function(e){this[te].ccall("wasm_set_path_translated",null,[_e],[e])},en=new WeakSet,Xi=function(){for(const e in H(this,st))this[te].ccall("wasm_add_SERVER_entry",null,[_e,_e],[e,H(this,st)[e]])},tn=new WeakSet,eo=function(e){const{key:r,name:n,type:s,data:i}=e,a=`/tmp/${Math.random().toFixed(20)}`;this.writeFile(a,i);const l=0;this[te].ccall("wasm_add_uploaded_file",null,[_e,_e,_e,_e,It,It],[r,n,s,a,l,i.byteLength])},rn=new WeakSet,to=function(e){this[te].ccall("wasm_set_php_code",null,[_e],[e])},nn=new WeakSet,ro=async function(){var i;let e,r;try{e=await new Promise((a,l)=>{var u;r=f=>{const y=new Error("Rethrown");y.cause=f.error,y.betterMessage=f.message,l(y)},(u=H(this,vt))==null||u.addEventListener("error",r);const p=this[te].ccall("wasm_sapi_handle_request",It,[],[],{async:!0});return p instanceof Promise?p.then(a,l):a(p)})}catch(a){for(const f in this)typeof this[f]=="function"&&(this[f]=()=>{throw new Error("PHP runtime has crashed – see the earlier error for details.")});this.functionsMaybeMissingFromAsyncify=$a();const l=a,p="betterMessage"in l?l.betterMessage:l.message,u=new Error(p);throw u.cause=l,u}finally{(i=H(this,vt))==null||i.removeEventListener("error",r),pe(this,st,{})}const{headers:n,httpStatusCode:s}=$e(this,Kr,Bi).call(this);return new Mt(s,n,this.readFileAsBuffer("/tmp/stdout"),this.readFileAsText("/tmp/stderr"),e)};Fe([De('Could not create directory "{path}"')],qe.prototype,"mkdir",1);Fe([De('Could not create directory "{path}"')],qe.prototype,"mkdirTree",1);Fe([De('Could not read "{path}"')],qe.prototype,"readFileAsText",1);Fe([De('Could not read "{path}"')],qe.prototype,"readFileAsBuffer",1);Fe([De('Could not write to "{path}"')],qe.prototype,"writeFile",1);Fe([De('Could not unlink "{path}"')],qe.prototype,"unlink",1);Fe([De('Could not move "{path}"')],qe.prototype,"mv",1);Fe([De('Could not remove directory "{path}"')],qe.prototype,"rmdir",1);Fe([De('Could not list files in "{path}"')],qe.prototype,"listFiles",1);Fe([De('Could not stat "{path}"')],qe.prototype,"isDir",1);Fe([De('Could not stat "{path}"')],qe.prototype,"fileExists",1);function no(t){const e={};for(const r in t)e[r.toLowerCase()]=t[r];return e}const Ma=["vfs","literal","wordpress.org/themes","wordpress.org/plugins","url"];function Ua(t){return t&&typeof t=="object"&&typeof t.resource=="string"&&Ma.includes(t.resource)}class Pt{static create(e,{semaphore:r,progress:n}){let s;switch(e.resource){case"vfs":s=new La(e,n);break;case"literal":s=new za(e,n);break;case"wordpress.org/themes":s=new Wa(e,n);break;case"wordpress.org/plugins":s=new xa(e,n);break;case"url":s=new Va(e,n);break;default:throw new Error(`Invalid resource: ${e}`)}return s=new Ba(s),r&&(s=new Ka(s,r)),s}setPlayground(e){this.playground=e}get isAsync(){return!1}}class La extends Pt{constructor(e,r){super(),this.resource=e,this.progress=r}async resolve(){var r;const e=await this.playground.readFileAsBuffer(this.resource.path);return(r=this.progress)==null||r.set(100),new File([e],this.name)}get name(){return this.resource.path.split("/").pop()||""}}class za extends Pt{constructor(e,r){super(),this.resource=e,this.progress=r}async resolve(){var e;return(e=this.progress)==null||e.set(100),new File([this.resource.contents],this.resource.name)}get name(){return this.resource.name}}class Fn extends Pt{constructor(e){super(),this.progress=e}async resolve(){var n,s;(n=this.progress)==null||n.setCaption(this.caption);const e=this.getURL();let r=await fetch(e);if(r=await fa(r,((s=this.progress)==null?void 0:s.loadingListener)??Ha),r.status!==200)throw new Error(`Could not download "${e}"`);return new File([await r.blob()],this.name)}get caption(){return`Downloading ${this.name}`}get name(){try{return new URL(this.getURL(),"http://example.com").pathname.split("/").pop()}catch{return this.getURL()}}get isAsync(){return!0}}const Ha=()=>{};class Va extends Fn{constructor(e,r){super(r),this.resource=e}getURL(){return this.resource.url}get caption(){return this.resource.caption??super.caption}}class Wa extends Fn{constructor(e,r){super(r),this.resource=e}get name(){return sn(this.resource.slug)}getURL(){return`https://downloads.wordpress.org/theme/${so(this.resource.slug)}`}}class xa extends Fn{constructor(e,r){super(r),this.resource=e}get name(){return sn(this.resource.slug)}getURL(){return`https://downloads.wordpress.org/plugin/${so(this.resource.slug)}`}}function so(t){return!t||t.endsWith(".zip")?t:t+".latest-stable.zip"}class io extends Pt{constructor(e){super(),this.resource=e}async resolve(){return this.resource.resolve()}async setPlayground(e){return this.resource.setPlayground(e)}get progress(){return this.resource.progress}set progress(e){this.resource.progress=e}get name(){return this.resource.name}get isAsync(){return this.resource.isAsync}}class Ba extends io{async resolve(){return this.promise||(this.promise=super.resolve()),this.promise}}class Ka extends io{constructor(e,r){super(e),this.semaphore=r}async resolve(){return this.isAsync?this.semaphore.run(()=>super.resolve()):super.resolve()}}var Ga=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Ja(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var vn={exports:{}},oo={},Ae={},Bt={},_r={},K={},yr={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.regexpCode=t.getEsmExportName=t.getProperty=t.safeStringify=t.stringify=t.strConcat=t.addCodeArg=t.str=t._=t.nil=t._Code=t.Name=t.IDENTIFIER=t._CodeOrName=void 0;class e{}t._CodeOrName=e,t.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;class r extends e{constructor(T){if(super(),!t.IDENTIFIER.test(T))throw new Error("CodeGen: name must be a valid identifier");this.str=T}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}}t.Name=r;class n extends e{constructor(T){super(),this._items=typeof T=="string"?[T]:T}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;const T=this._items[0];return T===""||T==='""'}get str(){var T;return(T=this._str)!==null&&T!==void 0?T:this._str=this._items.reduce((N,j)=>`${N}${j}`,"")}get names(){var T;return(T=this._names)!==null&&T!==void 0?T:this._names=this._items.reduce((N,j)=>(j instanceof r&&(N[j.str]=(N[j.str]||0)+1),N),{})}}t._Code=n,t.nil=new n("");function s(g,...T){const N=[g[0]];let j=0;for(;j<T.length;)l(N,T[j]),N.push(g[++j]);return new n(N)}t._=s;const i=new n("+");function a(g,...T){const N=[O(g[0])];let j=0;for(;j<T.length;)N.push(i),l(N,T[j]),N.push(i,O(g[++j]));return p(N),new n(N)}t.str=a;function l(g,T){T instanceof n?g.push(...T._items):T instanceof r?g.push(T):g.push(y(T))}t.addCodeArg=l;function p(g){let T=1;for(;T<g.length-1;){if(g[T]===i){const N=u(g[T-1],g[T+1]);if(N!==void 0){g.splice(T-1,3,N);continue}g[T++]="+"}T++}}function u(g,T){if(T==='""')return g;if(g==='""')return T;if(typeof g=="string")return T instanceof r||g[g.length-1]!=='"'?void 0:typeof T!="string"?`${g.slice(0,-1)}${T}"`:T[0]==='"'?g.slice(0,-1)+T.slice(1):void 0;if(typeof T=="string"&&T[0]==='"'&&!(g instanceof r))return`"${g}${T.slice(1)}`}function f(g,T){return T.emptyStr()?g:g.emptyStr()?T:a`${g}${T}`}t.strConcat=f;function y(g){return typeof g=="number"||typeof g=="boolean"||g===null?g:O(Array.isArray(g)?g.join(","):g)}function R(g){return new n(O(g))}t.stringify=R;function O(g){return JSON.stringify(g).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}t.safeStringify=O;function v(g){return typeof g=="string"&&t.IDENTIFIER.test(g)?new n(`.${g}`):s`[${g}]`}t.getProperty=v;function S(g){if(typeof g=="string"&&t.IDENTIFIER.test(g))return new n(`${g}`);throw new Error(`CodeGen: invalid export name: ${g}, use explicit $id name mapping`)}t.getEsmExportName=S;function _(g){return new n(g.toString())}t.regexpCode=_})(yr);var wn={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.ValueScope=t.ValueScopeName=t.Scope=t.varKinds=t.UsedValueState=void 0;const e=yr;class r extends Error{constructor(u){super(`CodeGen: "code" for ${u} not defined`),this.value=u.value}}var n;(function(p){p[p.Started=0]="Started",p[p.Completed=1]="Completed"})(n=t.UsedValueState||(t.UsedValueState={})),t.varKinds={const:new e.Name("const"),let:new e.Name("let"),var:new e.Name("var")};class s{constructor({prefixes:u,parent:f}={}){this._names={},this._prefixes=u,this._parent=f}toName(u){return u instanceof e.Name?u:this.name(u)}name(u){return new e.Name(this._newName(u))}_newName(u){const f=this._names[u]||this._nameGroup(u);return`${u}${f.index++}`}_nameGroup(u){var f,y;if(!((y=(f=this._parent)===null||f===void 0?void 0:f._prefixes)===null||y===void 0)&&y.has(u)||this._prefixes&&!this._prefixes.has(u))throw new Error(`CodeGen: prefix "${u}" is not allowed in this scope`);return this._names[u]={prefix:u,index:0}}}t.Scope=s;class i extends e.Name{constructor(u,f){super(f),this.prefix=u}setValue(u,{property:f,itemIndex:y}){this.value=u,this.scopePath=(0,e._)`.${new e.Name(f)}[${y}]`}}t.ValueScopeName=i;const a=(0,e._)`\n`;class l extends s{constructor(u){super(u),this._values={},this._scope=u.scope,this.opts={...u,_n:u.lines?a:e.nil}}get(){return this._scope}name(u){return new i(u,this._newName(u))}value(u,f){var y;if(f.ref===void 0)throw new Error("CodeGen: ref must be passed in value");const R=this.toName(u),{prefix:O}=R,v=(y=f.key)!==null&&y!==void 0?y:f.ref;let S=this._values[O];if(S){const T=S.get(v);if(T)return T}else S=this._values[O]=new Map;S.set(v,R);const _=this._scope[O]||(this._scope[O]=[]),g=_.length;return _[g]=f.ref,R.setValue(f,{property:O,itemIndex:g}),R}getValue(u,f){const y=this._values[u];if(y)return y.get(f)}scopeRefs(u,f=this._values){return this._reduceValues(f,y=>{if(y.scopePath===void 0)throw new Error(`CodeGen: name "${y}" has no value`);return(0,e._)`${u}${y.scopePath}`})}scopeCode(u=this._values,f,y){return this._reduceValues(u,R=>{if(R.value===void 0)throw new Error(`CodeGen: name "${R}" has no value`);return R.value.code},f,y)}_reduceValues(u,f,y={},R){let O=e.nil;for(const v in u){const S=u[v];if(!S)continue;const _=y[v]=y[v]||new Map;S.forEach(g=>{if(_.has(g))return;_.set(g,n.Started);let T=f(g);if(T){const N=this.opts.es5?t.varKinds.var:t.varKinds.const;O=(0,e._)`${O}${N} ${g} = ${T};${this.opts._n}`}else if(T=R==null?void 0:R(g))O=(0,e._)`${O}${T}${this.opts._n}`;else throw new r(g);_.set(g,n.Completed)})}return O}}t.ValueScope=l})(wn);(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.or=t.and=t.not=t.CodeGen=t.operators=t.varKinds=t.ValueScopeName=t.ValueScope=t.Scope=t.Name=t.regexpCode=t.stringify=t.getProperty=t.nil=t.strConcat=t.str=t._=void 0;const e=yr,r=wn;var n=yr;Object.defineProperty(t,"_",{enumerable:!0,get:function(){return n._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return n.str}}),Object.defineProperty(t,"strConcat",{enumerable:!0,get:function(){return n.strConcat}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return n.nil}}),Object.defineProperty(t,"getProperty",{enumerable:!0,get:function(){return n.getProperty}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return n.stringify}}),Object.defineProperty(t,"regexpCode",{enumerable:!0,get:function(){return n.regexpCode}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return n.Name}});var s=wn;Object.defineProperty(t,"Scope",{enumerable:!0,get:function(){return s.Scope}}),Object.defineProperty(t,"ValueScope",{enumerable:!0,get:function(){return s.ValueScope}}),Object.defineProperty(t,"ValueScopeName",{enumerable:!0,get:function(){return s.ValueScopeName}}),Object.defineProperty(t,"varKinds",{enumerable:!0,get:function(){return s.varKinds}}),t.operators={GT:new e._Code(">"),GTE:new e._Code(">="),LT:new e._Code("<"),LTE:new e._Code("<="),EQ:new e._Code("==="),NEQ:new e._Code("!=="),NOT:new e._Code("!"),OR:new e._Code("||"),AND:new e._Code("&&"),ADD:new e._Code("+")};class i{optimizeNodes(){return this}optimizeNames(o,h){return this}}class a extends i{constructor(o,h,k){super(),this.varKind=o,this.name=h,this.rhs=k}render({es5:o,_n:h}){const k=o?r.varKinds.var:this.varKind,q=this.rhs===void 0?"":` = ${this.rhs}`;return`${k} ${this.name}${q};`+h}optimizeNames(o,h){if(o[this.name.str])return this.rhs&&(this.rhs=he(this.rhs,o,h)),this}get names(){return this.rhs instanceof e._CodeOrName?this.rhs.names:{}}}class l extends i{constructor(o,h,k){super(),this.lhs=o,this.rhs=h,this.sideEffects=k}render({_n:o}){return`${this.lhs} = ${this.rhs};`+o}optimizeNames(o,h){if(!(this.lhs instanceof e.Name&&!o[this.lhs.str]&&!this.sideEffects))return this.rhs=he(this.rhs,o,h),this}get names(){const o=this.lhs instanceof e.Name?{}:{...this.lhs.names};return Re(o,this.rhs)}}class p extends l{constructor(o,h,k,q){super(o,k,q),this.op=h}render({_n:o}){return`${this.lhs} ${this.op}= ${this.rhs};`+o}}class u extends i{constructor(o){super(),this.label=o,this.names={}}render({_n:o}){return`${this.label}:`+o}}class f extends i{constructor(o){super(),this.label=o,this.names={}}render({_n:o}){return`break${this.label?` ${this.label}`:""};`+o}}class y extends i{constructor(o){super(),this.error=o}render({_n:o}){return`throw ${this.error};`+o}get names(){return this.error.names}}class R extends i{constructor(o){super(),this.code=o}render({_n:o}){return`${this.code};`+o}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(o,h){return this.code=he(this.code,o,h),this}get names(){return this.code instanceof e._CodeOrName?this.code.names:{}}}class O extends i{constructor(o=[]){super(),this.nodes=o}render(o){return this.nodes.reduce((h,k)=>h+k.render(o),"")}optimizeNodes(){const{nodes:o}=this;let h=o.length;for(;h--;){const k=o[h].optimizeNodes();Array.isArray(k)?o.splice(h,1,...k):k?o[h]=k:o.splice(h,1)}return o.length>0?this:void 0}optimizeNames(o,h){const{nodes:k}=this;let q=k.length;for(;q--;){const M=k[q];M.optimizeNames(o,h)||(at(o,M.names),k.splice(q,1))}return k.length>0?this:void 0}get names(){return this.nodes.reduce((o,h)=>Q(o,h.names),{})}}class v extends O{render(o){return"{"+o._n+super.render(o)+"}"+o._n}}class S extends O{}class _ extends v{}_.kind="else";class g extends v{constructor(o,h){super(h),this.condition=o}render(o){let h=`if(${this.condition})`+super.render(o);return this.else&&(h+="else "+this.else.render(o)),h}optimizeNodes(){super.optimizeNodes();const o=this.condition;if(o===!0)return this.nodes;let h=this.else;if(h){const k=h.optimizeNodes();h=this.else=Array.isArray(k)?new _(k):k}if(h)return o===!1?h instanceof g?h:h.nodes:this.nodes.length?this:new g(ct(o),h instanceof g?[h]:h.nodes);if(!(o===!1||!this.nodes.length))return this}optimizeNames(o,h){var k;if(this.else=(k=this.else)===null||k===void 0?void 0:k.optimizeNames(o,h),!!(super.optimizeNames(o,h)||this.else))return this.condition=he(this.condition,o,h),this}get names(){const o=super.names;return Re(o,this.condition),this.else&&Q(o,this.else.names),o}}g.kind="if";class T extends v{}T.kind="for";class N extends T{constructor(o){super(),this.iteration=o}render(o){return`for(${this.iteration})`+super.render(o)}optimizeNames(o,h){if(super.optimizeNames(o,h))return this.iteration=he(this.iteration,o,h),this}get names(){return Q(super.names,this.iteration.names)}}class j extends T{constructor(o,h,k,q){super(),this.varKind=o,this.name=h,this.from=k,this.to=q}render(o){const h=o.es5?r.varKinds.var:this.varKind,{name:k,from:q,to:M}=this;return`for(${h} ${k}=${q}; ${k}<${M}; ${k}++)`+super.render(o)}get names(){const o=Re(super.names,this.from);return Re(o,this.to)}}class D extends T{constructor(o,h,k,q){super(),this.loop=o,this.varKind=h,this.name=k,this.iterable=q}render(o){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(o)}optimizeNames(o,h){if(super.optimizeNames(o,h))return this.iterable=he(this.iterable,o,h),this}get names(){return Q(super.names,this.iterable.names)}}class w extends v{constructor(o,h,k){super(),this.name=o,this.args=h,this.async=k}render(o){return`${this.async?"async ":""}function ${this.name}(${this.args})`+super.render(o)}}w.kind="func";class C extends O{render(o){return"return "+super.render(o)}}C.kind="return";class A extends v{render(o){let h="try"+super.render(o);return this.catch&&(h+=this.catch.render(o)),this.finally&&(h+=this.finally.render(o)),h}optimizeNodes(){var o,h;return super.optimizeNodes(),(o=this.catch)===null||o===void 0||o.optimizeNodes(),(h=this.finally)===null||h===void 0||h.optimizeNodes(),this}optimizeNames(o,h){var k,q;return super.optimizeNames(o,h),(k=this.catch)===null||k===void 0||k.optimizeNames(o,h),(q=this.finally)===null||q===void 0||q.optimizeNames(o,h),this}get names(){const o=super.names;return this.catch&&Q(o,this.catch.names),this.finally&&Q(o,this.finally.names),o}}class W extends v{constructor(o){super(),this.error=o}render(o){return`catch(${this.error})`+super.render(o)}}W.kind="catch";class G extends v{render(o){return"finally"+super.render(o)}}G.kind="finally";class ce{constructor(o,h={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...h,_n:h.lines?`
|
|
532
|
-
`:""},this._extScope=o,this._scope=new r.Scope({parent:o}),this._nodes=[new S]}toString(){return this._root.render(this.opts)}name(o){return this._scope.name(o)}scopeName(o){return this._extScope.name(o)}scopeValue(o,h){const k=this._extScope.value(o,h);return(this._values[k.prefix]||(this._values[k.prefix]=new Set)).add(k),k}getScopeValue(o,h){return this._extScope.getValue(o,h)}scopeRefs(o){return this._extScope.scopeRefs(o,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(o,h,k,q){const M=this._scope.toName(h);return k!==void 0&&q&&(this._constants[M.str]=k),this._leafNode(new a(o,M,k)),M}const(o,h,k){return this._def(r.varKinds.const,o,h,k)}let(o,h,k){return this._def(r.varKinds.let,o,h,k)}var(o,h,k){return this._def(r.varKinds.var,o,h,k)}assign(o,h,k){return this._leafNode(new l(o,h,k))}add(o,h){return this._leafNode(new p(o,t.operators.ADD,h))}code(o){return typeof o=="function"?o():o!==e.nil&&this._leafNode(new R(o)),this}object(...o){const h=["{"];for(const[k,q]of o)h.length>1&&h.push(","),h.push(k),(k!==q||this.opts.es5)&&(h.push(":"),(0,e.addCodeArg)(h,q));return h.push("}"),new e._Code(h)}if(o,h,k){if(this._blockNode(new g(o)),h&&k)this.code(h).else().code(k).endIf();else if(h)this.code(h).endIf();else if(k)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(o){return this._elseNode(new g(o))}else(){return this._elseNode(new _)}endIf(){return this._endBlockNode(g,_)}_for(o,h){return this._blockNode(o),h&&this.code(h).endFor(),this}for(o,h){return this._for(new N(o),h)}forRange(o,h,k,q,M=this.opts.es5?r.varKinds.var:r.varKinds.let){const J=this._scope.toName(o);return this._for(new j(M,J,h,k),()=>q(J))}forOf(o,h,k,q=r.varKinds.const){const M=this._scope.toName(o);if(this.opts.es5){const J=h instanceof e.Name?h:this.var("_arr",h);return this.forRange("_i",0,(0,e._)`${J}.length`,Z=>{this.var(M,(0,e._)`${J}[${Z}]`),k(M)})}return this._for(new D("of",q,M,h),()=>k(M))}forIn(o,h,k,q=this.opts.es5?r.varKinds.var:r.varKinds.const){if(this.opts.ownProperties)return this.forOf(o,(0,e._)`Object.keys(${h})`,k);const M=this._scope.toName(o);return this._for(new D("in",q,M,h),()=>k(M))}endFor(){return this._endBlockNode(T)}label(o){return this._leafNode(new u(o))}break(o){return this._leafNode(new f(o))}return(o){const h=new C;if(this._blockNode(h),this.code(o),h.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(C)}try(o,h,k){if(!h&&!k)throw new Error('CodeGen: "try" without "catch" and "finally"');const q=new A;if(this._blockNode(q),this.code(o),h){const M=this.name("e");this._currNode=q.catch=new W(M),h(M)}return k&&(this._currNode=q.finally=new G,this.code(k)),this._endBlockNode(W,G)}throw(o){return this._leafNode(new y(o))}block(o,h){return this._blockStarts.push(this._nodes.length),o&&this.code(o).endBlock(h),this}endBlock(o){const h=this._blockStarts.pop();if(h===void 0)throw new Error("CodeGen: not in self-balancing block");const k=this._nodes.length-h;if(k<0||o!==void 0&&k!==o)throw new Error(`CodeGen: wrong number of nodes: ${k} vs ${o} expected`);return this._nodes.length=h,this}func(o,h=e.nil,k,q){return this._blockNode(new w(o,h,k)),q&&this.code(q).endFunc(),this}endFunc(){return this._endBlockNode(w)}optimize(o=1){for(;o-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(o){return this._currNode.nodes.push(o),this}_blockNode(o){this._currNode.nodes.push(o),this._nodes.push(o)}_endBlockNode(o,h){const k=this._currNode;if(k instanceof o||h&&k instanceof h)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${h?`${o.kind}/${h.kind}`:o.kind}"`)}_elseNode(o){const h=this._currNode;if(!(h instanceof g))throw new Error('CodeGen: "else" without "if"');return this._currNode=h.else=o,this}get _root(){return this._nodes[0]}get _currNode(){const o=this._nodes;return o[o.length-1]}set _currNode(o){const h=this._nodes;h[h.length-1]=o}}t.CodeGen=ce;function Q(b,o){for(const h in o)b[h]=(b[h]||0)+(o[h]||0);return b}function Re(b,o){return o instanceof e._CodeOrName?Q(b,o.names):b}function he(b,o,h){if(b instanceof e.Name)return k(b);if(!q(b))return b;return new e._Code(b._items.reduce((M,J)=>(J instanceof e.Name&&(J=k(J)),J instanceof e._Code?M.push(...J._items):M.push(J),M),[]));function k(M){const J=h[M.str];return J===void 0||o[M.str]!==1?M:(delete o[M.str],J)}function q(M){return M instanceof e._Code&&M._items.some(J=>J instanceof e.Name&&o[J.str]===1&&h[J.str]!==void 0)}}function at(b,o){for(const h in o)b[h]=(b[h]||0)-(o[h]||0)}function ct(b){return typeof b=="boolean"||typeof b=="number"||b===null?!b:(0,e._)`!${I(b)}`}t.not=ct;const Et=$(t.operators.AND);function Yt(...b){return b.reduce(Et)}t.and=Yt;const St=$(t.operators.OR);function F(...b){return b.reduce(St)}t.or=F;function $(b){return(o,h)=>o===e.nil?h:h===e.nil?o:(0,e._)`${I(o)} ${b} ${I(h)}`}function I(b){return b instanceof e.Name?b:(0,e._)`(${b})`}})(K);var re={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.checkStrictMode=t.getErrorPath=t.Type=t.useFunc=t.setEvaluated=t.evaluatedPropsToName=t.mergeEvaluated=t.eachItem=t.unescapeJsonPointer=t.escapeJsonPointer=t.escapeFragment=t.unescapeFragment=t.schemaRefOrVal=t.schemaHasRulesButRef=t.schemaHasRules=t.checkUnknownRules=t.alwaysValidSchema=t.toHash=void 0;const e=K,r=yr;function n(w){const C={};for(const A of w)C[A]=!0;return C}t.toHash=n;function s(w,C){return typeof C=="boolean"?C:Object.keys(C).length===0?!0:(i(w,C),!a(C,w.self.RULES.all))}t.alwaysValidSchema=s;function i(w,C=w.schema){const{opts:A,self:W}=w;if(!A.strictSchema||typeof C=="boolean")return;const G=W.RULES.keywords;for(const ce in C)G[ce]||D(w,`unknown keyword: "${ce}"`)}t.checkUnknownRules=i;function a(w,C){if(typeof w=="boolean")return!w;for(const A in w)if(C[A])return!0;return!1}t.schemaHasRules=a;function l(w,C){if(typeof w=="boolean")return!w;for(const A in w)if(A!=="$ref"&&C.all[A])return!0;return!1}t.schemaHasRulesButRef=l;function p({topSchemaRef:w,schemaPath:C},A,W,G){if(!G){if(typeof A=="number"||typeof A=="boolean")return A;if(typeof A=="string")return(0,e._)`${A}`}return(0,e._)`${w}${C}${(0,e.getProperty)(W)}`}t.schemaRefOrVal=p;function u(w){return R(decodeURIComponent(w))}t.unescapeFragment=u;function f(w){return encodeURIComponent(y(w))}t.escapeFragment=f;function y(w){return typeof w=="number"?`${w}`:w.replace(/~/g,"~0").replace(/\//g,"~1")}t.escapeJsonPointer=y;function R(w){return w.replace(/~1/g,"/").replace(/~0/g,"~")}t.unescapeJsonPointer=R;function O(w,C){if(Array.isArray(w))for(const A of w)C(A);else C(w)}t.eachItem=O;function v({mergeNames:w,mergeToName:C,mergeValues:A,resultToName:W}){return(G,ce,Q,Re)=>{const he=Q===void 0?ce:Q instanceof e.Name?(ce instanceof e.Name?w(G,ce,Q):C(G,ce,Q),Q):ce instanceof e.Name?(C(G,Q,ce),ce):A(ce,Q);return Re===e.Name&&!(he instanceof e.Name)?W(G,he):he}}t.mergeEvaluated={props:v({mergeNames:(w,C,A)=>w.if((0,e._)`${A} !== true && ${C} !== undefined`,()=>{w.if((0,e._)`${C} === true`,()=>w.assign(A,!0),()=>w.assign(A,(0,e._)`${A} || {}`).code((0,e._)`Object.assign(${A}, ${C})`))}),mergeToName:(w,C,A)=>w.if((0,e._)`${A} !== true`,()=>{C===!0?w.assign(A,!0):(w.assign(A,(0,e._)`${A} || {}`),_(w,A,C))}),mergeValues:(w,C)=>w===!0?!0:{...w,...C},resultToName:S}),items:v({mergeNames:(w,C,A)=>w.if((0,e._)`${A} !== true && ${C} !== undefined`,()=>w.assign(A,(0,e._)`${C} === true ? true : ${A} > ${C} ? ${A} : ${C}`)),mergeToName:(w,C,A)=>w.if((0,e._)`${A} !== true`,()=>w.assign(A,C===!0?!0:(0,e._)`${A} > ${C} ? ${A} : ${C}`)),mergeValues:(w,C)=>w===!0?!0:Math.max(w,C),resultToName:(w,C)=>w.var("items",C)})};function S(w,C){if(C===!0)return w.var("props",!0);const A=w.var("props",(0,e._)`{}`);return C!==void 0&&_(w,A,C),A}t.evaluatedPropsToName=S;function _(w,C,A){Object.keys(A).forEach(W=>w.assign((0,e._)`${C}${(0,e.getProperty)(W)}`,!0))}t.setEvaluated=_;const g={};function T(w,C){return w.scopeValue("func",{ref:C,code:g[C.code]||(g[C.code]=new r._Code(C.code))})}t.useFunc=T;var N;(function(w){w[w.Num=0]="Num",w[w.Str=1]="Str"})(N=t.Type||(t.Type={}));function j(w,C,A){if(w instanceof e.Name){const W=C===N.Num;return A?W?(0,e._)`"[" + ${w} + "]"`:(0,e._)`"['" + ${w} + "']"`:W?(0,e._)`"/" + ${w}`:(0,e._)`"/" + ${w}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return A?(0,e.getProperty)(w).toString():"/"+y(w)}t.getErrorPath=j;function D(w,C,A=w.opts.strictSchema){if(A){if(C=`strict mode: ${C}`,A===!0)throw new Error(C);w.self.logger.warn(C)}}t.checkStrictMode=D})(re);var Ge={};Object.defineProperty(Ge,"__esModule",{value:!0});const ve=K,Ya={data:new ve.Name("data"),valCxt:new ve.Name("valCxt"),instancePath:new ve.Name("instancePath"),parentData:new ve.Name("parentData"),parentDataProperty:new ve.Name("parentDataProperty"),rootData:new ve.Name("rootData"),dynamicAnchors:new ve.Name("dynamicAnchors"),vErrors:new ve.Name("vErrors"),errors:new ve.Name("errors"),this:new ve.Name("this"),self:new ve.Name("self"),scope:new ve.Name("scope"),json:new ve.Name("json"),jsonPos:new ve.Name("jsonPos"),jsonLen:new ve.Name("jsonLen"),jsonPart:new ve.Name("jsonPart")};Ge.default=Ya;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.extendErrors=t.resetErrorsCount=t.reportExtraError=t.reportError=t.keyword$DataError=t.keywordError=void 0;const e=K,r=re,n=Ge;t.keywordError={message:({keyword:_})=>(0,e.str)`must pass "${_}" keyword validation`},t.keyword$DataError={message:({keyword:_,schemaType:g})=>g?(0,e.str)`"${_}" keyword must be ${g} ($data)`:(0,e.str)`"${_}" keyword is invalid ($data)`};function s(_,g=t.keywordError,T,N){const{it:j}=_,{gen:D,compositeRule:w,allErrors:C}=j,A=y(_,g,T);N??(w||C)?p(D,A):u(j,(0,e._)`[${A}]`)}t.reportError=s;function i(_,g=t.keywordError,T){const{it:N}=_,{gen:j,compositeRule:D,allErrors:w}=N,C=y(_,g,T);p(j,C),D||w||u(N,n.default.vErrors)}t.reportExtraError=i;function a(_,g){_.assign(n.default.errors,g),_.if((0,e._)`${n.default.vErrors} !== null`,()=>_.if(g,()=>_.assign((0,e._)`${n.default.vErrors}.length`,g),()=>_.assign(n.default.vErrors,null)))}t.resetErrorsCount=a;function l({gen:_,keyword:g,schemaValue:T,data:N,errsCount:j,it:D}){if(j===void 0)throw new Error("ajv implementation error");const w=_.name("err");_.forRange("i",j,n.default.errors,C=>{_.const(w,(0,e._)`${n.default.vErrors}[${C}]`),_.if((0,e._)`${w}.instancePath === undefined`,()=>_.assign((0,e._)`${w}.instancePath`,(0,e.strConcat)(n.default.instancePath,D.errorPath))),_.assign((0,e._)`${w}.schemaPath`,(0,e.str)`${D.errSchemaPath}/${g}`),D.opts.verbose&&(_.assign((0,e._)`${w}.schema`,T),_.assign((0,e._)`${w}.data`,N))})}t.extendErrors=l;function p(_,g){const T=_.const("err",g);_.if((0,e._)`${n.default.vErrors} === null`,()=>_.assign(n.default.vErrors,(0,e._)`[${T}]`),(0,e._)`${n.default.vErrors}.push(${T})`),_.code((0,e._)`${n.default.errors}++`)}function u(_,g){const{gen:T,validateName:N,schemaEnv:j}=_;j.$async?T.throw((0,e._)`new ${_.ValidationError}(${g})`):(T.assign((0,e._)`${N}.errors`,g),T.return(!1))}const f={keyword:new e.Name("keyword"),schemaPath:new e.Name("schemaPath"),params:new e.Name("params"),propertyName:new e.Name("propertyName"),message:new e.Name("message"),schema:new e.Name("schema"),parentSchema:new e.Name("parentSchema")};function y(_,g,T){const{createErrors:N}=_.it;return N===!1?(0,e._)`{}`:R(_,g,T)}function R(_,g,T={}){const{gen:N,it:j}=_,D=[O(j,T),v(_,T)];return S(_,g,D),N.object(...D)}function O({errorPath:_},{instancePath:g}){const T=g?(0,e.str)`${_}${(0,r.getErrorPath)(g,r.Type.Str)}`:_;return[n.default.instancePath,(0,e.strConcat)(n.default.instancePath,T)]}function v({keyword:_,it:{errSchemaPath:g}},{schemaPath:T,parentSchema:N}){let j=N?g:(0,e.str)`${g}/${_}`;return T&&(j=(0,e.str)`${j}${(0,r.getErrorPath)(T,r.Type.Str)}`),[f.schemaPath,j]}function S(_,{params:g,message:T},N){const{keyword:j,data:D,schemaValue:w,it:C}=_,{opts:A,propertyName:W,topSchemaRef:G,schemaPath:ce}=C;N.push([f.keyword,j],[f.params,typeof g=="function"?g(_):g||(0,e._)`{}`]),A.messages&&N.push([f.message,typeof T=="function"?T(_):T]),A.verbose&&N.push([f.schema,w],[f.parentSchema,(0,e._)`${G}${ce}`],[n.default.data,D]),W&&N.push([f.propertyName,W])}})(_r);Object.defineProperty(Bt,"__esModule",{value:!0});Bt.boolOrEmptySchema=Bt.topBoolOrEmptySchema=void 0;const Za=_r,Qa=K,Xa=Ge,ec={message:"boolean schema is false"};function tc(t){const{gen:e,schema:r,validateName:n}=t;r===!1?ao(t,!1):typeof r=="object"&&r.$async===!0?e.return(Xa.default.data):(e.assign((0,Qa._)`${n}.errors`,null),e.return(!0))}Bt.topBoolOrEmptySchema=tc;function rc(t,e){const{gen:r,schema:n}=t;n===!1?(r.var(e,!1),ao(t)):r.var(e,!0)}Bt.boolOrEmptySchema=rc;function ao(t,e){const{gen:r,data:n}=t,s={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:t};(0,Za.reportError)(s,ec,void 0,e)}var vr={},wt={};Object.defineProperty(wt,"__esModule",{value:!0});wt.getRules=wt.isJSONType=void 0;const nc=["string","number","integer","boolean","null","object","array"],sc=new Set(nc);function ic(t){return typeof t=="string"&&sc.has(t)}wt.isJSONType=ic;function oc(){const t={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...t,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},t.number,t.string,t.array,t.object],post:{rules:[]},all:{},keywords:{}}}wt.getRules=oc;var Ze={};Object.defineProperty(Ze,"__esModule",{value:!0});Ze.shouldUseRule=Ze.shouldUseGroup=Ze.schemaHasRulesForType=void 0;function ac({schema:t,self:e},r){const n=e.RULES.types[r];return n&&n!==!0&&co(t,n)}Ze.schemaHasRulesForType=ac;function co(t,e){return e.rules.some(r=>lo(t,r))}Ze.shouldUseGroup=co;function lo(t,e){var r;return t[e.keyword]!==void 0||((r=e.definition.implements)===null||r===void 0?void 0:r.some(n=>t[n]!==void 0))}Ze.shouldUseRule=lo;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.reportTypeError=t.checkDataTypes=t.checkDataType=t.coerceAndCheckDataType=t.getJSONTypes=t.getSchemaTypes=t.DataType=void 0;const e=wt,r=Ze,n=_r,s=K,i=re;var a;(function(N){N[N.Correct=0]="Correct",N[N.Wrong=1]="Wrong"})(a=t.DataType||(t.DataType={}));function l(N){const j=p(N.type);if(j.includes("null")){if(N.nullable===!1)throw new Error("type: null contradicts nullable: false")}else{if(!j.length&&N.nullable!==void 0)throw new Error('"nullable" cannot be used without "type"');N.nullable===!0&&j.push("null")}return j}t.getSchemaTypes=l;function p(N){const j=Array.isArray(N)?N:N?[N]:[];if(j.every(e.isJSONType))return j;throw new Error("type must be JSONType or JSONType[]: "+j.join(","))}t.getJSONTypes=p;function u(N,j){const{gen:D,data:w,opts:C}=N,A=y(j,C.coerceTypes),W=j.length>0&&!(A.length===0&&j.length===1&&(0,r.schemaHasRulesForType)(N,j[0]));if(W){const G=S(j,w,C.strictNumbers,a.Wrong);D.if(G,()=>{A.length?R(N,j,A):g(N)})}return W}t.coerceAndCheckDataType=u;const f=new Set(["string","number","integer","boolean","null"]);function y(N,j){return j?N.filter(D=>f.has(D)||j==="array"&&D==="array"):[]}function R(N,j,D){const{gen:w,data:C,opts:A}=N,W=w.let("dataType",(0,s._)`typeof ${C}`),G=w.let("coerced",(0,s._)`undefined`);A.coerceTypes==="array"&&w.if((0,s._)`${W} == 'object' && Array.isArray(${C}) && ${C}.length == 1`,()=>w.assign(C,(0,s._)`${C}[0]`).assign(W,(0,s._)`typeof ${C}`).if(S(j,C,A.strictNumbers),()=>w.assign(G,C))),w.if((0,s._)`${G} !== undefined`);for(const Q of D)(f.has(Q)||Q==="array"&&A.coerceTypes==="array")&&ce(Q);w.else(),g(N),w.endIf(),w.if((0,s._)`${G} !== undefined`,()=>{w.assign(C,G),O(N,G)});function ce(Q){switch(Q){case"string":w.elseIf((0,s._)`${W} == "number" || ${W} == "boolean"`).assign(G,(0,s._)`"" + ${C}`).elseIf((0,s._)`${C} === null`).assign(G,(0,s._)`""`);return;case"number":w.elseIf((0,s._)`${W} == "boolean" || ${C} === null
|
|
533
|
-
|| (${W} == "string" && ${C} && ${C} == +${C})`).assign(
|
|
534
|
-
|| (${W} === "string" && ${C} && ${C} == +${C} && !(${C} % 1))`).assign(
|
|
535
|
-
|| ${W} === "boolean" || ${C} === null`).assign(G,(0,s._)`[${C}]`)}}}function O({gen:N,parentData:j,parentDataProperty:D},w){N.if((0,s._)`${j} !== undefined`,()=>N.assign((0,s._)`${j}[${D}]`,w))}function v(N,j,D,w=a.Correct){const C=w===a.Correct?s.operators.EQ:s.operators.NEQ;let A;switch(N){case"null":return(0,s._)`${j} ${C} null`;case"array":A=(0,s._)`Array.isArray(${j})`;break;case"object":A=(0,s._)`${j} && typeof ${j} == "object" && !Array.isArray(${j})`;break;case"integer":A=W((0,s._)`!(${j} % 1) && !isNaN(${j})`);break;case"number":A=W();break;default:return(0,s._)`typeof ${j} ${C} ${N}`}return w===a.Correct?A:(0,s.not)(A);function W(G=s.nil){return(0,s.and)((0,s._)`typeof ${j} == "number"`,G,D?(0,s._)`isFinite(${j})`:s.nil)}}t.checkDataType=v;function S(N,j,D,w){if(N.length===1)return v(N[0],j,D,w);let C;const A=(0,i.toHash)(N);if(A.array&&A.object){const W=(0,s._)`typeof ${j} != "object"`;C=A.null?W:(0,s._)`!${j} || ${W}`,delete A.null,delete A.array,delete A.object}else C=s.nil;A.number&&delete A.integer;for(const W in A)C=(0,s.and)(C,v(W,j,D,w));return C}t.checkDataTypes=S;const _={message:({schema:N})=>`must be ${N}`,params:({schema:N,schemaValue:j})=>typeof N=="string"?(0,s._)`{type: ${N}}`:(0,s._)`{type: ${j}}`};function g(N){const j=T(N);(0,n.reportError)(j,_)}t.reportTypeError=g;function T(N){const{gen:j,data:D,schema:w}=N,C=(0,i.schemaRefOrVal)(N,w,"type");return{gen:j,keyword:"type",data:D,schema:w.type,schemaCode:C,schemaValue:C,parentSchema:w,params:{},it:N}}})(vr);var an={};Object.defineProperty(an,"__esModule",{value:!0});an.assignDefaults=void 0;const At=K,cc=re;function lc(t,e){const{properties:r,items:n}=t.schema;if(e==="object"&&r)for(const s in r)Bs(t,s,r[s].default);else e==="array"&&Array.isArray(n)&&n.forEach((s,i)=>Bs(t,i,s.default))}an.assignDefaults=lc;function Bs(t,e,r){const{gen:n,compositeRule:s,data:i,opts:a}=t;if(r===void 0)return;const l=(0,At._)`${i}${(0,At.getProperty)(e)}`;if(s){(0,cc.checkStrictMode)(t,`default is ignored for: ${l}`);return}let p=(0,At._)`${l} === undefined`;a.useDefaults==="empty"&&(p=(0,At._)`${p} || ${l} === null || ${l} === ""`),n.if(p,(0,At._)`${l} = ${(0,At.stringify)(r)}`)}var Ke={},B={};Object.defineProperty(B,"__esModule",{value:!0});B.validateUnion=B.validateArray=B.usePattern=B.callValidateCode=B.schemaProperties=B.allSchemaProperties=B.noPropertyInData=B.propertyInData=B.isOwnProperty=B.hasPropFunc=B.reportMissingProp=B.checkMissingProp=B.checkReportMissingProp=void 0;const ie=K,qn=re,tt=Ge,uc=re;function dc(t,e){const{gen:r,data:n,it:s}=t;r.if(Un(r,n,e,s.opts.ownProperties),()=>{t.setParams({missingProperty:(0,ie._)`${e}`},!0),t.error()})}B.checkReportMissingProp=dc;function pc({gen:t,data:e,it:{opts:r}},n,s){return(0,ie.or)(...n.map(i=>(0,ie.and)(Un(t,e,i,r.ownProperties),(0,ie._)`${s} = ${i}`)))}B.checkMissingProp=pc;function fc(t,e){t.setParams({missingProperty:e},!0),t.error()}B.reportMissingProp=fc;function uo(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,ie._)`Object.prototype.hasOwnProperty`})}B.hasPropFunc=uo;function Mn(t,e,r){return(0,ie._)`${uo(t)}.call(${e}, ${r})`}B.isOwnProperty=Mn;function hc(t,e,r,n){const s=(0,ie._)`${e}${(0,ie.getProperty)(r)} !== undefined`;return n?(0,ie._)`${s} && ${Mn(t,e,r)}`:s}B.propertyInData=hc;function Un(t,e,r,n){const s=(0,ie._)`${e}${(0,ie.getProperty)(r)} === undefined`;return n?(0,ie.or)(s,(0,ie.not)(Mn(t,e,r))):s}B.noPropertyInData=Un;function po(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}B.allSchemaProperties=po;function mc(t,e){return po(e).filter(r=>!(0,qn.alwaysValidSchema)(t,e[r]))}B.schemaProperties=mc;function yc({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:s,errorPath:i},it:a},l,p,u){const f=u?(0,ie._)`${t}, ${e}, ${n}${s}`:e,y=[[tt.default.instancePath,(0,ie.strConcat)(tt.default.instancePath,i)],[tt.default.parentData,a.parentData],[tt.default.parentDataProperty,a.parentDataProperty],[tt.default.rootData,tt.default.rootData]];a.opts.dynamicRef&&y.push([tt.default.dynamicAnchors,tt.default.dynamicAnchors]);const R=(0,ie._)`${f}, ${r.object(...y)}`;return p!==ie.nil?(0,ie._)`${l}.call(${p}, ${R})`:(0,ie._)`${l}(${R})`}B.callValidateCode=yc;const gc=(0,ie._)`new RegExp`;function $c({gen:t,it:{opts:e}},r){const n=e.unicodeRegExp?"u":"",{regExp:s}=e.code,i=s(r,n);return t.scopeValue("pattern",{key:i.toString(),ref:i,code:(0,ie._)`${s.code==="new RegExp"?gc:(0,uc.useFunc)(t,s)}(${r}, ${n})`})}B.usePattern=$c;function _c(t){const{gen:e,data:r,keyword:n,it:s}=t,i=e.name("valid");if(s.allErrors){const l=e.let("valid",!0);return a(()=>e.assign(l,!1)),l}return e.var(i,!0),a(()=>e.break()),i;function a(l){const p=e.const("len",(0,ie._)`${r}.length`);e.forRange("i",0,p,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:qn.Type.Num},i),e.if((0,ie.not)(i),l)})}}B.validateArray=_c;function vc(t){const{gen:e,schema:r,keyword:n,it:s}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(r.some(p=>(0,qn.alwaysValidSchema)(s,p))&&!s.opts.unevaluated)return;const a=e.let("valid",!1),l=e.name("_valid");e.block(()=>r.forEach((p,u)=>{const f=t.subschema({keyword:n,schemaProp:u,compositeRule:!0},l);e.assign(a,(0,ie._)`${a} || ${l}`),t.mergeValidEvaluated(f,l)||e.if((0,ie.not)(a))})),t.result(a,()=>t.reset(),()=>t.error(!0))}B.validateUnion=vc;Object.defineProperty(Ke,"__esModule",{value:!0});Ke.validateKeywordUsage=Ke.validSchemaType=Ke.funcKeywordCode=Ke.macroKeywordCode=void 0;const be=K,ht=Ge,wc=B,bc=_r;function Pc(t,e){const{gen:r,keyword:n,schema:s,parentSchema:i,it:a}=t,l=e.macro.call(a.self,s,i,a),p=fo(r,n,l);a.opts.validateSchema!==!1&&a.self.validateSchema(l,!0);const u=r.name("valid");t.subschema({schema:l,schemaPath:be.nil,errSchemaPath:`${a.errSchemaPath}/${n}`,topSchemaRef:p,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}Ke.macroKeywordCode=Pc;function Ec(t,e){var r;const{gen:n,keyword:s,schema:i,parentSchema:a,$data:l,it:p}=t;Tc(p,e);const u=!l&&e.compile?e.compile.call(p.self,i,a,p):e.validate,f=fo(n,s,u),y=n.let("valid");t.block$data(y,R),t.ok((r=e.valid)!==null&&r!==void 0?r:y);function R(){if(e.errors===!1)S(),e.modifying&&Ks(t),_(()=>t.error());else{const g=e.async?O():v();e.modifying&&Ks(t),_(()=>Sc(t,g))}}function O(){const g=n.let("ruleErrs",null);return n.try(()=>S((0,be._)`await `),T=>n.assign(y,!1).if((0,be._)`${T} instanceof ${p.ValidationError}`,()=>n.assign(g,(0,be._)`${T}.errors`),()=>n.throw(T))),g}function v(){const g=(0,be._)`${f}.errors`;return n.assign(g,null),S(be.nil),g}function S(g=e.async?(0,be._)`await `:be.nil){const T=p.opts.passContext?ht.default.this:ht.default.self,N=!("compile"in e&&!l||e.schema===!1);n.assign(y,(0,be._)`${g}${(0,wc.callValidateCode)(t,f,T,N)}`,e.modifying)}function _(g){var T;n.if((0,be.not)((T=e.valid)!==null&&T!==void 0?T:y),g)}}Ke.funcKeywordCode=Ec;function Ks(t){const{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,be._)`${n.parentData}[${n.parentDataProperty}]`))}function Sc(t,e){const{gen:r}=t;r.if((0,be._)`Array.isArray(${e})`,()=>{r.assign(ht.default.vErrors,(0,be._)`${ht.default.vErrors} === null ? ${e} : ${ht.default.vErrors}.concat(${e})`).assign(ht.default.errors,(0,be._)`${ht.default.vErrors}.length`),(0,bc.extendErrors)(t)},()=>t.error())}function Tc({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function fo(t,e,r){if(r===void 0)throw new Error(`keyword "${e}" failed to compile`);return t.scopeValue("keyword",typeof r=="function"?{ref:r}:{ref:r,code:(0,be.stringify)(r)})}function Rc(t,e,r=!1){return!e.length||e.some(n=>n==="array"?Array.isArray(t):n==="object"?t&&typeof t=="object"&&!Array.isArray(t):typeof t==n||r&&typeof t>"u")}Ke.validSchemaType=Rc;function Oc({schema:t,opts:e,self:r,errSchemaPath:n},s,i){if(Array.isArray(s.keyword)?!s.keyword.includes(i):s.keyword!==i)throw new Error("ajv implementation error");const a=s.dependencies;if(a!=null&&a.some(l=>!Object.prototype.hasOwnProperty.call(t,l)))throw new Error(`parent schema must have dependencies of ${i}: ${a.join(",")}`);if(s.validateSchema&&!s.validateSchema(t[i])){const p=`keyword "${i}" value is invalid at path "${n}": `+r.errorsText(s.validateSchema.errors);if(e.validateSchema==="log")r.logger.error(p);else throw new Error(p)}}Ke.validateKeywordUsage=Oc;var ot={};Object.defineProperty(ot,"__esModule",{value:!0});ot.extendSubschemaMode=ot.extendSubschemaData=ot.getSubschema=void 0;const Be=K,ho=re;function Nc(t,{keyword:e,schemaProp:r,schema:n,schemaPath:s,errSchemaPath:i,topSchemaRef:a}){if(e!==void 0&&n!==void 0)throw new Error('both "keyword" and "schema" passed, only one allowed');if(e!==void 0){const l=t.schema[e];return r===void 0?{schema:l,schemaPath:(0,Be._)`${t.schemaPath}${(0,Be.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:l[r],schemaPath:(0,Be._)`${t.schemaPath}${(0,Be.getProperty)(e)}${(0,Be.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,ho.escapeFragment)(r)}`}}if(n!==void 0){if(s===void 0||i===void 0||a===void 0)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:n,schemaPath:s,topSchemaRef:a,errSchemaPath:i}}throw new Error('either "keyword" or "schema" must be passed')}ot.getSubschema=Nc;function Cc(t,e,{dataProp:r,dataPropType:n,data:s,dataTypes:i,propertyName:a}){if(s!==void 0&&r!==void 0)throw new Error('both "data" and "dataProp" passed, only one allowed');const{gen:l}=e;if(r!==void 0){const{errorPath:u,dataPathArr:f,opts:y}=e,R=l.let("data",(0,Be._)`${e.data}${(0,Be.getProperty)(r)}`,!0);p(R),t.errorPath=(0,Be.str)`${u}${(0,ho.getErrorPath)(r,n,y.jsPropertySyntax)}`,t.parentDataProperty=(0,Be._)`${r}`,t.dataPathArr=[...f,t.parentDataProperty]}if(s!==void 0){const u=s instanceof Be.Name?s:l.let("data",s,!0);p(u),a!==void 0&&(t.propertyName=a)}i&&(t.dataTypes=i);function p(u){t.data=u,t.dataLevel=e.dataLevel+1,t.dataTypes=[],e.definedProperties=new Set,t.parentData=e.data,t.dataNames=[...e.dataNames,u]}}ot.extendSubschemaData=Cc;function kc(t,{jtdDiscriminator:e,jtdMetadata:r,compositeRule:n,createErrors:s,allErrors:i}){n!==void 0&&(t.compositeRule=n),s!==void 0&&(t.createErrors=s),i!==void 0&&(t.allErrors=i),t.jtdDiscriminator=e,t.jtdMetadata=r}ot.extendSubschemaMode=kc;var ge={},mo=function t(e,r){if(e===r)return!0;if(e&&r&&typeof e=="object"&&typeof r=="object"){if(e.constructor!==r.constructor)return!1;var n,s,i;if(Array.isArray(e)){if(n=e.length,n!=r.length)return!1;for(s=n;s--!==0;)if(!t(e[s],r[s]))return!1;return!0}if(e.constructor===RegExp)return e.source===r.source&&e.flags===r.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===r.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===r.toString();if(i=Object.keys(e),n=i.length,n!==Object.keys(r).length)return!1;for(s=n;s--!==0;)if(!Object.prototype.hasOwnProperty.call(r,i[s]))return!1;for(s=n;s--!==0;){var a=i[s];if(!t(e[a],r[a]))return!1}return!0}return e!==e&&r!==r},yo={exports:{}},it=yo.exports=function(t,e,r){typeof e=="function"&&(r=e,e={}),r=e.cb||r;var n=typeof r=="function"?r:r.pre||function(){},s=r.post||function(){};Ar(e,n,s,t,"",t)};it.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};it.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};it.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};it.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function Ar(t,e,r,n,s,i,a,l,p,u){if(n&&typeof n=="object"&&!Array.isArray(n)){e(n,s,i,a,l,p,u);for(var f in n){var y=n[f];if(Array.isArray(y)){if(f in it.arrayKeywords)for(var R=0;R<y.length;R++)Ar(t,e,r,y[R],s+"/"+f+"/"+R,i,s,f,n,R)}else if(f in it.propsKeywords){if(y&&typeof y=="object")for(var O in y)Ar(t,e,r,y[O],s+"/"+f+"/"+jc(O),i,s,f,n,O)}else(f in it.keywords||t.allKeys&&!(f in it.skipKeywords))&&Ar(t,e,r,y,s+"/"+f,i,s,f,n)}r(n,s,i,a,l,p,u)}}function jc(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}var Ic=yo.exports;Object.defineProperty(ge,"__esModule",{value:!0});ge.getSchemaRefs=ge.resolveUrl=ge.normalizeId=ge._getFullPath=ge.getFullPath=ge.inlineRef=void 0;const Ac=re,Dc=mo,Fc=Ic,qc=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function Mc(t,e=!0){return typeof t=="boolean"?!0:e===!0?!bn(t):e?go(t)<=e:!1}ge.inlineRef=Mc;const Uc=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function bn(t){for(const e in t){if(Uc.has(e))return!0;const r=t[e];if(Array.isArray(r)&&r.some(bn)||typeof r=="object"&&bn(r))return!0}return!1}function go(t){let e=0;for(const r in t){if(r==="$ref")return 1/0;if(e++,!qc.has(r)&&(typeof t[r]=="object"&&(0,Ac.eachItem)(t[r],n=>e+=go(n)),e===1/0))return 1/0}return e}function $o(t,e="",r){r!==!1&&(e=Ut(e));const n=t.parse(e);return _o(t,n)}ge.getFullPath=$o;function _o(t,e){return t.serialize(e).split("#")[0]+"#"}ge._getFullPath=_o;const Lc=/#\/?$/;function Ut(t){return t?t.replace(Lc,""):""}ge.normalizeId=Ut;function zc(t,e,r){return r=Ut(r),t.resolve(e,r)}ge.resolveUrl=zc;const Hc=/^[a-z_][-a-z0-9._]*$/i;function Vc(t,e){if(typeof t=="boolean")return{};const{schemaId:r,uriResolver:n}=this.opts,s=Ut(t[r]||e),i={"":s},a=$o(n,s,!1),l={},p=new Set;return Fc(t,{allKeys:!0},(y,R,O,v)=>{if(v===void 0)return;const S=a+R;let _=i[v];typeof y[r]=="string"&&(_=g.call(this,y[r])),T.call(this,y.$anchor),T.call(this,y.$dynamicAnchor),i[R]=_;function g(N){const j=this.opts.uriResolver.resolve;if(N=Ut(_?j(_,N):N),p.has(N))throw f(N);p.add(N);let D=this.refs[N];return typeof D=="string"&&(D=this.refs[D]),typeof D=="object"?u(y,D.schema,N):N!==Ut(S)&&(N[0]==="#"?(u(y,l[N],N),l[N]=y):this.refs[N]=S),N}function T(N){if(typeof N=="string"){if(!Hc.test(N))throw new Error(`invalid anchor "${N}"`);g.call(this,`#${N}`)}}}),l;function u(y,R,O){if(R!==void 0&&!Dc(y,R))throw f(O)}function f(y){return new Error(`reference "${y}" resolves to more than one schema`)}}ge.getSchemaRefs=Vc;Object.defineProperty(Ae,"__esModule",{value:!0});Ae.getData=Ae.KeywordCxt=Ae.validateFunctionCode=void 0;const vo=Bt,Gs=vr,Ln=Ze,Mr=vr,Wc=an,ur=Ke,hn=ot,U=K,V=Ge,xc=ge,Qe=re,or=_r;function Bc(t){if(Po(t)&&(Eo(t),bo(t))){Jc(t);return}wo(t,()=>(0,vo.topBoolOrEmptySchema)(t))}Ae.validateFunctionCode=Bc;function wo({gen:t,validateName:e,schema:r,schemaEnv:n,opts:s},i){s.code.es5?t.func(e,(0,U._)`${V.default.data}, ${V.default.valCxt}`,n.$async,()=>{t.code((0,U._)`"use strict"; ${Js(r,s)}`),Gc(t,s),t.code(i)}):t.func(e,(0,U._)`${V.default.data}, ${Kc(s)}`,n.$async,()=>t.code(Js(r,s)).code(i))}function Kc(t){return(0,U._)`{${V.default.instancePath}="", ${V.default.parentData}, ${V.default.parentDataProperty}, ${V.default.rootData}=${V.default.data}${t.dynamicRef?(0,U._)`, ${V.default.dynamicAnchors}={}`:U.nil}}={}`}function Gc(t,e){t.if(V.default.valCxt,()=>{t.var(V.default.instancePath,(0,U._)`${V.default.valCxt}.${V.default.instancePath}`),t.var(V.default.parentData,(0,U._)`${V.default.valCxt}.${V.default.parentData}`),t.var(V.default.parentDataProperty,(0,U._)`${V.default.valCxt}.${V.default.parentDataProperty}`),t.var(V.default.rootData,(0,U._)`${V.default.valCxt}.${V.default.rootData}`),e.dynamicRef&&t.var(V.default.dynamicAnchors,(0,U._)`${V.default.valCxt}.${V.default.dynamicAnchors}`)},()=>{t.var(V.default.instancePath,(0,U._)`""`),t.var(V.default.parentData,(0,U._)`undefined`),t.var(V.default.parentDataProperty,(0,U._)`undefined`),t.var(V.default.rootData,V.default.data),e.dynamicRef&&t.var(V.default.dynamicAnchors,(0,U._)`{}`)})}function Jc(t){const{schema:e,opts:r,gen:n}=t;wo(t,()=>{r.$comment&&e.$comment&&To(t),el(t),n.let(V.default.vErrors,null),n.let(V.default.errors,0),r.unevaluated&&Yc(t),So(t),nl(t)})}function Yc(t){const{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,U._)`${r}.evaluated`),e.if((0,U._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,U._)`${t.evaluated}.props`,(0,U._)`undefined`)),e.if((0,U._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,U._)`${t.evaluated}.items`,(0,U._)`undefined`))}function Js(t,e){const r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,U._)`/*# sourceURL=${r} */`:U.nil}function Zc(t,e){if(Po(t)&&(Eo(t),bo(t))){Qc(t,e);return}(0,vo.boolOrEmptySchema)(t,e)}function bo({schema:t,self:e}){if(typeof t=="boolean")return!t;for(const r in t)if(e.RULES.all[r])return!0;return!1}function Po(t){return typeof t.schema!="boolean"}function Qc(t,e){const{schema:r,gen:n,opts:s}=t;s.$comment&&r.$comment&&To(t),tl(t),rl(t);const i=n.const("_errs",V.default.errors);So(t,i),n.var(e,(0,U._)`${i} === ${V.default.errors}`)}function Eo(t){(0,Qe.checkUnknownRules)(t),Xc(t)}function So(t,e){if(t.opts.jtd)return Ys(t,[],!1,e);const r=(0,Gs.getSchemaTypes)(t.schema),n=(0,Gs.coerceAndCheckDataType)(t,r);Ys(t,r,!n,e)}function Xc(t){const{schema:e,errSchemaPath:r,opts:n,self:s}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,Qe.schemaHasRulesButRef)(e,s.RULES)&&s.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function el(t){const{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Qe.checkStrictMode)(t,"default is ignored in the schema root")}function tl(t){const e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,xc.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function rl(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function To({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:s}){const i=r.$comment;if(s.$comment===!0)t.code((0,U._)`${V.default.self}.logger.log(${i})`);else if(typeof s.$comment=="function"){const a=(0,U.str)`${n}/$comment`,l=t.scopeValue("root",{ref:e.root});t.code((0,U._)`${V.default.self}.opts.$comment(${i}, ${a}, ${l}.schema)`)}}function nl(t){const{gen:e,schemaEnv:r,validateName:n,ValidationError:s,opts:i}=t;r.$async?e.if((0,U._)`${V.default.errors} === 0`,()=>e.return(V.default.data),()=>e.throw((0,U._)`new ${s}(${V.default.vErrors})`)):(e.assign((0,U._)`${n}.errors`,V.default.vErrors),i.unevaluated&&sl(t),e.return((0,U._)`${V.default.errors} === 0`))}function sl({gen:t,evaluated:e,props:r,items:n}){r instanceof U.Name&&t.assign((0,U._)`${e}.props`,r),n instanceof U.Name&&t.assign((0,U._)`${e}.items`,n)}function Ys(t,e,r,n){const{gen:s,schema:i,data:a,allErrors:l,opts:p,self:u}=t,{RULES:f}=u;if(i.$ref&&(p.ignoreKeywordsWithRef||!(0,Qe.schemaHasRulesButRef)(i,f))){s.block(()=>No(t,"$ref",f.all.$ref.definition));return}p.jtd||il(t,e),s.block(()=>{for(const R of f.rules)y(R);y(f.post)});function y(R){(0,Ln.shouldUseGroup)(i,R)&&(R.type?(s.if((0,Mr.checkDataType)(R.type,a,p.strictNumbers)),Zs(t,R),e.length===1&&e[0]===R.type&&r&&(s.else(),(0,Mr.reportTypeError)(t)),s.endIf()):Zs(t,R),l||s.if((0,U._)`${V.default.errors} === ${n||0}`))}}function Zs(t,e){const{gen:r,schema:n,opts:{useDefaults:s}}=t;s&&(0,Wc.assignDefaults)(t,e.type),r.block(()=>{for(const i of e.rules)(0,Ln.shouldUseRule)(n,i)&&No(t,i.keyword,i.definition,e.type)})}function il(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(ol(t,e),t.opts.allowUnionTypes||al(t,e),cl(t,t.dataTypes))}function ol(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{Ro(t.dataTypes,r)||zn(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),ul(t,e)}}function al(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&zn(t,"use allowUnionTypes to allow union type keyword")}function cl(t,e){const r=t.self.RULES.all;for(const n in r){const s=r[n];if(typeof s=="object"&&(0,Ln.shouldUseRule)(t.schema,s)){const{type:i}=s.definition;i.length&&!i.some(a=>ll(e,a))&&zn(t,`missing type "${i.join(",")}" for keyword "${n}"`)}}}function ll(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function Ro(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function ul(t,e){const r=[];for(const n of t.dataTypes)Ro(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function zn(t,e){const r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,Qe.checkStrictMode)(t,e,t.opts.strictTypes)}class Oo{constructor(e,r,n){if((0,ur.validateKeywordUsage)(e,r,n),this.gen=e.gen,this.allErrors=e.allErrors,this.keyword=n,this.data=e.data,this.schema=e.schema[n],this.$data=r.$data&&e.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,Qe.schemaRefOrVal)(e,this.schema,n,this.$data),this.schemaType=r.schemaType,this.parentSchema=e.schema,this.params={},this.it=e,this.def=r,this.$data)this.schemaCode=e.gen.const("vSchema",Co(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,ur.validSchemaType)(this.schema,r.schemaType,r.allowUndefined))throw new Error(`${n} value must be ${JSON.stringify(r.schemaType)}`);("code"in r?r.trackErrors:r.errors!==!1)&&(this.errsCount=e.gen.const("_errs",V.default.errors))}result(e,r,n){this.failResult((0,U.not)(e),r,n)}failResult(e,r,n){this.gen.if(e),n?n():this.error(),r?(this.gen.else(),r(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(e,r){this.failResult((0,U.not)(e),void 0,r)}fail(e){if(e===void 0){this.error(),this.allErrors||this.gen.if(!1);return}this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(e){if(!this.$data)return this.fail(e);const{schemaCode:r}=this;this.fail((0,U._)`${r} !== undefined && (${(0,U.or)(this.invalid$data(),e)})`)}error(e,r,n){if(r){this.setParams(r),this._error(e,n),this.setParams({});return}this._error(e,n)}_error(e,r){(e?or.reportExtraError:or.reportError)(this,this.def.error,r)}$dataError(){(0,or.reportError)(this,this.def.$dataError||or.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,or.resetErrorsCount)(this.gen,this.errsCount)}ok(e){this.allErrors||this.gen.if(e)}setParams(e,r){r?Object.assign(this.params,e):this.params=e}block$data(e,r,n=U.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=U.nil,r=U.nil){if(!this.$data)return;const{gen:n,schemaCode:s,schemaType:i,def:a}=this;n.if((0,U.or)((0,U._)`${s} === undefined`,r)),e!==U.nil&&n.assign(e,!0),(i.length||a.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==U.nil&&n.assign(e,!1)),n.else()}invalid$data(){const{gen:e,schemaCode:r,schemaType:n,def:s,it:i}=this;return(0,U.or)(a(),l());function a(){if(n.length){if(!(r instanceof U.Name))throw new Error("ajv implementation error");const p=Array.isArray(n)?n:[n];return(0,U._)`${(0,Mr.checkDataTypes)(p,r,i.opts.strictNumbers,Mr.DataType.Wrong)}`}return U.nil}function l(){if(s.validateSchema){const p=e.scopeValue("validate$data",{ref:s.validateSchema});return(0,U._)`!${p}(${r})`}return U.nil}}subschema(e,r){const n=(0,hn.getSubschema)(this.it,e);(0,hn.extendSubschemaData)(n,this.it,e),(0,hn.extendSubschemaMode)(n,e);const s={...this.it,...n,items:void 0,props:void 0};return Zc(s,r),s}mergeEvaluated(e,r){const{it:n,gen:s}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=Qe.mergeEvaluated.props(s,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=Qe.mergeEvaluated.items(s,e.items,n.items,r)))}mergeValidEvaluated(e,r){const{it:n,gen:s}=this;if(n.opts.unevaluated&&(n.props!==!0||n.items!==!0))return s.if(r,()=>this.mergeEvaluated(e,U.Name)),!0}}Ae.KeywordCxt=Oo;function No(t,e,r,n){const s=new Oo(t,r,e);"code"in r?r.code(s,n):s.$data&&r.validate?(0,ur.funcKeywordCode)(s,r):"macro"in r?(0,ur.macroKeywordCode)(s,r):(r.compile||r.validate)&&(0,ur.funcKeywordCode)(s,r)}const dl=/^\/(?:[^~]|~0|~1)*$/,pl=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function Co(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let s,i;if(t==="")return V.default.rootData;if(t[0]==="/"){if(!dl.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);s=t,i=V.default.rootData}else{const u=pl.exec(t);if(!u)throw new Error(`Invalid JSON-pointer: ${t}`);const f=+u[1];if(s=u[2],s==="#"){if(f>=e)throw new Error(p("property/index",f));return n[e-f]}if(f>e)throw new Error(p("data",f));if(i=r[e-f],!s)return i}let a=i;const l=s.split("/");for(const u of l)u&&(i=(0,U._)`${i}${(0,U.getProperty)((0,Qe.unescapeJsonPointer)(u))}`,a=(0,U._)`${a} && ${i}`);return a;function p(u,f){return`Cannot access ${u} ${f} levels up, current level is ${e}`}}Ae.getData=Co;var wr={};Object.defineProperty(wr,"__esModule",{value:!0});class fl extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}}wr.default=fl;var br={};Object.defineProperty(br,"__esModule",{value:!0});const mn=ge;class hl extends Error{constructor(e,r,n,s){super(s||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,mn.resolveUrl)(e,r,n),this.missingSchema=(0,mn.normalizeId)((0,mn.getFullPath)(e,this.missingRef))}}br.default=hl;var Se={};Object.defineProperty(Se,"__esModule",{value:!0});Se.resolveSchema=Se.getCompilingSchema=Se.resolveRef=Se.compileSchema=Se.SchemaEnv=void 0;const ke=K,ml=wr,ft=Ge,Ie=ge,Qs=re,yl=Ae;class cn{constructor(e){var r;this.refs={},this.dynamicAnchors={};let n;typeof e.schema=="object"&&(n=e.schema),this.schema=e.schema,this.schemaId=e.schemaId,this.root=e.root||this,this.baseId=(r=e.baseId)!==null&&r!==void 0?r:(0,Ie.normalizeId)(n==null?void 0:n[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n==null?void 0:n.$async,this.refs={}}}Se.SchemaEnv=cn;function Hn(t){const e=ko.call(this,t);if(e)return e;const r=(0,Ie.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:s}=this.opts.code,{ownProperties:i}=this.opts,a=new ke.CodeGen(this.scope,{es5:n,lines:s,ownProperties:i});let l;t.$async&&(l=a.scopeValue("Error",{ref:ml.default,code:(0,ke._)`require("ajv/dist/runtime/validation_error").default`}));const p=a.scopeName("validate");t.validateName=p;const u={gen:a,allErrors:this.opts.allErrors,data:ft.default.data,parentData:ft.default.parentData,parentDataProperty:ft.default.parentDataProperty,dataNames:[ft.default.data],dataPathArr:[ke.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:a.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,ke.stringify)(t.schema)}:{ref:t.schema}),validateName:p,ValidationError:l,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:ke.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,ke._)`""`,opts:this.opts,self:this};let f;try{this._compilations.add(t),(0,yl.validateFunctionCode)(u),a.optimize(this.opts.code.optimize);const y=a.toString();f=`${a.scopeRefs(ft.default.scope)}return ${y}`,this.opts.code.process&&(f=this.opts.code.process(f,t));const O=new Function(`${ft.default.self}`,`${ft.default.scope}`,f)(this,this.scope.get());if(this.scope.value(p,{ref:O}),O.errors=null,O.schema=t.schema,O.schemaEnv=t,t.$async&&(O.$async=!0),this.opts.code.source===!0&&(O.source={validateName:p,validateCode:y,scopeValues:a._values}),this.opts.unevaluated){const{props:v,items:S}=u;O.evaluated={props:v instanceof ke.Name?void 0:v,items:S instanceof ke.Name?void 0:S,dynamicProps:v instanceof ke.Name,dynamicItems:S instanceof ke.Name},O.source&&(O.source.evaluated=(0,ke.stringify)(O.evaluated))}return t.validate=O,t}catch(y){throw delete t.validate,delete t.validateName,f&&this.logger.error("Error compiling schema, function code:",f),y}finally{this._compilations.delete(t)}}Se.compileSchema=Hn;function gl(t,e,r){var n;r=(0,Ie.resolveUrl)(this.opts.uriResolver,e,r);const s=t.refs[r];if(s)return s;let i=vl.call(this,t,r);if(i===void 0){const a=(n=t.localRefs)===null||n===void 0?void 0:n[r],{schemaId:l}=this.opts;a&&(i=new cn({schema:a,schemaId:l,root:t,baseId:e}))}if(i!==void 0)return t.refs[r]=$l.call(this,i)}Se.resolveRef=gl;function $l(t){return(0,Ie.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:Hn.call(this,t)}function ko(t){for(const e of this._compilations)if(_l(e,t))return e}Se.getCompilingSchema=ko;function _l(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function vl(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||ln.call(this,t,e)}function ln(t,e){const r=this.opts.uriResolver.parse(e),n=(0,Ie._getFullPath)(this.opts.uriResolver,r);let s=(0,Ie.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===s)return yn.call(this,r,t);const i=(0,Ie.normalizeId)(n),a=this.refs[i]||this.schemas[i];if(typeof a=="string"){const l=ln.call(this,t,a);return typeof(l==null?void 0:l.schema)!="object"?void 0:yn.call(this,r,l)}if(typeof(a==null?void 0:a.schema)=="object"){if(a.validate||Hn.call(this,a),i===(0,Ie.normalizeId)(e)){const{schema:l}=a,{schemaId:p}=this.opts,u=l[p];return u&&(s=(0,Ie.resolveUrl)(this.opts.uriResolver,s,u)),new cn({schema:l,schemaId:p,root:t,baseId:s})}return yn.call(this,r,a)}}Se.resolveSchema=ln;const wl=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function yn(t,{baseId:e,schema:r,root:n}){var s;if(((s=t.fragment)===null||s===void 0?void 0:s[0])!=="/")return;for(const l of t.fragment.slice(1).split("/")){if(typeof r=="boolean")return;const p=r[(0,Qs.unescapeFragment)(l)];if(p===void 0)return;r=p;const u=typeof r=="object"&&r[this.opts.schemaId];!wl.has(l)&&u&&(e=(0,Ie.resolveUrl)(this.opts.uriResolver,e,u))}let i;if(typeof r!="boolean"&&r.$ref&&!(0,Qs.schemaHasRulesButRef)(r,this.RULES)){const l=(0,Ie.resolveUrl)(this.opts.uriResolver,e,r.$ref);i=ln.call(this,n,l)}const{schemaId:a}=this.opts;if(i=i||new cn({schema:r,schemaId:a,root:n,baseId:e}),i.schema!==i.root.schema)return i}const bl="https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",Pl="Meta-schema for $data reference (JSON AnySchema extension proposal)",El="object",Sl=["$data"],Tl={$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},Rl=!1,Ol={$id:bl,description:Pl,type:El,required:Sl,properties:Tl,additionalProperties:Rl};var Vn={},Pn={exports:{}};/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */(function(t,e){(function(r,n){n(e)})(Ga,function(r){function n(){for(var d=arguments.length,c=Array(d),m=0;m<d;m++)c[m]=arguments[m];if(c.length>1){c[0]=c[0].slice(0,-1);for(var E=c.length-1,P=1;P<E;++P)c[P]=c[P].slice(1,-1);return c[E]=c[E].slice(1),c.join("")}else return c[0]}function s(d){return"(?:"+d+")"}function i(d){return d===void 0?"undefined":d===null?"null":Object.prototype.toString.call(d).split(" ").pop().split("]").shift().toLowerCase()}function a(d){return d.toUpperCase()}function l(d){return d!=null?d instanceof Array?d:typeof d.length!="number"||d.split||d.setInterval||d.call?[d]:Array.prototype.slice.call(d):[]}function p(d,c){var m=d;if(c)for(var E in c)m[E]=c[E];return m}function u(d){var c="[A-Za-z]",m="[0-9]",E=n(m,"[A-Fa-f]"),P=s(s("%[EFef]"+E+"%"+E+E+"%"+E+E)+"|"+s("%[89A-Fa-f]"+E+"%"+E+E)+"|"+s("%"+E+E)),L="[\\:\\/\\?\\#\\[\\]\\@]",z="[\\!\\$\\&\\'\\(\\)\\*\\+\\,\\;\\=]",X=n(L,z),se=d?"[\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]":"[]",ue=d?"[\\uE000-\\uF8FF]":"[]",Y=n(c,m,"[\\-\\.\\_\\~]",se);s(c+n(c,m,"[\\+\\-\\.]")+"*"),s(s(P+"|"+n(Y,z,"[\\:]"))+"*");var ne=s(s("25[0-5]")+"|"+s("2[0-4]"+m)+"|"+s("1"+m+m)+"|"+s("0?[1-9]"+m)+"|0?0?"+m),de=s(ne+"\\."+ne+"\\."+ne+"\\."+ne),x=s(E+"{1,4}"),oe=s(s(x+"\\:"+x)+"|"+de),me=s(s(x+"\\:")+"{6}"+oe),ae=s("\\:\\:"+s(x+"\\:")+"{5}"+oe),Xe=s(s(x)+"?\\:\\:"+s(x+"\\:")+"{4}"+oe),ze=s(s(s(x+"\\:")+"{0,1}"+x)+"?\\:\\:"+s(x+"\\:")+"{3}"+oe),He=s(s(s(x+"\\:")+"{0,2}"+x)+"?\\:\\:"+s(x+"\\:")+"{2}"+oe),jt=s(s(s(x+"\\:")+"{0,3}"+x)+"?\\:\\:"+x+"\\:"+oe),dt=s(s(s(x+"\\:")+"{0,4}"+x)+"?\\:\\:"+oe),Ne=s(s(s(x+"\\:")+"{0,5}"+x)+"?\\:\\:"+x),Ve=s(s(s(x+"\\:")+"{0,6}"+x)+"?\\:\\:"),pt=s([me,ae,Xe,ze,He,jt,dt,Ne,Ve].join("|")),Je=s(s(Y+"|"+P)+"+");s("[vV]"+E+"+\\."+n(Y,z,"[\\:]")+"+"),s(s(P+"|"+n(Y,z))+"*");var sr=s(P+"|"+n(Y,z,"[\\:\\@]"));return s(s(P+"|"+n(Y,z,"[\\@]"))+"+"),s(s(sr+"|"+n("[\\/\\?]",ue))+"*"),{NOT_SCHEME:new RegExp(n("[^]",c,m,"[\\+\\-\\.]"),"g"),NOT_USERINFO:new RegExp(n("[^\\%\\:]",Y,z),"g"),NOT_HOST:new RegExp(n("[^\\%\\[\\]\\:]",Y,z),"g"),NOT_PATH:new RegExp(n("[^\\%\\/\\:\\@]",Y,z),"g"),NOT_PATH_NOSCHEME:new RegExp(n("[^\\%\\/\\@]",Y,z),"g"),NOT_QUERY:new RegExp(n("[^\\%]",Y,z,"[\\:\\@\\/\\?]",ue),"g"),NOT_FRAGMENT:new RegExp(n("[^\\%]",Y,z,"[\\:\\@\\/\\?]"),"g"),ESCAPE:new RegExp(n("[^]",Y,z),"g"),UNRESERVED:new RegExp(Y,"g"),OTHER_CHARS:new RegExp(n("[^\\%]",Y,X),"g"),PCT_ENCODED:new RegExp(P,"g"),IPV4ADDRESS:new RegExp("^("+de+")$"),IPV6ADDRESS:new RegExp("^\\[?("+pt+")"+s(s("\\%25|\\%(?!"+E+"{2})")+"("+Je+")")+"?\\]?$")}}var f=u(!1),y=u(!0),R=function(){function d(c,m){var E=[],P=!0,L=!1,z=void 0;try{for(var X=c[Symbol.iterator](),se;!(P=(se=X.next()).done)&&(E.push(se.value),!(m&&E.length===m));P=!0);}catch(ue){L=!0,z=ue}finally{try{!P&&X.return&&X.return()}finally{if(L)throw z}}return E}return function(c,m){if(Array.isArray(c))return c;if(Symbol.iterator in Object(c))return d(c,m);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),O=function(d){if(Array.isArray(d)){for(var c=0,m=Array(d.length);c<d.length;c++)m[c]=d[c];return m}else return Array.from(d)},v=2147483647,S=36,_=1,g=26,T=38,N=700,j=72,D=128,w="-",C=/^xn--/,A=/[^\0-\x7E]/,W=/[\x2E\u3002\uFF0E\uFF61]/g,G={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},ce=S-_,Q=Math.floor,Re=String.fromCharCode;function he(d){throw new RangeError(G[d])}function at(d,c){for(var m=[],E=d.length;E--;)m[E]=c(d[E]);return m}function ct(d,c){var m=d.split("@"),E="";m.length>1&&(E=m[0]+"@",d=m[1]),d=d.replace(W,".");var P=d.split("."),L=at(P,c).join(".");return E+L}function Et(d){for(var c=[],m=0,E=d.length;m<E;){var P=d.charCodeAt(m++);if(P>=55296&&P<=56319&&m<E){var L=d.charCodeAt(m++);(L&64512)==56320?c.push(((P&1023)<<10)+(L&1023)+65536):(c.push(P),m--)}else c.push(P)}return c}var Yt=function(c){return String.fromCodePoint.apply(String,O(c))},St=function(c){return c-48<10?c-22:c-65<26?c-65:c-97<26?c-97:S},F=function(c,m){return c+22+75*(c<26)-((m!=0)<<5)},$=function(c,m,E){var P=0;for(c=E?Q(c/N):c>>1,c+=Q(c/m);c>ce*g>>1;P+=S)c=Q(c/ce);return Q(P+(ce+1)*c/(c+T))},I=function(c){var m=[],E=c.length,P=0,L=D,z=j,X=c.lastIndexOf(w);X<0&&(X=0);for(var se=0;se<X;++se)c.charCodeAt(se)>=128&&he("not-basic"),m.push(c.charCodeAt(se));for(var ue=X>0?X+1:0;ue<E;){for(var Y=P,ne=1,de=S;;de+=S){ue>=E&&he("invalid-input");var x=St(c.charCodeAt(ue++));(x>=S||x>Q((v-P)/ne))&&he("overflow"),P+=x*ne;var oe=de<=z?_:de>=z+g?g:de-z;if(x<oe)break;var me=S-oe;ne>Q(v/me)&&he("overflow"),ne*=me}var ae=m.length+1;z=$(P-Y,ae,Y==0),Q(P/ae)>v-L&&he("overflow"),L+=Q(P/ae),P%=ae,m.splice(P++,0,L)}return String.fromCodePoint.apply(String,m)},b=function(c){var m=[];c=Et(c);var E=c.length,P=D,L=0,z=j,X=!0,se=!1,ue=void 0;try{for(var Y=c[Symbol.iterator](),ne;!(X=(ne=Y.next()).done);X=!0){var de=ne.value;de<128&&m.push(Re(de))}}catch(ir){se=!0,ue=ir}finally{try{!X&&Y.return&&Y.return()}finally{if(se)throw ue}}var x=m.length,oe=x;for(x&&m.push(w);oe<E;){var me=v,ae=!0,Xe=!1,ze=void 0;try{for(var He=c[Symbol.iterator](),jt;!(ae=(jt=He.next()).done);ae=!0){var dt=jt.value;dt>=P&&dt<me&&(me=dt)}}catch(ir){Xe=!0,ze=ir}finally{try{!ae&&He.return&&He.return()}finally{if(Xe)throw ze}}var Ne=oe+1;me-P>Q((v-L)/Ne)&&he("overflow"),L+=(me-P)*Ne,P=me;var Ve=!0,pt=!1,Je=void 0;try{for(var sr=c[Symbol.iterator](),Ns;!(Ve=(Ns=sr.next()).done);Ve=!0){var Cs=Ns.value;if(Cs<P&&++L>v&&he("overflow"),Cs==P){for(var Sr=L,Tr=S;;Tr+=S){var Rr=Tr<=z?_:Tr>=z+g?g:Tr-z;if(Sr<Rr)break;var ks=Sr-Rr,js=S-Rr;m.push(Re(F(Rr+ks%js,0))),Sr=Q(ks/js)}m.push(Re(F(Sr,0))),z=$(L,Ne,oe==x),L=0,++oe}}}catch(ir){pt=!0,Je=ir}finally{try{!Ve&&sr.return&&sr.return()}finally{if(pt)throw Je}}++L,++P}return m.join("")},o=function(c){return ct(c,function(m){return C.test(m)?I(m.slice(4).toLowerCase()):m})},h=function(c){return ct(c,function(m){return A.test(m)?"xn--"+b(m):m})},k={version:"2.1.0",ucs2:{decode:Et,encode:Yt},decode:I,encode:b,toASCII:h,toUnicode:o},q={};function M(d){var c=d.charCodeAt(0),m=void 0;return c<16?m="%0"+c.toString(16).toUpperCase():c<128?m="%"+c.toString(16).toUpperCase():c<2048?m="%"+(c>>6|192).toString(16).toUpperCase()+"%"+(c&63|128).toString(16).toUpperCase():m="%"+(c>>12|224).toString(16).toUpperCase()+"%"+(c>>6&63|128).toString(16).toUpperCase()+"%"+(c&63|128).toString(16).toUpperCase(),m}function J(d){for(var c="",m=0,E=d.length;m<E;){var P=parseInt(d.substr(m+1,2),16);if(P<128)c+=String.fromCharCode(P),m+=3;else if(P>=194&&P<224){if(E-m>=6){var L=parseInt(d.substr(m+4,2),16);c+=String.fromCharCode((P&31)<<6|L&63)}else c+=d.substr(m,6);m+=6}else if(P>=224){if(E-m>=9){var z=parseInt(d.substr(m+4,2),16),X=parseInt(d.substr(m+7,2),16);c+=String.fromCharCode((P&15)<<12|(z&63)<<6|X&63)}else c+=d.substr(m,9);m+=9}else c+=d.substr(m,3),m+=3}return c}function Z(d,c){function m(E){var P=J(E);return P.match(c.UNRESERVED)?P:E}return d.scheme&&(d.scheme=String(d.scheme).replace(c.PCT_ENCODED,m).toLowerCase().replace(c.NOT_SCHEME,"")),d.userinfo!==void 0&&(d.userinfo=String(d.userinfo).replace(c.PCT_ENCODED,m).replace(c.NOT_USERINFO,M).replace(c.PCT_ENCODED,a)),d.host!==void 0&&(d.host=String(d.host).replace(c.PCT_ENCODED,m).toLowerCase().replace(c.NOT_HOST,M).replace(c.PCT_ENCODED,a)),d.path!==void 0&&(d.path=String(d.path).replace(c.PCT_ENCODED,m).replace(d.scheme?c.NOT_PATH:c.NOT_PATH_NOSCHEME,M).replace(c.PCT_ENCODED,a)),d.query!==void 0&&(d.query=String(d.query).replace(c.PCT_ENCODED,m).replace(c.NOT_QUERY,M).replace(c.PCT_ENCODED,a)),d.fragment!==void 0&&(d.fragment=String(d.fragment).replace(c.PCT_ENCODED,m).replace(c.NOT_FRAGMENT,M).replace(c.PCT_ENCODED,a)),d}function le(d){return d.replace(/^0*(.*)/,"$1")||"0"}function Me(d,c){var m=d.match(c.IPV4ADDRESS)||[],E=R(m,2),P=E[1];return P?P.split(".").map(le).join("."):d}function Tt(d,c){var m=d.match(c.IPV6ADDRESS)||[],E=R(m,3),P=E[1],L=E[2];if(P){for(var z=P.toLowerCase().split("::").reverse(),X=R(z,2),se=X[0],ue=X[1],Y=ue?ue.split(":").map(le):[],ne=se.split(":").map(le),de=c.IPV4ADDRESS.test(ne[ne.length-1]),x=de?7:8,oe=ne.length-x,me=Array(x),ae=0;ae<x;++ae)me[ae]=Y[ae]||ne[oe+ae]||"";de&&(me[x-1]=Me(me[x-1],c));var Xe=me.reduce(function(Ne,Ve,pt){if(!Ve||Ve==="0"){var Je=Ne[Ne.length-1];Je&&Je.index+Je.length===pt?Je.length++:Ne.push({index:pt,length:1})}return Ne},[]),ze=Xe.sort(function(Ne,Ve){return Ve.length-Ne.length})[0],He=void 0;if(ze&&ze.length>1){var jt=me.slice(0,ze.index),dt=me.slice(ze.index+ze.length);He=jt.join(":")+"::"+dt.join(":")}else He=me.join(":");return L&&(He+="%"+L),He}else return d}var Zt=/^(?:([^:\/?#]+):)?(?:\/\/((?:([^\/?#@]*)@)?(\[[^\/?#\]]+\]|[^\/?#:]*)(?:\:(\d*))?))?([^?#]*)(?:\?([^#]*))?(?:#((?:.|\n|\r)*))?/i,Qt="".match(/(){0}/)[1]===void 0;function Te(d){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},m={},E=c.iri!==!1?y:f;c.reference==="suffix"&&(d=(c.scheme?c.scheme+":":"")+"//"+d);var P=d.match(Zt);if(P){Qt?(m.scheme=P[1],m.userinfo=P[3],m.host=P[4],m.port=parseInt(P[5],10),m.path=P[6]||"",m.query=P[7],m.fragment=P[8],isNaN(m.port)&&(m.port=P[5])):(m.scheme=P[1]||void 0,m.userinfo=d.indexOf("@")!==-1?P[3]:void 0,m.host=d.indexOf("//")!==-1?P[4]:void 0,m.port=parseInt(P[5],10),m.path=P[6]||"",m.query=d.indexOf("?")!==-1?P[7]:void 0,m.fragment=d.indexOf("#")!==-1?P[8]:void 0,isNaN(m.port)&&(m.port=d.match(/\/\/(?:.|\n)*\:(?:\/|\?|\#|$)/)?P[4]:void 0)),m.host&&(m.host=Tt(Me(m.host,E),E)),m.scheme===void 0&&m.userinfo===void 0&&m.host===void 0&&m.port===void 0&&!m.path&&m.query===void 0?m.reference="same-document":m.scheme===void 0?m.reference="relative":m.fragment===void 0?m.reference="absolute":m.reference="uri",c.reference&&c.reference!=="suffix"&&c.reference!==m.reference&&(m.error=m.error||"URI is not a "+c.reference+" reference.");var L=q[(c.scheme||m.scheme||"").toLowerCase()];if(!c.unicodeSupport&&(!L||!L.unicodeSupport)){if(m.host&&(c.domainHost||L&&L.domainHost))try{m.host=k.toASCII(m.host.replace(E.PCT_ENCODED,J).toLowerCase())}catch(z){m.error=m.error||"Host's domain name can not be converted to ASCII via punycode: "+z}Z(m,f)}else Z(m,E);L&&L.parse&&L.parse(m,c)}else m.error=m.error||"URI can not be parsed.";return m}function Xt(d,c){var m=c.iri!==!1?y:f,E=[];return d.userinfo!==void 0&&(E.push(d.userinfo),E.push("@")),d.host!==void 0&&E.push(Tt(Me(String(d.host),m),m).replace(m.IPV6ADDRESS,function(P,L,z){return"["+L+(z?"%25"+z:"")+"]"})),(typeof d.port=="number"||typeof d.port=="string")&&(E.push(":"),E.push(String(d.port))),E.length?E.join(""):void 0}var Rt=/^\.\.?\//,Ot=/^\/\.(\/|$)/,Nt=/^\/\.\.(\/|$)/,er=/^\/?(?:.|\n)*?(?=\/|$)/;function Ue(d){for(var c=[];d.length;)if(d.match(Rt))d=d.replace(Rt,"");else if(d.match(Ot))d=d.replace(Ot,"/");else if(d.match(Nt))d=d.replace(Nt,"/"),c.pop();else if(d==="."||d==="..")d="";else{var m=d.match(er);if(m){var E=m[0];d=d.slice(E.length),c.push(E)}else throw new Error("Unexpected dot segment condition")}return c.join("")}function Pe(d){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},m=c.iri?y:f,E=[],P=q[(c.scheme||d.scheme||"").toLowerCase()];if(P&&P.serialize&&P.serialize(d,c),d.host&&!m.IPV6ADDRESS.test(d.host)){if(c.domainHost||P&&P.domainHost)try{d.host=c.iri?k.toUnicode(d.host):k.toASCII(d.host.replace(m.PCT_ENCODED,J).toLowerCase())}catch(X){d.error=d.error||"Host's domain name can not be converted to "+(c.iri?"Unicode":"ASCII")+" via punycode: "+X}}Z(d,m),c.reference!=="suffix"&&d.scheme&&(E.push(d.scheme),E.push(":"));var L=Xt(d,c);if(L!==void 0&&(c.reference!=="suffix"&&E.push("//"),E.push(L),d.path&&d.path.charAt(0)!=="/"&&E.push("/")),d.path!==void 0){var z=d.path;!c.absolutePath&&(!P||!P.absolutePath)&&(z=Ue(z)),L===void 0&&(z=z.replace(/^\/\//,"/%2F")),E.push(z)}return d.query!==void 0&&(E.push("?"),E.push(d.query)),d.fragment!==void 0&&(E.push("#"),E.push(d.fragment)),E.join("")}function Ct(d,c){var m=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},E=arguments[3],P={};return E||(d=Te(Pe(d,m),m),c=Te(Pe(c,m),m)),m=m||{},!m.tolerant&&c.scheme?(P.scheme=c.scheme,P.userinfo=c.userinfo,P.host=c.host,P.port=c.port,P.path=Ue(c.path||""),P.query=c.query):(c.userinfo!==void 0||c.host!==void 0||c.port!==void 0?(P.userinfo=c.userinfo,P.host=c.host,P.port=c.port,P.path=Ue(c.path||""),P.query=c.query):(c.path?(c.path.charAt(0)==="/"?P.path=Ue(c.path):((d.userinfo!==void 0||d.host!==void 0||d.port!==void 0)&&!d.path?P.path="/"+c.path:d.path?P.path=d.path.slice(0,d.path.lastIndexOf("/")+1)+c.path:P.path=c.path,P.path=Ue(P.path)),P.query=c.query):(P.path=d.path,c.query!==void 0?P.query=c.query:P.query=d.query),P.userinfo=d.userinfo,P.host=d.host,P.port=d.port),P.scheme=d.scheme),P.fragment=c.fragment,P}function tr(d,c,m){var E=p({scheme:"null"},m);return Pe(Ct(Te(d,E),Te(c,E),E,!0),E)}function lt(d,c){return typeof d=="string"?d=Pe(Te(d,c),c):i(d)==="object"&&(d=Te(Pe(d,c),c)),d}function rr(d,c,m){return typeof d=="string"?d=Pe(Te(d,m),m):i(d)==="object"&&(d=Pe(d,m)),typeof c=="string"?c=Pe(Te(c,m),m):i(c)==="object"&&(c=Pe(c,m)),d===c}function Er(d,c){return d&&d.toString().replace(!c||!c.iri?f.ESCAPE:y.ESCAPE,M)}function Oe(d,c){return d&&d.toString().replace(!c||!c.iri?f.PCT_ENCODED:y.PCT_ENCODED,J)}var ut={scheme:"http",domainHost:!0,parse:function(c,m){return c.host||(c.error=c.error||"HTTP URIs must have a host."),c},serialize:function(c,m){var E=String(c.scheme).toLowerCase()==="https";return(c.port===(E?443:80)||c.port==="")&&(c.port=void 0),c.path||(c.path="/"),c}},ws={scheme:"https",domainHost:ut.domainHost,parse:ut.parse,serialize:ut.serialize};function bs(d){return typeof d.secure=="boolean"?d.secure:String(d.scheme).toLowerCase()==="wss"}var nr={scheme:"ws",domainHost:!0,parse:function(c,m){var E=c;return E.secure=bs(E),E.resourceName=(E.path||"/")+(E.query?"?"+E.query:""),E.path=void 0,E.query=void 0,E},serialize:function(c,m){if((c.port===(bs(c)?443:80)||c.port==="")&&(c.port=void 0),typeof c.secure=="boolean"&&(c.scheme=c.secure?"wss":"ws",c.secure=void 0),c.resourceName){var E=c.resourceName.split("?"),P=R(E,2),L=P[0],z=P[1];c.path=L&&L!=="/"?L:void 0,c.query=z,c.resourceName=void 0}return c.fragment=void 0,c}},Ps={scheme:"wss",domainHost:nr.domainHost,parse:nr.parse,serialize:nr.serialize},Ho={},Es="[A-Za-z0-9\\-\\.\\_\\~\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]",Le="[0-9A-Fa-f]",Vo=s(s("%[EFef]"+Le+"%"+Le+Le+"%"+Le+Le)+"|"+s("%[89A-Fa-f]"+Le+"%"+Le+Le)+"|"+s("%"+Le+Le)),Wo="[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]",xo="[\\!\\$\\%\\'\\(\\)\\*\\+\\,\\-\\.0-9\\<\\>A-Z\\x5E-\\x7E]",Bo=n(xo,'[\\"\\\\]'),Ko="[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]",Go=new RegExp(Es,"g"),kt=new RegExp(Vo,"g"),Jo=new RegExp(n("[^]",Wo,"[\\.]",'[\\"]',Bo),"g"),Ss=new RegExp(n("[^]",Es,Ko),"g"),Yo=Ss;function dn(d){var c=J(d);return c.match(Go)?c:d}var Ts={scheme:"mailto",parse:function(c,m){var E=c,P=E.to=E.path?E.path.split(","):[];if(E.path=void 0,E.query){for(var L=!1,z={},X=E.query.split("&"),se=0,ue=X.length;se<ue;++se){var Y=X[se].split("=");switch(Y[0]){case"to":for(var ne=Y[1].split(","),de=0,x=ne.length;de<x;++de)P.push(ne[de]);break;case"subject":E.subject=Oe(Y[1],m);break;case"body":E.body=Oe(Y[1],m);break;default:L=!0,z[Oe(Y[0],m)]=Oe(Y[1],m);break}}L&&(E.headers=z)}E.query=void 0;for(var oe=0,me=P.length;oe<me;++oe){var ae=P[oe].split("@");if(ae[0]=Oe(ae[0]),m.unicodeSupport)ae[1]=Oe(ae[1],m).toLowerCase();else try{ae[1]=k.toASCII(Oe(ae[1],m).toLowerCase())}catch(Xe){E.error=E.error||"Email address's domain name can not be converted to ASCII via punycode: "+Xe}P[oe]=ae.join("@")}return E},serialize:function(c,m){var E=c,P=l(c.to);if(P){for(var L=0,z=P.length;L<z;++L){var X=String(P[L]),se=X.lastIndexOf("@"),ue=X.slice(0,se).replace(kt,dn).replace(kt,a).replace(Jo,M),Y=X.slice(se+1);try{Y=m.iri?k.toUnicode(Y):k.toASCII(Oe(Y,m).toLowerCase())}catch(oe){E.error=E.error||"Email address's domain name can not be converted to "+(m.iri?"Unicode":"ASCII")+" via punycode: "+oe}P[L]=ue+"@"+Y}E.path=P.join(",")}var ne=c.headers=c.headers||{};c.subject&&(ne.subject=c.subject),c.body&&(ne.body=c.body);var de=[];for(var x in ne)ne[x]!==Ho[x]&&de.push(x.replace(kt,dn).replace(kt,a).replace(Ss,M)+"="+ne[x].replace(kt,dn).replace(kt,a).replace(Yo,M));return de.length&&(E.query=de.join("&")),E}},Zo=/^([^\:]+)\:(.*)/,Rs={scheme:"urn",parse:function(c,m){var E=c.path&&c.path.match(Zo),P=c;if(E){var L=m.scheme||P.scheme||"urn",z=E[1].toLowerCase(),X=E[2],se=L+":"+(m.nid||z),ue=q[se];P.nid=z,P.nss=X,P.path=void 0,ue&&(P=ue.parse(P,m))}else P.error=P.error||"URN can not be parsed.";return P},serialize:function(c,m){var E=m.scheme||c.scheme||"urn",P=c.nid,L=E+":"+(m.nid||P),z=q[L];z&&(c=z.serialize(c,m));var X=c,se=c.nss;return X.path=(P||m.nid)+":"+se,X}},Qo=/^[0-9A-Fa-f]{8}(?:\-[0-9A-Fa-f]{4}){3}\-[0-9A-Fa-f]{12}$/,Os={scheme:"urn:uuid",parse:function(c,m){var E=c;return E.uuid=E.nss,E.nss=void 0,!m.tolerant&&(!E.uuid||!E.uuid.match(Qo))&&(E.error=E.error||"UUID is not valid."),E},serialize:function(c,m){var E=c;return E.nss=(c.uuid||"").toLowerCase(),E}};q[ut.scheme]=ut,q[ws.scheme]=ws,q[nr.scheme]=nr,q[Ps.scheme]=Ps,q[Ts.scheme]=Ts,q[Rs.scheme]=Rs,q[Os.scheme]=Os,r.SCHEMES=q,r.pctEncChar=M,r.pctDecChars=J,r.parse=Te,r.removeDotSegments=Ue,r.serialize=Pe,r.resolveComponents=Ct,r.resolve=tr,r.normalize=lt,r.equal=rr,r.escapeComponent=Er,r.unescapeComponent=Oe,Object.defineProperty(r,"__esModule",{value:!0})})})(Pn,Pn.exports);var Nl=Pn.exports;Object.defineProperty(Vn,"__esModule",{value:!0});const jo=Nl;jo.code='require("ajv/dist/runtime/uri").default';Vn.default=jo;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=void 0;var e=Ae;Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return e.KeywordCxt}});var r=K;Object.defineProperty(t,"_",{enumerable:!0,get:function(){return r._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return r.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return r.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return r.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return r.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return r.CodeGen}});const n=wr,s=br,i=wt,a=Se,l=K,p=ge,u=vr,f=re,y=Ol,R=Vn,O=(F,$)=>new RegExp(F,$);O.code="new RegExp";const v=["removeAdditional","useDefaults","coerceTypes"],S=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),_={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},g={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},T=200;function N(F){var $,I,b,o,h,k,q,M,J,Z,le,Me,Tt,Zt,Qt,Te,Xt,Rt,Ot,Nt,er,Ue,Pe,Ct,tr;const lt=F.strict,rr=($=F.code)===null||$===void 0?void 0:$.optimize,Er=rr===!0||rr===void 0?1:rr||0,Oe=(b=(I=F.code)===null||I===void 0?void 0:I.regExp)!==null&&b!==void 0?b:O,ut=(o=F.uriResolver)!==null&&o!==void 0?o:R.default;return{strictSchema:(k=(h=F.strictSchema)!==null&&h!==void 0?h:lt)!==null&&k!==void 0?k:!0,strictNumbers:(M=(q=F.strictNumbers)!==null&&q!==void 0?q:lt)!==null&&M!==void 0?M:!0,strictTypes:(Z=(J=F.strictTypes)!==null&&J!==void 0?J:lt)!==null&&Z!==void 0?Z:"log",strictTuples:(Me=(le=F.strictTuples)!==null&&le!==void 0?le:lt)!==null&&Me!==void 0?Me:"log",strictRequired:(Zt=(Tt=F.strictRequired)!==null&&Tt!==void 0?Tt:lt)!==null&&Zt!==void 0?Zt:!1,code:F.code?{...F.code,optimize:Er,regExp:Oe}:{optimize:Er,regExp:Oe},loopRequired:(Qt=F.loopRequired)!==null&&Qt!==void 0?Qt:T,loopEnum:(Te=F.loopEnum)!==null&&Te!==void 0?Te:T,meta:(Xt=F.meta)!==null&&Xt!==void 0?Xt:!0,messages:(Rt=F.messages)!==null&&Rt!==void 0?Rt:!0,inlineRefs:(Ot=F.inlineRefs)!==null&&Ot!==void 0?Ot:!0,schemaId:(Nt=F.schemaId)!==null&&Nt!==void 0?Nt:"$id",addUsedSchema:(er=F.addUsedSchema)!==null&&er!==void 0?er:!0,validateSchema:(Ue=F.validateSchema)!==null&&Ue!==void 0?Ue:!0,validateFormats:(Pe=F.validateFormats)!==null&&Pe!==void 0?Pe:!0,unicodeRegExp:(Ct=F.unicodeRegExp)!==null&&Ct!==void 0?Ct:!0,int32range:(tr=F.int32range)!==null&&tr!==void 0?tr:!0,uriResolver:ut}}class j{constructor($={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,$=this.opts={...$,...N($)};const{es5:I,lines:b}=this.opts.code;this.scope=new l.ValueScope({scope:{},prefixes:S,es5:I,lines:b}),this.logger=Q($.logger);const o=$.validateFormats;$.validateFormats=!1,this.RULES=(0,i.getRules)(),D.call(this,_,$,"NOT SUPPORTED"),D.call(this,g,$,"DEPRECATED","warn"),this._metaOpts=G.call(this),$.formats&&A.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),$.keywords&&W.call(this,$.keywords),typeof $.meta=="object"&&this.addMetaSchema($.meta),C.call(this),$.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){const{$data:$,meta:I,schemaId:b}=this.opts;let o=y;b==="id"&&(o={...y},o.id=o.$id,delete o.$id),I&&$&&this.addMetaSchema(o,o[b],!1)}defaultMeta(){const{meta:$,schemaId:I}=this.opts;return this.opts.defaultMeta=typeof $=="object"?$[I]||$:void 0}validate($,I){let b;if(typeof $=="string"){if(b=this.getSchema($),!b)throw new Error(`no schema with key or ref "${$}"`)}else b=this.compile($);const o=b(I);return"$async"in b||(this.errors=b.errors),o}compile($,I){const b=this._addSchema($,I);return b.validate||this._compileSchemaEnv(b)}compileAsync($,I){if(typeof this.opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");const{loadSchema:b}=this.opts;return o.call(this,$,I);async function o(Z,le){await h.call(this,Z.$schema);const Me=this._addSchema(Z,le);return Me.validate||k.call(this,Me)}async function h(Z){Z&&!this.getSchema(Z)&&await o.call(this,{$ref:Z},!0)}async function k(Z){try{return this._compileSchemaEnv(Z)}catch(le){if(!(le instanceof s.default))throw le;return q.call(this,le),await M.call(this,le.missingSchema),k.call(this,Z)}}function q({missingSchema:Z,missingRef:le}){if(this.refs[Z])throw new Error(`AnySchema ${Z} is loaded but ${le} cannot be resolved`)}async function M(Z){const le=await J.call(this,Z);this.refs[Z]||await h.call(this,le.$schema),this.refs[Z]||this.addSchema(le,Z,I)}async function J(Z){const le=this._loading[Z];if(le)return le;try{return await(this._loading[Z]=b(Z))}finally{delete this._loading[Z]}}}addSchema($,I,b,o=this.opts.validateSchema){if(Array.isArray($)){for(const k of $)this.addSchema(k,void 0,b,o);return this}let h;if(typeof $=="object"){const{schemaId:k}=this.opts;if(h=$[k],h!==void 0&&typeof h!="string")throw new Error(`schema ${k} must be string`)}return I=(0,p.normalizeId)(I||h),this._checkUnique(I),this.schemas[I]=this._addSchema($,b,I,o,!0),this}addMetaSchema($,I,b=this.opts.validateSchema){return this.addSchema($,I,!0,b),this}validateSchema($,I){if(typeof $=="boolean")return!0;let b;if(b=$.$schema,b!==void 0&&typeof b!="string")throw new Error("$schema must be a string");if(b=b||this.opts.defaultMeta||this.defaultMeta(),!b)return this.logger.warn("meta-schema not available"),this.errors=null,!0;const o=this.validate(b,$);if(!o&&I){const h="schema is invalid: "+this.errorsText();if(this.opts.validateSchema==="log")this.logger.error(h);else throw new Error(h)}return o}getSchema($){let I;for(;typeof(I=w.call(this,$))=="string";)$=I;if(I===void 0){const{schemaId:b}=this.opts,o=new a.SchemaEnv({schema:{},schemaId:b});if(I=a.resolveSchema.call(this,o,$),!I)return;this.refs[$]=I}return I.validate||this._compileSchemaEnv(I)}removeSchema($){if($ instanceof RegExp)return this._removeAllSchemas(this.schemas,$),this._removeAllSchemas(this.refs,$),this;switch(typeof $){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{const I=w.call(this,$);return typeof I=="object"&&this._cache.delete(I.schema),delete this.schemas[$],delete this.refs[$],this}case"object":{const I=$;this._cache.delete(I);let b=$[this.opts.schemaId];return b&&(b=(0,p.normalizeId)(b),delete this.schemas[b],delete this.refs[b]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary($){for(const I of $)this.addKeyword(I);return this}addKeyword($,I){let b;if(typeof $=="string")b=$,typeof I=="object"&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),I.keyword=b);else if(typeof $=="object"&&I===void 0){if(I=$,b=I.keyword,Array.isArray(b)&&!b.length)throw new Error("addKeywords: keyword must be string or non-empty array")}else throw new Error("invalid addKeywords parameters");if(he.call(this,b,I),!I)return(0,f.eachItem)(b,h=>at.call(this,h)),this;Et.call(this,I);const o={...I,type:(0,u.getJSONTypes)(I.type),schemaType:(0,u.getJSONTypes)(I.schemaType)};return(0,f.eachItem)(b,o.type.length===0?h=>at.call(this,h,o):h=>o.type.forEach(k=>at.call(this,h,o,k))),this}getKeyword($){const I=this.RULES.all[$];return typeof I=="object"?I.definition:!!I}removeKeyword($){const{RULES:I}=this;delete I.keywords[$],delete I.all[$];for(const b of I.rules){const o=b.rules.findIndex(h=>h.keyword===$);o>=0&&b.rules.splice(o,1)}return this}addFormat($,I){return typeof I=="string"&&(I=new RegExp(I)),this.formats[$]=I,this}errorsText($=this.errors,{separator:I=", ",dataVar:b="data"}={}){return!$||$.length===0?"No errors":$.map(o=>`${b}${o.instancePath} ${o.message}`).reduce((o,h)=>o+I+h)}$dataMetaSchema($,I){const b=this.RULES.all;$=JSON.parse(JSON.stringify($));for(const o of I){const h=o.split("/").slice(1);let k=$;for(const q of h)k=k[q];for(const q in b){const M=b[q];if(typeof M!="object")continue;const{$data:J}=M.definition,Z=k[q];J&&Z&&(k[q]=St(Z))}}return $}_removeAllSchemas($,I){for(const b in $){const o=$[b];(!I||I.test(b))&&(typeof o=="string"?delete $[b]:o&&!o.meta&&(this._cache.delete(o.schema),delete $[b]))}}_addSchema($,I,b,o=this.opts.validateSchema,h=this.opts.addUsedSchema){let k;const{schemaId:q}=this.opts;if(typeof $=="object")k=$[q];else{if(this.opts.jtd)throw new Error("schema must be object");if(typeof $!="boolean")throw new Error("schema must be object or boolean")}let M=this._cache.get($);if(M!==void 0)return M;b=(0,p.normalizeId)(k||b);const J=p.getSchemaRefs.call(this,$,b);return M=new a.SchemaEnv({schema:$,schemaId:q,meta:I,baseId:b,localRefs:J}),this._cache.set(M.schema,M),h&&!b.startsWith("#")&&(b&&this._checkUnique(b),this.refs[b]=M),o&&this.validateSchema($,!0),M}_checkUnique($){if(this.schemas[$]||this.refs[$])throw new Error(`schema with key or id "${$}" already exists`)}_compileSchemaEnv($){if($.meta?this._compileMetaSchema($):a.compileSchema.call(this,$),!$.validate)throw new Error("ajv implementation error");return $.validate}_compileMetaSchema($){const I=this.opts;this.opts=this._metaOpts;try{a.compileSchema.call(this,$)}finally{this.opts=I}}}t.default=j,j.ValidationError=n.default,j.MissingRefError=s.default;function D(F,$,I,b="error"){for(const o in F){const h=o;h in $&&this.logger[b](`${I}: option ${o}. ${F[h]}`)}}function w(F){return F=(0,p.normalizeId)(F),this.schemas[F]||this.refs[F]}function C(){const F=this.opts.schemas;if(F)if(Array.isArray(F))this.addSchema(F);else for(const $ in F)this.addSchema(F[$],$)}function A(){for(const F in this.opts.formats){const $=this.opts.formats[F];$&&this.addFormat(F,$)}}function W(F){if(Array.isArray(F)){this.addVocabulary(F);return}this.logger.warn("keywords option as map is deprecated, pass array");for(const $ in F){const I=F[$];I.keyword||(I.keyword=$),this.addKeyword(I)}}function G(){const F={...this.opts};for(const $ of v)delete F[$];return F}const ce={log(){},warn(){},error(){}};function Q(F){if(F===!1)return ce;if(F===void 0)return console;if(F.log&&F.warn&&F.error)return F;throw new Error("logger must implement log, warn and error methods")}const Re=/^[a-z_$][a-z0-9_$:-]*$/i;function he(F,$){const{RULES:I}=this;if((0,f.eachItem)(F,b=>{if(I.keywords[b])throw new Error(`Keyword ${b} is already defined`);if(!Re.test(b))throw new Error(`Keyword ${b} has invalid name`)}),!!$&&$.$data&&!("code"in $||"validate"in $))throw new Error('$data keyword must have "code" or "validate" function')}function at(F,$,I){var b;const o=$==null?void 0:$.post;if(I&&o)throw new Error('keyword with "post" flag cannot have "type"');const{RULES:h}=this;let k=o?h.post:h.rules.find(({type:M})=>M===I);if(k||(k={type:I,rules:[]},h.rules.push(k)),h.keywords[F]=!0,!$)return;const q={keyword:F,definition:{...$,type:(0,u.getJSONTypes)($.type),schemaType:(0,u.getJSONTypes)($.schemaType)}};$.before?ct.call(this,k,q,$.before):k.rules.push(q),h.all[F]=q,(b=$.implements)===null||b===void 0||b.forEach(M=>this.addKeyword(M))}function ct(F,$,I){const b=F.rules.findIndex(o=>o.keyword===I);b>=0?F.rules.splice(b,0,$):(F.rules.push($),this.logger.warn(`rule ${I} is not defined`))}function Et(F){let{metaSchema:$}=F;$!==void 0&&(F.$data&&this.opts.$data&&($=St($)),F.validateSchema=this.compile($,!0))}const Yt={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function St(F){return{anyOf:[F,Yt]}}})(oo);var Wn={},xn={},Bn={};Object.defineProperty(Bn,"__esModule",{value:!0});const Cl={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};Bn.default=Cl;var bt={};Object.defineProperty(bt,"__esModule",{value:!0});bt.callRef=bt.getValidate=void 0;const kl=br,Xs=B,Ee=K,Dt=Ge,ei=Se,Or=re,jl={keyword:"$ref",schemaType:"string",code(t){const{gen:e,schema:r,it:n}=t,{baseId:s,schemaEnv:i,validateName:a,opts:l,self:p}=n,{root:u}=i;if((r==="#"||r==="#/")&&s===u.baseId)return y();const f=ei.resolveRef.call(p,u,s,r);if(f===void 0)throw new kl.default(n.opts.uriResolver,s,r);if(f instanceof ei.SchemaEnv)return R(f);return O(f);function y(){if(i===u)return Dr(t,a,i,i.$async);const v=e.scopeValue("root",{ref:u});return Dr(t,(0,Ee._)`${v}.validate`,u,u.$async)}function R(v){const S=Io(t,v);Dr(t,S,v,v.$async)}function O(v){const S=e.scopeValue("schema",l.code.source===!0?{ref:v,code:(0,Ee.stringify)(v)}:{ref:v}),_=e.name("valid"),g=t.subschema({schema:v,dataTypes:[],schemaPath:Ee.nil,topSchemaRef:S,errSchemaPath:r},_);t.mergeEvaluated(g),t.ok(_)}}};function Io(t,e){const{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,Ee._)`${r.scopeValue("wrapper",{ref:e})}.validate`}bt.getValidate=Io;function Dr(t,e,r,n){const{gen:s,it:i}=t,{allErrors:a,schemaEnv:l,opts:p}=i,u=p.passContext?Dt.default.this:Ee.nil;n?f():y();function f(){if(!l.$async)throw new Error("async schema referenced by sync schema");const v=s.let("valid");s.try(()=>{s.code((0,Ee._)`await ${(0,Xs.callValidateCode)(t,e,u)}`),O(e),a||s.assign(v,!0)},S=>{s.if((0,Ee._)`!(${S} instanceof ${i.ValidationError})`,()=>s.throw(S)),R(S),a||s.assign(v,!1)}),t.ok(v)}function y(){t.result((0,Xs.callValidateCode)(t,e,u),()=>O(e),()=>R(e))}function R(v){const S=(0,Ee._)`${v}.errors`;s.assign(Dt.default.vErrors,(0,Ee._)`${Dt.default.vErrors} === null ? ${S} : ${Dt.default.vErrors}.concat(${S})`),s.assign(Dt.default.errors,(0,Ee._)`${Dt.default.vErrors}.length`)}function O(v){var S;if(!i.opts.unevaluated)return;const _=(S=r==null?void 0:r.validate)===null||S===void 0?void 0:S.evaluated;if(i.props!==!0)if(_&&!_.dynamicProps)_.props!==void 0&&(i.props=Or.mergeEvaluated.props(s,_.props,i.props));else{const g=s.var("props",(0,Ee._)`${v}.evaluated.props`);i.props=Or.mergeEvaluated.props(s,g,i.props,Ee.Name)}if(i.items!==!0)if(_&&!_.dynamicItems)_.items!==void 0&&(i.items=Or.mergeEvaluated.items(s,_.items,i.items));else{const g=s.var("items",(0,Ee._)`${v}.evaluated.items`);i.items=Or.mergeEvaluated.items(s,g,i.items,Ee.Name)}}}bt.callRef=Dr;bt.default=jl;Object.defineProperty(xn,"__esModule",{value:!0});const Il=Bn,Al=bt,Dl=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",Il.default,Al.default];xn.default=Dl;var Kn={},Gn={};Object.defineProperty(Gn,"__esModule",{value:!0});const Ur=K,rt=Ur.operators,Lr={maximum:{okStr:"<=",ok:rt.LTE,fail:rt.GT},minimum:{okStr:">=",ok:rt.GTE,fail:rt.LT},exclusiveMaximum:{okStr:"<",ok:rt.LT,fail:rt.GTE},exclusiveMinimum:{okStr:">",ok:rt.GT,fail:rt.LTE}},Fl={message:({keyword:t,schemaCode:e})=>(0,Ur.str)`must be ${Lr[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,Ur._)`{comparison: ${Lr[t].okStr}, limit: ${e}}`},ql={keyword:Object.keys(Lr),type:"number",schemaType:"number",$data:!0,error:Fl,code(t){const{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,Ur._)`${r} ${Lr[e].fail} ${n} || isNaN(${r})`)}};Gn.default=ql;var Jn={};Object.defineProperty(Jn,"__esModule",{value:!0});const dr=K,Ml={message:({schemaCode:t})=>(0,dr.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,dr._)`{multipleOf: ${t}}`},Ul={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:Ml,code(t){const{gen:e,data:r,schemaCode:n,it:s}=t,i=s.opts.multipleOfPrecision,a=e.let("res"),l=i?(0,dr._)`Math.abs(Math.round(${a}) - ${a}) > 1e-${i}`:(0,dr._)`${a} !== parseInt(${a})`;t.fail$data((0,dr._)`(${n} === 0 || (${a} = ${r}/${n}, ${l}))`)}};Jn.default=Ul;var Yn={},Zn={};Object.defineProperty(Zn,"__esModule",{value:!0});function Ao(t){const e=t.length;let r=0,n=0,s;for(;n<e;)r++,s=t.charCodeAt(n++),s>=55296&&s<=56319&&n<e&&(s=t.charCodeAt(n),(s&64512)===56320&&n++);return r}Zn.default=Ao;Ao.code='require("ajv/dist/runtime/ucs2length").default';Object.defineProperty(Yn,"__esModule",{value:!0});const mt=K,Ll=re,zl=Zn,Hl={message({keyword:t,schemaCode:e}){const r=t==="maxLength"?"more":"fewer";return(0,mt.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,mt._)`{limit: ${t}}`},Vl={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:Hl,code(t){const{keyword:e,data:r,schemaCode:n,it:s}=t,i=e==="maxLength"?mt.operators.GT:mt.operators.LT,a=s.opts.unicode===!1?(0,mt._)`${r}.length`:(0,mt._)`${(0,Ll.useFunc)(t.gen,zl.default)}(${r})`;t.fail$data((0,mt._)`${a} ${i} ${n}`)}};Yn.default=Vl;var Qn={};Object.defineProperty(Qn,"__esModule",{value:!0});const Wl=B,zr=K,xl={message:({schemaCode:t})=>(0,zr.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,zr._)`{pattern: ${t}}`},Bl={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:xl,code(t){const{data:e,$data:r,schema:n,schemaCode:s,it:i}=t,a=i.opts.unicodeRegExp?"u":"",l=r?(0,zr._)`(new RegExp(${s}, ${a}))`:(0,Wl.usePattern)(t,n);t.fail$data((0,zr._)`!${l}.test(${e})`)}};Qn.default=Bl;var Xn={};Object.defineProperty(Xn,"__esModule",{value:!0});const pr=K,Kl={message({keyword:t,schemaCode:e}){const r=t==="maxProperties"?"more":"fewer";return(0,pr.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,pr._)`{limit: ${t}}`},Gl={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:Kl,code(t){const{keyword:e,data:r,schemaCode:n}=t,s=e==="maxProperties"?pr.operators.GT:pr.operators.LT;t.fail$data((0,pr._)`Object.keys(${r}).length ${s} ${n}`)}};Xn.default=Gl;var es={};Object.defineProperty(es,"__esModule",{value:!0});const ar=B,fr=K,Jl=re,Yl={message:({params:{missingProperty:t}})=>(0,fr.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,fr._)`{missingProperty: ${t}}`},Zl={keyword:"required",type:"object",schemaType:"array",$data:!0,error:Yl,code(t){const{gen:e,schema:r,schemaCode:n,data:s,$data:i,it:a}=t,{opts:l}=a;if(!i&&r.length===0)return;const p=r.length>=l.loopRequired;if(a.allErrors?u():f(),l.strictRequired){const O=t.parentSchema.properties,{definedProperties:v}=t.it;for(const S of r)if((O==null?void 0:O[S])===void 0&&!v.has(S)){const _=a.schemaEnv.baseId+a.errSchemaPath,g=`required property "${S}" is not defined at "${_}" (strictRequired)`;(0,Jl.checkStrictMode)(a,g,a.opts.strictRequired)}}function u(){if(p||i)t.block$data(fr.nil,y);else for(const O of r)(0,ar.checkReportMissingProp)(t,O)}function f(){const O=e.let("missing");if(p||i){const v=e.let("valid",!0);t.block$data(v,()=>R(O,v)),t.ok(v)}else e.if((0,ar.checkMissingProp)(t,r,O)),(0,ar.reportMissingProp)(t,O),e.else()}function y(){e.forOf("prop",n,O=>{t.setParams({missingProperty:O}),e.if((0,ar.noPropertyInData)(e,s,O,l.ownProperties),()=>t.error())})}function R(O,v){t.setParams({missingProperty:O}),e.forOf(O,n,()=>{e.assign(v,(0,ar.propertyInData)(e,s,O,l.ownProperties)),e.if((0,fr.not)(v),()=>{t.error(),e.break()})},fr.nil)}}};es.default=Zl;var ts={};Object.defineProperty(ts,"__esModule",{value:!0});const hr=K,Ql={message({keyword:t,schemaCode:e}){const r=t==="maxItems"?"more":"fewer";return(0,hr.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,hr._)`{limit: ${t}}`},Xl={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:Ql,code(t){const{keyword:e,data:r,schemaCode:n}=t,s=e==="maxItems"?hr.operators.GT:hr.operators.LT;t.fail$data((0,hr._)`${r}.length ${s} ${n}`)}};ts.default=Xl;var rs={},Pr={};Object.defineProperty(Pr,"__esModule",{value:!0});const Do=mo;Do.code='require("ajv/dist/runtime/equal").default';Pr.default=Do;Object.defineProperty(rs,"__esModule",{value:!0});const gn=vr,ye=K,eu=re,tu=Pr,ru={message:({params:{i:t,j:e}})=>(0,ye.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,ye._)`{i: ${t}, j: ${e}}`},nu={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:ru,code(t){const{gen:e,data:r,$data:n,schema:s,parentSchema:i,schemaCode:a,it:l}=t;if(!n&&!s)return;const p=e.let("valid"),u=i.items?(0,gn.getSchemaTypes)(i.items):[];t.block$data(p,f,(0,ye._)`${a} === false`),t.ok(p);function f(){const v=e.let("i",(0,ye._)`${r}.length`),S=e.let("j");t.setParams({i:v,j:S}),e.assign(p,!0),e.if((0,ye._)`${v} > 1`,()=>(y()?R:O)(v,S))}function y(){return u.length>0&&!u.some(v=>v==="object"||v==="array")}function R(v,S){const _=e.name("item"),g=(0,gn.checkDataTypes)(u,_,l.opts.strictNumbers,gn.DataType.Wrong),T=e.const("indices",(0,ye._)`{}`);e.for((0,ye._)`;${v}--;`,()=>{e.let(_,(0,ye._)`${r}[${v}]`),e.if(g,(0,ye._)`continue`),u.length>1&&e.if((0,ye._)`typeof ${_} == "string"`,(0,ye._)`${_} += "_"`),e.if((0,ye._)`typeof ${T}[${_}] == "number"`,()=>{e.assign(S,(0,ye._)`${T}[${_}]`),t.error(),e.assign(p,!1).break()}).code((0,ye._)`${T}[${_}] = ${v}`)})}function O(v,S){const _=(0,eu.useFunc)(e,tu.default),g=e.name("outer");e.label(g).for((0,ye._)`;${v}--;`,()=>e.for((0,ye._)`${S} = ${v}; ${S}--;`,()=>e.if((0,ye._)`${_}(${r}[${v}], ${r}[${S}])`,()=>{t.error(),e.assign(p,!1).break(g)})))}}};rs.default=nu;var ns={};Object.defineProperty(ns,"__esModule",{value:!0});const En=K,su=re,iu=Pr,ou={message:"must be equal to constant",params:({schemaCode:t})=>(0,En._)`{allowedValue: ${t}}`},au={keyword:"const",$data:!0,error:ou,code(t){const{gen:e,data:r,$data:n,schemaCode:s,schema:i}=t;n||i&&typeof i=="object"?t.fail$data((0,En._)`!${(0,su.useFunc)(e,iu.default)}(${r}, ${s})`):t.fail((0,En._)`${i} !== ${r}`)}};ns.default=au;var ss={};Object.defineProperty(ss,"__esModule",{value:!0});const lr=K,cu=re,lu=Pr,uu={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,lr._)`{allowedValues: ${t}}`},du={keyword:"enum",schemaType:"array",$data:!0,error:uu,code(t){const{gen:e,data:r,$data:n,schema:s,schemaCode:i,it:a}=t;if(!n&&s.length===0)throw new Error("enum must have non-empty array");const l=s.length>=a.opts.loopEnum;let p;const u=()=>p??(p=(0,cu.useFunc)(e,lu.default));let f;if(l||n)f=e.let("valid"),t.block$data(f,y);else{if(!Array.isArray(s))throw new Error("ajv implementation error");const O=e.const("vSchema",i);f=(0,lr.or)(...s.map((v,S)=>R(O,S)))}t.pass(f);function y(){e.assign(f,!1),e.forOf("v",i,O=>e.if((0,lr._)`${u()}(${r}, ${O})`,()=>e.assign(f,!0).break()))}function R(O,v){const S=s[v];return typeof S=="object"&&S!==null?(0,lr._)`${u()}(${r}, ${O}[${v}])`:(0,lr._)`${r} === ${S}`}}};ss.default=du;Object.defineProperty(Kn,"__esModule",{value:!0});const pu=Gn,fu=Jn,hu=Yn,mu=Qn,yu=Xn,gu=es,$u=ts,_u=rs,vu=ns,wu=ss,bu=[pu.default,fu.default,hu.default,mu.default,yu.default,gu.default,$u.default,_u.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},vu.default,wu.default];Kn.default=bu;var is={},Gt={};Object.defineProperty(Gt,"__esModule",{value:!0});Gt.validateAdditionalItems=void 0;const yt=K,Sn=re,Pu={message:({params:{len:t}})=>(0,yt.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,yt._)`{limit: ${t}}`},Eu={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:Pu,code(t){const{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,Sn.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}Fo(t,n)}};function Fo(t,e){const{gen:r,schema:n,data:s,keyword:i,it:a}=t;a.items=!0;const l=r.const("len",(0,yt._)`${s}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,yt._)`${l} <= ${e.length}`);else if(typeof n=="object"&&!(0,Sn.alwaysValidSchema)(a,n)){const u=r.var("valid",(0,yt._)`${l} <= ${e.length}`);r.if((0,yt.not)(u),()=>p(u)),t.ok(u)}function p(u){r.forRange("i",e.length,l,f=>{t.subschema({keyword:i,dataProp:f,dataPropType:Sn.Type.Num},u),a.allErrors||r.if((0,yt.not)(u),()=>r.break())})}}Gt.validateAdditionalItems=Fo;Gt.default=Eu;var os={},Jt={};Object.defineProperty(Jt,"__esModule",{value:!0});Jt.validateTuple=void 0;const ti=K,Fr=re,Su=B,Tu={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){const{schema:e,it:r}=t;if(Array.isArray(e))return qo(t,"additionalItems",e);r.items=!0,!(0,Fr.alwaysValidSchema)(r,e)&&t.ok((0,Su.validateArray)(t))}};function qo(t,e,r=t.schema){const{gen:n,parentSchema:s,data:i,keyword:a,it:l}=t;f(s),l.opts.unevaluated&&r.length&&l.items!==!0&&(l.items=Fr.mergeEvaluated.items(n,r.length,l.items));const p=n.name("valid"),u=n.const("len",(0,ti._)`${i}.length`);r.forEach((y,R)=>{(0,Fr.alwaysValidSchema)(l,y)||(n.if((0,ti._)`${u} > ${R}`,()=>t.subschema({keyword:a,schemaProp:R,dataProp:R},p)),t.ok(p))});function f(y){const{opts:R,errSchemaPath:O}=l,v=r.length,S=v===y.minItems&&(v===y.maxItems||y[e]===!1);if(R.strictTuples&&!S){const _=`"${a}" is ${v}-tuple, but minItems or maxItems/${e} are not specified or different at path "${O}"`;(0,Fr.checkStrictMode)(l,_,R.strictTuples)}}}Jt.validateTuple=qo;Jt.default=Tu;Object.defineProperty(os,"__esModule",{value:!0});const Ru=Jt,Ou={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,Ru.validateTuple)(t,"items")};os.default=Ou;var as={};Object.defineProperty(as,"__esModule",{value:!0});const ri=K,Nu=re,Cu=B,ku=Gt,ju={message:({params:{len:t}})=>(0,ri.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,ri._)`{limit: ${t}}`},Iu={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:ju,code(t){const{schema:e,parentSchema:r,it:n}=t,{prefixItems:s}=r;n.items=!0,!(0,Nu.alwaysValidSchema)(n,e)&&(s?(0,ku.validateAdditionalItems)(t,s):t.ok((0,Cu.validateArray)(t)))}};as.default=Iu;var cs={};Object.defineProperty(cs,"__esModule",{value:!0});const Ce=K,Nr=re,Au={message:({params:{min:t,max:e}})=>e===void 0?(0,Ce.str)`must contain at least ${t} valid item(s)`:(0,Ce.str)`must contain at least ${t} and no more than ${e} valid item(s)`,params:({params:{min:t,max:e}})=>e===void 0?(0,Ce._)`{minContains: ${t}}`:(0,Ce._)`{minContains: ${t}, maxContains: ${e}}`},Du={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:Au,code(t){const{gen:e,schema:r,parentSchema:n,data:s,it:i}=t;let a,l;const{minContains:p,maxContains:u}=n;i.opts.next?(a=p===void 0?1:p,l=u):a=1;const f=e.const("len",(0,Ce._)`${s}.length`);if(t.setParams({min:a,max:l}),l===void 0&&a===0){(0,Nr.checkStrictMode)(i,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(l!==void 0&&a>l){(0,Nr.checkStrictMode)(i,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,Nr.alwaysValidSchema)(i,r)){let S=(0,Ce._)`${f} >= ${a}`;l!==void 0&&(S=(0,Ce._)`${S} && ${f} <= ${l}`),t.pass(S);return}i.items=!0;const y=e.name("valid");l===void 0&&a===1?O(y,()=>e.if(y,()=>e.break())):a===0?(e.let(y,!0),l!==void 0&&e.if((0,Ce._)`${s}.length > 0`,R)):(e.let(y,!1),R()),t.result(y,()=>t.reset());function R(){const S=e.name("_valid"),_=e.let("count",0);O(S,()=>e.if(S,()=>v(_)))}function O(S,_){e.forRange("i",0,f,g=>{t.subschema({keyword:"contains",dataProp:g,dataPropType:Nr.Type.Num,compositeRule:!0},S),_()})}function v(S){e.code((0,Ce._)`${S}++`),l===void 0?e.if((0,Ce._)`${S} >= ${a}`,()=>e.assign(y,!0).break()):(e.if((0,Ce._)`${S} > ${l}`,()=>e.assign(y,!1).break()),a===1?e.assign(y,!0):e.if((0,Ce._)`${S} >= ${a}`,()=>e.assign(y,!0)))}}};cs.default=Du;var Mo={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.validateSchemaDeps=t.validatePropertyDeps=t.error=void 0;const e=K,r=re,n=B;t.error={message:({params:{property:p,depsCount:u,deps:f}})=>{const y=u===1?"property":"properties";return(0,e.str)`must have ${y} ${f} when property ${p} is present`},params:({params:{property:p,depsCount:u,deps:f,missingProperty:y}})=>(0,e._)`{property: ${p},
|
|
869
|
+
`;this[te].ccall("wasm_set_phpini_entries",null,[we],[e])}this[te].ccall("php_wasm_init",null,[],[])},Kr=new WeakSet,Bi=function(){const e="/tmp/headers.json";if(!this.fileExists(e))throw new Error("SAPI Error: Could not find response headers file.");const r=JSON.parse(this.readFileAsText(e)),n={};for(const s of r.headers){if(!s.includes(": "))continue;const i=s.indexOf(": "),a=s.substring(0,i).toLowerCase(),l=s.substring(i+2);a in n||(n[a]=[]),n[a].push(l)}return{headers:n,httpStatusCode:r.status}},Jr=new WeakSet,Gi=function(e){if(this[te].ccall("wasm_set_request_uri",null,[we],[e]),e.includes("?")){const r=e.substring(e.indexOf("?")+1);this[te].ccall("wasm_set_query_string",null,[we],[r])}},Yr=new WeakSet,Ki=function(e,r){this[te].ccall("wasm_set_request_host",null,[we],[e]);let n;try{n=parseInt(new URL(e).port,10)}catch{}(!n||isNaN(n)||n===80)&&(n=r==="https"?443:80),this[te].ccall("wasm_set_request_port",null,[It],[n]),(r==="https"||!r&&n===443)&&this.addServerGlobalEntry("HTTPS","on")},Qr=new WeakSet,Ji=function(e){this[te].ccall("wasm_set_request_method",null,[we],[e])},Zr=new WeakSet,Yi=function(e){e.cookie&&this[te].ccall("wasm_set_cookies",null,[we],[e.cookie]),e["content-type"]&&this[te].ccall("wasm_set_content_type",null,[we],[e["content-type"]]),e["content-length"]&&this[te].ccall("wasm_set_content_length",null,[It],[parseInt(e["content-length"],10)]);for(const r in e){let n="HTTP_";["content-type","content-length"].includes(r.toLowerCase())&&(n=""),this.addServerGlobalEntry(`${n}${r.toUpperCase().replace(/-/g,"_")}`,e[r])}},Xr=new WeakSet,Qi=function(e){this[te].ccall("wasm_set_request_body",null,[we],[e]),this[te].ccall("wasm_set_content_length",null,[It],[new TextEncoder().encode(e).length])},en=new WeakSet,Zi=function(e){this[te].ccall("wasm_set_path_translated",null,[we],[e])},tn=new WeakSet,Xi=function(){for(const e in H(this,st))this[te].ccall("wasm_add_SERVER_entry",null,[we,we],[e,H(this,st)[e]])},rn=new WeakSet,eo=function(e){const{key:r,name:n,type:s,data:i}=e,a=`/tmp/${Math.random().toFixed(20)}`;this.writeFile(a,i);const l=0;this[te].ccall("wasm_add_uploaded_file",null,[we,we,we,we,It,It],[r,n,s,a,l,i.byteLength])},nn=new WeakSet,to=function(e){this[te].ccall("wasm_set_php_code",null,[we],[e])},sn=new WeakSet,ro=async function(){var i;let e,r;try{e=await new Promise((a,l)=>{var u;r=f=>{const y=new Error("Rethrown");y.cause=f.error,y.betterMessage=f.message,l(y)},(u=H(this,wt))==null||u.addEventListener("error",r);const p=this[te].ccall("wasm_sapi_handle_request",It,[],[],{async:!0});return p instanceof Promise?p.then(a,l):a(p)})}catch(a){for(const f in this)typeof this[f]=="function"&&(this[f]=()=>{throw new Error("PHP runtime has crashed – see the earlier error for details.")});this.functionsMaybeMissingFromAsyncify=wa();const l=a,p="betterMessage"in l?l.betterMessage:l.message,u=new Error(p);throw u.cause=l,u}finally{(i=H(this,wt))==null||i.removeEventListener("error",r),pe(this,st,{})}const{headers:n,httpStatusCode:s}=_e(this,Kr,Bi).call(this);return new Mt(s,n,this.readFileAsBuffer("/tmp/stdout"),this.readFileAsText("/tmp/stderr"),e)};Be([xe('Could not create directory "{path}"')],Ge.prototype,"mkdir",1);Be([xe('Could not create directory "{path}"')],Ge.prototype,"mkdirTree",1);Be([xe('Could not read "{path}"')],Ge.prototype,"readFileAsText",1);Be([xe('Could not read "{path}"')],Ge.prototype,"readFileAsBuffer",1);Be([xe('Could not write to "{path}"')],Ge.prototype,"writeFile",1);Be([xe('Could not unlink "{path}"')],Ge.prototype,"unlink",1);Be([xe('Could not remove directory "{path}"')],Ge.prototype,"rmdir",1);Be([xe('Could not list files in "{path}"')],Ge.prototype,"listFiles",1);Be([xe('Could not stat "{path}"')],Ge.prototype,"isDir",1);Be([xe('Could not stat "{path}"')],Ge.prototype,"fileExists",1);function no(t){const e={};for(const r in t)e[r.toLowerCase()]=t[r];return e}const za=["vfs","literal","wordpress.org/themes","wordpress.org/plugins","url"];function Ha(t){return t&&typeof t=="object"&&typeof t.resource=="string"&&za.includes(t.resource)}class Pt{static create(e,{semaphore:r,progress:n}){let s;switch(e.resource){case"vfs":s=new Va(e,n);break;case"literal":s=new Wa(e,n);break;case"wordpress.org/themes":s=new Ga(e,n);break;case"wordpress.org/plugins":s=new Ka(e,n);break;case"url":s=new Ba(e,n);break;default:throw new Error(`Invalid resource: ${e}`)}return s=new Ja(s),r&&(s=new Ya(s,r)),s}setPlayground(e){this.playground=e}get isAsync(){return!1}}class Va extends Pt{constructor(e,r){super(),this.resource=e,this.progress=r}async resolve(){var r;const e=await this.playground.readFileAsBuffer(this.resource.path);return(r=this.progress)==null||r.set(100),new File([e],this.name)}get name(){return this.resource.path.split("/").pop()||""}}class Wa extends Pt{constructor(e,r){super(),this.resource=e,this.progress=r}async resolve(){var e;return(e=this.progress)==null||e.set(100),new File([this.resource.contents],this.resource.name)}get name(){return this.resource.name}}class qn extends Pt{constructor(e){super(),this.progress=e}async resolve(){var n,s;(n=this.progress)==null||n.setCaption(this.caption);const e=this.getURL();let r=await fetch(e);if(r=await ma(r,((s=this.progress)==null?void 0:s.loadingListener)??xa),r.status!==200)throw new Error(`Could not download "${e}"`);return new File([await r.blob()],this.name)}get caption(){return`Downloading ${this.name}`}get name(){try{return new URL(this.getURL(),"http://example.com").pathname.split("/").pop()}catch{return this.getURL()}}get isAsync(){return!0}}const xa=()=>{};class Ba extends qn{constructor(e,r){super(r),this.resource=e}getURL(){return this.resource.url}get caption(){return this.resource.caption??super.caption}}class Ga extends qn{constructor(e,r){super(r),this.resource=e}get name(){return cn(this.resource.slug)}getURL(){return`https://downloads.wordpress.org/theme/${so(this.resource.slug)}`}}class Ka extends qn{constructor(e,r){super(r),this.resource=e}get name(){return cn(this.resource.slug)}getURL(){return`https://downloads.wordpress.org/plugin/${so(this.resource.slug)}`}}function so(t){return!t||t.endsWith(".zip")?t:t+".latest-stable.zip"}class io extends Pt{constructor(e){super(),this.resource=e}async resolve(){return this.resource.resolve()}async setPlayground(e){return this.resource.setPlayground(e)}get progress(){return this.resource.progress}set progress(e){this.resource.progress=e}get name(){return this.resource.name}get isAsync(){return this.resource.isAsync}}class Ja extends io{async resolve(){return this.promise||(this.promise=super.resolve()),this.promise}}class Ya extends io{constructor(e,r){super(e),this.semaphore=r}async resolve(){return this.isAsync?this.semaphore.run(()=>super.resolve()):super.resolve()}}var Qa=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Za(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var bn={exports:{}},oo={},De={},Bt={},$r={},G={},mr={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.regexpCode=t.getEsmExportName=t.getProperty=t.safeStringify=t.stringify=t.strConcat=t.addCodeArg=t.str=t._=t.nil=t._Code=t.Name=t.IDENTIFIER=t._CodeOrName=void 0;class e{}t._CodeOrName=e,t.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;class r extends e{constructor(T){if(super(),!t.IDENTIFIER.test(T))throw new Error("CodeGen: name must be a valid identifier");this.str=T}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}}t.Name=r;class n extends e{constructor(T){super(),this._items=typeof T=="string"?[T]:T}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;const T=this._items[0];return T===""||T==='""'}get str(){var T;return(T=this._str)!==null&&T!==void 0?T:this._str=this._items.reduce((O,j)=>`${O}${j}`,"")}get names(){var T;return(T=this._names)!==null&&T!==void 0?T:this._names=this._items.reduce((O,j)=>(j instanceof r&&(O[j.str]=(O[j.str]||0)+1),O),{})}}t._Code=n,t.nil=new n("");function s(g,...T){const O=[g[0]];let j=0;for(;j<T.length;)l(O,T[j]),O.push(g[++j]);return new n(O)}t._=s;const i=new n("+");function a(g,...T){const O=[R(g[0])];let j=0;for(;j<T.length;)O.push(i),l(O,T[j]),O.push(i,R(g[++j]));return p(O),new n(O)}t.str=a;function l(g,T){T instanceof n?g.push(...T._items):T instanceof r?g.push(T):g.push(y(T))}t.addCodeArg=l;function p(g){let T=1;for(;T<g.length-1;){if(g[T]===i){const O=u(g[T-1],g[T+1]);if(O!==void 0){g.splice(T-1,3,O);continue}g[T++]="+"}T++}}function u(g,T){if(T==='""')return g;if(g==='""')return T;if(typeof g=="string")return T instanceof r||g[g.length-1]!=='"'?void 0:typeof T!="string"?`${g.slice(0,-1)}${T}"`:T[0]==='"'?g.slice(0,-1)+T.slice(1):void 0;if(typeof T=="string"&&T[0]==='"'&&!(g instanceof r))return`"${g}${T.slice(1)}`}function f(g,T){return T.emptyStr()?g:g.emptyStr()?T:a`${g}${T}`}t.strConcat=f;function y(g){return typeof g=="number"||typeof g=="boolean"||g===null?g:R(Array.isArray(g)?g.join(","):g)}function k(g){return new n(R(g))}t.stringify=k;function R(g){return JSON.stringify(g).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}t.safeStringify=R;function w(g){return typeof g=="string"&&t.IDENTIFIER.test(g)?new n(`.${g}`):s`[${g}]`}t.getProperty=w;function S(g){if(typeof g=="string"&&t.IDENTIFIER.test(g))return new n(`${g}`);throw new Error(`CodeGen: invalid export name: ${g}, use explicit $id name mapping`)}t.getEsmExportName=S;function _(g){return new n(g.toString())}t.regexpCode=_})(mr);var Pn={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.ValueScope=t.ValueScopeName=t.Scope=t.varKinds=t.UsedValueState=void 0;const e=mr;class r extends Error{constructor(u){super(`CodeGen: "code" for ${u} not defined`),this.value=u.value}}var n;(function(p){p[p.Started=0]="Started",p[p.Completed=1]="Completed"})(n=t.UsedValueState||(t.UsedValueState={})),t.varKinds={const:new e.Name("const"),let:new e.Name("let"),var:new e.Name("var")};class s{constructor({prefixes:u,parent:f}={}){this._names={},this._prefixes=u,this._parent=f}toName(u){return u instanceof e.Name?u:this.name(u)}name(u){return new e.Name(this._newName(u))}_newName(u){const f=this._names[u]||this._nameGroup(u);return`${u}${f.index++}`}_nameGroup(u){var f,y;if(!((y=(f=this._parent)===null||f===void 0?void 0:f._prefixes)===null||y===void 0)&&y.has(u)||this._prefixes&&!this._prefixes.has(u))throw new Error(`CodeGen: prefix "${u}" is not allowed in this scope`);return this._names[u]={prefix:u,index:0}}}t.Scope=s;class i extends e.Name{constructor(u,f){super(f),this.prefix=u}setValue(u,{property:f,itemIndex:y}){this.value=u,this.scopePath=(0,e._)`.${new e.Name(f)}[${y}]`}}t.ValueScopeName=i;const a=(0,e._)`\n`;class l extends s{constructor(u){super(u),this._values={},this._scope=u.scope,this.opts={...u,_n:u.lines?a:e.nil}}get(){return this._scope}name(u){return new i(u,this._newName(u))}value(u,f){var y;if(f.ref===void 0)throw new Error("CodeGen: ref must be passed in value");const k=this.toName(u),{prefix:R}=k,w=(y=f.key)!==null&&y!==void 0?y:f.ref;let S=this._values[R];if(S){const T=S.get(w);if(T)return T}else S=this._values[R]=new Map;S.set(w,k);const _=this._scope[R]||(this._scope[R]=[]),g=_.length;return _[g]=f.ref,k.setValue(f,{property:R,itemIndex:g}),k}getValue(u,f){const y=this._values[u];if(y)return y.get(f)}scopeRefs(u,f=this._values){return this._reduceValues(f,y=>{if(y.scopePath===void 0)throw new Error(`CodeGen: name "${y}" has no value`);return(0,e._)`${u}${y.scopePath}`})}scopeCode(u=this._values,f,y){return this._reduceValues(u,k=>{if(k.value===void 0)throw new Error(`CodeGen: name "${k}" has no value`);return k.value.code},f,y)}_reduceValues(u,f,y={},k){let R=e.nil;for(const w in u){const S=u[w];if(!S)continue;const _=y[w]=y[w]||new Map;S.forEach(g=>{if(_.has(g))return;_.set(g,n.Started);let T=f(g);if(T){const O=this.opts.es5?t.varKinds.var:t.varKinds.const;R=(0,e._)`${R}${O} ${g} = ${T};${this.opts._n}`}else if(T=k==null?void 0:k(g))R=(0,e._)`${R}${T}${this.opts._n}`;else throw new r(g);_.set(g,n.Completed)})}return R}}t.ValueScope=l})(Pn);(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.or=t.and=t.not=t.CodeGen=t.operators=t.varKinds=t.ValueScopeName=t.ValueScope=t.Scope=t.Name=t.regexpCode=t.stringify=t.getProperty=t.nil=t.strConcat=t.str=t._=void 0;const e=mr,r=Pn;var n=mr;Object.defineProperty(t,"_",{enumerable:!0,get:function(){return n._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return n.str}}),Object.defineProperty(t,"strConcat",{enumerable:!0,get:function(){return n.strConcat}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return n.nil}}),Object.defineProperty(t,"getProperty",{enumerable:!0,get:function(){return n.getProperty}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return n.stringify}}),Object.defineProperty(t,"regexpCode",{enumerable:!0,get:function(){return n.regexpCode}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return n.Name}});var s=Pn;Object.defineProperty(t,"Scope",{enumerable:!0,get:function(){return s.Scope}}),Object.defineProperty(t,"ValueScope",{enumerable:!0,get:function(){return s.ValueScope}}),Object.defineProperty(t,"ValueScopeName",{enumerable:!0,get:function(){return s.ValueScopeName}}),Object.defineProperty(t,"varKinds",{enumerable:!0,get:function(){return s.varKinds}}),t.operators={GT:new e._Code(">"),GTE:new e._Code(">="),LT:new e._Code("<"),LTE:new e._Code("<="),EQ:new e._Code("==="),NEQ:new e._Code("!=="),NOT:new e._Code("!"),OR:new e._Code("||"),AND:new e._Code("&&"),ADD:new e._Code("+")};class i{optimizeNodes(){return this}optimizeNames(o,h){return this}}class a extends i{constructor(o,h,N){super(),this.varKind=o,this.name=h,this.rhs=N}render({es5:o,_n:h}){const N=o?r.varKinds.var:this.varKind,q=this.rhs===void 0?"":` = ${this.rhs}`;return`${N} ${this.name}${q};`+h}optimizeNames(o,h){if(o[this.name.str])return this.rhs&&(this.rhs=he(this.rhs,o,h)),this}get names(){return this.rhs instanceof e._CodeOrName?this.rhs.names:{}}}class l extends i{constructor(o,h,N){super(),this.lhs=o,this.rhs=h,this.sideEffects=N}render({_n:o}){return`${this.lhs} = ${this.rhs};`+o}optimizeNames(o,h){if(!(this.lhs instanceof e.Name&&!o[this.lhs.str]&&!this.sideEffects))return this.rhs=he(this.rhs,o,h),this}get names(){const o=this.lhs instanceof e.Name?{}:{...this.lhs.names};return ke(o,this.rhs)}}class p extends l{constructor(o,h,N,q){super(o,N,q),this.op=h}render({_n:o}){return`${this.lhs} ${this.op}= ${this.rhs};`+o}}class u extends i{constructor(o){super(),this.label=o,this.names={}}render({_n:o}){return`${this.label}:`+o}}class f extends i{constructor(o){super(),this.label=o,this.names={}}render({_n:o}){return`break${this.label?` ${this.label}`:""};`+o}}class y extends i{constructor(o){super(),this.error=o}render({_n:o}){return`throw ${this.error};`+o}get names(){return this.error.names}}class k extends i{constructor(o){super(),this.code=o}render({_n:o}){return`${this.code};`+o}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(o,h){return this.code=he(this.code,o,h),this}get names(){return this.code instanceof e._CodeOrName?this.code.names:{}}}class R extends i{constructor(o=[]){super(),this.nodes=o}render(o){return this.nodes.reduce((h,N)=>h+N.render(o),"")}optimizeNodes(){const{nodes:o}=this;let h=o.length;for(;h--;){const N=o[h].optimizeNodes();Array.isArray(N)?o.splice(h,1,...N):N?o[h]=N:o.splice(h,1)}return o.length>0?this:void 0}optimizeNames(o,h){const{nodes:N}=this;let q=N.length;for(;q--;){const M=N[q];M.optimizeNames(o,h)||(at(o,M.names),N.splice(q,1))}return N.length>0?this:void 0}get names(){return this.nodes.reduce((o,h)=>Z(o,h.names),{})}}class w extends R{render(o){return"{"+o._n+super.render(o)+"}"+o._n}}class S extends R{}class _ extends w{}_.kind="else";class g extends w{constructor(o,h){super(h),this.condition=o}render(o){let h=`if(${this.condition})`+super.render(o);return this.else&&(h+="else "+this.else.render(o)),h}optimizeNodes(){super.optimizeNodes();const o=this.condition;if(o===!0)return this.nodes;let h=this.else;if(h){const N=h.optimizeNodes();h=this.else=Array.isArray(N)?new _(N):N}if(h)return o===!1?h instanceof g?h:h.nodes:this.nodes.length?this:new g(ct(o),h instanceof g?[h]:h.nodes);if(!(o===!1||!this.nodes.length))return this}optimizeNames(o,h){var N;if(this.else=(N=this.else)===null||N===void 0?void 0:N.optimizeNames(o,h),!!(super.optimizeNames(o,h)||this.else))return this.condition=he(this.condition,o,h),this}get names(){const o=super.names;return ke(o,this.condition),this.else&&Z(o,this.else.names),o}}g.kind="if";class T extends w{}T.kind="for";class O extends T{constructor(o){super(),this.iteration=o}render(o){return`for(${this.iteration})`+super.render(o)}optimizeNames(o,h){if(super.optimizeNames(o,h))return this.iteration=he(this.iteration,o,h),this}get names(){return Z(super.names,this.iteration.names)}}class j extends T{constructor(o,h,N,q){super(),this.varKind=o,this.name=h,this.from=N,this.to=q}render(o){const h=o.es5?r.varKinds.var:this.varKind,{name:N,from:q,to:M}=this;return`for(${h} ${N}=${q}; ${N}<${M}; ${N}++)`+super.render(o)}get names(){const o=ke(super.names,this.from);return ke(o,this.to)}}class A extends T{constructor(o,h,N,q){super(),this.loop=o,this.varKind=h,this.name=N,this.iterable=q}render(o){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(o)}optimizeNames(o,h){if(super.optimizeNames(o,h))return this.iterable=he(this.iterable,o,h),this}get names(){return Z(super.names,this.iterable.names)}}class v extends w{constructor(o,h,N){super(),this.name=o,this.args=h,this.async=N}render(o){return`${this.async?"async ":""}function ${this.name}(${this.args})`+super.render(o)}}v.kind="func";class C extends R{render(o){return"return "+super.render(o)}}C.kind="return";class D extends w{render(o){let h="try"+super.render(o);return this.catch&&(h+=this.catch.render(o)),this.finally&&(h+=this.finally.render(o)),h}optimizeNodes(){var o,h;return super.optimizeNodes(),(o=this.catch)===null||o===void 0||o.optimizeNodes(),(h=this.finally)===null||h===void 0||h.optimizeNodes(),this}optimizeNames(o,h){var N,q;return super.optimizeNames(o,h),(N=this.catch)===null||N===void 0||N.optimizeNames(o,h),(q=this.finally)===null||q===void 0||q.optimizeNames(o,h),this}get names(){const o=super.names;return this.catch&&Z(o,this.catch.names),this.finally&&Z(o,this.finally.names),o}}class W extends w{constructor(o){super(),this.error=o}render(o){return`catch(${this.error})`+super.render(o)}}W.kind="catch";class K extends w{render(o){return"finally"+super.render(o)}}K.kind="finally";class ce{constructor(o,h={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...h,_n:h.lines?`
|
|
870
|
+
`:""},this._extScope=o,this._scope=new r.Scope({parent:o}),this._nodes=[new S]}toString(){return this._root.render(this.opts)}name(o){return this._scope.name(o)}scopeName(o){return this._extScope.name(o)}scopeValue(o,h){const N=this._extScope.value(o,h);return(this._values[N.prefix]||(this._values[N.prefix]=new Set)).add(N),N}getScopeValue(o,h){return this._extScope.getValue(o,h)}scopeRefs(o){return this._extScope.scopeRefs(o,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(o,h,N,q){const M=this._scope.toName(h);return N!==void 0&&q&&(this._constants[M.str]=N),this._leafNode(new a(o,M,N)),M}const(o,h,N){return this._def(r.varKinds.const,o,h,N)}let(o,h,N){return this._def(r.varKinds.let,o,h,N)}var(o,h,N){return this._def(r.varKinds.var,o,h,N)}assign(o,h,N){return this._leafNode(new l(o,h,N))}add(o,h){return this._leafNode(new p(o,t.operators.ADD,h))}code(o){return typeof o=="function"?o():o!==e.nil&&this._leafNode(new k(o)),this}object(...o){const h=["{"];for(const[N,q]of o)h.length>1&&h.push(","),h.push(N),(N!==q||this.opts.es5)&&(h.push(":"),(0,e.addCodeArg)(h,q));return h.push("}"),new e._Code(h)}if(o,h,N){if(this._blockNode(new g(o)),h&&N)this.code(h).else().code(N).endIf();else if(h)this.code(h).endIf();else if(N)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(o){return this._elseNode(new g(o))}else(){return this._elseNode(new _)}endIf(){return this._endBlockNode(g,_)}_for(o,h){return this._blockNode(o),h&&this.code(h).endFor(),this}for(o,h){return this._for(new O(o),h)}forRange(o,h,N,q,M=this.opts.es5?r.varKinds.var:r.varKinds.let){const J=this._scope.toName(o);return this._for(new j(M,J,h,N),()=>q(J))}forOf(o,h,N,q=r.varKinds.const){const M=this._scope.toName(o);if(this.opts.es5){const J=h instanceof e.Name?h:this.var("_arr",h);return this.forRange("_i",0,(0,e._)`${J}.length`,Q=>{this.var(M,(0,e._)`${J}[${Q}]`),N(M)})}return this._for(new A("of",q,M,h),()=>N(M))}forIn(o,h,N,q=this.opts.es5?r.varKinds.var:r.varKinds.const){if(this.opts.ownProperties)return this.forOf(o,(0,e._)`Object.keys(${h})`,N);const M=this._scope.toName(o);return this._for(new A("in",q,M,h),()=>N(M))}endFor(){return this._endBlockNode(T)}label(o){return this._leafNode(new u(o))}break(o){return this._leafNode(new f(o))}return(o){const h=new C;if(this._blockNode(h),this.code(o),h.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(C)}try(o,h,N){if(!h&&!N)throw new Error('CodeGen: "try" without "catch" and "finally"');const q=new D;if(this._blockNode(q),this.code(o),h){const M=this.name("e");this._currNode=q.catch=new W(M),h(M)}return N&&(this._currNode=q.finally=new K,this.code(N)),this._endBlockNode(W,K)}throw(o){return this._leafNode(new y(o))}block(o,h){return this._blockStarts.push(this._nodes.length),o&&this.code(o).endBlock(h),this}endBlock(o){const h=this._blockStarts.pop();if(h===void 0)throw new Error("CodeGen: not in self-balancing block");const N=this._nodes.length-h;if(N<0||o!==void 0&&N!==o)throw new Error(`CodeGen: wrong number of nodes: ${N} vs ${o} expected`);return this._nodes.length=h,this}func(o,h=e.nil,N,q){return this._blockNode(new v(o,h,N)),q&&this.code(q).endFunc(),this}endFunc(){return this._endBlockNode(v)}optimize(o=1){for(;o-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(o){return this._currNode.nodes.push(o),this}_blockNode(o){this._currNode.nodes.push(o),this._nodes.push(o)}_endBlockNode(o,h){const N=this._currNode;if(N instanceof o||h&&N instanceof h)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${h?`${o.kind}/${h.kind}`:o.kind}"`)}_elseNode(o){const h=this._currNode;if(!(h instanceof g))throw new Error('CodeGen: "else" without "if"');return this._currNode=h.else=o,this}get _root(){return this._nodes[0]}get _currNode(){const o=this._nodes;return o[o.length-1]}set _currNode(o){const h=this._nodes;h[h.length-1]=o}}t.CodeGen=ce;function Z(b,o){for(const h in o)b[h]=(b[h]||0)+(o[h]||0);return b}function ke(b,o){return o instanceof e._CodeOrName?Z(b,o.names):b}function he(b,o,h){if(b instanceof e.Name)return N(b);if(!q(b))return b;return new e._Code(b._items.reduce((M,J)=>(J instanceof e.Name&&(J=N(J)),J instanceof e._Code?M.push(...J._items):M.push(J),M),[]));function N(M){const J=h[M.str];return J===void 0||o[M.str]!==1?M:(delete o[M.str],J)}function q(M){return M instanceof e._Code&&M._items.some(J=>J instanceof e.Name&&o[J.str]===1&&h[J.str]!==void 0)}}function at(b,o){for(const h in o)b[h]=(b[h]||0)-(o[h]||0)}function ct(b){return typeof b=="boolean"||typeof b=="number"||b===null?!b:(0,e._)`!${I(b)}`}t.not=ct;const Et=$(t.operators.AND);function Yt(...b){return b.reduce(Et)}t.and=Yt;const St=$(t.operators.OR);function F(...b){return b.reduce(St)}t.or=F;function $(b){return(o,h)=>o===e.nil?h:h===e.nil?o:(0,e._)`${I(o)} ${b} ${I(h)}`}function I(b){return b instanceof e.Name?b:(0,e._)`(${b})`}})(G);var re={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.checkStrictMode=t.getErrorPath=t.Type=t.useFunc=t.setEvaluated=t.evaluatedPropsToName=t.mergeEvaluated=t.eachItem=t.unescapeJsonPointer=t.escapeJsonPointer=t.escapeFragment=t.unescapeFragment=t.schemaRefOrVal=t.schemaHasRulesButRef=t.schemaHasRules=t.checkUnknownRules=t.alwaysValidSchema=t.toHash=void 0;const e=G,r=mr;function n(v){const C={};for(const D of v)C[D]=!0;return C}t.toHash=n;function s(v,C){return typeof C=="boolean"?C:Object.keys(C).length===0?!0:(i(v,C),!a(C,v.self.RULES.all))}t.alwaysValidSchema=s;function i(v,C=v.schema){const{opts:D,self:W}=v;if(!D.strictSchema||typeof C=="boolean")return;const K=W.RULES.keywords;for(const ce in C)K[ce]||A(v,`unknown keyword: "${ce}"`)}t.checkUnknownRules=i;function a(v,C){if(typeof v=="boolean")return!v;for(const D in v)if(C[D])return!0;return!1}t.schemaHasRules=a;function l(v,C){if(typeof v=="boolean")return!v;for(const D in v)if(D!=="$ref"&&C.all[D])return!0;return!1}t.schemaHasRulesButRef=l;function p({topSchemaRef:v,schemaPath:C},D,W,K){if(!K){if(typeof D=="number"||typeof D=="boolean")return D;if(typeof D=="string")return(0,e._)`${D}`}return(0,e._)`${v}${C}${(0,e.getProperty)(W)}`}t.schemaRefOrVal=p;function u(v){return k(decodeURIComponent(v))}t.unescapeFragment=u;function f(v){return encodeURIComponent(y(v))}t.escapeFragment=f;function y(v){return typeof v=="number"?`${v}`:v.replace(/~/g,"~0").replace(/\//g,"~1")}t.escapeJsonPointer=y;function k(v){return v.replace(/~1/g,"/").replace(/~0/g,"~")}t.unescapeJsonPointer=k;function R(v,C){if(Array.isArray(v))for(const D of v)C(D);else C(v)}t.eachItem=R;function w({mergeNames:v,mergeToName:C,mergeValues:D,resultToName:W}){return(K,ce,Z,ke)=>{const he=Z===void 0?ce:Z instanceof e.Name?(ce instanceof e.Name?v(K,ce,Z):C(K,ce,Z),Z):ce instanceof e.Name?(C(K,Z,ce),ce):D(ce,Z);return ke===e.Name&&!(he instanceof e.Name)?W(K,he):he}}t.mergeEvaluated={props:w({mergeNames:(v,C,D)=>v.if((0,e._)`${D} !== true && ${C} !== undefined`,()=>{v.if((0,e._)`${C} === true`,()=>v.assign(D,!0),()=>v.assign(D,(0,e._)`${D} || {}`).code((0,e._)`Object.assign(${D}, ${C})`))}),mergeToName:(v,C,D)=>v.if((0,e._)`${D} !== true`,()=>{C===!0?v.assign(D,!0):(v.assign(D,(0,e._)`${D} || {}`),_(v,D,C))}),mergeValues:(v,C)=>v===!0?!0:{...v,...C},resultToName:S}),items:w({mergeNames:(v,C,D)=>v.if((0,e._)`${D} !== true && ${C} !== undefined`,()=>v.assign(D,(0,e._)`${C} === true ? true : ${D} > ${C} ? ${D} : ${C}`)),mergeToName:(v,C,D)=>v.if((0,e._)`${D} !== true`,()=>v.assign(D,C===!0?!0:(0,e._)`${D} > ${C} ? ${D} : ${C}`)),mergeValues:(v,C)=>v===!0?!0:Math.max(v,C),resultToName:(v,C)=>v.var("items",C)})};function S(v,C){if(C===!0)return v.var("props",!0);const D=v.var("props",(0,e._)`{}`);return C!==void 0&&_(v,D,C),D}t.evaluatedPropsToName=S;function _(v,C,D){Object.keys(D).forEach(W=>v.assign((0,e._)`${C}${(0,e.getProperty)(W)}`,!0))}t.setEvaluated=_;const g={};function T(v,C){return v.scopeValue("func",{ref:C,code:g[C.code]||(g[C.code]=new r._Code(C.code))})}t.useFunc=T;var O;(function(v){v[v.Num=0]="Num",v[v.Str=1]="Str"})(O=t.Type||(t.Type={}));function j(v,C,D){if(v instanceof e.Name){const W=C===O.Num;return D?W?(0,e._)`"[" + ${v} + "]"`:(0,e._)`"['" + ${v} + "']"`:W?(0,e._)`"/" + ${v}`:(0,e._)`"/" + ${v}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return D?(0,e.getProperty)(v).toString():"/"+y(v)}t.getErrorPath=j;function A(v,C,D=v.opts.strictSchema){if(D){if(C=`strict mode: ${C}`,D===!0)throw new Error(C);v.self.logger.warn(C)}}t.checkStrictMode=A})(re);var Ke={};Object.defineProperty(Ke,"__esModule",{value:!0});const ve=G,Xa={data:new ve.Name("data"),valCxt:new ve.Name("valCxt"),instancePath:new ve.Name("instancePath"),parentData:new ve.Name("parentData"),parentDataProperty:new ve.Name("parentDataProperty"),rootData:new ve.Name("rootData"),dynamicAnchors:new ve.Name("dynamicAnchors"),vErrors:new ve.Name("vErrors"),errors:new ve.Name("errors"),this:new ve.Name("this"),self:new ve.Name("self"),scope:new ve.Name("scope"),json:new ve.Name("json"),jsonPos:new ve.Name("jsonPos"),jsonLen:new ve.Name("jsonLen"),jsonPart:new ve.Name("jsonPart")};Ke.default=Xa;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.extendErrors=t.resetErrorsCount=t.reportExtraError=t.reportError=t.keyword$DataError=t.keywordError=void 0;const e=G,r=re,n=Ke;t.keywordError={message:({keyword:_})=>(0,e.str)`must pass "${_}" keyword validation`},t.keyword$DataError={message:({keyword:_,schemaType:g})=>g?(0,e.str)`"${_}" keyword must be ${g} ($data)`:(0,e.str)`"${_}" keyword is invalid ($data)`};function s(_,g=t.keywordError,T,O){const{it:j}=_,{gen:A,compositeRule:v,allErrors:C}=j,D=y(_,g,T);O??(v||C)?p(A,D):u(j,(0,e._)`[${D}]`)}t.reportError=s;function i(_,g=t.keywordError,T){const{it:O}=_,{gen:j,compositeRule:A,allErrors:v}=O,C=y(_,g,T);p(j,C),A||v||u(O,n.default.vErrors)}t.reportExtraError=i;function a(_,g){_.assign(n.default.errors,g),_.if((0,e._)`${n.default.vErrors} !== null`,()=>_.if(g,()=>_.assign((0,e._)`${n.default.vErrors}.length`,g),()=>_.assign(n.default.vErrors,null)))}t.resetErrorsCount=a;function l({gen:_,keyword:g,schemaValue:T,data:O,errsCount:j,it:A}){if(j===void 0)throw new Error("ajv implementation error");const v=_.name("err");_.forRange("i",j,n.default.errors,C=>{_.const(v,(0,e._)`${n.default.vErrors}[${C}]`),_.if((0,e._)`${v}.instancePath === undefined`,()=>_.assign((0,e._)`${v}.instancePath`,(0,e.strConcat)(n.default.instancePath,A.errorPath))),_.assign((0,e._)`${v}.schemaPath`,(0,e.str)`${A.errSchemaPath}/${g}`),A.opts.verbose&&(_.assign((0,e._)`${v}.schema`,T),_.assign((0,e._)`${v}.data`,O))})}t.extendErrors=l;function p(_,g){const T=_.const("err",g);_.if((0,e._)`${n.default.vErrors} === null`,()=>_.assign(n.default.vErrors,(0,e._)`[${T}]`),(0,e._)`${n.default.vErrors}.push(${T})`),_.code((0,e._)`${n.default.errors}++`)}function u(_,g){const{gen:T,validateName:O,schemaEnv:j}=_;j.$async?T.throw((0,e._)`new ${_.ValidationError}(${g})`):(T.assign((0,e._)`${O}.errors`,g),T.return(!1))}const f={keyword:new e.Name("keyword"),schemaPath:new e.Name("schemaPath"),params:new e.Name("params"),propertyName:new e.Name("propertyName"),message:new e.Name("message"),schema:new e.Name("schema"),parentSchema:new e.Name("parentSchema")};function y(_,g,T){const{createErrors:O}=_.it;return O===!1?(0,e._)`{}`:k(_,g,T)}function k(_,g,T={}){const{gen:O,it:j}=_,A=[R(j,T),w(_,T)];return S(_,g,A),O.object(...A)}function R({errorPath:_},{instancePath:g}){const T=g?(0,e.str)`${_}${(0,r.getErrorPath)(g,r.Type.Str)}`:_;return[n.default.instancePath,(0,e.strConcat)(n.default.instancePath,T)]}function w({keyword:_,it:{errSchemaPath:g}},{schemaPath:T,parentSchema:O}){let j=O?g:(0,e.str)`${g}/${_}`;return T&&(j=(0,e.str)`${j}${(0,r.getErrorPath)(T,r.Type.Str)}`),[f.schemaPath,j]}function S(_,{params:g,message:T},O){const{keyword:j,data:A,schemaValue:v,it:C}=_,{opts:D,propertyName:W,topSchemaRef:K,schemaPath:ce}=C;O.push([f.keyword,j],[f.params,typeof g=="function"?g(_):g||(0,e._)`{}`]),D.messages&&O.push([f.message,typeof T=="function"?T(_):T]),D.verbose&&O.push([f.schema,v],[f.parentSchema,(0,e._)`${K}${ce}`],[n.default.data,A]),W&&O.push([f.propertyName,W])}})($r);Object.defineProperty(Bt,"__esModule",{value:!0});Bt.boolOrEmptySchema=Bt.topBoolOrEmptySchema=void 0;const ec=$r,tc=G,rc=Ke,nc={message:"boolean schema is false"};function sc(t){const{gen:e,schema:r,validateName:n}=t;r===!1?ao(t,!1):typeof r=="object"&&r.$async===!0?e.return(rc.default.data):(e.assign((0,tc._)`${n}.errors`,null),e.return(!0))}Bt.topBoolOrEmptySchema=sc;function ic(t,e){const{gen:r,schema:n}=t;n===!1?(r.var(e,!1),ao(t)):r.var(e,!0)}Bt.boolOrEmptySchema=ic;function ao(t,e){const{gen:r,data:n}=t,s={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:t};(0,ec.reportError)(s,nc,void 0,e)}var _r={},vt={};Object.defineProperty(vt,"__esModule",{value:!0});vt.getRules=vt.isJSONType=void 0;const oc=["string","number","integer","boolean","null","object","array"],ac=new Set(oc);function cc(t){return typeof t=="string"&&ac.has(t)}vt.isJSONType=cc;function lc(){const t={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...t,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},t.number,t.string,t.array,t.object],post:{rules:[]},all:{},keywords:{}}}vt.getRules=lc;var Qe={};Object.defineProperty(Qe,"__esModule",{value:!0});Qe.shouldUseRule=Qe.shouldUseGroup=Qe.schemaHasRulesForType=void 0;function uc({schema:t,self:e},r){const n=e.RULES.types[r];return n&&n!==!0&&co(t,n)}Qe.schemaHasRulesForType=uc;function co(t,e){return e.rules.some(r=>lo(t,r))}Qe.shouldUseGroup=co;function lo(t,e){var r;return t[e.keyword]!==void 0||((r=e.definition.implements)===null||r===void 0?void 0:r.some(n=>t[n]!==void 0))}Qe.shouldUseRule=lo;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.reportTypeError=t.checkDataTypes=t.checkDataType=t.coerceAndCheckDataType=t.getJSONTypes=t.getSchemaTypes=t.DataType=void 0;const e=vt,r=Qe,n=$r,s=G,i=re;var a;(function(O){O[O.Correct=0]="Correct",O[O.Wrong=1]="Wrong"})(a=t.DataType||(t.DataType={}));function l(O){const j=p(O.type);if(j.includes("null")){if(O.nullable===!1)throw new Error("type: null contradicts nullable: false")}else{if(!j.length&&O.nullable!==void 0)throw new Error('"nullable" cannot be used without "type"');O.nullable===!0&&j.push("null")}return j}t.getSchemaTypes=l;function p(O){const j=Array.isArray(O)?O:O?[O]:[];if(j.every(e.isJSONType))return j;throw new Error("type must be JSONType or JSONType[]: "+j.join(","))}t.getJSONTypes=p;function u(O,j){const{gen:A,data:v,opts:C}=O,D=y(j,C.coerceTypes),W=j.length>0&&!(D.length===0&&j.length===1&&(0,r.schemaHasRulesForType)(O,j[0]));if(W){const K=S(j,v,C.strictNumbers,a.Wrong);A.if(K,()=>{D.length?k(O,j,D):g(O)})}return W}t.coerceAndCheckDataType=u;const f=new Set(["string","number","integer","boolean","null"]);function y(O,j){return j?O.filter(A=>f.has(A)||j==="array"&&A==="array"):[]}function k(O,j,A){const{gen:v,data:C,opts:D}=O,W=v.let("dataType",(0,s._)`typeof ${C}`),K=v.let("coerced",(0,s._)`undefined`);D.coerceTypes==="array"&&v.if((0,s._)`${W} == 'object' && Array.isArray(${C}) && ${C}.length == 1`,()=>v.assign(C,(0,s._)`${C}[0]`).assign(W,(0,s._)`typeof ${C}`).if(S(j,C,D.strictNumbers),()=>v.assign(K,C))),v.if((0,s._)`${K} !== undefined`);for(const Z of A)(f.has(Z)||Z==="array"&&D.coerceTypes==="array")&&ce(Z);v.else(),g(O),v.endIf(),v.if((0,s._)`${K} !== undefined`,()=>{v.assign(C,K),R(O,K)});function ce(Z){switch(Z){case"string":v.elseIf((0,s._)`${W} == "number" || ${W} == "boolean"`).assign(K,(0,s._)`"" + ${C}`).elseIf((0,s._)`${C} === null`).assign(K,(0,s._)`""`);return;case"number":v.elseIf((0,s._)`${W} == "boolean" || ${C} === null
|
|
871
|
+
|| (${W} == "string" && ${C} && ${C} == +${C})`).assign(K,(0,s._)`+${C}`);return;case"integer":v.elseIf((0,s._)`${W} === "boolean" || ${C} === null
|
|
872
|
+
|| (${W} === "string" && ${C} && ${C} == +${C} && !(${C} % 1))`).assign(K,(0,s._)`+${C}`);return;case"boolean":v.elseIf((0,s._)`${C} === "false" || ${C} === 0 || ${C} === null`).assign(K,!1).elseIf((0,s._)`${C} === "true" || ${C} === 1`).assign(K,!0);return;case"null":v.elseIf((0,s._)`${C} === "" || ${C} === 0 || ${C} === false`),v.assign(K,null);return;case"array":v.elseIf((0,s._)`${W} === "string" || ${W} === "number"
|
|
873
|
+
|| ${W} === "boolean" || ${C} === null`).assign(K,(0,s._)`[${C}]`)}}}function R({gen:O,parentData:j,parentDataProperty:A},v){O.if((0,s._)`${j} !== undefined`,()=>O.assign((0,s._)`${j}[${A}]`,v))}function w(O,j,A,v=a.Correct){const C=v===a.Correct?s.operators.EQ:s.operators.NEQ;let D;switch(O){case"null":return(0,s._)`${j} ${C} null`;case"array":D=(0,s._)`Array.isArray(${j})`;break;case"object":D=(0,s._)`${j} && typeof ${j} == "object" && !Array.isArray(${j})`;break;case"integer":D=W((0,s._)`!(${j} % 1) && !isNaN(${j})`);break;case"number":D=W();break;default:return(0,s._)`typeof ${j} ${C} ${O}`}return v===a.Correct?D:(0,s.not)(D);function W(K=s.nil){return(0,s.and)((0,s._)`typeof ${j} == "number"`,K,A?(0,s._)`isFinite(${j})`:s.nil)}}t.checkDataType=w;function S(O,j,A,v){if(O.length===1)return w(O[0],j,A,v);let C;const D=(0,i.toHash)(O);if(D.array&&D.object){const W=(0,s._)`typeof ${j} != "object"`;C=D.null?W:(0,s._)`!${j} || ${W}`,delete D.null,delete D.array,delete D.object}else C=s.nil;D.number&&delete D.integer;for(const W in D)C=(0,s.and)(C,w(W,j,A,v));return C}t.checkDataTypes=S;const _={message:({schema:O})=>`must be ${O}`,params:({schema:O,schemaValue:j})=>typeof O=="string"?(0,s._)`{type: ${O}}`:(0,s._)`{type: ${j}}`};function g(O){const j=T(O);(0,n.reportError)(j,_)}t.reportTypeError=g;function T(O){const{gen:j,data:A,schema:v}=O,C=(0,i.schemaRefOrVal)(O,v,"type");return{gen:j,keyword:"type",data:A,schema:v.type,schemaCode:C,schemaValue:C,parentSchema:v,params:{},it:O}}})(_r);var ln={};Object.defineProperty(ln,"__esModule",{value:!0});ln.assignDefaults=void 0;const Dt=G,dc=re;function pc(t,e){const{properties:r,items:n}=t.schema;if(e==="object"&&r)for(const s in r)Bs(t,s,r[s].default);else e==="array"&&Array.isArray(n)&&n.forEach((s,i)=>Bs(t,i,s.default))}ln.assignDefaults=pc;function Bs(t,e,r){const{gen:n,compositeRule:s,data:i,opts:a}=t;if(r===void 0)return;const l=(0,Dt._)`${i}${(0,Dt.getProperty)(e)}`;if(s){(0,dc.checkStrictMode)(t,`default is ignored for: ${l}`);return}let p=(0,Dt._)`${l} === undefined`;a.useDefaults==="empty"&&(p=(0,Dt._)`${p} || ${l} === null || ${l} === ""`),n.if(p,(0,Dt._)`${l} = ${(0,Dt.stringify)(r)}`)}var We={},B={};Object.defineProperty(B,"__esModule",{value:!0});B.validateUnion=B.validateArray=B.usePattern=B.callValidateCode=B.schemaProperties=B.allSchemaProperties=B.noPropertyInData=B.propertyInData=B.isOwnProperty=B.hasPropFunc=B.reportMissingProp=B.checkMissingProp=B.checkReportMissingProp=void 0;const ie=G,Mn=re,tt=Ke,fc=re;function hc(t,e){const{gen:r,data:n,it:s}=t;r.if(Ln(r,n,e,s.opts.ownProperties),()=>{t.setParams({missingProperty:(0,ie._)`${e}`},!0),t.error()})}B.checkReportMissingProp=hc;function mc({gen:t,data:e,it:{opts:r}},n,s){return(0,ie.or)(...n.map(i=>(0,ie.and)(Ln(t,e,i,r.ownProperties),(0,ie._)`${s} = ${i}`)))}B.checkMissingProp=mc;function yc(t,e){t.setParams({missingProperty:e},!0),t.error()}B.reportMissingProp=yc;function uo(t){return t.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,ie._)`Object.prototype.hasOwnProperty`})}B.hasPropFunc=uo;function Un(t,e,r){return(0,ie._)`${uo(t)}.call(${e}, ${r})`}B.isOwnProperty=Un;function gc(t,e,r,n){const s=(0,ie._)`${e}${(0,ie.getProperty)(r)} !== undefined`;return n?(0,ie._)`${s} && ${Un(t,e,r)}`:s}B.propertyInData=gc;function Ln(t,e,r,n){const s=(0,ie._)`${e}${(0,ie.getProperty)(r)} === undefined`;return n?(0,ie.or)(s,(0,ie.not)(Un(t,e,r))):s}B.noPropertyInData=Ln;function po(t){return t?Object.keys(t).filter(e=>e!=="__proto__"):[]}B.allSchemaProperties=po;function $c(t,e){return po(e).filter(r=>!(0,Mn.alwaysValidSchema)(t,e[r]))}B.schemaProperties=$c;function _c({schemaCode:t,data:e,it:{gen:r,topSchemaRef:n,schemaPath:s,errorPath:i},it:a},l,p,u){const f=u?(0,ie._)`${t}, ${e}, ${n}${s}`:e,y=[[tt.default.instancePath,(0,ie.strConcat)(tt.default.instancePath,i)],[tt.default.parentData,a.parentData],[tt.default.parentDataProperty,a.parentDataProperty],[tt.default.rootData,tt.default.rootData]];a.opts.dynamicRef&&y.push([tt.default.dynamicAnchors,tt.default.dynamicAnchors]);const k=(0,ie._)`${f}, ${r.object(...y)}`;return p!==ie.nil?(0,ie._)`${l}.call(${p}, ${k})`:(0,ie._)`${l}(${k})`}B.callValidateCode=_c;const wc=(0,ie._)`new RegExp`;function vc({gen:t,it:{opts:e}},r){const n=e.unicodeRegExp?"u":"",{regExp:s}=e.code,i=s(r,n);return t.scopeValue("pattern",{key:i.toString(),ref:i,code:(0,ie._)`${s.code==="new RegExp"?wc:(0,fc.useFunc)(t,s)}(${r}, ${n})`})}B.usePattern=vc;function bc(t){const{gen:e,data:r,keyword:n,it:s}=t,i=e.name("valid");if(s.allErrors){const l=e.let("valid",!0);return a(()=>e.assign(l,!1)),l}return e.var(i,!0),a(()=>e.break()),i;function a(l){const p=e.const("len",(0,ie._)`${r}.length`);e.forRange("i",0,p,u=>{t.subschema({keyword:n,dataProp:u,dataPropType:Mn.Type.Num},i),e.if((0,ie.not)(i),l)})}}B.validateArray=bc;function Pc(t){const{gen:e,schema:r,keyword:n,it:s}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(r.some(p=>(0,Mn.alwaysValidSchema)(s,p))&&!s.opts.unevaluated)return;const a=e.let("valid",!1),l=e.name("_valid");e.block(()=>r.forEach((p,u)=>{const f=t.subschema({keyword:n,schemaProp:u,compositeRule:!0},l);e.assign(a,(0,ie._)`${a} || ${l}`),t.mergeValidEvaluated(f,l)||e.if((0,ie.not)(a))})),t.result(a,()=>t.reset(),()=>t.error(!0))}B.validateUnion=Pc;Object.defineProperty(We,"__esModule",{value:!0});We.validateKeywordUsage=We.validSchemaType=We.funcKeywordCode=We.macroKeywordCode=void 0;const be=G,ht=Ke,Ec=B,Sc=$r;function Tc(t,e){const{gen:r,keyword:n,schema:s,parentSchema:i,it:a}=t,l=e.macro.call(a.self,s,i,a),p=fo(r,n,l);a.opts.validateSchema!==!1&&a.self.validateSchema(l,!0);const u=r.name("valid");t.subschema({schema:l,schemaPath:be.nil,errSchemaPath:`${a.errSchemaPath}/${n}`,topSchemaRef:p,compositeRule:!0},u),t.pass(u,()=>t.error(!0))}We.macroKeywordCode=Tc;function kc(t,e){var r;const{gen:n,keyword:s,schema:i,parentSchema:a,$data:l,it:p}=t;Oc(p,e);const u=!l&&e.compile?e.compile.call(p.self,i,a,p):e.validate,f=fo(n,s,u),y=n.let("valid");t.block$data(y,k),t.ok((r=e.valid)!==null&&r!==void 0?r:y);function k(){if(e.errors===!1)S(),e.modifying&&Gs(t),_(()=>t.error());else{const g=e.async?R():w();e.modifying&&Gs(t),_(()=>Rc(t,g))}}function R(){const g=n.let("ruleErrs",null);return n.try(()=>S((0,be._)`await `),T=>n.assign(y,!1).if((0,be._)`${T} instanceof ${p.ValidationError}`,()=>n.assign(g,(0,be._)`${T}.errors`),()=>n.throw(T))),g}function w(){const g=(0,be._)`${f}.errors`;return n.assign(g,null),S(be.nil),g}function S(g=e.async?(0,be._)`await `:be.nil){const T=p.opts.passContext?ht.default.this:ht.default.self,O=!("compile"in e&&!l||e.schema===!1);n.assign(y,(0,be._)`${g}${(0,Ec.callValidateCode)(t,f,T,O)}`,e.modifying)}function _(g){var T;n.if((0,be.not)((T=e.valid)!==null&&T!==void 0?T:y),g)}}We.funcKeywordCode=kc;function Gs(t){const{gen:e,data:r,it:n}=t;e.if(n.parentData,()=>e.assign(r,(0,be._)`${n.parentData}[${n.parentDataProperty}]`))}function Rc(t,e){const{gen:r}=t;r.if((0,be._)`Array.isArray(${e})`,()=>{r.assign(ht.default.vErrors,(0,be._)`${ht.default.vErrors} === null ? ${e} : ${ht.default.vErrors}.concat(${e})`).assign(ht.default.errors,(0,be._)`${ht.default.vErrors}.length`),(0,Sc.extendErrors)(t)},()=>t.error())}function Oc({schemaEnv:t},e){if(e.async&&!t.$async)throw new Error("async keyword in sync schema")}function fo(t,e,r){if(r===void 0)throw new Error(`keyword "${e}" failed to compile`);return t.scopeValue("keyword",typeof r=="function"?{ref:r}:{ref:r,code:(0,be.stringify)(r)})}function Cc(t,e,r=!1){return!e.length||e.some(n=>n==="array"?Array.isArray(t):n==="object"?t&&typeof t=="object"&&!Array.isArray(t):typeof t==n||r&&typeof t>"u")}We.validSchemaType=Cc;function Nc({schema:t,opts:e,self:r,errSchemaPath:n},s,i){if(Array.isArray(s.keyword)?!s.keyword.includes(i):s.keyword!==i)throw new Error("ajv implementation error");const a=s.dependencies;if(a!=null&&a.some(l=>!Object.prototype.hasOwnProperty.call(t,l)))throw new Error(`parent schema must have dependencies of ${i}: ${a.join(",")}`);if(s.validateSchema&&!s.validateSchema(t[i])){const p=`keyword "${i}" value is invalid at path "${n}": `+r.errorsText(s.validateSchema.errors);if(e.validateSchema==="log")r.logger.error(p);else throw new Error(p)}}We.validateKeywordUsage=Nc;var ot={};Object.defineProperty(ot,"__esModule",{value:!0});ot.extendSubschemaMode=ot.extendSubschemaData=ot.getSubschema=void 0;const Ve=G,ho=re;function jc(t,{keyword:e,schemaProp:r,schema:n,schemaPath:s,errSchemaPath:i,topSchemaRef:a}){if(e!==void 0&&n!==void 0)throw new Error('both "keyword" and "schema" passed, only one allowed');if(e!==void 0){const l=t.schema[e];return r===void 0?{schema:l,schemaPath:(0,Ve._)`${t.schemaPath}${(0,Ve.getProperty)(e)}`,errSchemaPath:`${t.errSchemaPath}/${e}`}:{schema:l[r],schemaPath:(0,Ve._)`${t.schemaPath}${(0,Ve.getProperty)(e)}${(0,Ve.getProperty)(r)}`,errSchemaPath:`${t.errSchemaPath}/${e}/${(0,ho.escapeFragment)(r)}`}}if(n!==void 0){if(s===void 0||i===void 0||a===void 0)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:n,schemaPath:s,topSchemaRef:a,errSchemaPath:i}}throw new Error('either "keyword" or "schema" must be passed')}ot.getSubschema=jc;function Ic(t,e,{dataProp:r,dataPropType:n,data:s,dataTypes:i,propertyName:a}){if(s!==void 0&&r!==void 0)throw new Error('both "data" and "dataProp" passed, only one allowed');const{gen:l}=e;if(r!==void 0){const{errorPath:u,dataPathArr:f,opts:y}=e,k=l.let("data",(0,Ve._)`${e.data}${(0,Ve.getProperty)(r)}`,!0);p(k),t.errorPath=(0,Ve.str)`${u}${(0,ho.getErrorPath)(r,n,y.jsPropertySyntax)}`,t.parentDataProperty=(0,Ve._)`${r}`,t.dataPathArr=[...f,t.parentDataProperty]}if(s!==void 0){const u=s instanceof Ve.Name?s:l.let("data",s,!0);p(u),a!==void 0&&(t.propertyName=a)}i&&(t.dataTypes=i);function p(u){t.data=u,t.dataLevel=e.dataLevel+1,t.dataTypes=[],e.definedProperties=new Set,t.parentData=e.data,t.dataNames=[...e.dataNames,u]}}ot.extendSubschemaData=Ic;function Dc(t,{jtdDiscriminator:e,jtdMetadata:r,compositeRule:n,createErrors:s,allErrors:i}){n!==void 0&&(t.compositeRule=n),s!==void 0&&(t.createErrors=s),i!==void 0&&(t.allErrors=i),t.jtdDiscriminator=e,t.jtdMetadata=r}ot.extendSubschemaMode=Dc;var $e={},mo=function t(e,r){if(e===r)return!0;if(e&&r&&typeof e=="object"&&typeof r=="object"){if(e.constructor!==r.constructor)return!1;var n,s,i;if(Array.isArray(e)){if(n=e.length,n!=r.length)return!1;for(s=n;s--!==0;)if(!t(e[s],r[s]))return!1;return!0}if(e.constructor===RegExp)return e.source===r.source&&e.flags===r.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===r.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===r.toString();if(i=Object.keys(e),n=i.length,n!==Object.keys(r).length)return!1;for(s=n;s--!==0;)if(!Object.prototype.hasOwnProperty.call(r,i[s]))return!1;for(s=n;s--!==0;){var a=i[s];if(!t(e[a],r[a]))return!1}return!0}return e!==e&&r!==r},yo={exports:{}},it=yo.exports=function(t,e,r){typeof e=="function"&&(r=e,e={}),r=e.cb||r;var n=typeof r=="function"?r:r.pre||function(){},s=r.post||function(){};Dr(e,n,s,t,"",t)};it.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};it.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};it.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};it.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function Dr(t,e,r,n,s,i,a,l,p,u){if(n&&typeof n=="object"&&!Array.isArray(n)){e(n,s,i,a,l,p,u);for(var f in n){var y=n[f];if(Array.isArray(y)){if(f in it.arrayKeywords)for(var k=0;k<y.length;k++)Dr(t,e,r,y[k],s+"/"+f+"/"+k,i,s,f,n,k)}else if(f in it.propsKeywords){if(y&&typeof y=="object")for(var R in y)Dr(t,e,r,y[R],s+"/"+f+"/"+Ac(R),i,s,f,n,R)}else(f in it.keywords||t.allKeys&&!(f in it.skipKeywords))&&Dr(t,e,r,y,s+"/"+f,i,s,f,n)}r(n,s,i,a,l,p,u)}}function Ac(t){return t.replace(/~/g,"~0").replace(/\//g,"~1")}var Fc=yo.exports;Object.defineProperty($e,"__esModule",{value:!0});$e.getSchemaRefs=$e.resolveUrl=$e.normalizeId=$e._getFullPath=$e.getFullPath=$e.inlineRef=void 0;const qc=re,Mc=mo,Uc=Fc,Lc=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function zc(t,e=!0){return typeof t=="boolean"?!0:e===!0?!En(t):e?go(t)<=e:!1}$e.inlineRef=zc;const Hc=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function En(t){for(const e in t){if(Hc.has(e))return!0;const r=t[e];if(Array.isArray(r)&&r.some(En)||typeof r=="object"&&En(r))return!0}return!1}function go(t){let e=0;for(const r in t){if(r==="$ref")return 1/0;if(e++,!Lc.has(r)&&(typeof t[r]=="object"&&(0,qc.eachItem)(t[r],n=>e+=go(n)),e===1/0))return 1/0}return e}function $o(t,e="",r){r!==!1&&(e=Ut(e));const n=t.parse(e);return _o(t,n)}$e.getFullPath=$o;function _o(t,e){return t.serialize(e).split("#")[0]+"#"}$e._getFullPath=_o;const Vc=/#\/?$/;function Ut(t){return t?t.replace(Vc,""):""}$e.normalizeId=Ut;function Wc(t,e,r){return r=Ut(r),t.resolve(e,r)}$e.resolveUrl=Wc;const xc=/^[a-z_][-a-z0-9._]*$/i;function Bc(t,e){if(typeof t=="boolean")return{};const{schemaId:r,uriResolver:n}=this.opts,s=Ut(t[r]||e),i={"":s},a=$o(n,s,!1),l={},p=new Set;return Uc(t,{allKeys:!0},(y,k,R,w)=>{if(w===void 0)return;const S=a+k;let _=i[w];typeof y[r]=="string"&&(_=g.call(this,y[r])),T.call(this,y.$anchor),T.call(this,y.$dynamicAnchor),i[k]=_;function g(O){const j=this.opts.uriResolver.resolve;if(O=Ut(_?j(_,O):O),p.has(O))throw f(O);p.add(O);let A=this.refs[O];return typeof A=="string"&&(A=this.refs[A]),typeof A=="object"?u(y,A.schema,O):O!==Ut(S)&&(O[0]==="#"?(u(y,l[O],O),l[O]=y):this.refs[O]=S),O}function T(O){if(typeof O=="string"){if(!xc.test(O))throw new Error(`invalid anchor "${O}"`);g.call(this,`#${O}`)}}}),l;function u(y,k,R){if(k!==void 0&&!Mc(y,k))throw f(R)}function f(y){return new Error(`reference "${y}" resolves to more than one schema`)}}$e.getSchemaRefs=Bc;Object.defineProperty(De,"__esModule",{value:!0});De.getData=De.KeywordCxt=De.validateFunctionCode=void 0;const wo=Bt,Ks=_r,zn=Qe,Ur=_r,Gc=ln,lr=We,yn=ot,U=G,V=Ke,Kc=$e,Ze=re,or=$r;function Jc(t){if(Po(t)&&(Eo(t),bo(t))){Zc(t);return}vo(t,()=>(0,wo.topBoolOrEmptySchema)(t))}De.validateFunctionCode=Jc;function vo({gen:t,validateName:e,schema:r,schemaEnv:n,opts:s},i){s.code.es5?t.func(e,(0,U._)`${V.default.data}, ${V.default.valCxt}`,n.$async,()=>{t.code((0,U._)`"use strict"; ${Js(r,s)}`),Qc(t,s),t.code(i)}):t.func(e,(0,U._)`${V.default.data}, ${Yc(s)}`,n.$async,()=>t.code(Js(r,s)).code(i))}function Yc(t){return(0,U._)`{${V.default.instancePath}="", ${V.default.parentData}, ${V.default.parentDataProperty}, ${V.default.rootData}=${V.default.data}${t.dynamicRef?(0,U._)`, ${V.default.dynamicAnchors}={}`:U.nil}}={}`}function Qc(t,e){t.if(V.default.valCxt,()=>{t.var(V.default.instancePath,(0,U._)`${V.default.valCxt}.${V.default.instancePath}`),t.var(V.default.parentData,(0,U._)`${V.default.valCxt}.${V.default.parentData}`),t.var(V.default.parentDataProperty,(0,U._)`${V.default.valCxt}.${V.default.parentDataProperty}`),t.var(V.default.rootData,(0,U._)`${V.default.valCxt}.${V.default.rootData}`),e.dynamicRef&&t.var(V.default.dynamicAnchors,(0,U._)`${V.default.valCxt}.${V.default.dynamicAnchors}`)},()=>{t.var(V.default.instancePath,(0,U._)`""`),t.var(V.default.parentData,(0,U._)`undefined`),t.var(V.default.parentDataProperty,(0,U._)`undefined`),t.var(V.default.rootData,V.default.data),e.dynamicRef&&t.var(V.default.dynamicAnchors,(0,U._)`{}`)})}function Zc(t){const{schema:e,opts:r,gen:n}=t;vo(t,()=>{r.$comment&&e.$comment&&To(t),nl(t),n.let(V.default.vErrors,null),n.let(V.default.errors,0),r.unevaluated&&Xc(t),So(t),ol(t)})}function Xc(t){const{gen:e,validateName:r}=t;t.evaluated=e.const("evaluated",(0,U._)`${r}.evaluated`),e.if((0,U._)`${t.evaluated}.dynamicProps`,()=>e.assign((0,U._)`${t.evaluated}.props`,(0,U._)`undefined`)),e.if((0,U._)`${t.evaluated}.dynamicItems`,()=>e.assign((0,U._)`${t.evaluated}.items`,(0,U._)`undefined`))}function Js(t,e){const r=typeof t=="object"&&t[e.schemaId];return r&&(e.code.source||e.code.process)?(0,U._)`/*# sourceURL=${r} */`:U.nil}function el(t,e){if(Po(t)&&(Eo(t),bo(t))){tl(t,e);return}(0,wo.boolOrEmptySchema)(t,e)}function bo({schema:t,self:e}){if(typeof t=="boolean")return!t;for(const r in t)if(e.RULES.all[r])return!0;return!1}function Po(t){return typeof t.schema!="boolean"}function tl(t,e){const{schema:r,gen:n,opts:s}=t;s.$comment&&r.$comment&&To(t),sl(t),il(t);const i=n.const("_errs",V.default.errors);So(t,i),n.var(e,(0,U._)`${i} === ${V.default.errors}`)}function Eo(t){(0,Ze.checkUnknownRules)(t),rl(t)}function So(t,e){if(t.opts.jtd)return Ys(t,[],!1,e);const r=(0,Ks.getSchemaTypes)(t.schema),n=(0,Ks.coerceAndCheckDataType)(t,r);Ys(t,r,!n,e)}function rl(t){const{schema:e,errSchemaPath:r,opts:n,self:s}=t;e.$ref&&n.ignoreKeywordsWithRef&&(0,Ze.schemaHasRulesButRef)(e,s.RULES)&&s.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function nl(t){const{schema:e,opts:r}=t;e.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Ze.checkStrictMode)(t,"default is ignored in the schema root")}function sl(t){const e=t.schema[t.opts.schemaId];e&&(t.baseId=(0,Kc.resolveUrl)(t.opts.uriResolver,t.baseId,e))}function il(t){if(t.schema.$async&&!t.schemaEnv.$async)throw new Error("async schema in sync schema")}function To({gen:t,schemaEnv:e,schema:r,errSchemaPath:n,opts:s}){const i=r.$comment;if(s.$comment===!0)t.code((0,U._)`${V.default.self}.logger.log(${i})`);else if(typeof s.$comment=="function"){const a=(0,U.str)`${n}/$comment`,l=t.scopeValue("root",{ref:e.root});t.code((0,U._)`${V.default.self}.opts.$comment(${i}, ${a}, ${l}.schema)`)}}function ol(t){const{gen:e,schemaEnv:r,validateName:n,ValidationError:s,opts:i}=t;r.$async?e.if((0,U._)`${V.default.errors} === 0`,()=>e.return(V.default.data),()=>e.throw((0,U._)`new ${s}(${V.default.vErrors})`)):(e.assign((0,U._)`${n}.errors`,V.default.vErrors),i.unevaluated&&al(t),e.return((0,U._)`${V.default.errors} === 0`))}function al({gen:t,evaluated:e,props:r,items:n}){r instanceof U.Name&&t.assign((0,U._)`${e}.props`,r),n instanceof U.Name&&t.assign((0,U._)`${e}.items`,n)}function Ys(t,e,r,n){const{gen:s,schema:i,data:a,allErrors:l,opts:p,self:u}=t,{RULES:f}=u;if(i.$ref&&(p.ignoreKeywordsWithRef||!(0,Ze.schemaHasRulesButRef)(i,f))){s.block(()=>Oo(t,"$ref",f.all.$ref.definition));return}p.jtd||cl(t,e),s.block(()=>{for(const k of f.rules)y(k);y(f.post)});function y(k){(0,zn.shouldUseGroup)(i,k)&&(k.type?(s.if((0,Ur.checkDataType)(k.type,a,p.strictNumbers)),Qs(t,k),e.length===1&&e[0]===k.type&&r&&(s.else(),(0,Ur.reportTypeError)(t)),s.endIf()):Qs(t,k),l||s.if((0,U._)`${V.default.errors} === ${n||0}`))}}function Qs(t,e){const{gen:r,schema:n,opts:{useDefaults:s}}=t;s&&(0,Gc.assignDefaults)(t,e.type),r.block(()=>{for(const i of e.rules)(0,zn.shouldUseRule)(n,i)&&Oo(t,i.keyword,i.definition,e.type)})}function cl(t,e){t.schemaEnv.meta||!t.opts.strictTypes||(ll(t,e),t.opts.allowUnionTypes||ul(t,e),dl(t,t.dataTypes))}function ll(t,e){if(e.length){if(!t.dataTypes.length){t.dataTypes=e;return}e.forEach(r=>{ko(t.dataTypes,r)||Hn(t,`type "${r}" not allowed by context "${t.dataTypes.join(",")}"`)}),fl(t,e)}}function ul(t,e){e.length>1&&!(e.length===2&&e.includes("null"))&&Hn(t,"use allowUnionTypes to allow union type keyword")}function dl(t,e){const r=t.self.RULES.all;for(const n in r){const s=r[n];if(typeof s=="object"&&(0,zn.shouldUseRule)(t.schema,s)){const{type:i}=s.definition;i.length&&!i.some(a=>pl(e,a))&&Hn(t,`missing type "${i.join(",")}" for keyword "${n}"`)}}}function pl(t,e){return t.includes(e)||e==="number"&&t.includes("integer")}function ko(t,e){return t.includes(e)||e==="integer"&&t.includes("number")}function fl(t,e){const r=[];for(const n of t.dataTypes)ko(e,n)?r.push(n):e.includes("integer")&&n==="number"&&r.push("integer");t.dataTypes=r}function Hn(t,e){const r=t.schemaEnv.baseId+t.errSchemaPath;e+=` at "${r}" (strictTypes)`,(0,Ze.checkStrictMode)(t,e,t.opts.strictTypes)}class Ro{constructor(e,r,n){if((0,lr.validateKeywordUsage)(e,r,n),this.gen=e.gen,this.allErrors=e.allErrors,this.keyword=n,this.data=e.data,this.schema=e.schema[n],this.$data=r.$data&&e.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,Ze.schemaRefOrVal)(e,this.schema,n,this.$data),this.schemaType=r.schemaType,this.parentSchema=e.schema,this.params={},this.it=e,this.def=r,this.$data)this.schemaCode=e.gen.const("vSchema",Co(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,lr.validSchemaType)(this.schema,r.schemaType,r.allowUndefined))throw new Error(`${n} value must be ${JSON.stringify(r.schemaType)}`);("code"in r?r.trackErrors:r.errors!==!1)&&(this.errsCount=e.gen.const("_errs",V.default.errors))}result(e,r,n){this.failResult((0,U.not)(e),r,n)}failResult(e,r,n){this.gen.if(e),n?n():this.error(),r?(this.gen.else(),r(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(e,r){this.failResult((0,U.not)(e),void 0,r)}fail(e){if(e===void 0){this.error(),this.allErrors||this.gen.if(!1);return}this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(e){if(!this.$data)return this.fail(e);const{schemaCode:r}=this;this.fail((0,U._)`${r} !== undefined && (${(0,U.or)(this.invalid$data(),e)})`)}error(e,r,n){if(r){this.setParams(r),this._error(e,n),this.setParams({});return}this._error(e,n)}_error(e,r){(e?or.reportExtraError:or.reportError)(this,this.def.error,r)}$dataError(){(0,or.reportError)(this,this.def.$dataError||or.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,or.resetErrorsCount)(this.gen,this.errsCount)}ok(e){this.allErrors||this.gen.if(e)}setParams(e,r){r?Object.assign(this.params,e):this.params=e}block$data(e,r,n=U.nil){this.gen.block(()=>{this.check$data(e,n),r()})}check$data(e=U.nil,r=U.nil){if(!this.$data)return;const{gen:n,schemaCode:s,schemaType:i,def:a}=this;n.if((0,U.or)((0,U._)`${s} === undefined`,r)),e!==U.nil&&n.assign(e,!0),(i.length||a.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==U.nil&&n.assign(e,!1)),n.else()}invalid$data(){const{gen:e,schemaCode:r,schemaType:n,def:s,it:i}=this;return(0,U.or)(a(),l());function a(){if(n.length){if(!(r instanceof U.Name))throw new Error("ajv implementation error");const p=Array.isArray(n)?n:[n];return(0,U._)`${(0,Ur.checkDataTypes)(p,r,i.opts.strictNumbers,Ur.DataType.Wrong)}`}return U.nil}function l(){if(s.validateSchema){const p=e.scopeValue("validate$data",{ref:s.validateSchema});return(0,U._)`!${p}(${r})`}return U.nil}}subschema(e,r){const n=(0,yn.getSubschema)(this.it,e);(0,yn.extendSubschemaData)(n,this.it,e),(0,yn.extendSubschemaMode)(n,e);const s={...this.it,...n,items:void 0,props:void 0};return el(s,r),s}mergeEvaluated(e,r){const{it:n,gen:s}=this;n.opts.unevaluated&&(n.props!==!0&&e.props!==void 0&&(n.props=Ze.mergeEvaluated.props(s,e.props,n.props,r)),n.items!==!0&&e.items!==void 0&&(n.items=Ze.mergeEvaluated.items(s,e.items,n.items,r)))}mergeValidEvaluated(e,r){const{it:n,gen:s}=this;if(n.opts.unevaluated&&(n.props!==!0||n.items!==!0))return s.if(r,()=>this.mergeEvaluated(e,U.Name)),!0}}De.KeywordCxt=Ro;function Oo(t,e,r,n){const s=new Ro(t,r,e);"code"in r?r.code(s,n):s.$data&&r.validate?(0,lr.funcKeywordCode)(s,r):"macro"in r?(0,lr.macroKeywordCode)(s,r):(r.compile||r.validate)&&(0,lr.funcKeywordCode)(s,r)}const hl=/^\/(?:[^~]|~0|~1)*$/,ml=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function Co(t,{dataLevel:e,dataNames:r,dataPathArr:n}){let s,i;if(t==="")return V.default.rootData;if(t[0]==="/"){if(!hl.test(t))throw new Error(`Invalid JSON-pointer: ${t}`);s=t,i=V.default.rootData}else{const u=ml.exec(t);if(!u)throw new Error(`Invalid JSON-pointer: ${t}`);const f=+u[1];if(s=u[2],s==="#"){if(f>=e)throw new Error(p("property/index",f));return n[e-f]}if(f>e)throw new Error(p("data",f));if(i=r[e-f],!s)return i}let a=i;const l=s.split("/");for(const u of l)u&&(i=(0,U._)`${i}${(0,U.getProperty)((0,Ze.unescapeJsonPointer)(u))}`,a=(0,U._)`${a} && ${i}`);return a;function p(u,f){return`Cannot access ${u} ${f} levels up, current level is ${e}`}}De.getData=Co;var wr={};Object.defineProperty(wr,"__esModule",{value:!0});class yl extends Error{constructor(e){super("validation failed"),this.errors=e,this.ajv=this.validation=!0}}wr.default=yl;var vr={};Object.defineProperty(vr,"__esModule",{value:!0});const gn=$e;class gl extends Error{constructor(e,r,n,s){super(s||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,gn.resolveUrl)(e,r,n),this.missingSchema=(0,gn.normalizeId)((0,gn.getFullPath)(e,this.missingRef))}}vr.default=gl;var Se={};Object.defineProperty(Se,"__esModule",{value:!0});Se.resolveSchema=Se.getCompilingSchema=Se.resolveRef=Se.compileSchema=Se.SchemaEnv=void 0;const Ne=G,$l=wr,ft=Ke,Ie=$e,Zs=re,_l=De;class un{constructor(e){var r;this.refs={},this.dynamicAnchors={};let n;typeof e.schema=="object"&&(n=e.schema),this.schema=e.schema,this.schemaId=e.schemaId,this.root=e.root||this,this.baseId=(r=e.baseId)!==null&&r!==void 0?r:(0,Ie.normalizeId)(n==null?void 0:n[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=n==null?void 0:n.$async,this.refs={}}}Se.SchemaEnv=un;function Vn(t){const e=No.call(this,t);if(e)return e;const r=(0,Ie.getFullPath)(this.opts.uriResolver,t.root.baseId),{es5:n,lines:s}=this.opts.code,{ownProperties:i}=this.opts,a=new Ne.CodeGen(this.scope,{es5:n,lines:s,ownProperties:i});let l;t.$async&&(l=a.scopeValue("Error",{ref:$l.default,code:(0,Ne._)`require("ajv/dist/runtime/validation_error").default`}));const p=a.scopeName("validate");t.validateName=p;const u={gen:a,allErrors:this.opts.allErrors,data:ft.default.data,parentData:ft.default.parentData,parentDataProperty:ft.default.parentDataProperty,dataNames:[ft.default.data],dataPathArr:[Ne.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:a.scopeValue("schema",this.opts.code.source===!0?{ref:t.schema,code:(0,Ne.stringify)(t.schema)}:{ref:t.schema}),validateName:p,ValidationError:l,schema:t.schema,schemaEnv:t,rootId:r,baseId:t.baseId||r,schemaPath:Ne.nil,errSchemaPath:t.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,Ne._)`""`,opts:this.opts,self:this};let f;try{this._compilations.add(t),(0,_l.validateFunctionCode)(u),a.optimize(this.opts.code.optimize);const y=a.toString();f=`${a.scopeRefs(ft.default.scope)}return ${y}`,this.opts.code.process&&(f=this.opts.code.process(f,t));const R=new Function(`${ft.default.self}`,`${ft.default.scope}`,f)(this,this.scope.get());if(this.scope.value(p,{ref:R}),R.errors=null,R.schema=t.schema,R.schemaEnv=t,t.$async&&(R.$async=!0),this.opts.code.source===!0&&(R.source={validateName:p,validateCode:y,scopeValues:a._values}),this.opts.unevaluated){const{props:w,items:S}=u;R.evaluated={props:w instanceof Ne.Name?void 0:w,items:S instanceof Ne.Name?void 0:S,dynamicProps:w instanceof Ne.Name,dynamicItems:S instanceof Ne.Name},R.source&&(R.source.evaluated=(0,Ne.stringify)(R.evaluated))}return t.validate=R,t}catch(y){throw delete t.validate,delete t.validateName,f&&this.logger.error("Error compiling schema, function code:",f),y}finally{this._compilations.delete(t)}}Se.compileSchema=Vn;function wl(t,e,r){var n;r=(0,Ie.resolveUrl)(this.opts.uriResolver,e,r);const s=t.refs[r];if(s)return s;let i=Pl.call(this,t,r);if(i===void 0){const a=(n=t.localRefs)===null||n===void 0?void 0:n[r],{schemaId:l}=this.opts;a&&(i=new un({schema:a,schemaId:l,root:t,baseId:e}))}if(i!==void 0)return t.refs[r]=vl.call(this,i)}Se.resolveRef=wl;function vl(t){return(0,Ie.inlineRef)(t.schema,this.opts.inlineRefs)?t.schema:t.validate?t:Vn.call(this,t)}function No(t){for(const e of this._compilations)if(bl(e,t))return e}Se.getCompilingSchema=No;function bl(t,e){return t.schema===e.schema&&t.root===e.root&&t.baseId===e.baseId}function Pl(t,e){let r;for(;typeof(r=this.refs[e])=="string";)e=r;return r||this.schemas[e]||dn.call(this,t,e)}function dn(t,e){const r=this.opts.uriResolver.parse(e),n=(0,Ie._getFullPath)(this.opts.uriResolver,r);let s=(0,Ie.getFullPath)(this.opts.uriResolver,t.baseId,void 0);if(Object.keys(t.schema).length>0&&n===s)return $n.call(this,r,t);const i=(0,Ie.normalizeId)(n),a=this.refs[i]||this.schemas[i];if(typeof a=="string"){const l=dn.call(this,t,a);return typeof(l==null?void 0:l.schema)!="object"?void 0:$n.call(this,r,l)}if(typeof(a==null?void 0:a.schema)=="object"){if(a.validate||Vn.call(this,a),i===(0,Ie.normalizeId)(e)){const{schema:l}=a,{schemaId:p}=this.opts,u=l[p];return u&&(s=(0,Ie.resolveUrl)(this.opts.uriResolver,s,u)),new un({schema:l,schemaId:p,root:t,baseId:s})}return $n.call(this,r,a)}}Se.resolveSchema=dn;const El=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function $n(t,{baseId:e,schema:r,root:n}){var s;if(((s=t.fragment)===null||s===void 0?void 0:s[0])!=="/")return;for(const l of t.fragment.slice(1).split("/")){if(typeof r=="boolean")return;const p=r[(0,Zs.unescapeFragment)(l)];if(p===void 0)return;r=p;const u=typeof r=="object"&&r[this.opts.schemaId];!El.has(l)&&u&&(e=(0,Ie.resolveUrl)(this.opts.uriResolver,e,u))}let i;if(typeof r!="boolean"&&r.$ref&&!(0,Zs.schemaHasRulesButRef)(r,this.RULES)){const l=(0,Ie.resolveUrl)(this.opts.uriResolver,e,r.$ref);i=dn.call(this,n,l)}const{schemaId:a}=this.opts;if(i=i||new un({schema:r,schemaId:a,root:n,baseId:e}),i.schema!==i.root.schema)return i}const Sl="https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",Tl="Meta-schema for $data reference (JSON AnySchema extension proposal)",kl="object",Rl=["$data"],Ol={$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},Cl=!1,Nl={$id:Sl,description:Tl,type:kl,required:Rl,properties:Ol,additionalProperties:Cl};var Wn={},Sn={exports:{}};/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */(function(t,e){(function(r,n){n(e)})(Qa,function(r){function n(){for(var d=arguments.length,c=Array(d),m=0;m<d;m++)c[m]=arguments[m];if(c.length>1){c[0]=c[0].slice(0,-1);for(var E=c.length-1,P=1;P<E;++P)c[P]=c[P].slice(1,-1);return c[E]=c[E].slice(1),c.join("")}else return c[0]}function s(d){return"(?:"+d+")"}function i(d){return d===void 0?"undefined":d===null?"null":Object.prototype.toString.call(d).split(" ").pop().split("]").shift().toLowerCase()}function a(d){return d.toUpperCase()}function l(d){return d!=null?d instanceof Array?d:typeof d.length!="number"||d.split||d.setInterval||d.call?[d]:Array.prototype.slice.call(d):[]}function p(d,c){var m=d;if(c)for(var E in c)m[E]=c[E];return m}function u(d){var c="[A-Za-z]",m="[0-9]",E=n(m,"[A-Fa-f]"),P=s(s("%[EFef]"+E+"%"+E+E+"%"+E+E)+"|"+s("%[89A-Fa-f]"+E+"%"+E+E)+"|"+s("%"+E+E)),L="[\\:\\/\\?\\#\\[\\]\\@]",z="[\\!\\$\\&\\'\\(\\)\\*\\+\\,\\;\\=]",X=n(L,z),se=d?"[\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]":"[]",ue=d?"[\\uE000-\\uF8FF]":"[]",Y=n(c,m,"[\\-\\.\\_\\~]",se);s(c+n(c,m,"[\\+\\-\\.]")+"*"),s(s(P+"|"+n(Y,z,"[\\:]"))+"*");var ne=s(s("25[0-5]")+"|"+s("2[0-4]"+m)+"|"+s("1"+m+m)+"|"+s("0?[1-9]"+m)+"|0?0?"+m),de=s(ne+"\\."+ne+"\\."+ne+"\\."+ne),x=s(E+"{1,4}"),oe=s(s(x+"\\:"+x)+"|"+de),me=s(s(x+"\\:")+"{6}"+oe),ae=s("\\:\\:"+s(x+"\\:")+"{5}"+oe),Xe=s(s(x)+"?\\:\\:"+s(x+"\\:")+"{4}"+oe),Me=s(s(s(x+"\\:")+"{0,1}"+x)+"?\\:\\:"+s(x+"\\:")+"{3}"+oe),Ue=s(s(s(x+"\\:")+"{0,2}"+x)+"?\\:\\:"+s(x+"\\:")+"{2}"+oe),jt=s(s(s(x+"\\:")+"{0,3}"+x)+"?\\:\\:"+x+"\\:"+oe),dt=s(s(s(x+"\\:")+"{0,4}"+x)+"?\\:\\:"+oe),Oe=s(s(s(x+"\\:")+"{0,5}"+x)+"?\\:\\:"+x),Le=s(s(s(x+"\\:")+"{0,6}"+x)+"?\\:\\:"),pt=s([me,ae,Xe,Me,Ue,jt,dt,Oe,Le].join("|")),Je=s(s(Y+"|"+P)+"+");s("[vV]"+E+"+\\."+n(Y,z,"[\\:]")+"+"),s(s(P+"|"+n(Y,z))+"*");var sr=s(P+"|"+n(Y,z,"[\\:\\@]"));return s(s(P+"|"+n(Y,z,"[\\@]"))+"+"),s(s(sr+"|"+n("[\\/\\?]",ue))+"*"),{NOT_SCHEME:new RegExp(n("[^]",c,m,"[\\+\\-\\.]"),"g"),NOT_USERINFO:new RegExp(n("[^\\%\\:]",Y,z),"g"),NOT_HOST:new RegExp(n("[^\\%\\[\\]\\:]",Y,z),"g"),NOT_PATH:new RegExp(n("[^\\%\\/\\:\\@]",Y,z),"g"),NOT_PATH_NOSCHEME:new RegExp(n("[^\\%\\/\\@]",Y,z),"g"),NOT_QUERY:new RegExp(n("[^\\%]",Y,z,"[\\:\\@\\/\\?]",ue),"g"),NOT_FRAGMENT:new RegExp(n("[^\\%]",Y,z,"[\\:\\@\\/\\?]"),"g"),ESCAPE:new RegExp(n("[^]",Y,z),"g"),UNRESERVED:new RegExp(Y,"g"),OTHER_CHARS:new RegExp(n("[^\\%]",Y,X),"g"),PCT_ENCODED:new RegExp(P,"g"),IPV4ADDRESS:new RegExp("^("+de+")$"),IPV6ADDRESS:new RegExp("^\\[?("+pt+")"+s(s("\\%25|\\%(?!"+E+"{2})")+"("+Je+")")+"?\\]?$")}}var f=u(!1),y=u(!0),k=function(){function d(c,m){var E=[],P=!0,L=!1,z=void 0;try{for(var X=c[Symbol.iterator](),se;!(P=(se=X.next()).done)&&(E.push(se.value),!(m&&E.length===m));P=!0);}catch(ue){L=!0,z=ue}finally{try{!P&&X.return&&X.return()}finally{if(L)throw z}}return E}return function(c,m){if(Array.isArray(c))return c;if(Symbol.iterator in Object(c))return d(c,m);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),R=function(d){if(Array.isArray(d)){for(var c=0,m=Array(d.length);c<d.length;c++)m[c]=d[c];return m}else return Array.from(d)},w=2147483647,S=36,_=1,g=26,T=38,O=700,j=72,A=128,v="-",C=/^xn--/,D=/[^\0-\x7E]/,W=/[\x2E\u3002\uFF0E\uFF61]/g,K={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},ce=S-_,Z=Math.floor,ke=String.fromCharCode;function he(d){throw new RangeError(K[d])}function at(d,c){for(var m=[],E=d.length;E--;)m[E]=c(d[E]);return m}function ct(d,c){var m=d.split("@"),E="";m.length>1&&(E=m[0]+"@",d=m[1]),d=d.replace(W,".");var P=d.split("."),L=at(P,c).join(".");return E+L}function Et(d){for(var c=[],m=0,E=d.length;m<E;){var P=d.charCodeAt(m++);if(P>=55296&&P<=56319&&m<E){var L=d.charCodeAt(m++);(L&64512)==56320?c.push(((P&1023)<<10)+(L&1023)+65536):(c.push(P),m--)}else c.push(P)}return c}var Yt=function(c){return String.fromCodePoint.apply(String,R(c))},St=function(c){return c-48<10?c-22:c-65<26?c-65:c-97<26?c-97:S},F=function(c,m){return c+22+75*(c<26)-((m!=0)<<5)},$=function(c,m,E){var P=0;for(c=E?Z(c/O):c>>1,c+=Z(c/m);c>ce*g>>1;P+=S)c=Z(c/ce);return Z(P+(ce+1)*c/(c+T))},I=function(c){var m=[],E=c.length,P=0,L=A,z=j,X=c.lastIndexOf(v);X<0&&(X=0);for(var se=0;se<X;++se)c.charCodeAt(se)>=128&&he("not-basic"),m.push(c.charCodeAt(se));for(var ue=X>0?X+1:0;ue<E;){for(var Y=P,ne=1,de=S;;de+=S){ue>=E&&he("invalid-input");var x=St(c.charCodeAt(ue++));(x>=S||x>Z((w-P)/ne))&&he("overflow"),P+=x*ne;var oe=de<=z?_:de>=z+g?g:de-z;if(x<oe)break;var me=S-oe;ne>Z(w/me)&&he("overflow"),ne*=me}var ae=m.length+1;z=$(P-Y,ae,Y==0),Z(P/ae)>w-L&&he("overflow"),L+=Z(P/ae),P%=ae,m.splice(P++,0,L)}return String.fromCodePoint.apply(String,m)},b=function(c){var m=[];c=Et(c);var E=c.length,P=A,L=0,z=j,X=!0,se=!1,ue=void 0;try{for(var Y=c[Symbol.iterator](),ne;!(X=(ne=Y.next()).done);X=!0){var de=ne.value;de<128&&m.push(ke(de))}}catch(ir){se=!0,ue=ir}finally{try{!X&&Y.return&&Y.return()}finally{if(se)throw ue}}var x=m.length,oe=x;for(x&&m.push(v);oe<E;){var me=w,ae=!0,Xe=!1,Me=void 0;try{for(var Ue=c[Symbol.iterator](),jt;!(ae=(jt=Ue.next()).done);ae=!0){var dt=jt.value;dt>=P&&dt<me&&(me=dt)}}catch(ir){Xe=!0,Me=ir}finally{try{!ae&&Ue.return&&Ue.return()}finally{if(Xe)throw Me}}var Oe=oe+1;me-P>Z((w-L)/Oe)&&he("overflow"),L+=(me-P)*Oe,P=me;var Le=!0,pt=!1,Je=void 0;try{for(var sr=c[Symbol.iterator](),Cs;!(Le=(Cs=sr.next()).done);Le=!0){var Ns=Cs.value;if(Ns<P&&++L>w&&he("overflow"),Ns==P){for(var Er=L,Sr=S;;Sr+=S){var Tr=Sr<=z?_:Sr>=z+g?g:Sr-z;if(Er<Tr)break;var js=Er-Tr,Is=S-Tr;m.push(ke(F(Tr+js%Is,0))),Er=Z(js/Is)}m.push(ke(F(Er,0))),z=$(L,Oe,oe==x),L=0,++oe}}}catch(ir){pt=!0,Je=ir}finally{try{!Le&&sr.return&&sr.return()}finally{if(pt)throw Je}}++L,++P}return m.join("")},o=function(c){return ct(c,function(m){return C.test(m)?I(m.slice(4).toLowerCase()):m})},h=function(c){return ct(c,function(m){return D.test(m)?"xn--"+b(m):m})},N={version:"2.1.0",ucs2:{decode:Et,encode:Yt},decode:I,encode:b,toASCII:h,toUnicode:o},q={};function M(d){var c=d.charCodeAt(0),m=void 0;return c<16?m="%0"+c.toString(16).toUpperCase():c<128?m="%"+c.toString(16).toUpperCase():c<2048?m="%"+(c>>6|192).toString(16).toUpperCase()+"%"+(c&63|128).toString(16).toUpperCase():m="%"+(c>>12|224).toString(16).toUpperCase()+"%"+(c>>6&63|128).toString(16).toUpperCase()+"%"+(c&63|128).toString(16).toUpperCase(),m}function J(d){for(var c="",m=0,E=d.length;m<E;){var P=parseInt(d.substr(m+1,2),16);if(P<128)c+=String.fromCharCode(P),m+=3;else if(P>=194&&P<224){if(E-m>=6){var L=parseInt(d.substr(m+4,2),16);c+=String.fromCharCode((P&31)<<6|L&63)}else c+=d.substr(m,6);m+=6}else if(P>=224){if(E-m>=9){var z=parseInt(d.substr(m+4,2),16),X=parseInt(d.substr(m+7,2),16);c+=String.fromCharCode((P&15)<<12|(z&63)<<6|X&63)}else c+=d.substr(m,9);m+=9}else c+=d.substr(m,3),m+=3}return c}function Q(d,c){function m(E){var P=J(E);return P.match(c.UNRESERVED)?P:E}return d.scheme&&(d.scheme=String(d.scheme).replace(c.PCT_ENCODED,m).toLowerCase().replace(c.NOT_SCHEME,"")),d.userinfo!==void 0&&(d.userinfo=String(d.userinfo).replace(c.PCT_ENCODED,m).replace(c.NOT_USERINFO,M).replace(c.PCT_ENCODED,a)),d.host!==void 0&&(d.host=String(d.host).replace(c.PCT_ENCODED,m).toLowerCase().replace(c.NOT_HOST,M).replace(c.PCT_ENCODED,a)),d.path!==void 0&&(d.path=String(d.path).replace(c.PCT_ENCODED,m).replace(d.scheme?c.NOT_PATH:c.NOT_PATH_NOSCHEME,M).replace(c.PCT_ENCODED,a)),d.query!==void 0&&(d.query=String(d.query).replace(c.PCT_ENCODED,m).replace(c.NOT_QUERY,M).replace(c.PCT_ENCODED,a)),d.fragment!==void 0&&(d.fragment=String(d.fragment).replace(c.PCT_ENCODED,m).replace(c.NOT_FRAGMENT,M).replace(c.PCT_ENCODED,a)),d}function le(d){return d.replace(/^0*(.*)/,"$1")||"0"}function Ae(d,c){var m=d.match(c.IPV4ADDRESS)||[],E=k(m,2),P=E[1];return P?P.split(".").map(le).join("."):d}function Tt(d,c){var m=d.match(c.IPV6ADDRESS)||[],E=k(m,3),P=E[1],L=E[2];if(P){for(var z=P.toLowerCase().split("::").reverse(),X=k(z,2),se=X[0],ue=X[1],Y=ue?ue.split(":").map(le):[],ne=se.split(":").map(le),de=c.IPV4ADDRESS.test(ne[ne.length-1]),x=de?7:8,oe=ne.length-x,me=Array(x),ae=0;ae<x;++ae)me[ae]=Y[ae]||ne[oe+ae]||"";de&&(me[x-1]=Ae(me[x-1],c));var Xe=me.reduce(function(Oe,Le,pt){if(!Le||Le==="0"){var Je=Oe[Oe.length-1];Je&&Je.index+Je.length===pt?Je.length++:Oe.push({index:pt,length:1})}return Oe},[]),Me=Xe.sort(function(Oe,Le){return Le.length-Oe.length})[0],Ue=void 0;if(Me&&Me.length>1){var jt=me.slice(0,Me.index),dt=me.slice(Me.index+Me.length);Ue=jt.join(":")+"::"+dt.join(":")}else Ue=me.join(":");return L&&(Ue+="%"+L),Ue}else return d}var Qt=/^(?:([^:\/?#]+):)?(?:\/\/((?:([^\/?#@]*)@)?(\[[^\/?#\]]+\]|[^\/?#:]*)(?:\:(\d*))?))?([^?#]*)(?:\?([^#]*))?(?:#((?:.|\n|\r)*))?/i,Zt="".match(/(){0}/)[1]===void 0;function Te(d){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},m={},E=c.iri!==!1?y:f;c.reference==="suffix"&&(d=(c.scheme?c.scheme+":":"")+"//"+d);var P=d.match(Qt);if(P){Zt?(m.scheme=P[1],m.userinfo=P[3],m.host=P[4],m.port=parseInt(P[5],10),m.path=P[6]||"",m.query=P[7],m.fragment=P[8],isNaN(m.port)&&(m.port=P[5])):(m.scheme=P[1]||void 0,m.userinfo=d.indexOf("@")!==-1?P[3]:void 0,m.host=d.indexOf("//")!==-1?P[4]:void 0,m.port=parseInt(P[5],10),m.path=P[6]||"",m.query=d.indexOf("?")!==-1?P[7]:void 0,m.fragment=d.indexOf("#")!==-1?P[8]:void 0,isNaN(m.port)&&(m.port=d.match(/\/\/(?:.|\n)*\:(?:\/|\?|\#|$)/)?P[4]:void 0)),m.host&&(m.host=Tt(Ae(m.host,E),E)),m.scheme===void 0&&m.userinfo===void 0&&m.host===void 0&&m.port===void 0&&!m.path&&m.query===void 0?m.reference="same-document":m.scheme===void 0?m.reference="relative":m.fragment===void 0?m.reference="absolute":m.reference="uri",c.reference&&c.reference!=="suffix"&&c.reference!==m.reference&&(m.error=m.error||"URI is not a "+c.reference+" reference.");var L=q[(c.scheme||m.scheme||"").toLowerCase()];if(!c.unicodeSupport&&(!L||!L.unicodeSupport)){if(m.host&&(c.domainHost||L&&L.domainHost))try{m.host=N.toASCII(m.host.replace(E.PCT_ENCODED,J).toLowerCase())}catch(z){m.error=m.error||"Host's domain name can not be converted to ASCII via punycode: "+z}Q(m,f)}else Q(m,E);L&&L.parse&&L.parse(m,c)}else m.error=m.error||"URI can not be parsed.";return m}function Xt(d,c){var m=c.iri!==!1?y:f,E=[];return d.userinfo!==void 0&&(E.push(d.userinfo),E.push("@")),d.host!==void 0&&E.push(Tt(Ae(String(d.host),m),m).replace(m.IPV6ADDRESS,function(P,L,z){return"["+L+(z?"%25"+z:"")+"]"})),(typeof d.port=="number"||typeof d.port=="string")&&(E.push(":"),E.push(String(d.port))),E.length?E.join(""):void 0}var kt=/^\.\.?\//,Rt=/^\/\.(\/|$)/,Ot=/^\/\.\.(\/|$)/,er=/^\/?(?:.|\n)*?(?=\/|$)/;function Fe(d){for(var c=[];d.length;)if(d.match(kt))d=d.replace(kt,"");else if(d.match(Rt))d=d.replace(Rt,"/");else if(d.match(Ot))d=d.replace(Ot,"/"),c.pop();else if(d==="."||d==="..")d="";else{var m=d.match(er);if(m){var E=m[0];d=d.slice(E.length),c.push(E)}else throw new Error("Unexpected dot segment condition")}return c.join("")}function Pe(d){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},m=c.iri?y:f,E=[],P=q[(c.scheme||d.scheme||"").toLowerCase()];if(P&&P.serialize&&P.serialize(d,c),d.host&&!m.IPV6ADDRESS.test(d.host)){if(c.domainHost||P&&P.domainHost)try{d.host=c.iri?N.toUnicode(d.host):N.toASCII(d.host.replace(m.PCT_ENCODED,J).toLowerCase())}catch(X){d.error=d.error||"Host's domain name can not be converted to "+(c.iri?"Unicode":"ASCII")+" via punycode: "+X}}Q(d,m),c.reference!=="suffix"&&d.scheme&&(E.push(d.scheme),E.push(":"));var L=Xt(d,c);if(L!==void 0&&(c.reference!=="suffix"&&E.push("//"),E.push(L),d.path&&d.path.charAt(0)!=="/"&&E.push("/")),d.path!==void 0){var z=d.path;!c.absolutePath&&(!P||!P.absolutePath)&&(z=Fe(z)),L===void 0&&(z=z.replace(/^\/\//,"/%2F")),E.push(z)}return d.query!==void 0&&(E.push("?"),E.push(d.query)),d.fragment!==void 0&&(E.push("#"),E.push(d.fragment)),E.join("")}function Ct(d,c){var m=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},E=arguments[3],P={};return E||(d=Te(Pe(d,m),m),c=Te(Pe(c,m),m)),m=m||{},!m.tolerant&&c.scheme?(P.scheme=c.scheme,P.userinfo=c.userinfo,P.host=c.host,P.port=c.port,P.path=Fe(c.path||""),P.query=c.query):(c.userinfo!==void 0||c.host!==void 0||c.port!==void 0?(P.userinfo=c.userinfo,P.host=c.host,P.port=c.port,P.path=Fe(c.path||""),P.query=c.query):(c.path?(c.path.charAt(0)==="/"?P.path=Fe(c.path):((d.userinfo!==void 0||d.host!==void 0||d.port!==void 0)&&!d.path?P.path="/"+c.path:d.path?P.path=d.path.slice(0,d.path.lastIndexOf("/")+1)+c.path:P.path=c.path,P.path=Fe(P.path)),P.query=c.query):(P.path=d.path,c.query!==void 0?P.query=c.query:P.query=d.query),P.userinfo=d.userinfo,P.host=d.host,P.port=d.port),P.scheme=d.scheme),P.fragment=c.fragment,P}function tr(d,c,m){var E=p({scheme:"null"},m);return Pe(Ct(Te(d,E),Te(c,E),E,!0),E)}function lt(d,c){return typeof d=="string"?d=Pe(Te(d,c),c):i(d)==="object"&&(d=Te(Pe(d,c),c)),d}function rr(d,c,m){return typeof d=="string"?d=Pe(Te(d,m),m):i(d)==="object"&&(d=Pe(d,m)),typeof c=="string"?c=Pe(Te(c,m),m):i(c)==="object"&&(c=Pe(c,m)),d===c}function Pr(d,c){return d&&d.toString().replace(!c||!c.iri?f.ESCAPE:y.ESCAPE,M)}function Re(d,c){return d&&d.toString().replace(!c||!c.iri?f.PCT_ENCODED:y.PCT_ENCODED,J)}var ut={scheme:"http",domainHost:!0,parse:function(c,m){return c.host||(c.error=c.error||"HTTP URIs must have a host."),c},serialize:function(c,m){var E=String(c.scheme).toLowerCase()==="https";return(c.port===(E?443:80)||c.port==="")&&(c.port=void 0),c.path||(c.path="/"),c}},bs={scheme:"https",domainHost:ut.domainHost,parse:ut.parse,serialize:ut.serialize};function Ps(d){return typeof d.secure=="boolean"?d.secure:String(d.scheme).toLowerCase()==="wss"}var nr={scheme:"ws",domainHost:!0,parse:function(c,m){var E=c;return E.secure=Ps(E),E.resourceName=(E.path||"/")+(E.query?"?"+E.query:""),E.path=void 0,E.query=void 0,E},serialize:function(c,m){if((c.port===(Ps(c)?443:80)||c.port==="")&&(c.port=void 0),typeof c.secure=="boolean"&&(c.scheme=c.secure?"wss":"ws",c.secure=void 0),c.resourceName){var E=c.resourceName.split("?"),P=k(E,2),L=P[0],z=P[1];c.path=L&&L!=="/"?L:void 0,c.query=z,c.resourceName=void 0}return c.fragment=void 0,c}},Es={scheme:"wss",domainHost:nr.domainHost,parse:nr.parse,serialize:nr.serialize},Ho={},Ss="[A-Za-z0-9\\-\\.\\_\\~\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]",qe="[0-9A-Fa-f]",Vo=s(s("%[EFef]"+qe+"%"+qe+qe+"%"+qe+qe)+"|"+s("%[89A-Fa-f]"+qe+"%"+qe+qe)+"|"+s("%"+qe+qe)),Wo="[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]",xo="[\\!\\$\\%\\'\\(\\)\\*\\+\\,\\-\\.0-9\\<\\>A-Z\\x5E-\\x7E]",Bo=n(xo,'[\\"\\\\]'),Go="[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]",Ko=new RegExp(Ss,"g"),Nt=new RegExp(Vo,"g"),Jo=new RegExp(n("[^]",Wo,"[\\.]",'[\\"]',Bo),"g"),Ts=new RegExp(n("[^]",Ss,Go),"g"),Yo=Ts;function fn(d){var c=J(d);return c.match(Ko)?c:d}var ks={scheme:"mailto",parse:function(c,m){var E=c,P=E.to=E.path?E.path.split(","):[];if(E.path=void 0,E.query){for(var L=!1,z={},X=E.query.split("&"),se=0,ue=X.length;se<ue;++se){var Y=X[se].split("=");switch(Y[0]){case"to":for(var ne=Y[1].split(","),de=0,x=ne.length;de<x;++de)P.push(ne[de]);break;case"subject":E.subject=Re(Y[1],m);break;case"body":E.body=Re(Y[1],m);break;default:L=!0,z[Re(Y[0],m)]=Re(Y[1],m);break}}L&&(E.headers=z)}E.query=void 0;for(var oe=0,me=P.length;oe<me;++oe){var ae=P[oe].split("@");if(ae[0]=Re(ae[0]),m.unicodeSupport)ae[1]=Re(ae[1],m).toLowerCase();else try{ae[1]=N.toASCII(Re(ae[1],m).toLowerCase())}catch(Xe){E.error=E.error||"Email address's domain name can not be converted to ASCII via punycode: "+Xe}P[oe]=ae.join("@")}return E},serialize:function(c,m){var E=c,P=l(c.to);if(P){for(var L=0,z=P.length;L<z;++L){var X=String(P[L]),se=X.lastIndexOf("@"),ue=X.slice(0,se).replace(Nt,fn).replace(Nt,a).replace(Jo,M),Y=X.slice(se+1);try{Y=m.iri?N.toUnicode(Y):N.toASCII(Re(Y,m).toLowerCase())}catch(oe){E.error=E.error||"Email address's domain name can not be converted to "+(m.iri?"Unicode":"ASCII")+" via punycode: "+oe}P[L]=ue+"@"+Y}E.path=P.join(",")}var ne=c.headers=c.headers||{};c.subject&&(ne.subject=c.subject),c.body&&(ne.body=c.body);var de=[];for(var x in ne)ne[x]!==Ho[x]&&de.push(x.replace(Nt,fn).replace(Nt,a).replace(Ts,M)+"="+ne[x].replace(Nt,fn).replace(Nt,a).replace(Yo,M));return de.length&&(E.query=de.join("&")),E}},Qo=/^([^\:]+)\:(.*)/,Rs={scheme:"urn",parse:function(c,m){var E=c.path&&c.path.match(Qo),P=c;if(E){var L=m.scheme||P.scheme||"urn",z=E[1].toLowerCase(),X=E[2],se=L+":"+(m.nid||z),ue=q[se];P.nid=z,P.nss=X,P.path=void 0,ue&&(P=ue.parse(P,m))}else P.error=P.error||"URN can not be parsed.";return P},serialize:function(c,m){var E=m.scheme||c.scheme||"urn",P=c.nid,L=E+":"+(m.nid||P),z=q[L];z&&(c=z.serialize(c,m));var X=c,se=c.nss;return X.path=(P||m.nid)+":"+se,X}},Zo=/^[0-9A-Fa-f]{8}(?:\-[0-9A-Fa-f]{4}){3}\-[0-9A-Fa-f]{12}$/,Os={scheme:"urn:uuid",parse:function(c,m){var E=c;return E.uuid=E.nss,E.nss=void 0,!m.tolerant&&(!E.uuid||!E.uuid.match(Zo))&&(E.error=E.error||"UUID is not valid."),E},serialize:function(c,m){var E=c;return E.nss=(c.uuid||"").toLowerCase(),E}};q[ut.scheme]=ut,q[bs.scheme]=bs,q[nr.scheme]=nr,q[Es.scheme]=Es,q[ks.scheme]=ks,q[Rs.scheme]=Rs,q[Os.scheme]=Os,r.SCHEMES=q,r.pctEncChar=M,r.pctDecChars=J,r.parse=Te,r.removeDotSegments=Fe,r.serialize=Pe,r.resolveComponents=Ct,r.resolve=tr,r.normalize=lt,r.equal=rr,r.escapeComponent=Pr,r.unescapeComponent=Re,Object.defineProperty(r,"__esModule",{value:!0})})})(Sn,Sn.exports);var jl=Sn.exports;Object.defineProperty(Wn,"__esModule",{value:!0});const jo=jl;jo.code='require("ajv/dist/runtime/uri").default';Wn.default=jo;(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=void 0;var e=De;Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return e.KeywordCxt}});var r=G;Object.defineProperty(t,"_",{enumerable:!0,get:function(){return r._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return r.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return r.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return r.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return r.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return r.CodeGen}});const n=wr,s=vr,i=vt,a=Se,l=G,p=$e,u=_r,f=re,y=Nl,k=Wn,R=(F,$)=>new RegExp(F,$);R.code="new RegExp";const w=["removeAdditional","useDefaults","coerceTypes"],S=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),_={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},g={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},T=200;function O(F){var $,I,b,o,h,N,q,M,J,Q,le,Ae,Tt,Qt,Zt,Te,Xt,kt,Rt,Ot,er,Fe,Pe,Ct,tr;const lt=F.strict,rr=($=F.code)===null||$===void 0?void 0:$.optimize,Pr=rr===!0||rr===void 0?1:rr||0,Re=(b=(I=F.code)===null||I===void 0?void 0:I.regExp)!==null&&b!==void 0?b:R,ut=(o=F.uriResolver)!==null&&o!==void 0?o:k.default;return{strictSchema:(N=(h=F.strictSchema)!==null&&h!==void 0?h:lt)!==null&&N!==void 0?N:!0,strictNumbers:(M=(q=F.strictNumbers)!==null&&q!==void 0?q:lt)!==null&&M!==void 0?M:!0,strictTypes:(Q=(J=F.strictTypes)!==null&&J!==void 0?J:lt)!==null&&Q!==void 0?Q:"log",strictTuples:(Ae=(le=F.strictTuples)!==null&&le!==void 0?le:lt)!==null&&Ae!==void 0?Ae:"log",strictRequired:(Qt=(Tt=F.strictRequired)!==null&&Tt!==void 0?Tt:lt)!==null&&Qt!==void 0?Qt:!1,code:F.code?{...F.code,optimize:Pr,regExp:Re}:{optimize:Pr,regExp:Re},loopRequired:(Zt=F.loopRequired)!==null&&Zt!==void 0?Zt:T,loopEnum:(Te=F.loopEnum)!==null&&Te!==void 0?Te:T,meta:(Xt=F.meta)!==null&&Xt!==void 0?Xt:!0,messages:(kt=F.messages)!==null&&kt!==void 0?kt:!0,inlineRefs:(Rt=F.inlineRefs)!==null&&Rt!==void 0?Rt:!0,schemaId:(Ot=F.schemaId)!==null&&Ot!==void 0?Ot:"$id",addUsedSchema:(er=F.addUsedSchema)!==null&&er!==void 0?er:!0,validateSchema:(Fe=F.validateSchema)!==null&&Fe!==void 0?Fe:!0,validateFormats:(Pe=F.validateFormats)!==null&&Pe!==void 0?Pe:!0,unicodeRegExp:(Ct=F.unicodeRegExp)!==null&&Ct!==void 0?Ct:!0,int32range:(tr=F.int32range)!==null&&tr!==void 0?tr:!0,uriResolver:ut}}class j{constructor($={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,$=this.opts={...$,...O($)};const{es5:I,lines:b}=this.opts.code;this.scope=new l.ValueScope({scope:{},prefixes:S,es5:I,lines:b}),this.logger=Z($.logger);const o=$.validateFormats;$.validateFormats=!1,this.RULES=(0,i.getRules)(),A.call(this,_,$,"NOT SUPPORTED"),A.call(this,g,$,"DEPRECATED","warn"),this._metaOpts=K.call(this),$.formats&&D.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),$.keywords&&W.call(this,$.keywords),typeof $.meta=="object"&&this.addMetaSchema($.meta),C.call(this),$.validateFormats=o}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){const{$data:$,meta:I,schemaId:b}=this.opts;let o=y;b==="id"&&(o={...y},o.id=o.$id,delete o.$id),I&&$&&this.addMetaSchema(o,o[b],!1)}defaultMeta(){const{meta:$,schemaId:I}=this.opts;return this.opts.defaultMeta=typeof $=="object"?$[I]||$:void 0}validate($,I){let b;if(typeof $=="string"){if(b=this.getSchema($),!b)throw new Error(`no schema with key or ref "${$}"`)}else b=this.compile($);const o=b(I);return"$async"in b||(this.errors=b.errors),o}compile($,I){const b=this._addSchema($,I);return b.validate||this._compileSchemaEnv(b)}compileAsync($,I){if(typeof this.opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");const{loadSchema:b}=this.opts;return o.call(this,$,I);async function o(Q,le){await h.call(this,Q.$schema);const Ae=this._addSchema(Q,le);return Ae.validate||N.call(this,Ae)}async function h(Q){Q&&!this.getSchema(Q)&&await o.call(this,{$ref:Q},!0)}async function N(Q){try{return this._compileSchemaEnv(Q)}catch(le){if(!(le instanceof s.default))throw le;return q.call(this,le),await M.call(this,le.missingSchema),N.call(this,Q)}}function q({missingSchema:Q,missingRef:le}){if(this.refs[Q])throw new Error(`AnySchema ${Q} is loaded but ${le} cannot be resolved`)}async function M(Q){const le=await J.call(this,Q);this.refs[Q]||await h.call(this,le.$schema),this.refs[Q]||this.addSchema(le,Q,I)}async function J(Q){const le=this._loading[Q];if(le)return le;try{return await(this._loading[Q]=b(Q))}finally{delete this._loading[Q]}}}addSchema($,I,b,o=this.opts.validateSchema){if(Array.isArray($)){for(const N of $)this.addSchema(N,void 0,b,o);return this}let h;if(typeof $=="object"){const{schemaId:N}=this.opts;if(h=$[N],h!==void 0&&typeof h!="string")throw new Error(`schema ${N} must be string`)}return I=(0,p.normalizeId)(I||h),this._checkUnique(I),this.schemas[I]=this._addSchema($,b,I,o,!0),this}addMetaSchema($,I,b=this.opts.validateSchema){return this.addSchema($,I,!0,b),this}validateSchema($,I){if(typeof $=="boolean")return!0;let b;if(b=$.$schema,b!==void 0&&typeof b!="string")throw new Error("$schema must be a string");if(b=b||this.opts.defaultMeta||this.defaultMeta(),!b)return this.logger.warn("meta-schema not available"),this.errors=null,!0;const o=this.validate(b,$);if(!o&&I){const h="schema is invalid: "+this.errorsText();if(this.opts.validateSchema==="log")this.logger.error(h);else throw new Error(h)}return o}getSchema($){let I;for(;typeof(I=v.call(this,$))=="string";)$=I;if(I===void 0){const{schemaId:b}=this.opts,o=new a.SchemaEnv({schema:{},schemaId:b});if(I=a.resolveSchema.call(this,o,$),!I)return;this.refs[$]=I}return I.validate||this._compileSchemaEnv(I)}removeSchema($){if($ instanceof RegExp)return this._removeAllSchemas(this.schemas,$),this._removeAllSchemas(this.refs,$),this;switch(typeof $){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{const I=v.call(this,$);return typeof I=="object"&&this._cache.delete(I.schema),delete this.schemas[$],delete this.refs[$],this}case"object":{const I=$;this._cache.delete(I);let b=$[this.opts.schemaId];return b&&(b=(0,p.normalizeId)(b),delete this.schemas[b],delete this.refs[b]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary($){for(const I of $)this.addKeyword(I);return this}addKeyword($,I){let b;if(typeof $=="string")b=$,typeof I=="object"&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),I.keyword=b);else if(typeof $=="object"&&I===void 0){if(I=$,b=I.keyword,Array.isArray(b)&&!b.length)throw new Error("addKeywords: keyword must be string or non-empty array")}else throw new Error("invalid addKeywords parameters");if(he.call(this,b,I),!I)return(0,f.eachItem)(b,h=>at.call(this,h)),this;Et.call(this,I);const o={...I,type:(0,u.getJSONTypes)(I.type),schemaType:(0,u.getJSONTypes)(I.schemaType)};return(0,f.eachItem)(b,o.type.length===0?h=>at.call(this,h,o):h=>o.type.forEach(N=>at.call(this,h,o,N))),this}getKeyword($){const I=this.RULES.all[$];return typeof I=="object"?I.definition:!!I}removeKeyword($){const{RULES:I}=this;delete I.keywords[$],delete I.all[$];for(const b of I.rules){const o=b.rules.findIndex(h=>h.keyword===$);o>=0&&b.rules.splice(o,1)}return this}addFormat($,I){return typeof I=="string"&&(I=new RegExp(I)),this.formats[$]=I,this}errorsText($=this.errors,{separator:I=", ",dataVar:b="data"}={}){return!$||$.length===0?"No errors":$.map(o=>`${b}${o.instancePath} ${o.message}`).reduce((o,h)=>o+I+h)}$dataMetaSchema($,I){const b=this.RULES.all;$=JSON.parse(JSON.stringify($));for(const o of I){const h=o.split("/").slice(1);let N=$;for(const q of h)N=N[q];for(const q in b){const M=b[q];if(typeof M!="object")continue;const{$data:J}=M.definition,Q=N[q];J&&Q&&(N[q]=St(Q))}}return $}_removeAllSchemas($,I){for(const b in $){const o=$[b];(!I||I.test(b))&&(typeof o=="string"?delete $[b]:o&&!o.meta&&(this._cache.delete(o.schema),delete $[b]))}}_addSchema($,I,b,o=this.opts.validateSchema,h=this.opts.addUsedSchema){let N;const{schemaId:q}=this.opts;if(typeof $=="object")N=$[q];else{if(this.opts.jtd)throw new Error("schema must be object");if(typeof $!="boolean")throw new Error("schema must be object or boolean")}let M=this._cache.get($);if(M!==void 0)return M;b=(0,p.normalizeId)(N||b);const J=p.getSchemaRefs.call(this,$,b);return M=new a.SchemaEnv({schema:$,schemaId:q,meta:I,baseId:b,localRefs:J}),this._cache.set(M.schema,M),h&&!b.startsWith("#")&&(b&&this._checkUnique(b),this.refs[b]=M),o&&this.validateSchema($,!0),M}_checkUnique($){if(this.schemas[$]||this.refs[$])throw new Error(`schema with key or id "${$}" already exists`)}_compileSchemaEnv($){if($.meta?this._compileMetaSchema($):a.compileSchema.call(this,$),!$.validate)throw new Error("ajv implementation error");return $.validate}_compileMetaSchema($){const I=this.opts;this.opts=this._metaOpts;try{a.compileSchema.call(this,$)}finally{this.opts=I}}}t.default=j,j.ValidationError=n.default,j.MissingRefError=s.default;function A(F,$,I,b="error"){for(const o in F){const h=o;h in $&&this.logger[b](`${I}: option ${o}. ${F[h]}`)}}function v(F){return F=(0,p.normalizeId)(F),this.schemas[F]||this.refs[F]}function C(){const F=this.opts.schemas;if(F)if(Array.isArray(F))this.addSchema(F);else for(const $ in F)this.addSchema(F[$],$)}function D(){for(const F in this.opts.formats){const $=this.opts.formats[F];$&&this.addFormat(F,$)}}function W(F){if(Array.isArray(F)){this.addVocabulary(F);return}this.logger.warn("keywords option as map is deprecated, pass array");for(const $ in F){const I=F[$];I.keyword||(I.keyword=$),this.addKeyword(I)}}function K(){const F={...this.opts};for(const $ of w)delete F[$];return F}const ce={log(){},warn(){},error(){}};function Z(F){if(F===!1)return ce;if(F===void 0)return console;if(F.log&&F.warn&&F.error)return F;throw new Error("logger must implement log, warn and error methods")}const ke=/^[a-z_$][a-z0-9_$:-]*$/i;function he(F,$){const{RULES:I}=this;if((0,f.eachItem)(F,b=>{if(I.keywords[b])throw new Error(`Keyword ${b} is already defined`);if(!ke.test(b))throw new Error(`Keyword ${b} has invalid name`)}),!!$&&$.$data&&!("code"in $||"validate"in $))throw new Error('$data keyword must have "code" or "validate" function')}function at(F,$,I){var b;const o=$==null?void 0:$.post;if(I&&o)throw new Error('keyword with "post" flag cannot have "type"');const{RULES:h}=this;let N=o?h.post:h.rules.find(({type:M})=>M===I);if(N||(N={type:I,rules:[]},h.rules.push(N)),h.keywords[F]=!0,!$)return;const q={keyword:F,definition:{...$,type:(0,u.getJSONTypes)($.type),schemaType:(0,u.getJSONTypes)($.schemaType)}};$.before?ct.call(this,N,q,$.before):N.rules.push(q),h.all[F]=q,(b=$.implements)===null||b===void 0||b.forEach(M=>this.addKeyword(M))}function ct(F,$,I){const b=F.rules.findIndex(o=>o.keyword===I);b>=0?F.rules.splice(b,0,$):(F.rules.push($),this.logger.warn(`rule ${I} is not defined`))}function Et(F){let{metaSchema:$}=F;$!==void 0&&(F.$data&&this.opts.$data&&($=St($)),F.validateSchema=this.compile($,!0))}const Yt={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function St(F){return{anyOf:[F,Yt]}}})(oo);var xn={},Bn={},Gn={};Object.defineProperty(Gn,"__esModule",{value:!0});const Il={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};Gn.default=Il;var bt={};Object.defineProperty(bt,"__esModule",{value:!0});bt.callRef=bt.getValidate=void 0;const Dl=vr,Xs=B,Ee=G,At=Ke,ei=Se,kr=re,Al={keyword:"$ref",schemaType:"string",code(t){const{gen:e,schema:r,it:n}=t,{baseId:s,schemaEnv:i,validateName:a,opts:l,self:p}=n,{root:u}=i;if((r==="#"||r==="#/")&&s===u.baseId)return y();const f=ei.resolveRef.call(p,u,s,r);if(f===void 0)throw new Dl.default(n.opts.uriResolver,s,r);if(f instanceof ei.SchemaEnv)return k(f);return R(f);function y(){if(i===u)return Ar(t,a,i,i.$async);const w=e.scopeValue("root",{ref:u});return Ar(t,(0,Ee._)`${w}.validate`,u,u.$async)}function k(w){const S=Io(t,w);Ar(t,S,w,w.$async)}function R(w){const S=e.scopeValue("schema",l.code.source===!0?{ref:w,code:(0,Ee.stringify)(w)}:{ref:w}),_=e.name("valid"),g=t.subschema({schema:w,dataTypes:[],schemaPath:Ee.nil,topSchemaRef:S,errSchemaPath:r},_);t.mergeEvaluated(g),t.ok(_)}}};function Io(t,e){const{gen:r}=t;return e.validate?r.scopeValue("validate",{ref:e.validate}):(0,Ee._)`${r.scopeValue("wrapper",{ref:e})}.validate`}bt.getValidate=Io;function Ar(t,e,r,n){const{gen:s,it:i}=t,{allErrors:a,schemaEnv:l,opts:p}=i,u=p.passContext?At.default.this:Ee.nil;n?f():y();function f(){if(!l.$async)throw new Error("async schema referenced by sync schema");const w=s.let("valid");s.try(()=>{s.code((0,Ee._)`await ${(0,Xs.callValidateCode)(t,e,u)}`),R(e),a||s.assign(w,!0)},S=>{s.if((0,Ee._)`!(${S} instanceof ${i.ValidationError})`,()=>s.throw(S)),k(S),a||s.assign(w,!1)}),t.ok(w)}function y(){t.result((0,Xs.callValidateCode)(t,e,u),()=>R(e),()=>k(e))}function k(w){const S=(0,Ee._)`${w}.errors`;s.assign(At.default.vErrors,(0,Ee._)`${At.default.vErrors} === null ? ${S} : ${At.default.vErrors}.concat(${S})`),s.assign(At.default.errors,(0,Ee._)`${At.default.vErrors}.length`)}function R(w){var S;if(!i.opts.unevaluated)return;const _=(S=r==null?void 0:r.validate)===null||S===void 0?void 0:S.evaluated;if(i.props!==!0)if(_&&!_.dynamicProps)_.props!==void 0&&(i.props=kr.mergeEvaluated.props(s,_.props,i.props));else{const g=s.var("props",(0,Ee._)`${w}.evaluated.props`);i.props=kr.mergeEvaluated.props(s,g,i.props,Ee.Name)}if(i.items!==!0)if(_&&!_.dynamicItems)_.items!==void 0&&(i.items=kr.mergeEvaluated.items(s,_.items,i.items));else{const g=s.var("items",(0,Ee._)`${w}.evaluated.items`);i.items=kr.mergeEvaluated.items(s,g,i.items,Ee.Name)}}}bt.callRef=Ar;bt.default=Al;Object.defineProperty(Bn,"__esModule",{value:!0});const Fl=Gn,ql=bt,Ml=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",Fl.default,ql.default];Bn.default=Ml;var Kn={},Jn={};Object.defineProperty(Jn,"__esModule",{value:!0});const Lr=G,rt=Lr.operators,zr={maximum:{okStr:"<=",ok:rt.LTE,fail:rt.GT},minimum:{okStr:">=",ok:rt.GTE,fail:rt.LT},exclusiveMaximum:{okStr:"<",ok:rt.LT,fail:rt.GTE},exclusiveMinimum:{okStr:">",ok:rt.GT,fail:rt.LTE}},Ul={message:({keyword:t,schemaCode:e})=>(0,Lr.str)`must be ${zr[t].okStr} ${e}`,params:({keyword:t,schemaCode:e})=>(0,Lr._)`{comparison: ${zr[t].okStr}, limit: ${e}}`},Ll={keyword:Object.keys(zr),type:"number",schemaType:"number",$data:!0,error:Ul,code(t){const{keyword:e,data:r,schemaCode:n}=t;t.fail$data((0,Lr._)`${r} ${zr[e].fail} ${n} || isNaN(${r})`)}};Jn.default=Ll;var Yn={};Object.defineProperty(Yn,"__esModule",{value:!0});const ur=G,zl={message:({schemaCode:t})=>(0,ur.str)`must be multiple of ${t}`,params:({schemaCode:t})=>(0,ur._)`{multipleOf: ${t}}`},Hl={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:zl,code(t){const{gen:e,data:r,schemaCode:n,it:s}=t,i=s.opts.multipleOfPrecision,a=e.let("res"),l=i?(0,ur._)`Math.abs(Math.round(${a}) - ${a}) > 1e-${i}`:(0,ur._)`${a} !== parseInt(${a})`;t.fail$data((0,ur._)`(${n} === 0 || (${a} = ${r}/${n}, ${l}))`)}};Yn.default=Hl;var Qn={},Zn={};Object.defineProperty(Zn,"__esModule",{value:!0});function Do(t){const e=t.length;let r=0,n=0,s;for(;n<e;)r++,s=t.charCodeAt(n++),s>=55296&&s<=56319&&n<e&&(s=t.charCodeAt(n),(s&64512)===56320&&n++);return r}Zn.default=Do;Do.code='require("ajv/dist/runtime/ucs2length").default';Object.defineProperty(Qn,"__esModule",{value:!0});const mt=G,Vl=re,Wl=Zn,xl={message({keyword:t,schemaCode:e}){const r=t==="maxLength"?"more":"fewer";return(0,mt.str)`must NOT have ${r} than ${e} characters`},params:({schemaCode:t})=>(0,mt._)`{limit: ${t}}`},Bl={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:xl,code(t){const{keyword:e,data:r,schemaCode:n,it:s}=t,i=e==="maxLength"?mt.operators.GT:mt.operators.LT,a=s.opts.unicode===!1?(0,mt._)`${r}.length`:(0,mt._)`${(0,Vl.useFunc)(t.gen,Wl.default)}(${r})`;t.fail$data((0,mt._)`${a} ${i} ${n}`)}};Qn.default=Bl;var Xn={};Object.defineProperty(Xn,"__esModule",{value:!0});const Gl=B,Hr=G,Kl={message:({schemaCode:t})=>(0,Hr.str)`must match pattern "${t}"`,params:({schemaCode:t})=>(0,Hr._)`{pattern: ${t}}`},Jl={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:Kl,code(t){const{data:e,$data:r,schema:n,schemaCode:s,it:i}=t,a=i.opts.unicodeRegExp?"u":"",l=r?(0,Hr._)`(new RegExp(${s}, ${a}))`:(0,Gl.usePattern)(t,n);t.fail$data((0,Hr._)`!${l}.test(${e})`)}};Xn.default=Jl;var es={};Object.defineProperty(es,"__esModule",{value:!0});const dr=G,Yl={message({keyword:t,schemaCode:e}){const r=t==="maxProperties"?"more":"fewer";return(0,dr.str)`must NOT have ${r} than ${e} properties`},params:({schemaCode:t})=>(0,dr._)`{limit: ${t}}`},Ql={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:Yl,code(t){const{keyword:e,data:r,schemaCode:n}=t,s=e==="maxProperties"?dr.operators.GT:dr.operators.LT;t.fail$data((0,dr._)`Object.keys(${r}).length ${s} ${n}`)}};es.default=Ql;var ts={};Object.defineProperty(ts,"__esModule",{value:!0});const ar=B,pr=G,Zl=re,Xl={message:({params:{missingProperty:t}})=>(0,pr.str)`must have required property '${t}'`,params:({params:{missingProperty:t}})=>(0,pr._)`{missingProperty: ${t}}`},eu={keyword:"required",type:"object",schemaType:"array",$data:!0,error:Xl,code(t){const{gen:e,schema:r,schemaCode:n,data:s,$data:i,it:a}=t,{opts:l}=a;if(!i&&r.length===0)return;const p=r.length>=l.loopRequired;if(a.allErrors?u():f(),l.strictRequired){const R=t.parentSchema.properties,{definedProperties:w}=t.it;for(const S of r)if((R==null?void 0:R[S])===void 0&&!w.has(S)){const _=a.schemaEnv.baseId+a.errSchemaPath,g=`required property "${S}" is not defined at "${_}" (strictRequired)`;(0,Zl.checkStrictMode)(a,g,a.opts.strictRequired)}}function u(){if(p||i)t.block$data(pr.nil,y);else for(const R of r)(0,ar.checkReportMissingProp)(t,R)}function f(){const R=e.let("missing");if(p||i){const w=e.let("valid",!0);t.block$data(w,()=>k(R,w)),t.ok(w)}else e.if((0,ar.checkMissingProp)(t,r,R)),(0,ar.reportMissingProp)(t,R),e.else()}function y(){e.forOf("prop",n,R=>{t.setParams({missingProperty:R}),e.if((0,ar.noPropertyInData)(e,s,R,l.ownProperties),()=>t.error())})}function k(R,w){t.setParams({missingProperty:R}),e.forOf(R,n,()=>{e.assign(w,(0,ar.propertyInData)(e,s,R,l.ownProperties)),e.if((0,pr.not)(w),()=>{t.error(),e.break()})},pr.nil)}}};ts.default=eu;var rs={};Object.defineProperty(rs,"__esModule",{value:!0});const fr=G,tu={message({keyword:t,schemaCode:e}){const r=t==="maxItems"?"more":"fewer";return(0,fr.str)`must NOT have ${r} than ${e} items`},params:({schemaCode:t})=>(0,fr._)`{limit: ${t}}`},ru={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:tu,code(t){const{keyword:e,data:r,schemaCode:n}=t,s=e==="maxItems"?fr.operators.GT:fr.operators.LT;t.fail$data((0,fr._)`${r}.length ${s} ${n}`)}};rs.default=ru;var ns={},br={};Object.defineProperty(br,"__esModule",{value:!0});const Ao=mo;Ao.code='require("ajv/dist/runtime/equal").default';br.default=Ao;Object.defineProperty(ns,"__esModule",{value:!0});const _n=_r,ge=G,nu=re,su=br,iu={message:({params:{i:t,j:e}})=>(0,ge.str)`must NOT have duplicate items (items ## ${e} and ${t} are identical)`,params:({params:{i:t,j:e}})=>(0,ge._)`{i: ${t}, j: ${e}}`},ou={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:iu,code(t){const{gen:e,data:r,$data:n,schema:s,parentSchema:i,schemaCode:a,it:l}=t;if(!n&&!s)return;const p=e.let("valid"),u=i.items?(0,_n.getSchemaTypes)(i.items):[];t.block$data(p,f,(0,ge._)`${a} === false`),t.ok(p);function f(){const w=e.let("i",(0,ge._)`${r}.length`),S=e.let("j");t.setParams({i:w,j:S}),e.assign(p,!0),e.if((0,ge._)`${w} > 1`,()=>(y()?k:R)(w,S))}function y(){return u.length>0&&!u.some(w=>w==="object"||w==="array")}function k(w,S){const _=e.name("item"),g=(0,_n.checkDataTypes)(u,_,l.opts.strictNumbers,_n.DataType.Wrong),T=e.const("indices",(0,ge._)`{}`);e.for((0,ge._)`;${w}--;`,()=>{e.let(_,(0,ge._)`${r}[${w}]`),e.if(g,(0,ge._)`continue`),u.length>1&&e.if((0,ge._)`typeof ${_} == "string"`,(0,ge._)`${_} += "_"`),e.if((0,ge._)`typeof ${T}[${_}] == "number"`,()=>{e.assign(S,(0,ge._)`${T}[${_}]`),t.error(),e.assign(p,!1).break()}).code((0,ge._)`${T}[${_}] = ${w}`)})}function R(w,S){const _=(0,nu.useFunc)(e,su.default),g=e.name("outer");e.label(g).for((0,ge._)`;${w}--;`,()=>e.for((0,ge._)`${S} = ${w}; ${S}--;`,()=>e.if((0,ge._)`${_}(${r}[${w}], ${r}[${S}])`,()=>{t.error(),e.assign(p,!1).break(g)})))}}};ns.default=ou;var ss={};Object.defineProperty(ss,"__esModule",{value:!0});const Tn=G,au=re,cu=br,lu={message:"must be equal to constant",params:({schemaCode:t})=>(0,Tn._)`{allowedValue: ${t}}`},uu={keyword:"const",$data:!0,error:lu,code(t){const{gen:e,data:r,$data:n,schemaCode:s,schema:i}=t;n||i&&typeof i=="object"?t.fail$data((0,Tn._)`!${(0,au.useFunc)(e,cu.default)}(${r}, ${s})`):t.fail((0,Tn._)`${i} !== ${r}`)}};ss.default=uu;var is={};Object.defineProperty(is,"__esModule",{value:!0});const cr=G,du=re,pu=br,fu={message:"must be equal to one of the allowed values",params:({schemaCode:t})=>(0,cr._)`{allowedValues: ${t}}`},hu={keyword:"enum",schemaType:"array",$data:!0,error:fu,code(t){const{gen:e,data:r,$data:n,schema:s,schemaCode:i,it:a}=t;if(!n&&s.length===0)throw new Error("enum must have non-empty array");const l=s.length>=a.opts.loopEnum;let p;const u=()=>p??(p=(0,du.useFunc)(e,pu.default));let f;if(l||n)f=e.let("valid"),t.block$data(f,y);else{if(!Array.isArray(s))throw new Error("ajv implementation error");const R=e.const("vSchema",i);f=(0,cr.or)(...s.map((w,S)=>k(R,S)))}t.pass(f);function y(){e.assign(f,!1),e.forOf("v",i,R=>e.if((0,cr._)`${u()}(${r}, ${R})`,()=>e.assign(f,!0).break()))}function k(R,w){const S=s[w];return typeof S=="object"&&S!==null?(0,cr._)`${u()}(${r}, ${R}[${w}])`:(0,cr._)`${r} === ${S}`}}};is.default=hu;Object.defineProperty(Kn,"__esModule",{value:!0});const mu=Jn,yu=Yn,gu=Qn,$u=Xn,_u=es,wu=ts,vu=rs,bu=ns,Pu=ss,Eu=is,Su=[mu.default,yu.default,gu.default,$u.default,_u.default,wu.default,vu.default,bu.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},Pu.default,Eu.default];Kn.default=Su;var os={},Kt={};Object.defineProperty(Kt,"__esModule",{value:!0});Kt.validateAdditionalItems=void 0;const yt=G,kn=re,Tu={message:({params:{len:t}})=>(0,yt.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,yt._)`{limit: ${t}}`},ku={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:Tu,code(t){const{parentSchema:e,it:r}=t,{items:n}=e;if(!Array.isArray(n)){(0,kn.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}Fo(t,n)}};function Fo(t,e){const{gen:r,schema:n,data:s,keyword:i,it:a}=t;a.items=!0;const l=r.const("len",(0,yt._)`${s}.length`);if(n===!1)t.setParams({len:e.length}),t.pass((0,yt._)`${l} <= ${e.length}`);else if(typeof n=="object"&&!(0,kn.alwaysValidSchema)(a,n)){const u=r.var("valid",(0,yt._)`${l} <= ${e.length}`);r.if((0,yt.not)(u),()=>p(u)),t.ok(u)}function p(u){r.forRange("i",e.length,l,f=>{t.subschema({keyword:i,dataProp:f,dataPropType:kn.Type.Num},u),a.allErrors||r.if((0,yt.not)(u),()=>r.break())})}}Kt.validateAdditionalItems=Fo;Kt.default=ku;var as={},Jt={};Object.defineProperty(Jt,"__esModule",{value:!0});Jt.validateTuple=void 0;const ti=G,Fr=re,Ru=B,Ou={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(t){const{schema:e,it:r}=t;if(Array.isArray(e))return qo(t,"additionalItems",e);r.items=!0,!(0,Fr.alwaysValidSchema)(r,e)&&t.ok((0,Ru.validateArray)(t))}};function qo(t,e,r=t.schema){const{gen:n,parentSchema:s,data:i,keyword:a,it:l}=t;f(s),l.opts.unevaluated&&r.length&&l.items!==!0&&(l.items=Fr.mergeEvaluated.items(n,r.length,l.items));const p=n.name("valid"),u=n.const("len",(0,ti._)`${i}.length`);r.forEach((y,k)=>{(0,Fr.alwaysValidSchema)(l,y)||(n.if((0,ti._)`${u} > ${k}`,()=>t.subschema({keyword:a,schemaProp:k,dataProp:k},p)),t.ok(p))});function f(y){const{opts:k,errSchemaPath:R}=l,w=r.length,S=w===y.minItems&&(w===y.maxItems||y[e]===!1);if(k.strictTuples&&!S){const _=`"${a}" is ${w}-tuple, but minItems or maxItems/${e} are not specified or different at path "${R}"`;(0,Fr.checkStrictMode)(l,_,k.strictTuples)}}}Jt.validateTuple=qo;Jt.default=Ou;Object.defineProperty(as,"__esModule",{value:!0});const Cu=Jt,Nu={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:t=>(0,Cu.validateTuple)(t,"items")};as.default=Nu;var cs={};Object.defineProperty(cs,"__esModule",{value:!0});const ri=G,ju=re,Iu=B,Du=Kt,Au={message:({params:{len:t}})=>(0,ri.str)`must NOT have more than ${t} items`,params:({params:{len:t}})=>(0,ri._)`{limit: ${t}}`},Fu={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:Au,code(t){const{schema:e,parentSchema:r,it:n}=t,{prefixItems:s}=r;n.items=!0,!(0,ju.alwaysValidSchema)(n,e)&&(s?(0,Du.validateAdditionalItems)(t,s):t.ok((0,Iu.validateArray)(t)))}};cs.default=Fu;var ls={};Object.defineProperty(ls,"__esModule",{value:!0});const Ce=G,Rr=re,qu={message:({params:{min:t,max:e}})=>e===void 0?(0,Ce.str)`must contain at least ${t} valid item(s)`:(0,Ce.str)`must contain at least ${t} and no more than ${e} valid item(s)`,params:({params:{min:t,max:e}})=>e===void 0?(0,Ce._)`{minContains: ${t}}`:(0,Ce._)`{minContains: ${t}, maxContains: ${e}}`},Mu={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:qu,code(t){const{gen:e,schema:r,parentSchema:n,data:s,it:i}=t;let a,l;const{minContains:p,maxContains:u}=n;i.opts.next?(a=p===void 0?1:p,l=u):a=1;const f=e.const("len",(0,Ce._)`${s}.length`);if(t.setParams({min:a,max:l}),l===void 0&&a===0){(0,Rr.checkStrictMode)(i,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(l!==void 0&&a>l){(0,Rr.checkStrictMode)(i,'"minContains" > "maxContains" is always invalid'),t.fail();return}if((0,Rr.alwaysValidSchema)(i,r)){let S=(0,Ce._)`${f} >= ${a}`;l!==void 0&&(S=(0,Ce._)`${S} && ${f} <= ${l}`),t.pass(S);return}i.items=!0;const y=e.name("valid");l===void 0&&a===1?R(y,()=>e.if(y,()=>e.break())):a===0?(e.let(y,!0),l!==void 0&&e.if((0,Ce._)`${s}.length > 0`,k)):(e.let(y,!1),k()),t.result(y,()=>t.reset());function k(){const S=e.name("_valid"),_=e.let("count",0);R(S,()=>e.if(S,()=>w(_)))}function R(S,_){e.forRange("i",0,f,g=>{t.subschema({keyword:"contains",dataProp:g,dataPropType:Rr.Type.Num,compositeRule:!0},S),_()})}function w(S){e.code((0,Ce._)`${S}++`),l===void 0?e.if((0,Ce._)`${S} >= ${a}`,()=>e.assign(y,!0).break()):(e.if((0,Ce._)`${S} > ${l}`,()=>e.assign(y,!1).break()),a===1?e.assign(y,!0):e.if((0,Ce._)`${S} >= ${a}`,()=>e.assign(y,!0)))}}};ls.default=Mu;var Mo={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.validateSchemaDeps=t.validatePropertyDeps=t.error=void 0;const e=G,r=re,n=B;t.error={message:({params:{property:p,depsCount:u,deps:f}})=>{const y=u===1?"property":"properties";return(0,e.str)`must have ${y} ${f} when property ${p} is present`},params:({params:{property:p,depsCount:u,deps:f,missingProperty:y}})=>(0,e._)`{property: ${p},
|
|
536
874
|
missingProperty: ${y},
|
|
537
875
|
depsCount: ${u},
|
|
538
|
-
deps: ${f}}`};const s={keyword:"dependencies",type:"object",schemaType:"object",error:t.error,code(p){const[u,f]=i(p);a(p,u),l(p,f)}};function i({schema:p}){const u={},f={};for(const y in p){if(y==="__proto__")continue;const R=Array.isArray(p[y])?u:f;R[y]=p[y]}return[u,f]}function a(p,u=p.schema){const{gen:f,data:y,it:R}=p;if(Object.keys(u).length===0)return;const O=f.let("missing");for(const v in u){const S=u[v];if(S.length===0)continue;const _=(0,n.propertyInData)(f,y,v,R.opts.ownProperties);p.setParams({property:v,depsCount:S.length,deps:S.join(", ")}),R.allErrors?f.if(_,()=>{for(const g of S)(0,n.checkReportMissingProp)(p,g)}):(f.if((0,e._)`${_} && (${(0,n.checkMissingProp)(p,S,O)})`),(0,n.reportMissingProp)(p,O),f.else())}}t.validatePropertyDeps=a;function l(p,u=p.schema){const{gen:f,data:y,keyword:R,it:O}=p,v=f.name("valid");for(const S in u)(0,r.alwaysValidSchema)(O,u[S])||(f.if((0,n.propertyInData)(f,y,S,O.opts.ownProperties),()=>{const _=p.subschema({keyword:R,schemaProp:S},v);p.mergeValidEvaluated(_,v)},()=>f.var(v,!0)),p.ok(v))}t.validateSchemaDeps=l,t.default=s})(Mo);var ls={};Object.defineProperty(ls,"__esModule",{value:!0});const Uo=K,Fu=re,qu={message:"property name must be valid",params:({params:t})=>(0,Uo._)`{propertyName: ${t.propertyName}}`},Mu={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:qu,code(t){const{gen:e,schema:r,data:n,it:s}=t;if((0,Fu.alwaysValidSchema)(s,r))return;const i=e.name("valid");e.forIn("key",n,a=>{t.setParams({propertyName:a}),t.subschema({keyword:"propertyNames",data:a,dataTypes:["string"],propertyName:a,compositeRule:!0},i),e.if((0,Uo.not)(i),()=>{t.error(!0),s.allErrors||e.break()})}),t.ok(i)}};ls.default=Mu;var un={};Object.defineProperty(un,"__esModule",{value:!0});const Cr=B,je=K,Uu=Ge,kr=re,Lu={message:"must NOT have additional properties",params:({params:t})=>(0,je._)`{additionalProperty: ${t.additionalProperty}}`},zu={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:Lu,code(t){const{gen:e,schema:r,parentSchema:n,data:s,errsCount:i,it:a}=t;if(!i)throw new Error("ajv implementation error");const{allErrors:l,opts:p}=a;if(a.props=!0,p.removeAdditional!=="all"&&(0,kr.alwaysValidSchema)(a,r))return;const u=(0,Cr.allSchemaProperties)(n.properties),f=(0,Cr.allSchemaProperties)(n.patternProperties);y(),t.ok((0,je._)`${i} === ${Uu.default.errors}`);function y(){e.forIn("key",s,_=>{!u.length&&!f.length?v(_):e.if(R(_),()=>v(_))})}function R(_){let g;if(u.length>8){const T=(0,kr.schemaRefOrVal)(a,n.properties,"properties");g=(0,Cr.isOwnProperty)(e,T,_)}else u.length?g=(0,je.or)(...u.map(T=>(0,je._)`${_} === ${T}`)):g=je.nil;return f.length&&(g=(0,je.or)(g,...f.map(T=>(0,je._)`${(0,Cr.usePattern)(t,T)}.test(${_})`))),(0,je.not)(g)}function O(_){e.code((0,je._)`delete ${s}[${_}]`)}function v(_){if(p.removeAdditional==="all"||p.removeAdditional&&r===!1){O(_);return}if(r===!1){t.setParams({additionalProperty:_}),t.error(),l||e.break();return}if(typeof r=="object"&&!(0,kr.alwaysValidSchema)(a,r)){const g=e.name("valid");p.removeAdditional==="failing"?(S(_,g,!1),e.if((0,je.not)(g),()=>{t.reset(),O(_)})):(S(_,g),l||e.if((0,je.not)(g),()=>e.break()))}}function S(_,g,T){const N={keyword:"additionalProperties",dataProp:_,dataPropType:kr.Type.Str};T===!1&&Object.assign(N,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(N,g)}}};un.default=zu;var us={};Object.defineProperty(us,"__esModule",{value:!0});const Hu=Ae,ni=B,$n=re,si=un,Vu={keyword:"properties",type:"object",schemaType:"object",code(t){const{gen:e,schema:r,parentSchema:n,data:s,it:i}=t;i.opts.removeAdditional==="all"&&n.additionalProperties===void 0&&si.default.code(new Hu.KeywordCxt(i,si.default,"additionalProperties"));const a=(0,ni.allSchemaProperties)(r);for(const y of a)i.definedProperties.add(y);i.opts.unevaluated&&a.length&&i.props!==!0&&(i.props=$n.mergeEvaluated.props(e,(0,$n.toHash)(a),i.props));const l=a.filter(y=>!(0,$n.alwaysValidSchema)(i,r[y]));if(l.length===0)return;const p=e.name("valid");for(const y of l)u(y)?f(y):(e.if((0,ni.propertyInData)(e,s,y,i.opts.ownProperties)),f(y),i.allErrors||e.else().var(p,!0),e.endIf()),t.it.definedProperties.add(y),t.ok(p);function u(y){return i.opts.useDefaults&&!i.compositeRule&&r[y].default!==void 0}function f(y){t.subschema({keyword:"properties",schemaProp:y,dataProp:y},p)}}};us.default=Vu;var ds={};Object.defineProperty(ds,"__esModule",{value:!0});const ii=B,jr=K,oi=re,ai=re,Wu={keyword:"patternProperties",type:"object",schemaType:"object",code(t){const{gen:e,schema:r,data:n,parentSchema:s,it:i}=t,{opts:a}=i,l=(0,ii.allSchemaProperties)(r),p=l.filter(S=>(0,oi.alwaysValidSchema)(i,r[S]));if(l.length===0||p.length===l.length&&(!i.opts.unevaluated||i.props===!0))return;const u=a.strictSchema&&!a.allowMatchingProperties&&s.properties,f=e.name("valid");i.props!==!0&&!(i.props instanceof jr.Name)&&(i.props=(0,ai.evaluatedPropsToName)(e,i.props));const{props:y}=i;R();function R(){for(const S of l)u&&O(S),i.allErrors?v(S):(e.var(f,!0),v(S),e.if(f))}function O(S){for(const _ in u)new RegExp(S).test(_)&&(0,oi.checkStrictMode)(i,`property ${_} matches pattern ${S} (use allowMatchingProperties)`)}function v(S){e.forIn("key",n,_=>{e.if((0,jr._)`${(0,ii.usePattern)(t,S)}.test(${_})`,()=>{const g=p.includes(S);g||t.subschema({keyword:"patternProperties",schemaProp:S,dataProp:_,dataPropType:ai.Type.Str},f),i.opts.unevaluated&&y!==!0?e.assign((0,jr._)`${y}[${_}]`,!0):!g&&!i.allErrors&&e.if((0,jr.not)(f),()=>e.break())})})}}};ds.default=Wu;var ps={};Object.defineProperty(ps,"__esModule",{value:!0});const xu=re,Bu={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){const{gen:e,schema:r,it:n}=t;if((0,xu.alwaysValidSchema)(n,r)){t.fail();return}const s=e.name("valid");t.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},s),t.failResult(s,()=>t.reset(),()=>t.error())},error:{message:"must NOT be valid"}};ps.default=Bu;var fs={};Object.defineProperty(fs,"__esModule",{value:!0});const Ku=B,Gu={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:Ku.validateUnion,error:{message:"must match a schema in anyOf"}};fs.default=Gu;var hs={};Object.defineProperty(hs,"__esModule",{value:!0});const qr=K,Ju=re,Yu={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,qr._)`{passingSchemas: ${t.passing}}`},Zu={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:Yu,code(t){const{gen:e,schema:r,parentSchema:n,it:s}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(s.opts.discriminator&&n.discriminator)return;const i=r,a=e.let("valid",!1),l=e.let("passing",null),p=e.name("_valid");t.setParams({passing:l}),e.block(u),t.result(a,()=>t.reset(),()=>t.error(!0));function u(){i.forEach((f,y)=>{let R;(0,Ju.alwaysValidSchema)(s,f)?e.var(p,!0):R=t.subschema({keyword:"oneOf",schemaProp:y,compositeRule:!0},p),y>0&&e.if((0,qr._)`${p} && ${a}`).assign(a,!1).assign(l,(0,qr._)`[${l}, ${y}]`).else(),e.if(p,()=>{e.assign(a,!0),e.assign(l,y),R&&t.mergeEvaluated(R,qr.Name)})})}}};hs.default=Zu;var ms={};Object.defineProperty(ms,"__esModule",{value:!0});const Qu=re,Xu={keyword:"allOf",schemaType:"array",code(t){const{gen:e,schema:r,it:n}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");const s=e.name("valid");r.forEach((i,a)=>{if((0,Qu.alwaysValidSchema)(n,i))return;const l=t.subschema({keyword:"allOf",schemaProp:a},s);t.ok(s),t.mergeEvaluated(l)})}};ms.default=Xu;var ys={};Object.defineProperty(ys,"__esModule",{value:!0});const Hr=K,Lo=re,ed={message:({params:t})=>(0,Hr.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,Hr._)`{failingKeyword: ${t.ifClause}}`},td={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:ed,code(t){const{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,Lo.checkStrictMode)(n,'"if" without "then" and "else" is ignored');const s=ci(n,"then"),i=ci(n,"else");if(!s&&!i)return;const a=e.let("valid",!0),l=e.name("_valid");if(p(),t.reset(),s&&i){const f=e.let("ifClause");t.setParams({ifClause:f}),e.if(l,u("then",f),u("else",f))}else s?e.if(l,u("then")):e.if((0,Hr.not)(l),u("else"));t.pass(a,()=>t.error(!0));function p(){const f=t.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},l);t.mergeEvaluated(f)}function u(f,y){return()=>{const R=t.subschema({keyword:f},l);e.assign(a,l),t.mergeValidEvaluated(R,a),y?e.assign(y,(0,Hr._)`${f}`):t.setParams({ifClause:f})}}}};function ci(t,e){const r=t.schema[e];return r!==void 0&&!(0,Lo.alwaysValidSchema)(t,r)}ys.default=td;var gs={};Object.defineProperty(gs,"__esModule",{value:!0});const rd=re,nd={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,rd.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};gs.default=nd;Object.defineProperty(is,"__esModule",{value:!0});const sd=Gt,id=os,od=Jt,ad=as,cd=cs,ld=Mo,ud=ls,dd=un,pd=us,fd=ds,hd=ps,md=fs,yd=hs,gd=ms,$d=ys,_d=gs;function vd(t=!1){const e=[hd.default,md.default,yd.default,gd.default,$d.default,_d.default,ud.default,dd.default,ld.default,pd.default,fd.default];return t?e.push(id.default,ad.default):e.push(sd.default,od.default),e.push(cd.default),e}is.default=vd;var $s={},_s={};Object.defineProperty(_s,"__esModule",{value:!0});const fe=K,wd={message:({schemaCode:t})=>(0,fe.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,fe._)`{format: ${t}}`},bd={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:wd,code(t,e){const{gen:r,data:n,$data:s,schema:i,schemaCode:a,it:l}=t,{opts:p,errSchemaPath:u,schemaEnv:f,self:y}=l;if(!p.validateFormats)return;s?R():O();function R(){const v=r.scopeValue("formats",{ref:y.formats,code:p.code.formats}),S=r.const("fDef",(0,fe._)`${v}[${a}]`),_=r.let("fType"),g=r.let("format");r.if((0,fe._)`typeof ${S} == "object" && !(${S} instanceof RegExp)`,()=>r.assign(_,(0,fe._)`${S}.type || "string"`).assign(g,(0,fe._)`${S}.validate`),()=>r.assign(_,(0,fe._)`"string"`).assign(g,S)),t.fail$data((0,fe.or)(T(),N()));function T(){return p.strictSchema===!1?fe.nil:(0,fe._)`${a} && !${g}`}function N(){const j=f.$async?(0,fe._)`(${S}.async ? await ${g}(${n}) : ${g}(${n}))`:(0,fe._)`${g}(${n})`,D=(0,fe._)`(typeof ${g} == "function" ? ${j} : ${g}.test(${n}))`;return(0,fe._)`${g} && ${g} !== true && ${_} === ${e} && !${D}`}}function O(){const v=y.formats[i];if(!v){T();return}if(v===!0)return;const[S,_,g]=N(v);S===e&&t.pass(j());function T(){if(p.strictSchema===!1){y.logger.warn(D());return}throw new Error(D());function D(){return`unknown format "${i}" ignored in schema at path "${u}"`}}function N(D){const w=D instanceof RegExp?(0,fe.regexpCode)(D):p.code.formats?(0,fe._)`${p.code.formats}${(0,fe.getProperty)(i)}`:void 0,C=r.scopeValue("formats",{key:i,ref:D,code:w});return typeof D=="object"&&!(D instanceof RegExp)?[D.type||"string",D.validate,(0,fe._)`${C}.validate`]:["string",D,C]}function j(){if(typeof v=="object"&&!(v instanceof RegExp)&&v.async){if(!f.$async)throw new Error("async format in sync schema");return(0,fe._)`await ${g}(${n})`}return typeof _=="function"?(0,fe._)`${g}(${n})`:(0,fe._)`${g}.test(${n})`}}}};_s.default=bd;Object.defineProperty($s,"__esModule",{value:!0});const Pd=_s,Ed=[Pd.default];$s.default=Ed;var Kt={};Object.defineProperty(Kt,"__esModule",{value:!0});Kt.contentVocabulary=Kt.metadataVocabulary=void 0;Kt.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];Kt.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"];Object.defineProperty(Wn,"__esModule",{value:!0});const Sd=xn,Td=Kn,Rd=is,Od=$s,li=Kt,Nd=[Sd.default,Td.default,(0,Rd.default)(),Od.default,li.metadataVocabulary,li.contentVocabulary];Wn.default=Nd;var vs={},zo={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.DiscrError=void 0,function(e){e.Tag="tag",e.Mapping="mapping"}(t.DiscrError||(t.DiscrError={}))})(zo);Object.defineProperty(vs,"__esModule",{value:!0});const Ft=K,Tn=zo,ui=Se,Cd=re,kd={message:({params:{discrError:t,tagName:e}})=>t===Tn.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,Ft._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},jd={keyword:"discriminator",type:"object",schemaType:"object",error:kd,code(t){const{gen:e,data:r,schema:n,parentSchema:s,it:i}=t,{oneOf:a}=s;if(!i.opts.discriminator)throw new Error("discriminator: requires discriminator option");const l=n.propertyName;if(typeof l!="string")throw new Error("discriminator: requires propertyName");if(n.mapping)throw new Error("discriminator: mapping is not supported");if(!a)throw new Error("discriminator: requires oneOf keyword");const p=e.let("valid",!1),u=e.const("tag",(0,Ft._)`${r}${(0,Ft.getProperty)(l)}`);e.if((0,Ft._)`typeof ${u} == "string"`,()=>f(),()=>t.error(!1,{discrError:Tn.DiscrError.Tag,tag:u,tagName:l})),t.ok(p);function f(){const O=R();e.if(!1);for(const v in O)e.elseIf((0,Ft._)`${u} === ${v}`),e.assign(p,y(O[v]));e.else(),t.error(!1,{discrError:Tn.DiscrError.Mapping,tag:u,tagName:l}),e.endIf()}function y(O){const v=e.name("valid"),S=t.subschema({keyword:"oneOf",schemaProp:O},v);return t.mergeEvaluated(S,Ft.Name),v}function R(){var O;const v={},S=g(s);let _=!0;for(let j=0;j<a.length;j++){let D=a[j];D!=null&&D.$ref&&!(0,Cd.schemaHasRulesButRef)(D,i.self.RULES)&&(D=ui.resolveRef.call(i.self,i.schemaEnv.root,i.baseId,D==null?void 0:D.$ref),D instanceof ui.SchemaEnv&&(D=D.schema));const w=(O=D==null?void 0:D.properties)===null||O===void 0?void 0:O[l];if(typeof w!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${l}"`);_=_&&(S||g(D)),T(w,j)}if(!_)throw new Error(`discriminator: "${l}" must be required`);return v;function g({required:j}){return Array.isArray(j)&&j.includes(l)}function T(j,D){if(j.const)N(j.const,D);else if(j.enum)for(const w of j.enum)N(w,D);else throw new Error(`discriminator: "properties/${l}" must have "const" or "enum"`)}function N(j,D){if(typeof j!="string"||j in v)throw new Error(`discriminator: "${l}" values must be unique strings`);v[j]=D}}}};vs.default=jd;const Id="http://json-schema.org/draft-07/schema#",Ad="http://json-schema.org/draft-07/schema#",Dd="Core schema meta-schema",Fd={schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},qd=["object","boolean"],Md={$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},Ud={$schema:Id,$id:Ad,title:Dd,definitions:Fd,type:qd,properties:Md,default:!0};(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MissingRefError=e.ValidationError=e.CodeGen=e.Name=e.nil=e.stringify=e.str=e._=e.KeywordCxt=void 0;const r=oo,n=Wn,s=vs,i=Ud,a=["/properties"],l="http://json-schema.org/draft-07/schema";class p extends r.default{_addVocabularies(){super._addVocabularies(),n.default.forEach(v=>this.addVocabulary(v)),this.opts.discriminator&&this.addKeyword(s.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;const v=this.opts.$data?this.$dataMetaSchema(i,a):i;this.addMetaSchema(v,l,!1),this.refs["http://json-schema.org/schema"]=l}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(l)?l:void 0)}}t.exports=e=p,Object.defineProperty(e,"__esModule",{value:!0}),e.default=p;var u=Ae;Object.defineProperty(e,"KeywordCxt",{enumerable:!0,get:function(){return u.KeywordCxt}});var f=K;Object.defineProperty(e,"_",{enumerable:!0,get:function(){return f._}}),Object.defineProperty(e,"str",{enumerable:!0,get:function(){return f.str}}),Object.defineProperty(e,"stringify",{enumerable:!0,get:function(){return f.stringify}}),Object.defineProperty(e,"nil",{enumerable:!0,get:function(){return f.nil}}),Object.defineProperty(e,"Name",{enumerable:!0,get:function(){return f.Name}}),Object.defineProperty(e,"CodeGen",{enumerable:!0,get:function(){return f.CodeGen}});var y=wr;Object.defineProperty(e,"ValidationError",{enumerable:!0,get:function(){return y.default}});var R=br;Object.defineProperty(e,"MissingRefError",{enumerable:!0,get:function(){return R.default}})})(vn,vn.exports);var Ld=vn.exports;const zd=Ja(Ld),Hd="http://json-schema.org/schema",Vd="#/definitions/Blueprint",Wd={Blueprint:{type:"object",properties:{landingPage:{type:"string",description:"The URL to navigate to after the blueprint has been run."},description:{type:"string",description:"Optional description. It doesn't do anything but is exposed as a courtesy to developers who may want to document which blueprint file does what."},preferredVersions:{type:"object",properties:{php:{anyOf:[{$ref:"#/definitions/SupportedPHPVersion"},{type:"string",const:"latest"}],description:"The preferred PHP version to use. If not specified, the latest supported version will be used"},wp:{type:"string",description:"The preferred WordPress version to use. If not specified, the latest supported version will be used"}},required:["php","wp"],additionalProperties:!1,description:"The preferred PHP and WordPress versions to use."},features:{type:"object",properties:{networking:{type:"boolean",description:"Should boot with support for network request via wp_safe_remote_get?"}},additionalProperties:!1},constants:{type:"object",additionalProperties:{type:"string"},description:"PHP Constants to define on every request",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},plugins:{type:"array",items:{anyOf:[{type:"string"},{$ref:"#/definitions/FileReference"}]},description:"WordPress plugins to install and activate",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},siteOptions:{type:"object",additionalProperties:{type:"string"},properties:{blogname:{type:"string",description:"The site title"}},description:"WordPress site options to define",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},login:{anyOf:[{type:"boolean"},{type:"object",properties:{username:{type:"string"},password:{type:"string"}},required:["username","password"],additionalProperties:!1}],description:"User to log in as. If true, logs the user in as admin/password."},phpExtensionBundles:{type:"array",items:{$ref:"#/definitions/SupportedPHPExtensionBundle"},description:"The PHP extensions to use."},steps:{type:"array",items:{anyOf:[{$ref:"#/definitions/StepDefinition"},{type:"string"},{not:{}},{type:"boolean",const:!1},{type:"null"}]},description:"The steps to run after every other operation in this Blueprint was executed."},$schema:{type:"string"}},additionalProperties:!1},SupportedPHPVersion:{type:"string",enum:["8.3","8.2","8.1","8.0","7.4","7.3","7.2","7.1","7.0"]},FileReference:{anyOf:[{$ref:"#/definitions/VFSReference"},{$ref:"#/definitions/LiteralReference"},{$ref:"#/definitions/CoreThemeReference"},{$ref:"#/definitions/CorePluginReference"},{$ref:"#/definitions/UrlReference"}]},VFSReference:{type:"object",properties:{resource:{type:"string",const:"vfs",description:"Identifies the file resource as Virtual File System (VFS)"},path:{type:"string",description:"The path to the file in the VFS"}},required:["resource","path"],additionalProperties:!1},LiteralReference:{type:"object",properties:{resource:{type:"string",const:"literal",description:"Identifies the file resource as a literal file"},name:{type:"string",description:"The name of the file"},contents:{anyOf:[{type:"string"},{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}],description:"The contents of the file"}},required:["resource","name","contents"],additionalProperties:!1},CoreThemeReference:{type:"object",properties:{resource:{type:"string",const:"wordpress.org/themes",description:"Identifies the file resource as a WordPress Core theme"},slug:{type:"string",description:"The slug of the WordPress Core theme"}},required:["resource","slug"],additionalProperties:!1},CorePluginReference:{type:"object",properties:{resource:{type:"string",const:"wordpress.org/plugins",description:"Identifies the file resource as a WordPress Core plugin"},slug:{type:"string",description:"The slug of the WordPress Core plugin"}},required:["resource","slug"],additionalProperties:!1},UrlReference:{type:"object",properties:{resource:{type:"string",const:"url",description:"Identifies the file resource as a URL"},url:{type:"string",description:"The URL of the file"},caption:{type:"string",description:"Optional caption for displaying a progress message"}},required:["resource","url"],additionalProperties:!1},SupportedPHPExtensionBundle:{type:"string",const:"kitchen-sink"},StepDefinition:{type:"object",discriminator:{propertyName:"step"},required:["step"],oneOf:[{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"activatePlugin"},pluginPath:{type:"string",description:"Path to the plugin directory as absolute path (/wordpress/wp-content/plugins/plugin-name); or the plugin entry file relative to the plugins directory (plugin-name/plugin-name.php)."},pluginName:{type:"string",description:"Optional. Plugin name to display in the progress bar."}},required:["pluginPath","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"activateTheme"},themeFolderName:{type:"string",description:"The name of the theme folder inside wp-content/themes/"}},required:["step","themeFolderName"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"applyWordPressPatches"},siteUrl:{type:"string"},wordpressPath:{type:"string"},addPhpInfo:{type:"boolean"},patchSecrets:{type:"boolean"},disableSiteHealth:{type:"boolean"},disableWpNewBlogNotification:{type:"boolean"},makeEditorFrameControlled:{type:"boolean"},prepareForRunningInsideWebBrowser:{type:"boolean"},addFetchNetworkTransport:{type:"boolean"}},required:["step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"cp"},fromPath:{type:"string",description:"Source path"},toPath:{type:"string",description:"Target path"}},required:["fromPath","step","toPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"defineWpConfigConsts"},consts:{type:"object",additionalProperties:{},description:"The constants to define"},virtualize:{type:"boolean",deprecated:`This option is noop and will be removed in a future version.
|
|
876
|
+
deps: ${f}}`};const s={keyword:"dependencies",type:"object",schemaType:"object",error:t.error,code(p){const[u,f]=i(p);a(p,u),l(p,f)}};function i({schema:p}){const u={},f={};for(const y in p){if(y==="__proto__")continue;const k=Array.isArray(p[y])?u:f;k[y]=p[y]}return[u,f]}function a(p,u=p.schema){const{gen:f,data:y,it:k}=p;if(Object.keys(u).length===0)return;const R=f.let("missing");for(const w in u){const S=u[w];if(S.length===0)continue;const _=(0,n.propertyInData)(f,y,w,k.opts.ownProperties);p.setParams({property:w,depsCount:S.length,deps:S.join(", ")}),k.allErrors?f.if(_,()=>{for(const g of S)(0,n.checkReportMissingProp)(p,g)}):(f.if((0,e._)`${_} && (${(0,n.checkMissingProp)(p,S,R)})`),(0,n.reportMissingProp)(p,R),f.else())}}t.validatePropertyDeps=a;function l(p,u=p.schema){const{gen:f,data:y,keyword:k,it:R}=p,w=f.name("valid");for(const S in u)(0,r.alwaysValidSchema)(R,u[S])||(f.if((0,n.propertyInData)(f,y,S,R.opts.ownProperties),()=>{const _=p.subschema({keyword:k,schemaProp:S},w);p.mergeValidEvaluated(_,w)},()=>f.var(w,!0)),p.ok(w))}t.validateSchemaDeps=l,t.default=s})(Mo);var us={};Object.defineProperty(us,"__esModule",{value:!0});const Uo=G,Uu=re,Lu={message:"property name must be valid",params:({params:t})=>(0,Uo._)`{propertyName: ${t.propertyName}}`},zu={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:Lu,code(t){const{gen:e,schema:r,data:n,it:s}=t;if((0,Uu.alwaysValidSchema)(s,r))return;const i=e.name("valid");e.forIn("key",n,a=>{t.setParams({propertyName:a}),t.subschema({keyword:"propertyNames",data:a,dataTypes:["string"],propertyName:a,compositeRule:!0},i),e.if((0,Uo.not)(i),()=>{t.error(!0),s.allErrors||e.break()})}),t.ok(i)}};us.default=zu;var pn={};Object.defineProperty(pn,"__esModule",{value:!0});const Or=B,je=G,Hu=Ke,Cr=re,Vu={message:"must NOT have additional properties",params:({params:t})=>(0,je._)`{additionalProperty: ${t.additionalProperty}}`},Wu={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:Vu,code(t){const{gen:e,schema:r,parentSchema:n,data:s,errsCount:i,it:a}=t;if(!i)throw new Error("ajv implementation error");const{allErrors:l,opts:p}=a;if(a.props=!0,p.removeAdditional!=="all"&&(0,Cr.alwaysValidSchema)(a,r))return;const u=(0,Or.allSchemaProperties)(n.properties),f=(0,Or.allSchemaProperties)(n.patternProperties);y(),t.ok((0,je._)`${i} === ${Hu.default.errors}`);function y(){e.forIn("key",s,_=>{!u.length&&!f.length?w(_):e.if(k(_),()=>w(_))})}function k(_){let g;if(u.length>8){const T=(0,Cr.schemaRefOrVal)(a,n.properties,"properties");g=(0,Or.isOwnProperty)(e,T,_)}else u.length?g=(0,je.or)(...u.map(T=>(0,je._)`${_} === ${T}`)):g=je.nil;return f.length&&(g=(0,je.or)(g,...f.map(T=>(0,je._)`${(0,Or.usePattern)(t,T)}.test(${_})`))),(0,je.not)(g)}function R(_){e.code((0,je._)`delete ${s}[${_}]`)}function w(_){if(p.removeAdditional==="all"||p.removeAdditional&&r===!1){R(_);return}if(r===!1){t.setParams({additionalProperty:_}),t.error(),l||e.break();return}if(typeof r=="object"&&!(0,Cr.alwaysValidSchema)(a,r)){const g=e.name("valid");p.removeAdditional==="failing"?(S(_,g,!1),e.if((0,je.not)(g),()=>{t.reset(),R(_)})):(S(_,g),l||e.if((0,je.not)(g),()=>e.break()))}}function S(_,g,T){const O={keyword:"additionalProperties",dataProp:_,dataPropType:Cr.Type.Str};T===!1&&Object.assign(O,{compositeRule:!0,createErrors:!1,allErrors:!1}),t.subschema(O,g)}}};pn.default=Wu;var ds={};Object.defineProperty(ds,"__esModule",{value:!0});const xu=De,ni=B,wn=re,si=pn,Bu={keyword:"properties",type:"object",schemaType:"object",code(t){const{gen:e,schema:r,parentSchema:n,data:s,it:i}=t;i.opts.removeAdditional==="all"&&n.additionalProperties===void 0&&si.default.code(new xu.KeywordCxt(i,si.default,"additionalProperties"));const a=(0,ni.allSchemaProperties)(r);for(const y of a)i.definedProperties.add(y);i.opts.unevaluated&&a.length&&i.props!==!0&&(i.props=wn.mergeEvaluated.props(e,(0,wn.toHash)(a),i.props));const l=a.filter(y=>!(0,wn.alwaysValidSchema)(i,r[y]));if(l.length===0)return;const p=e.name("valid");for(const y of l)u(y)?f(y):(e.if((0,ni.propertyInData)(e,s,y,i.opts.ownProperties)),f(y),i.allErrors||e.else().var(p,!0),e.endIf()),t.it.definedProperties.add(y),t.ok(p);function u(y){return i.opts.useDefaults&&!i.compositeRule&&r[y].default!==void 0}function f(y){t.subschema({keyword:"properties",schemaProp:y,dataProp:y},p)}}};ds.default=Bu;var ps={};Object.defineProperty(ps,"__esModule",{value:!0});const ii=B,Nr=G,oi=re,ai=re,Gu={keyword:"patternProperties",type:"object",schemaType:"object",code(t){const{gen:e,schema:r,data:n,parentSchema:s,it:i}=t,{opts:a}=i,l=(0,ii.allSchemaProperties)(r),p=l.filter(S=>(0,oi.alwaysValidSchema)(i,r[S]));if(l.length===0||p.length===l.length&&(!i.opts.unevaluated||i.props===!0))return;const u=a.strictSchema&&!a.allowMatchingProperties&&s.properties,f=e.name("valid");i.props!==!0&&!(i.props instanceof Nr.Name)&&(i.props=(0,ai.evaluatedPropsToName)(e,i.props));const{props:y}=i;k();function k(){for(const S of l)u&&R(S),i.allErrors?w(S):(e.var(f,!0),w(S),e.if(f))}function R(S){for(const _ in u)new RegExp(S).test(_)&&(0,oi.checkStrictMode)(i,`property ${_} matches pattern ${S} (use allowMatchingProperties)`)}function w(S){e.forIn("key",n,_=>{e.if((0,Nr._)`${(0,ii.usePattern)(t,S)}.test(${_})`,()=>{const g=p.includes(S);g||t.subschema({keyword:"patternProperties",schemaProp:S,dataProp:_,dataPropType:ai.Type.Str},f),i.opts.unevaluated&&y!==!0?e.assign((0,Nr._)`${y}[${_}]`,!0):!g&&!i.allErrors&&e.if((0,Nr.not)(f),()=>e.break())})})}}};ps.default=Gu;var fs={};Object.defineProperty(fs,"__esModule",{value:!0});const Ku=re,Ju={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(t){const{gen:e,schema:r,it:n}=t;if((0,Ku.alwaysValidSchema)(n,r)){t.fail();return}const s=e.name("valid");t.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},s),t.failResult(s,()=>t.reset(),()=>t.error())},error:{message:"must NOT be valid"}};fs.default=Ju;var hs={};Object.defineProperty(hs,"__esModule",{value:!0});const Yu=B,Qu={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:Yu.validateUnion,error:{message:"must match a schema in anyOf"}};hs.default=Qu;var ms={};Object.defineProperty(ms,"__esModule",{value:!0});const qr=G,Zu=re,Xu={message:"must match exactly one schema in oneOf",params:({params:t})=>(0,qr._)`{passingSchemas: ${t.passing}}`},ed={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:Xu,code(t){const{gen:e,schema:r,parentSchema:n,it:s}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");if(s.opts.discriminator&&n.discriminator)return;const i=r,a=e.let("valid",!1),l=e.let("passing",null),p=e.name("_valid");t.setParams({passing:l}),e.block(u),t.result(a,()=>t.reset(),()=>t.error(!0));function u(){i.forEach((f,y)=>{let k;(0,Zu.alwaysValidSchema)(s,f)?e.var(p,!0):k=t.subschema({keyword:"oneOf",schemaProp:y,compositeRule:!0},p),y>0&&e.if((0,qr._)`${p} && ${a}`).assign(a,!1).assign(l,(0,qr._)`[${l}, ${y}]`).else(),e.if(p,()=>{e.assign(a,!0),e.assign(l,y),k&&t.mergeEvaluated(k,qr.Name)})})}}};ms.default=ed;var ys={};Object.defineProperty(ys,"__esModule",{value:!0});const td=re,rd={keyword:"allOf",schemaType:"array",code(t){const{gen:e,schema:r,it:n}=t;if(!Array.isArray(r))throw new Error("ajv implementation error");const s=e.name("valid");r.forEach((i,a)=>{if((0,td.alwaysValidSchema)(n,i))return;const l=t.subschema({keyword:"allOf",schemaProp:a},s);t.ok(s),t.mergeEvaluated(l)})}};ys.default=rd;var gs={};Object.defineProperty(gs,"__esModule",{value:!0});const Vr=G,Lo=re,nd={message:({params:t})=>(0,Vr.str)`must match "${t.ifClause}" schema`,params:({params:t})=>(0,Vr._)`{failingKeyword: ${t.ifClause}}`},sd={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:nd,code(t){const{gen:e,parentSchema:r,it:n}=t;r.then===void 0&&r.else===void 0&&(0,Lo.checkStrictMode)(n,'"if" without "then" and "else" is ignored');const s=ci(n,"then"),i=ci(n,"else");if(!s&&!i)return;const a=e.let("valid",!0),l=e.name("_valid");if(p(),t.reset(),s&&i){const f=e.let("ifClause");t.setParams({ifClause:f}),e.if(l,u("then",f),u("else",f))}else s?e.if(l,u("then")):e.if((0,Vr.not)(l),u("else"));t.pass(a,()=>t.error(!0));function p(){const f=t.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},l);t.mergeEvaluated(f)}function u(f,y){return()=>{const k=t.subschema({keyword:f},l);e.assign(a,l),t.mergeValidEvaluated(k,a),y?e.assign(y,(0,Vr._)`${f}`):t.setParams({ifClause:f})}}}};function ci(t,e){const r=t.schema[e];return r!==void 0&&!(0,Lo.alwaysValidSchema)(t,r)}gs.default=sd;var $s={};Object.defineProperty($s,"__esModule",{value:!0});const id=re,od={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:t,parentSchema:e,it:r}){e.if===void 0&&(0,id.checkStrictMode)(r,`"${t}" without "if" is ignored`)}};$s.default=od;Object.defineProperty(os,"__esModule",{value:!0});const ad=Kt,cd=as,ld=Jt,ud=cs,dd=ls,pd=Mo,fd=us,hd=pn,md=ds,yd=ps,gd=fs,$d=hs,_d=ms,wd=ys,vd=gs,bd=$s;function Pd(t=!1){const e=[gd.default,$d.default,_d.default,wd.default,vd.default,bd.default,fd.default,hd.default,pd.default,md.default,yd.default];return t?e.push(cd.default,ud.default):e.push(ad.default,ld.default),e.push(dd.default),e}os.default=Pd;var _s={},ws={};Object.defineProperty(ws,"__esModule",{value:!0});const fe=G,Ed={message:({schemaCode:t})=>(0,fe.str)`must match format "${t}"`,params:({schemaCode:t})=>(0,fe._)`{format: ${t}}`},Sd={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:Ed,code(t,e){const{gen:r,data:n,$data:s,schema:i,schemaCode:a,it:l}=t,{opts:p,errSchemaPath:u,schemaEnv:f,self:y}=l;if(!p.validateFormats)return;s?k():R();function k(){const w=r.scopeValue("formats",{ref:y.formats,code:p.code.formats}),S=r.const("fDef",(0,fe._)`${w}[${a}]`),_=r.let("fType"),g=r.let("format");r.if((0,fe._)`typeof ${S} == "object" && !(${S} instanceof RegExp)`,()=>r.assign(_,(0,fe._)`${S}.type || "string"`).assign(g,(0,fe._)`${S}.validate`),()=>r.assign(_,(0,fe._)`"string"`).assign(g,S)),t.fail$data((0,fe.or)(T(),O()));function T(){return p.strictSchema===!1?fe.nil:(0,fe._)`${a} && !${g}`}function O(){const j=f.$async?(0,fe._)`(${S}.async ? await ${g}(${n}) : ${g}(${n}))`:(0,fe._)`${g}(${n})`,A=(0,fe._)`(typeof ${g} == "function" ? ${j} : ${g}.test(${n}))`;return(0,fe._)`${g} && ${g} !== true && ${_} === ${e} && !${A}`}}function R(){const w=y.formats[i];if(!w){T();return}if(w===!0)return;const[S,_,g]=O(w);S===e&&t.pass(j());function T(){if(p.strictSchema===!1){y.logger.warn(A());return}throw new Error(A());function A(){return`unknown format "${i}" ignored in schema at path "${u}"`}}function O(A){const v=A instanceof RegExp?(0,fe.regexpCode)(A):p.code.formats?(0,fe._)`${p.code.formats}${(0,fe.getProperty)(i)}`:void 0,C=r.scopeValue("formats",{key:i,ref:A,code:v});return typeof A=="object"&&!(A instanceof RegExp)?[A.type||"string",A.validate,(0,fe._)`${C}.validate`]:["string",A,C]}function j(){if(typeof w=="object"&&!(w instanceof RegExp)&&w.async){if(!f.$async)throw new Error("async format in sync schema");return(0,fe._)`await ${g}(${n})`}return typeof _=="function"?(0,fe._)`${g}(${n})`:(0,fe._)`${g}.test(${n})`}}}};ws.default=Sd;Object.defineProperty(_s,"__esModule",{value:!0});const Td=ws,kd=[Td.default];_s.default=kd;var Gt={};Object.defineProperty(Gt,"__esModule",{value:!0});Gt.contentVocabulary=Gt.metadataVocabulary=void 0;Gt.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];Gt.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"];Object.defineProperty(xn,"__esModule",{value:!0});const Rd=Bn,Od=Kn,Cd=os,Nd=_s,li=Gt,jd=[Rd.default,Od.default,(0,Cd.default)(),Nd.default,li.metadataVocabulary,li.contentVocabulary];xn.default=jd;var vs={},zo={};(function(t){Object.defineProperty(t,"__esModule",{value:!0}),t.DiscrError=void 0,function(e){e.Tag="tag",e.Mapping="mapping"}(t.DiscrError||(t.DiscrError={}))})(zo);Object.defineProperty(vs,"__esModule",{value:!0});const Ft=G,Rn=zo,ui=Se,Id=re,Dd={message:({params:{discrError:t,tagName:e}})=>t===Rn.DiscrError.Tag?`tag "${e}" must be string`:`value of tag "${e}" must be in oneOf`,params:({params:{discrError:t,tag:e,tagName:r}})=>(0,Ft._)`{error: ${t}, tag: ${r}, tagValue: ${e}}`},Ad={keyword:"discriminator",type:"object",schemaType:"object",error:Dd,code(t){const{gen:e,data:r,schema:n,parentSchema:s,it:i}=t,{oneOf:a}=s;if(!i.opts.discriminator)throw new Error("discriminator: requires discriminator option");const l=n.propertyName;if(typeof l!="string")throw new Error("discriminator: requires propertyName");if(n.mapping)throw new Error("discriminator: mapping is not supported");if(!a)throw new Error("discriminator: requires oneOf keyword");const p=e.let("valid",!1),u=e.const("tag",(0,Ft._)`${r}${(0,Ft.getProperty)(l)}`);e.if((0,Ft._)`typeof ${u} == "string"`,()=>f(),()=>t.error(!1,{discrError:Rn.DiscrError.Tag,tag:u,tagName:l})),t.ok(p);function f(){const R=k();e.if(!1);for(const w in R)e.elseIf((0,Ft._)`${u} === ${w}`),e.assign(p,y(R[w]));e.else(),t.error(!1,{discrError:Rn.DiscrError.Mapping,tag:u,tagName:l}),e.endIf()}function y(R){const w=e.name("valid"),S=t.subschema({keyword:"oneOf",schemaProp:R},w);return t.mergeEvaluated(S,Ft.Name),w}function k(){var R;const w={},S=g(s);let _=!0;for(let j=0;j<a.length;j++){let A=a[j];A!=null&&A.$ref&&!(0,Id.schemaHasRulesButRef)(A,i.self.RULES)&&(A=ui.resolveRef.call(i.self,i.schemaEnv.root,i.baseId,A==null?void 0:A.$ref),A instanceof ui.SchemaEnv&&(A=A.schema));const v=(R=A==null?void 0:A.properties)===null||R===void 0?void 0:R[l];if(typeof v!="object")throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${l}"`);_=_&&(S||g(A)),T(v,j)}if(!_)throw new Error(`discriminator: "${l}" must be required`);return w;function g({required:j}){return Array.isArray(j)&&j.includes(l)}function T(j,A){if(j.const)O(j.const,A);else if(j.enum)for(const v of j.enum)O(v,A);else throw new Error(`discriminator: "properties/${l}" must have "const" or "enum"`)}function O(j,A){if(typeof j!="string"||j in w)throw new Error(`discriminator: "${l}" values must be unique strings`);w[j]=A}}}};vs.default=Ad;const Fd="http://json-schema.org/draft-07/schema#",qd="http://json-schema.org/draft-07/schema#",Md="Core schema meta-schema",Ud={schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},Ld=["object","boolean"],zd={$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},Hd={$schema:Fd,$id:qd,title:Md,definitions:Ud,type:Ld,properties:zd,default:!0};(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MissingRefError=e.ValidationError=e.CodeGen=e.Name=e.nil=e.stringify=e.str=e._=e.KeywordCxt=void 0;const r=oo,n=xn,s=vs,i=Hd,a=["/properties"],l="http://json-schema.org/draft-07/schema";class p extends r.default{_addVocabularies(){super._addVocabularies(),n.default.forEach(w=>this.addVocabulary(w)),this.opts.discriminator&&this.addKeyword(s.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;const w=this.opts.$data?this.$dataMetaSchema(i,a):i;this.addMetaSchema(w,l,!1),this.refs["http://json-schema.org/schema"]=l}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(l)?l:void 0)}}t.exports=e=p,Object.defineProperty(e,"__esModule",{value:!0}),e.default=p;var u=De;Object.defineProperty(e,"KeywordCxt",{enumerable:!0,get:function(){return u.KeywordCxt}});var f=G;Object.defineProperty(e,"_",{enumerable:!0,get:function(){return f._}}),Object.defineProperty(e,"str",{enumerable:!0,get:function(){return f.str}}),Object.defineProperty(e,"stringify",{enumerable:!0,get:function(){return f.stringify}}),Object.defineProperty(e,"nil",{enumerable:!0,get:function(){return f.nil}}),Object.defineProperty(e,"Name",{enumerable:!0,get:function(){return f.Name}}),Object.defineProperty(e,"CodeGen",{enumerable:!0,get:function(){return f.CodeGen}});var y=wr;Object.defineProperty(e,"ValidationError",{enumerable:!0,get:function(){return y.default}});var k=vr;Object.defineProperty(e,"MissingRefError",{enumerable:!0,get:function(){return k.default}})})(bn,bn.exports);var Vd=bn.exports;const Wd=Za(Vd),xd="http://json-schema.org/schema",Bd="#/definitions/Blueprint",Gd={Blueprint:{type:"object",properties:{landingPage:{type:"string",description:"The URL to navigate to after the blueprint has been run."},description:{type:"string",description:"Optional description. It doesn't do anything but is exposed as a courtesy to developers who may want to document which blueprint file does what."},preferredVersions:{type:"object",properties:{php:{anyOf:[{$ref:"#/definitions/SupportedPHPVersion"},{type:"string",const:"latest"}],description:"The preferred PHP version to use. If not specified, the latest supported version will be used"},wp:{type:"string",description:"The preferred WordPress version to use. If not specified, the latest supported version will be used"}},required:["php","wp"],additionalProperties:!1,description:"The preferred PHP and WordPress versions to use."},features:{type:"object",properties:{networking:{type:"boolean",description:"Should boot with support for network request via wp_safe_remote_get?"}},additionalProperties:!1},constants:{type:"object",additionalProperties:{type:"string"},description:"PHP Constants to define on every request",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},plugins:{type:"array",items:{anyOf:[{type:"string"},{$ref:"#/definitions/FileReference"}]},description:"WordPress plugins to install and activate",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},siteOptions:{type:"object",additionalProperties:{type:"string"},properties:{blogname:{type:"string",description:"The site title"}},description:"WordPress site options to define",deprecated:"This experimental option will change without warning.\nUse `steps` instead."},login:{anyOf:[{type:"boolean"},{type:"object",properties:{username:{type:"string"},password:{type:"string"}},required:["username","password"],additionalProperties:!1}],description:"User to log in as. If true, logs the user in as admin/password."},phpExtensionBundles:{type:"array",items:{$ref:"#/definitions/SupportedPHPExtensionBundle"},description:"The PHP extensions to use."},steps:{type:"array",items:{anyOf:[{$ref:"#/definitions/StepDefinition"},{type:"string"},{not:{}},{type:"boolean",const:!1},{type:"null"}]},description:"The steps to run after every other operation in this Blueprint was executed."},$schema:{type:"string"}},additionalProperties:!1},SupportedPHPVersion:{type:"string",enum:["8.3","8.2","8.1","8.0","7.4","7.3","7.2","7.1","7.0"]},FileReference:{anyOf:[{$ref:"#/definitions/VFSReference"},{$ref:"#/definitions/LiteralReference"},{$ref:"#/definitions/CoreThemeReference"},{$ref:"#/definitions/CorePluginReference"},{$ref:"#/definitions/UrlReference"}]},VFSReference:{type:"object",properties:{resource:{type:"string",const:"vfs",description:"Identifies the file resource as Virtual File System (VFS)"},path:{type:"string",description:"The path to the file in the VFS"}},required:["resource","path"],additionalProperties:!1},LiteralReference:{type:"object",properties:{resource:{type:"string",const:"literal",description:"Identifies the file resource as a literal file"},name:{type:"string",description:"The name of the file"},contents:{anyOf:[{type:"string"},{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}],description:"The contents of the file"}},required:["resource","name","contents"],additionalProperties:!1},CoreThemeReference:{type:"object",properties:{resource:{type:"string",const:"wordpress.org/themes",description:"Identifies the file resource as a WordPress Core theme"},slug:{type:"string",description:"The slug of the WordPress Core theme"}},required:["resource","slug"],additionalProperties:!1},CorePluginReference:{type:"object",properties:{resource:{type:"string",const:"wordpress.org/plugins",description:"Identifies the file resource as a WordPress Core plugin"},slug:{type:"string",description:"The slug of the WordPress Core plugin"}},required:["resource","slug"],additionalProperties:!1},UrlReference:{type:"object",properties:{resource:{type:"string",const:"url",description:"Identifies the file resource as a URL"},url:{type:"string",description:"The URL of the file"},caption:{type:"string",description:"Optional caption for displaying a progress message"}},required:["resource","url"],additionalProperties:!1},SupportedPHPExtensionBundle:{type:"string",const:"kitchen-sink"},StepDefinition:{type:"object",discriminator:{propertyName:"step"},required:["step"],oneOf:[{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"activatePlugin"},pluginPath:{type:"string",description:"Path to the plugin directory as absolute path (/wordpress/wp-content/plugins/plugin-name); or the plugin entry file relative to the plugins directory (plugin-name/plugin-name.php)."},pluginName:{type:"string",description:"Optional. Plugin name to display in the progress bar."}},required:["pluginPath","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"activateTheme"},themeFolderName:{type:"string",description:"The name of the theme folder inside wp-content/themes/"}},required:["step","themeFolderName"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"applyWordPressPatches"},siteUrl:{type:"string"},wordpressPath:{type:"string"},addPhpInfo:{type:"boolean"},patchSecrets:{type:"boolean"},disableSiteHealth:{type:"boolean"},disableWpNewBlogNotification:{type:"boolean"},makeEditorFrameControlled:{type:"boolean"},prepareForRunningInsideWebBrowser:{type:"boolean"},addFetchNetworkTransport:{type:"boolean"}},required:["step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"cp"},fromPath:{type:"string",description:"Source path"},toPath:{type:"string",description:"Target path"}},required:["fromPath","step","toPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"defineWpConfigConsts"},consts:{type:"object",additionalProperties:{},description:"The constants to define"},method:{type:"string",enum:["rewrite-wp-config","define-before-run"],description:`The method of defining the constants. Possible values are:
|
|
877
|
+
|
|
878
|
+
- rewrite-wp-config: Default. Rewrites the wp-config.php file to explicitly call define() with the requested name and value. This method alters the file on the disk, but it doesn't conflict with existing define() calls in wp-config.php.
|
|
879
|
+
- define-before-run: Defines the constant before running the requested script. It doesn't alter any files on the disk, but constants defined this way may conflict with existing define() calls in wp-config.php.`},virtualize:{type:"boolean",deprecated:`This option is noop and will be removed in a future version.
|
|
539
880
|
This option is only kept in here to avoid breaking Blueprint schema validation
|
|
540
|
-
for existing apps using this option.`}},required:["consts","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"defineSiteUrl"},siteUrl:{type:"string",description:"The URL"}},required:["siteUrl","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"importFile"},file:{$ref:"#/definitions/FileReference",description:"The file to import"}},required:["file","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"importWordPressFiles"},wordPressFilesZip:{$ref:"#/definitions/FileReference",description:"The zip file containing the top-level WordPress files and directories."},pathInZip:{type:"string",description:"The path inside the zip file where the WordPress files are."}},required:["step","wordPressFilesZip"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"installPlugin",description:"The step identifier."},pluginZipFile:{$ref:"#/definitions/FileReference",description:"The plugin zip file to install."},options:{$ref:"#/definitions/InstallPluginOptions",description:"Optional installation options."}},required:["pluginZipFile","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"installTheme",description:"The step identifier."},themeZipFile:{$ref:"#/definitions/FileReference",description:"The theme zip file to install."},options:{type:"object",properties:{activate:{type:"boolean",description:"Whether to activate the theme after installing it."}},additionalProperties:!1,description:"Optional installation options."}},required:["step","themeZipFile"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"login"},username:{type:"string",description:"The user to log in as. Defaults to 'admin'."},password:{type:"string",description:"The password to log in with. Defaults to 'password'."}},required:["step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"mkdir"},path:{type:"string",description:"The path of the directory you want to create"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"mv"},fromPath:{type:"string",description:"Source path"},toPath:{type:"string",description:"Target path"}},required:["fromPath","step","toPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"request"},request:{$ref:"#/definitions/PHPRequest",description:"Request details (See /wordpress-playground/api/universal/interface/PHPRequest)"}},required:["request","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"rm"},path:{type:"string",description:"The path to remove"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"rmdir"},path:{type:"string",description:"The path to remove"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runPHP",description:"The step identifier."},code:{type:"string",description:"The PHP code to run."}},required:["code","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runPHPWithOptions"},options:{$ref:"#/definitions/PHPRunOptions",description:"Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions)"}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runWpInstallationWizard"},options:{$ref:"#/definitions/WordPressInstallationOptions"}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runSql",description:"The step identifier."},sql:{$ref:"#/definitions/FileReference",description:"The SQL to run. Each non-empty line must contain a valid SQL query."}},required:["sql","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"setPhpIniEntry"},key:{type:"string",description:'Entry name e.g. "display_errors"'},value:{type:"string",description:'Entry value as a string e.g. "1"'}},required:["key","step","value"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"setSiteOptions",description:'The name of the step. Must be "setSiteOptions".'},options:{type:"object",additionalProperties:{},description:"The options to set on the site."}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"unzip"},zipPath:{type:"string",description:"The zip file to extract"},extractToPath:{type:"string",description:"The path to extract the zip file to"}},required:["extractToPath","step","zipPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"updateUserMeta"},meta:{type:"object",additionalProperties:{},description:'An object of user meta values to set, e.g. { "first_name": "John" }'},userId:{type:"number",description:"User ID"}},required:["meta","step","userId"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"writeFile"},path:{type:"string",description:"The path of the file to write to"},data:{anyOf:[{$ref:"#/definitions/FileReference"},{type:"string"},{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}],description:"The data to write"}},required:["data","path","step"]}]},InstallPluginOptions:{type:"object",properties:{activate:{type:"boolean",description:"Whether to activate the plugin after installing it."}},additionalProperties:!1},PHPRequest:{type:"object",properties:{method:{$ref:"#/definitions/HTTPMethod",description:"Request method. Default: `GET`."},url:{type:"string",description:"Request path or absolute URL."},headers:{$ref:"#/definitions/PHPRequestHeaders",description:"Request headers."},files:{type:"object",additionalProperties:{type:"object",properties:{size:{type:"number"},type:{type:"string"},lastModified:{type:"number"},name:{type:"string"},webkitRelativePath:{type:"string"}},required:["lastModified","name","size","type","webkitRelativePath"],additionalProperties:!1},description:"Uploaded files"},body:{type:"string",description:"Request body without the files."},formData:{type:"object",additionalProperties:{},description:"Form data. If set, the request body will be ignored and the content-type header will be set to `application/x-www-form-urlencoded`."}},required:["url"],additionalProperties:!1},HTTPMethod:{type:"string",enum:["GET","POST","HEAD","OPTIONS","PATCH","PUT","DELETE"]},PHPRequestHeaders:{type:"object",additionalProperties:{type:"string"}},PHPRunOptions:{type:"object",properties:{relativeUri:{type:"string",description:"Request path following the domain:port part."},scriptPath:{type:"string",description:"Path of the .php file to execute."},protocol:{type:"string",description:"Request protocol."},method:{$ref:"#/definitions/HTTPMethod",description:"Request method. Default: `GET`."},headers:{$ref:"#/definitions/PHPRequestHeaders",description:"Request headers."},body:{type:"string",description:"Request body without the files."},fileInfos:{type:"array",items:{$ref:"#/definitions/FileInfo"},description:"Uploaded files."},code:{type:"string",description:"The code snippet to eval instead of a php file."}},additionalProperties:!1},FileInfo:{type:"object",properties:{key:{type:"string"},name:{type:"string"},type:{type:"string"},data:{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}},required:["key","name","type","data"],additionalProperties:!1},WordPressInstallationOptions:{type:"object",properties:{adminUsername:{type:"string"},adminPassword:{type:"string"}},additionalProperties:!1}},xd={$schema:Hd,$ref:Vd,definitions:Wd};function Bd(t,{progress:e=new An,semaphore:r=new kn({concurrency:3}),onStepCompleted:n=()=>{}}={}){var u,f,y;if(t={...t,steps:(t.steps||[]).filter(Zd)},t.constants&&t.steps.unshift({step:"defineWpConfigConsts",consts:t.constants}),t.siteOptions&&t.steps.unshift({step:"setSiteOptions",options:t.siteOptions}),t.plugins){const R=t.plugins.map(O=>typeof O=="string"?O.startsWith("https://")?{resource:"url",url:O}:{resource:"wordpress.org/plugins",slug:O}:O).map(O=>({step:"installPlugin",pluginZipFile:O}));t.steps.unshift(...R)}t.login&&t.steps.push({step:"login",...t.login===!0?{username:"admin",password:"password"}:t.login});const{valid:s,errors:i}=Gd(t);if(!s){const R=new Error(`Invalid blueprint: ${i[0].message} at ${i[0].instancePath}`);throw R.errors=i,R}const a=t.steps||[],l=a.reduce((R,O)=>{var v;return R+(((v=O.progress)==null?void 0:v.weight)||1)},0),p=a.map(R=>Qd(R,{semaphore:r,rootProgressTracker:e,totalProgressWeight:l}));return{versions:{php:Jd((u=t.preferredVersions)==null?void 0:u.php,Li,Ea),wp:((f=t.preferredVersions)==null?void 0:f.wp)||"latest"},phpExtensions:Yd([],t.phpExtensionBundles||[]),features:{networking:((y=t.features)==null?void 0:y.networking)??!1},run:async R=>{try{for(const{resources:O}of p)for(const v of O)v.setPlayground(R),v.isAsync&&v.resolve();for(const{run:O,step:v}of p){const S=await O(R);n(S,v)}}finally{try{await R.goTo(t.landingPage||"/")}catch{}e.finish()}}}}const Kd=new zd({discriminator:!0});let Ir;function Gd(t){var s;Ir=Kd.compile(xd);const e=Ir(t);if(e)return{valid:e};const r=new Set;for(const i of Ir.errors)i.schemaPath.startsWith("#/properties/steps/items/anyOf")||r.add(i.instancePath);const n=(s=Ir.errors)==null?void 0:s.filter(i=>!(i.schemaPath.startsWith("#/properties/steps/items/anyOf")&&r.has(i.instancePath)));return{valid:e,errors:n}}function Jd(t,e,r){return t&&e.includes(t)?t:r}function Yd(t,e){const r=zi.filter(s=>t.includes(s)),n=e.flatMap(s=>s in Hs?Hs[s]:[]);return Array.from(new Set([...r,...n]))}function Zd(t){return!!(typeof t=="object"&&t)}function Qd(t,{semaphore:e,rootProgressTracker:r,totalProgressWeight:n}){var f;const s=r.stage((((f=t.progress)==null?void 0:f.weight)||1)/n),i={};for(const y of Object.keys(t)){let R=t[y];Ua(R)&&(R=Pt.create(R,{semaphore:e})),i[y]=R}const a=async y=>{var R;try{return s.fillSlowly(),await da[t.step](y,await Xd(i),{tracker:s,initialCaption:(R=t.progress)==null?void 0:R.caption})}finally{s.finish()}},l=di(i),p=di(i).filter(y=>y.isAsync),u=1/(p.length+1);for(const y of p)y.progress=s.stage(u);return{run:a,step:t,resources:l}}function di(t){const e=[];for(const r in t){const n=t[r];n instanceof Pt&&e.push(n)}return e}async function Xd(t){const e={};for(const r in t){const n=t[r];n instanceof Pt?e[r]=await n.resolve():e[r]=n}return e}async function ep(t,e){await t.run(e)}function tp(){}exports.activatePlugin=On;exports.activateTheme=Nn;exports.applyWordPressPatches=hi;exports.compileBlueprint=Bd;exports.cp=bi;exports.defineSiteUrl=Ti;exports.defineWpConfigConsts=qt;exports.exportWXR=Ni;exports.exportWXZ=Ci;exports.importFile=Ri;exports.importWordPressFiles=Oi;exports.installPlugin=ji;exports.installTheme=Ii;exports.login=Ai;exports.mkdir=Ei;exports.mv=Pi;exports.request=wi;exports.rm=Cn;exports.rmdir=Si;exports.runBlueprintSteps=ep;exports.runPHP=yi;exports.runPHPWithOptions=gi;exports.runSql=_i;exports.runWpInstallationWizard=Di;exports.setPhpIniEntry=vi;exports.setPluginProxyURL=tp;exports.setSiteOptions=Fi;exports.unzip=on;exports.updateUserMeta=qi;exports.wpContentFilesExcludedFromExport=Rn;exports.writeFile=In;exports.zipWpContent=Ui;
|
|
881
|
+
for existing apps using this option.`}},required:["consts","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"defineSiteUrl"},siteUrl:{type:"string",description:"The URL"}},required:["siteUrl","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"importFile"},file:{$ref:"#/definitions/FileReference",description:"The file to import"}},required:["file","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"importWordPressFiles"},wordPressFilesZip:{$ref:"#/definitions/FileReference",description:"The zip file containing the top-level WordPress files and directories."},pathInZip:{type:"string",description:"The path inside the zip file where the WordPress files are."}},required:["step","wordPressFilesZip"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"installPlugin",description:"The step identifier."},pluginZipFile:{$ref:"#/definitions/FileReference",description:"The plugin zip file to install."},options:{$ref:"#/definitions/InstallPluginOptions",description:"Optional installation options."}},required:["pluginZipFile","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"installTheme",description:"The step identifier."},themeZipFile:{$ref:"#/definitions/FileReference",description:"The theme zip file to install."},options:{type:"object",properties:{activate:{type:"boolean",description:"Whether to activate the theme after installing it."}},additionalProperties:!1,description:"Optional installation options."}},required:["step","themeZipFile"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"login"},username:{type:"string",description:"The user to log in as. Defaults to 'admin'."},password:{type:"string",description:"The password to log in with. Defaults to 'password'."}},required:["step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"mkdir"},path:{type:"string",description:"The path of the directory you want to create"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"mv"},fromPath:{type:"string",description:"Source path"},toPath:{type:"string",description:"Target path"}},required:["fromPath","step","toPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"request"},request:{$ref:"#/definitions/PHPRequest",description:"Request details (See /wordpress-playground/api/universal/interface/PHPRequest)"}},required:["request","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"rm"},path:{type:"string",description:"The path to remove"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"rmdir"},path:{type:"string",description:"The path to remove"}},required:["path","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runPHP",description:"The step identifier."},code:{type:"string",description:"The PHP code to run."}},required:["code","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runPHPWithOptions"},options:{$ref:"#/definitions/PHPRunOptions",description:"Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions)"}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runWpInstallationWizard"},options:{$ref:"#/definitions/WordPressInstallationOptions"}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"runSql",description:"The step identifier."},sql:{$ref:"#/definitions/FileReference",description:"The SQL to run. Each non-empty line must contain a valid SQL query."}},required:["sql","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"setPhpIniEntry"},key:{type:"string",description:'Entry name e.g. "display_errors"'},value:{type:"string",description:'Entry value as a string e.g. "1"'}},required:["key","step","value"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"setSiteOptions",description:'The name of the step. Must be "setSiteOptions".'},options:{type:"object",additionalProperties:{},description:"The options to set on the site."}},required:["options","step"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"unzip"},zipPath:{type:"string",description:"The zip file to extract"},extractToPath:{type:"string",description:"The path to extract the zip file to"}},required:["extractToPath","step","zipPath"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"updateUserMeta"},meta:{type:"object",additionalProperties:{},description:'An object of user meta values to set, e.g. { "first_name": "John" }'},userId:{type:"number",description:"User ID"}},required:["meta","step","userId"]},{type:"object",additionalProperties:!1,properties:{progress:{type:"object",properties:{weight:{type:"number"},caption:{type:"string"}},additionalProperties:!1},step:{type:"string",const:"writeFile"},path:{type:"string",description:"The path of the file to write to"},data:{anyOf:[{$ref:"#/definitions/FileReference"},{type:"string"},{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}],description:"The data to write"}},required:["data","path","step"]}]},InstallPluginOptions:{type:"object",properties:{activate:{type:"boolean",description:"Whether to activate the plugin after installing it."}},additionalProperties:!1},PHPRequest:{type:"object",properties:{method:{$ref:"#/definitions/HTTPMethod",description:"Request method. Default: `GET`."},url:{type:"string",description:"Request path or absolute URL."},headers:{$ref:"#/definitions/PHPRequestHeaders",description:"Request headers."},files:{type:"object",additionalProperties:{type:"object",properties:{size:{type:"number"},type:{type:"string"},lastModified:{type:"number"},name:{type:"string"},webkitRelativePath:{type:"string"}},required:["lastModified","name","size","type","webkitRelativePath"],additionalProperties:!1},description:"Uploaded files"},body:{type:"string",description:"Request body without the files."},formData:{type:"object",additionalProperties:{},description:"Form data. If set, the request body will be ignored and the content-type header will be set to `application/x-www-form-urlencoded`."}},required:["url"],additionalProperties:!1},HTTPMethod:{type:"string",enum:["GET","POST","HEAD","OPTIONS","PATCH","PUT","DELETE"]},PHPRequestHeaders:{type:"object",additionalProperties:{type:"string"}},PHPRunOptions:{type:"object",properties:{relativeUri:{type:"string",description:"Request path following the domain:port part."},scriptPath:{type:"string",description:"Path of the .php file to execute."},protocol:{type:"string",description:"Request protocol."},method:{$ref:"#/definitions/HTTPMethod",description:"Request method. Default: `GET`."},headers:{$ref:"#/definitions/PHPRequestHeaders",description:"Request headers."},body:{type:"string",description:"Request body without the files."},fileInfos:{type:"array",items:{$ref:"#/definitions/FileInfo"},description:"Uploaded files."},code:{type:"string",description:"The code snippet to eval instead of a php file."}},additionalProperties:!1},FileInfo:{type:"object",properties:{key:{type:"string"},name:{type:"string"},type:{type:"string"},data:{type:"object",properties:{BYTES_PER_ELEMENT:{type:"number"},buffer:{type:"object",properties:{byteLength:{type:"number"}},required:["byteLength"],additionalProperties:!1},byteLength:{type:"number"},byteOffset:{type:"number"},length:{type:"number"}},required:["BYTES_PER_ELEMENT","buffer","byteLength","byteOffset","length"],additionalProperties:{type:"number"}}},required:["key","name","type","data"],additionalProperties:!1},WordPressInstallationOptions:{type:"object",properties:{adminUsername:{type:"string"},adminPassword:{type:"string"}},additionalProperties:!1}},Kd={$schema:xd,$ref:Bd,definitions:Gd};function Jd(t,{progress:e=new An,semaphore:r=new jn({concurrency:3}),onStepCompleted:n=()=>{}}={}){var u,f,y;if(t={...t,steps:(t.steps||[]).filter(ep)},t.constants&&t.steps.unshift({step:"defineWpConfigConsts",consts:t.constants}),t.siteOptions&&t.steps.unshift({step:"setSiteOptions",options:t.siteOptions}),t.plugins){const k=t.plugins.map(R=>typeof R=="string"?R.startsWith("https://")?{resource:"url",url:R}:{resource:"wordpress.org/plugins",slug:R}:R).map(R=>({step:"installPlugin",pluginZipFile:R}));t.steps.unshift(...k)}t.login&&t.steps.push({step:"login",...t.login===!0?{username:"admin",password:"password"}:t.login});const{valid:s,errors:i}=Qd(t);if(!s){const k=new Error(`Invalid blueprint: ${i[0].message} at ${i[0].instancePath}`);throw k.errors=i,k}const a=t.steps||[],l=a.reduce((k,R)=>{var w;return k+(((w=R.progress)==null?void 0:w.weight)||1)},0),p=a.map(k=>tp(k,{semaphore:r,rootProgressTracker:e,totalProgressWeight:l}));return{versions:{php:Zd((u=t.preferredVersions)==null?void 0:u.php,Li,Ta),wp:((f=t.preferredVersions)==null?void 0:f.wp)||"latest"},phpExtensions:Xd([],t.phpExtensionBundles||[]),features:{networking:((y=t.features)==null?void 0:y.networking)??!1},run:async k=>{try{for(const{resources:R}of p)for(const w of R)w.setPlayground(k),w.isAsync&&w.resolve();for(const{run:R,step:w}of p){const S=await R(k);n(S,w)}}finally{try{await k.goTo(t.landingPage||"/")}catch{}e.finish()}}}}const Yd=new Wd({discriminator:!0});let jr;function Qd(t){var s;jr=Yd.compile(Kd);const e=jr(t);if(e)return{valid:e};const r=new Set;for(const i of jr.errors)i.schemaPath.startsWith("#/properties/steps/items/anyOf")||r.add(i.instancePath);const n=(s=jr.errors)==null?void 0:s.filter(i=>!(i.schemaPath.startsWith("#/properties/steps/items/anyOf")&&r.has(i.instancePath)));return{valid:e,errors:n}}function Zd(t,e,r){return t&&e.includes(t)?t:r}function Xd(t,e){const r=zi.filter(s=>t.includes(s)),n=e.flatMap(s=>s in Vs?Vs[s]:[]);return Array.from(new Set([...r,...n]))}function ep(t){return!!(typeof t=="object"&&t)}function tp(t,{semaphore:e,rootProgressTracker:r,totalProgressWeight:n}){var f;const s=r.stage((((f=t.progress)==null?void 0:f.weight)||1)/n),i={};for(const y of Object.keys(t)){let k=t[y];Ha(k)&&(k=Pt.create(k,{semaphore:e})),i[y]=k}const a=async y=>{var k;try{return s.fillSlowly(),await fa[t.step](y,await rp(i),{tracker:s,initialCaption:(k=t.progress)==null?void 0:k.caption})}finally{s.finish()}},l=di(i),p=di(i).filter(y=>y.isAsync),u=1/(p.length+1);for(const y of p)y.progress=s.stage(u);return{run:a,step:t,resources:l}}function di(t){const e=[];for(const r in t){const n=t[r];n instanceof Pt&&e.push(n)}return e}async function rp(t){const e={};for(const r in t){const n=t[r];n instanceof Pt?e[r]=await n.resolve():e[r]=n}return e}async function np(t,e){await t.run(e)}function sp(){}exports.activatePlugin=Cn;exports.activateTheme=Nn;exports.applyWordPressPatches=hi;exports.compileBlueprint=Jd;exports.cp=vi;exports.defineSiteUrl=Si;exports.defineWpConfigConsts=qt;exports.exportWXR=Oi;exports.exportWXZ=Ci;exports.importFile=Ti;exports.importWordPressFiles=Ri;exports.installPlugin=ji;exports.installTheme=Ii;exports.login=Di;exports.mkdir=Pi;exports.mv=bi;exports.request=wi;exports.rm=In;exports.rmdir=Ei;exports.runBlueprintSteps=np;exports.runPHP=yi;exports.runPHPWithOptions=gi;exports.runSql=$i;exports.runWpInstallationWizard=Ai;exports.setPhpIniEntry=_i;exports.setPluginProxyURL=sp;exports.setSiteOptions=Fi;exports.unzip=an;exports.updateUserMeta=qi;exports.wpContentFilesExcludedFromExport=On;exports.writeFile=Dn;exports.zipWpContent=Ui;
|