@wp-playground/blueprints 3.1.19 → 3.1.21

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.
@@ -160,17 +160,24 @@ const schema11 = {
160
160
  },
161
161
  BlueprintPHPVersion: {
162
162
  anyOf: [
163
- { $ref: '#/definitions/SupportedPHPVersion' },
163
+ { $ref: '#/definitions/AllPHPVersion' },
164
164
  { type: 'string', const: '7.2' },
165
165
  { type: 'string', const: '7.3' },
166
166
  ],
167
167
  description:
168
168
  'PHP versions accepted in Blueprint schema. Includes deprecated versions (7.2, 7.3) which are automatically upgraded to 7.4 during compilation.',
169
169
  },
170
+ AllPHPVersion: {
171
+ anyOf: [
172
+ { $ref: '#/definitions/SupportedPHPVersion' },
173
+ { $ref: '#/definitions/LegacyPHPVersion' },
174
+ ],
175
+ },
170
176
  SupportedPHPVersion: {
171
177
  type: 'string',
172
178
  enum: ['8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4'],
173
179
  },
180
+ LegacyPHPVersion: { type: 'string', enum: ['5.2'] },
174
181
  ExtraLibrary: { type: 'string', const: 'wp-cli' },
175
182
  PHPConstants: {
176
183
  type: 'object',
@@ -1561,15 +1568,15 @@ const schema12 = {
1561
1568
  description:
1562
1569
  'The Blueprint declaration, typically stored in a blueprint.json file.',
1563
1570
  };
1564
- const schema15 = { type: 'string', const: 'wp-cli' };
1565
- const schema16 = {
1571
+ const schema17 = { type: 'string', const: 'wp-cli' };
1572
+ const schema18 = {
1566
1573
  type: 'object',
1567
1574
  additionalProperties: { type: ['string', 'boolean', 'number'] },
1568
1575
  };
1569
1576
  const func2 = Object.prototype.hasOwnProperty;
1570
1577
  const schema13 = {
1571
1578
  anyOf: [
1572
- { $ref: '#/definitions/SupportedPHPVersion' },
1579
+ { $ref: '#/definitions/AllPHPVersion' },
1573
1580
  { type: 'string', const: '7.2' },
1574
1581
  { type: 'string', const: '7.3' },
1575
1582
  ],
@@ -1577,10 +1584,17 @@ const schema13 = {
1577
1584
  'PHP versions accepted in Blueprint schema. Includes deprecated versions (7.2, 7.3) which are automatically upgraded to 7.4 during compilation.',
1578
1585
  };
1579
1586
  const schema14 = {
1587
+ anyOf: [
1588
+ { $ref: '#/definitions/SupportedPHPVersion' },
1589
+ { $ref: '#/definitions/LegacyPHPVersion' },
1590
+ ],
1591
+ };
1592
+ const schema15 = {
1580
1593
  type: 'string',
1581
1594
  enum: ['8.5', '8.4', '8.3', '8.2', '8.1', '8.0', '7.4'],
1582
1595
  };
1583
- function validate12(
1596
+ const schema16 = { type: 'string', enum: ['5.2'] };
1597
+ function validate13(
1584
1598
  data,
1585
1599
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
1586
1600
  ) {
@@ -1619,7 +1633,7 @@ function validate12(
1619
1633
  instancePath,
1620
1634
  schemaPath: '#/definitions/SupportedPHPVersion/enum',
1621
1635
  keyword: 'enum',
1622
- params: { allowedValues: schema14.enum },
1636
+ params: { allowedValues: schema15.enum },
1623
1637
  message: 'must be equal to one of the allowed values',
1624
1638
  };
1625
1639
  if (vErrors === null) {
@@ -1636,7 +1650,7 @@ function validate12(
1636
1650
  if (typeof data !== 'string') {
1637
1651
  const err2 = {
1638
1652
  instancePath,
1639
- schemaPath: '#/anyOf/1/type',
1653
+ schemaPath: '#/definitions/LegacyPHPVersion/type',
1640
1654
  keyword: 'type',
1641
1655
  params: { type: 'string' },
1642
1656
  message: 'must be string',
@@ -1648,8 +1662,97 @@ function validate12(
1648
1662
  }
1649
1663
  errors++;
1650
1664
  }
1651
- if ('7.2' !== data) {
1665
+ if (!(data === '5.2')) {
1652
1666
  const err3 = {
1667
+ instancePath,
1668
+ schemaPath: '#/definitions/LegacyPHPVersion/enum',
1669
+ keyword: 'enum',
1670
+ params: { allowedValues: schema16.enum },
1671
+ message: 'must be equal to one of the allowed values',
1672
+ };
1673
+ if (vErrors === null) {
1674
+ vErrors = [err3];
1675
+ } else {
1676
+ vErrors.push(err3);
1677
+ }
1678
+ errors++;
1679
+ }
1680
+ var _valid0 = _errs4 === errors;
1681
+ valid0 = valid0 || _valid0;
1682
+ }
1683
+ if (!valid0) {
1684
+ const err4 = {
1685
+ instancePath,
1686
+ schemaPath: '#/anyOf',
1687
+ keyword: 'anyOf',
1688
+ params: {},
1689
+ message: 'must match a schema in anyOf',
1690
+ };
1691
+ if (vErrors === null) {
1692
+ vErrors = [err4];
1693
+ } else {
1694
+ vErrors.push(err4);
1695
+ }
1696
+ errors++;
1697
+ validate13.errors = vErrors;
1698
+ return false;
1699
+ } else {
1700
+ errors = _errs0;
1701
+ if (vErrors !== null) {
1702
+ if (_errs0) {
1703
+ vErrors.length = _errs0;
1704
+ } else {
1705
+ vErrors = null;
1706
+ }
1707
+ }
1708
+ }
1709
+ validate13.errors = vErrors;
1710
+ return errors === 0;
1711
+ }
1712
+ function validate12(
1713
+ data,
1714
+ { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
1715
+ ) {
1716
+ let vErrors = null;
1717
+ let errors = 0;
1718
+ const _errs0 = errors;
1719
+ let valid0 = false;
1720
+ const _errs1 = errors;
1721
+ if (
1722
+ !validate13(data, {
1723
+ instancePath,
1724
+ parentData,
1725
+ parentDataProperty,
1726
+ rootData,
1727
+ })
1728
+ ) {
1729
+ vErrors =
1730
+ vErrors === null
1731
+ ? validate13.errors
1732
+ : vErrors.concat(validate13.errors);
1733
+ errors = vErrors.length;
1734
+ }
1735
+ var _valid0 = _errs1 === errors;
1736
+ valid0 = valid0 || _valid0;
1737
+ if (!valid0) {
1738
+ const _errs2 = errors;
1739
+ if (typeof data !== 'string') {
1740
+ const err0 = {
1741
+ instancePath,
1742
+ schemaPath: '#/anyOf/1/type',
1743
+ keyword: 'type',
1744
+ params: { type: 'string' },
1745
+ message: 'must be string',
1746
+ };
1747
+ if (vErrors === null) {
1748
+ vErrors = [err0];
1749
+ } else {
1750
+ vErrors.push(err0);
1751
+ }
1752
+ errors++;
1753
+ }
1754
+ if ('7.2' !== data) {
1755
+ const err1 = {
1653
1756
  instancePath,
1654
1757
  schemaPath: '#/anyOf/1/const',
1655
1758
  keyword: 'const',
@@ -1657,18 +1760,18 @@ function validate12(
1657
1760
  message: 'must be equal to constant',
1658
1761
  };
1659
1762
  if (vErrors === null) {
1660
- vErrors = [err3];
1763
+ vErrors = [err1];
1661
1764
  } else {
1662
- vErrors.push(err3);
1765
+ vErrors.push(err1);
1663
1766
  }
1664
1767
  errors++;
1665
1768
  }
1666
- var _valid0 = _errs4 === errors;
1769
+ var _valid0 = _errs2 === errors;
1667
1770
  valid0 = valid0 || _valid0;
1668
1771
  if (!valid0) {
1669
- const _errs6 = errors;
1772
+ const _errs4 = errors;
1670
1773
  if (typeof data !== 'string') {
1671
- const err4 = {
1774
+ const err2 = {
1672
1775
  instancePath,
1673
1776
  schemaPath: '#/anyOf/2/type',
1674
1777
  keyword: 'type',
@@ -1676,14 +1779,14 @@ function validate12(
1676
1779
  message: 'must be string',
1677
1780
  };
1678
1781
  if (vErrors === null) {
1679
- vErrors = [err4];
1782
+ vErrors = [err2];
1680
1783
  } else {
1681
- vErrors.push(err4);
1784
+ vErrors.push(err2);
1682
1785
  }
1683
1786
  errors++;
1684
1787
  }
1685
1788
  if ('7.3' !== data) {
1686
- const err5 = {
1789
+ const err3 = {
1687
1790
  instancePath,
1688
1791
  schemaPath: '#/anyOf/2/const',
1689
1792
  keyword: 'const',
@@ -1691,18 +1794,18 @@ function validate12(
1691
1794
  message: 'must be equal to constant',
1692
1795
  };
1693
1796
  if (vErrors === null) {
1694
- vErrors = [err5];
1797
+ vErrors = [err3];
1695
1798
  } else {
1696
- vErrors.push(err5);
1799
+ vErrors.push(err3);
1697
1800
  }
1698
1801
  errors++;
1699
1802
  }
1700
- var _valid0 = _errs6 === errors;
1803
+ var _valid0 = _errs4 === errors;
1701
1804
  valid0 = valid0 || _valid0;
1702
1805
  }
1703
1806
  }
1704
1807
  if (!valid0) {
1705
- const err6 = {
1808
+ const err4 = {
1706
1809
  instancePath,
1707
1810
  schemaPath: '#/anyOf',
1708
1811
  keyword: 'anyOf',
@@ -1710,9 +1813,9 @@ function validate12(
1710
1813
  message: 'must match a schema in anyOf',
1711
1814
  };
1712
1815
  if (vErrors === null) {
1713
- vErrors = [err6];
1816
+ vErrors = [err4];
1714
1817
  } else {
1715
- vErrors.push(err6);
1818
+ vErrors.push(err4);
1716
1819
  }
1717
1820
  errors++;
1718
1821
  validate12.errors = vErrors;
@@ -1730,7 +1833,7 @@ function validate12(
1730
1833
  validate12.errors = vErrors;
1731
1834
  return errors === 0;
1732
1835
  }
1733
- const schema17 = {
1836
+ const schema19 = {
1734
1837
  anyOf: [
1735
1838
  { $ref: '#/definitions/VFSReference' },
1736
1839
  { $ref: '#/definitions/LiteralReference' },
@@ -1741,7 +1844,7 @@ const schema17 = {
1741
1844
  { $ref: '#/definitions/ZipWrapperReference' },
1742
1845
  ],
1743
1846
  };
1744
- const schema18 = {
1847
+ const schema20 = {
1745
1848
  type: 'object',
1746
1849
  properties: {
1747
1850
  resource: {
@@ -1758,7 +1861,7 @@ const schema18 = {
1758
1861
  required: ['resource', 'path'],
1759
1862
  additionalProperties: false,
1760
1863
  };
1761
- const schema19 = {
1864
+ const schema21 = {
1762
1865
  type: 'object',
1763
1866
  properties: {
1764
1867
  resource: {
@@ -1800,7 +1903,7 @@ const schema19 = {
1800
1903
  required: ['resource', 'name', 'contents'],
1801
1904
  additionalProperties: false,
1802
1905
  };
1803
- const schema20 = {
1906
+ const schema22 = {
1804
1907
  type: 'object',
1805
1908
  properties: {
1806
1909
  resource: {
@@ -1817,7 +1920,7 @@ const schema20 = {
1817
1920
  required: ['resource', 'slug'],
1818
1921
  additionalProperties: false,
1819
1922
  };
1820
- const schema21 = {
1923
+ const schema23 = {
1821
1924
  type: 'object',
1822
1925
  properties: {
1823
1926
  resource: {
@@ -1834,7 +1937,7 @@ const schema21 = {
1834
1937
  required: ['resource', 'slug'],
1835
1938
  additionalProperties: false,
1836
1939
  };
1837
- const schema22 = {
1940
+ const schema24 = {
1838
1941
  type: 'object',
1839
1942
  properties: {
1840
1943
  resource: {
@@ -1851,7 +1954,7 @@ const schema22 = {
1851
1954
  required: ['resource', 'url'],
1852
1955
  additionalProperties: false,
1853
1956
  };
1854
- const schema23 = {
1957
+ const schema25 = {
1855
1958
  type: 'object',
1856
1959
  properties: {
1857
1960
  resource: {
@@ -1867,7 +1970,7 @@ const schema23 = {
1867
1970
  required: ['resource', 'path'],
1868
1971
  additionalProperties: false,
1869
1972
  };
1870
- const schema24 = {
1973
+ const schema26 = {
1871
1974
  type: 'object',
1872
1975
  properties: {
1873
1976
  resource: {
@@ -1891,14 +1994,14 @@ const schema24 = {
1891
1994
  required: ['resource', 'inner'],
1892
1995
  additionalProperties: false,
1893
1996
  };
1894
- const wrapper0 = { validate: validate14 };
1895
- const schema25 = {
1997
+ const wrapper0 = { validate: validate16 };
1998
+ const schema27 = {
1896
1999
  anyOf: [
1897
2000
  { $ref: '#/definitions/GitDirectoryReference' },
1898
2001
  { $ref: '#/definitions/DirectoryLiteralReference' },
1899
2002
  ],
1900
2003
  };
1901
- const schema26 = {
2004
+ const schema28 = {
1902
2005
  type: 'object',
1903
2006
  properties: {
1904
2007
  resource: {
@@ -1931,11 +2034,11 @@ const schema26 = {
1931
2034
  required: ['resource', 'url', 'ref'],
1932
2035
  additionalProperties: false,
1933
2036
  };
1934
- const schema27 = {
2037
+ const schema29 = {
1935
2038
  type: 'string',
1936
2039
  enum: ['branch', 'tag', 'commit', 'refname'],
1937
2040
  };
1938
- function validate17(
2041
+ function validate19(
1939
2042
  data,
1940
2043
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
1941
2044
  ) {
@@ -1949,7 +2052,7 @@ function validate17(
1949
2052
  (data.url === undefined && (missing0 = 'url')) ||
1950
2053
  (data.ref === undefined && (missing0 = 'ref'))
1951
2054
  ) {
1952
- validate17.errors = [
2055
+ validate19.errors = [
1953
2056
  {
1954
2057
  instancePath,
1955
2058
  schemaPath: '#/required',
@@ -1973,7 +2076,7 @@ function validate17(
1973
2076
  key0 === '.git'
1974
2077
  )
1975
2078
  ) {
1976
- validate17.errors = [
2079
+ validate19.errors = [
1977
2080
  {
1978
2081
  instancePath,
1979
2082
  schemaPath: '#/additionalProperties',
@@ -1991,7 +2094,7 @@ function validate17(
1991
2094
  let data0 = data.resource;
1992
2095
  const _errs2 = errors;
1993
2096
  if (typeof data0 !== 'string') {
1994
- validate17.errors = [
2097
+ validate19.errors = [
1995
2098
  {
1996
2099
  instancePath: instancePath + '/resource',
1997
2100
  schemaPath: '#/properties/resource/type',
@@ -2003,7 +2106,7 @@ function validate17(
2003
2106
  return false;
2004
2107
  }
2005
2108
  if ('git:directory' !== data0) {
2006
- validate17.errors = [
2109
+ validate19.errors = [
2007
2110
  {
2008
2111
  instancePath: instancePath + '/resource',
2009
2112
  schemaPath: '#/properties/resource/const',
@@ -2022,7 +2125,7 @@ function validate17(
2022
2125
  if (data.url !== undefined) {
2023
2126
  const _errs4 = errors;
2024
2127
  if (typeof data.url !== 'string') {
2025
- validate17.errors = [
2128
+ validate19.errors = [
2026
2129
  {
2027
2130
  instancePath: instancePath + '/url',
2028
2131
  schemaPath: '#/properties/url/type',
@@ -2041,7 +2144,7 @@ function validate17(
2041
2144
  if (data.ref !== undefined) {
2042
2145
  const _errs6 = errors;
2043
2146
  if (typeof data.ref !== 'string') {
2044
- validate17.errors = [
2147
+ validate19.errors = [
2045
2148
  {
2046
2149
  instancePath: instancePath + '/ref',
2047
2150
  schemaPath: '#/properties/ref/type',
@@ -2061,7 +2164,7 @@ function validate17(
2061
2164
  let data3 = data.refType;
2062
2165
  const _errs8 = errors;
2063
2166
  if (typeof data3 !== 'string') {
2064
- validate17.errors = [
2167
+ validate19.errors = [
2065
2168
  {
2066
2169
  instancePath:
2067
2170
  instancePath + '/refType',
@@ -2082,7 +2185,7 @@ function validate17(
2082
2185
  data3 === 'refname'
2083
2186
  )
2084
2187
  ) {
2085
- validate17.errors = [
2188
+ validate19.errors = [
2086
2189
  {
2087
2190
  instancePath:
2088
2191
  instancePath + '/refType',
@@ -2091,7 +2194,7 @@ function validate17(
2091
2194
  keyword: 'enum',
2092
2195
  params: {
2093
2196
  allowedValues:
2094
- schema27.enum,
2197
+ schema29.enum,
2095
2198
  },
2096
2199
  message:
2097
2200
  'must be equal to one of the allowed values',
@@ -2107,7 +2210,7 @@ function validate17(
2107
2210
  if (data.path !== undefined) {
2108
2211
  const _errs11 = errors;
2109
2212
  if (typeof data.path !== 'string') {
2110
- validate17.errors = [
2213
+ validate19.errors = [
2111
2214
  {
2112
2215
  instancePath:
2113
2216
  instancePath + '/path',
@@ -2131,7 +2234,7 @@ function validate17(
2131
2234
  typeof data['.git'] !==
2132
2235
  'boolean'
2133
2236
  ) {
2134
- validate17.errors = [
2237
+ validate19.errors = [
2135
2238
  {
2136
2239
  instancePath:
2137
2240
  instancePath +
@@ -2160,7 +2263,7 @@ function validate17(
2160
2263
  }
2161
2264
  }
2162
2265
  } else {
2163
- validate17.errors = [
2266
+ validate19.errors = [
2164
2267
  {
2165
2268
  instancePath,
2166
2269
  schemaPath: '#/type',
@@ -2172,10 +2275,10 @@ function validate17(
2172
2275
  return false;
2173
2276
  }
2174
2277
  }
2175
- validate17.errors = vErrors;
2278
+ validate19.errors = vErrors;
2176
2279
  return errors === 0;
2177
2280
  }
2178
- const schema28 = {
2281
+ const schema30 = {
2179
2282
  type: 'object',
2180
2283
  additionalProperties: false,
2181
2284
  properties: {
@@ -2189,7 +2292,7 @@ const schema28 = {
2189
2292
  },
2190
2293
  required: ['files', 'name', 'resource'],
2191
2294
  };
2192
- const schema29 = {
2295
+ const schema31 = {
2193
2296
  type: 'object',
2194
2297
  additionalProperties: {
2195
2298
  anyOf: [
@@ -2199,8 +2302,8 @@ const schema29 = {
2199
2302
  },
2200
2303
  properties: {},
2201
2304
  };
2202
- const wrapper1 = { validate: validate20 };
2203
- function validate20(
2305
+ const wrapper1 = { validate: validate22 };
2306
+ function validate22(
2204
2307
  data,
2205
2308
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
2206
2309
  ) {
@@ -2251,7 +2354,7 @@ function validate20(
2251
2354
  schemaPath: '#/additionalProperties/anyOf/1/type',
2252
2355
  keyword: 'type',
2253
2356
  params: {
2254
- type: schema29.additionalProperties.anyOf[1]
2357
+ type: schema31.additionalProperties.anyOf[1]
2255
2358
  .type,
2256
2359
  },
2257
2360
  message: 'must be object,string',
@@ -2283,7 +2386,7 @@ function validate20(
2283
2386
  vErrors.push(err1);
2284
2387
  }
2285
2388
  errors++;
2286
- validate20.errors = vErrors;
2389
+ validate22.errors = vErrors;
2287
2390
  return false;
2288
2391
  } else {
2289
2392
  errors = _errs3;
@@ -2301,7 +2404,7 @@ function validate20(
2301
2404
  }
2302
2405
  }
2303
2406
  } else {
2304
- validate20.errors = [
2407
+ validate22.errors = [
2305
2408
  {
2306
2409
  instancePath,
2307
2410
  schemaPath: '#/type',
@@ -2313,10 +2416,10 @@ function validate20(
2313
2416
  return false;
2314
2417
  }
2315
2418
  }
2316
- validate20.errors = vErrors;
2419
+ validate22.errors = vErrors;
2317
2420
  return errors === 0;
2318
2421
  }
2319
- function validate19(
2422
+ function validate21(
2320
2423
  data,
2321
2424
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
2322
2425
  ) {
@@ -2330,7 +2433,7 @@ function validate19(
2330
2433
  (data.name === undefined && (missing0 = 'name')) ||
2331
2434
  (data.resource === undefined && (missing0 = 'resource'))
2332
2435
  ) {
2333
- validate19.errors = [
2436
+ validate21.errors = [
2334
2437
  {
2335
2438
  instancePath,
2336
2439
  schemaPath: '#/required',
@@ -2351,7 +2454,7 @@ function validate19(
2351
2454
  key0 === 'name'
2352
2455
  )
2353
2456
  ) {
2354
- validate19.errors = [
2457
+ validate21.errors = [
2355
2458
  {
2356
2459
  instancePath,
2357
2460
  schemaPath: '#/additionalProperties',
@@ -2369,7 +2472,7 @@ function validate19(
2369
2472
  let data0 = data.resource;
2370
2473
  const _errs2 = errors;
2371
2474
  if (typeof data0 !== 'string') {
2372
- validate19.errors = [
2475
+ validate21.errors = [
2373
2476
  {
2374
2477
  instancePath: instancePath + '/resource',
2375
2478
  schemaPath: '#/properties/resource/type',
@@ -2381,7 +2484,7 @@ function validate19(
2381
2484
  return false;
2382
2485
  }
2383
2486
  if ('literal:directory' !== data0) {
2384
- validate19.errors = [
2487
+ validate21.errors = [
2385
2488
  {
2386
2489
  instancePath: instancePath + '/resource',
2387
2490
  schemaPath: '#/properties/resource/const',
@@ -2402,7 +2505,7 @@ function validate19(
2402
2505
  if (data.files !== undefined) {
2403
2506
  const _errs4 = errors;
2404
2507
  if (
2405
- !validate20(data.files, {
2508
+ !validate22(data.files, {
2406
2509
  instancePath: instancePath + '/files',
2407
2510
  parentData: data,
2408
2511
  parentDataProperty: 'files',
@@ -2411,8 +2514,8 @@ function validate19(
2411
2514
  ) {
2412
2515
  vErrors =
2413
2516
  vErrors === null
2414
- ? validate20.errors
2415
- : vErrors.concat(validate20.errors);
2517
+ ? validate22.errors
2518
+ : vErrors.concat(validate22.errors);
2416
2519
  errors = vErrors.length;
2417
2520
  }
2418
2521
  var valid0 = _errs4 === errors;
@@ -2423,7 +2526,7 @@ function validate19(
2423
2526
  if (data.name !== undefined) {
2424
2527
  const _errs5 = errors;
2425
2528
  if (typeof data.name !== 'string') {
2426
- validate19.errors = [
2529
+ validate21.errors = [
2427
2530
  {
2428
2531
  instancePath:
2429
2532
  instancePath + '/name',
@@ -2445,7 +2548,7 @@ function validate19(
2445
2548
  }
2446
2549
  }
2447
2550
  } else {
2448
- validate19.errors = [
2551
+ validate21.errors = [
2449
2552
  {
2450
2553
  instancePath,
2451
2554
  schemaPath: '#/type',
@@ -2457,10 +2560,10 @@ function validate19(
2457
2560
  return false;
2458
2561
  }
2459
2562
  }
2460
- validate19.errors = vErrors;
2563
+ validate21.errors = vErrors;
2461
2564
  return errors === 0;
2462
2565
  }
2463
- function validate16(
2566
+ function validate18(
2464
2567
  data,
2465
2568
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
2466
2569
  ) {
@@ -2470,7 +2573,7 @@ function validate16(
2470
2573
  let valid0 = false;
2471
2574
  const _errs1 = errors;
2472
2575
  if (
2473
- !validate17(data, {
2576
+ !validate19(data, {
2474
2577
  instancePath,
2475
2578
  parentData,
2476
2579
  parentDataProperty,
@@ -2479,8 +2582,8 @@ function validate16(
2479
2582
  ) {
2480
2583
  vErrors =
2481
2584
  vErrors === null
2482
- ? validate17.errors
2483
- : vErrors.concat(validate17.errors);
2585
+ ? validate19.errors
2586
+ : vErrors.concat(validate19.errors);
2484
2587
  errors = vErrors.length;
2485
2588
  }
2486
2589
  var _valid0 = _errs1 === errors;
@@ -2488,7 +2591,7 @@ function validate16(
2488
2591
  if (!valid0) {
2489
2592
  const _errs2 = errors;
2490
2593
  if (
2491
- !validate19(data, {
2594
+ !validate21(data, {
2492
2595
  instancePath,
2493
2596
  parentData,
2494
2597
  parentDataProperty,
@@ -2497,8 +2600,8 @@ function validate16(
2497
2600
  ) {
2498
2601
  vErrors =
2499
2602
  vErrors === null
2500
- ? validate19.errors
2501
- : vErrors.concat(validate19.errors);
2603
+ ? validate21.errors
2604
+ : vErrors.concat(validate21.errors);
2502
2605
  errors = vErrors.length;
2503
2606
  }
2504
2607
  var _valid0 = _errs2 === errors;
@@ -2518,7 +2621,7 @@ function validate16(
2518
2621
  vErrors.push(err0);
2519
2622
  }
2520
2623
  errors++;
2521
- validate16.errors = vErrors;
2624
+ validate18.errors = vErrors;
2522
2625
  return false;
2523
2626
  } else {
2524
2627
  errors = _errs0;
@@ -2530,10 +2633,10 @@ function validate16(
2530
2633
  }
2531
2634
  }
2532
2635
  }
2533
- validate16.errors = vErrors;
2636
+ validate18.errors = vErrors;
2534
2637
  return errors === 0;
2535
2638
  }
2536
- function validate15(
2639
+ function validate17(
2537
2640
  data,
2538
2641
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
2539
2642
  ) {
@@ -2546,7 +2649,7 @@ function validate15(
2546
2649
  (data.resource === undefined && (missing0 = 'resource')) ||
2547
2650
  (data.inner === undefined && (missing0 = 'inner'))
2548
2651
  ) {
2549
- validate15.errors = [
2652
+ validate17.errors = [
2550
2653
  {
2551
2654
  instancePath,
2552
2655
  schemaPath: '#/required',
@@ -2567,7 +2670,7 @@ function validate15(
2567
2670
  key0 === 'name'
2568
2671
  )
2569
2672
  ) {
2570
- validate15.errors = [
2673
+ validate17.errors = [
2571
2674
  {
2572
2675
  instancePath,
2573
2676
  schemaPath: '#/additionalProperties',
@@ -2585,7 +2688,7 @@ function validate15(
2585
2688
  let data0 = data.resource;
2586
2689
  const _errs2 = errors;
2587
2690
  if (typeof data0 !== 'string') {
2588
- validate15.errors = [
2691
+ validate17.errors = [
2589
2692
  {
2590
2693
  instancePath: instancePath + '/resource',
2591
2694
  schemaPath: '#/properties/resource/type',
@@ -2597,7 +2700,7 @@ function validate15(
2597
2700
  return false;
2598
2701
  }
2599
2702
  if ('zip' !== data0) {
2600
- validate15.errors = [
2703
+ validate17.errors = [
2601
2704
  {
2602
2705
  instancePath: instancePath + '/resource',
2603
2706
  schemaPath: '#/properties/resource/const',
@@ -2640,7 +2743,7 @@ function validate15(
2640
2743
  if (!valid1) {
2641
2744
  const _errs7 = errors;
2642
2745
  if (
2643
- !validate16(data1, {
2746
+ !validate18(data1, {
2644
2747
  instancePath: instancePath + '/inner',
2645
2748
  parentData: data,
2646
2749
  parentDataProperty: 'inner',
@@ -2649,8 +2752,8 @@ function validate15(
2649
2752
  ) {
2650
2753
  vErrors =
2651
2754
  vErrors === null
2652
- ? validate16.errors
2653
- : vErrors.concat(validate16.errors);
2755
+ ? validate18.errors
2756
+ : vErrors.concat(validate18.errors);
2654
2757
  errors = vErrors.length;
2655
2758
  }
2656
2759
  var _valid0 = _errs7 === errors;
@@ -2670,7 +2773,7 @@ function validate15(
2670
2773
  vErrors.push(err0);
2671
2774
  }
2672
2775
  errors++;
2673
- validate15.errors = vErrors;
2776
+ validate17.errors = vErrors;
2674
2777
  return false;
2675
2778
  } else {
2676
2779
  errors = _errs5;
@@ -2690,7 +2793,7 @@ function validate15(
2690
2793
  if (data.name !== undefined) {
2691
2794
  const _errs8 = errors;
2692
2795
  if (typeof data.name !== 'string') {
2693
- validate15.errors = [
2796
+ validate17.errors = [
2694
2797
  {
2695
2798
  instancePath:
2696
2799
  instancePath + '/name',
@@ -2712,7 +2815,7 @@ function validate15(
2712
2815
  }
2713
2816
  }
2714
2817
  } else {
2715
- validate15.errors = [
2818
+ validate17.errors = [
2716
2819
  {
2717
2820
  instancePath,
2718
2821
  schemaPath: '#/type',
@@ -2724,10 +2827,10 @@ function validate15(
2724
2827
  return false;
2725
2828
  }
2726
2829
  }
2727
- validate15.errors = vErrors;
2830
+ validate17.errors = vErrors;
2728
2831
  return errors === 0;
2729
2832
  }
2730
- function validate14(
2833
+ function validate16(
2731
2834
  data,
2732
2835
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
2733
2836
  ) {
@@ -4255,7 +4358,7 @@ function validate14(
4255
4358
  if (!valid0) {
4256
4359
  const _errs73 = errors;
4257
4360
  if (
4258
- !validate15(data, {
4361
+ !validate17(data, {
4259
4362
  instancePath,
4260
4363
  parentData,
4261
4364
  parentDataProperty,
@@ -4264,8 +4367,8 @@ function validate14(
4264
4367
  ) {
4265
4368
  vErrors =
4266
4369
  vErrors === null
4267
- ? validate15.errors
4268
- : vErrors.concat(validate15.errors);
4370
+ ? validate17.errors
4371
+ : vErrors.concat(validate17.errors);
4269
4372
  errors = vErrors.length;
4270
4373
  }
4271
4374
  var _valid0 = _errs73 === errors;
@@ -4290,7 +4393,7 @@ function validate14(
4290
4393
  vErrors.push(err50);
4291
4394
  }
4292
4395
  errors++;
4293
- validate14.errors = vErrors;
4396
+ validate16.errors = vErrors;
4294
4397
  return false;
4295
4398
  } else {
4296
4399
  errors = _errs0;
@@ -4302,10 +4405,10 @@ function validate14(
4302
4405
  }
4303
4406
  }
4304
4407
  }
4305
- validate14.errors = vErrors;
4408
+ validate16.errors = vErrors;
4306
4409
  return errors === 0;
4307
4410
  }
4308
- const schema30 = {
4411
+ const schema32 = {
4309
4412
  type: 'object',
4310
4413
  discriminator: { propertyName: 'step' },
4311
4414
  required: ['step'],
@@ -5042,7 +5145,7 @@ const schema30 = {
5042
5145
  },
5043
5146
  ],
5044
5147
  };
5045
- const schema31 = {
5148
+ const schema33 = {
5046
5149
  type: 'object',
5047
5150
  properties: {
5048
5151
  activate: {
@@ -5057,7 +5160,7 @@ const schema31 = {
5057
5160
  },
5058
5161
  additionalProperties: false,
5059
5162
  };
5060
- const schema32 = {
5163
+ const schema34 = {
5061
5164
  type: 'object',
5062
5165
  properties: {
5063
5166
  activate: {
@@ -5077,7 +5180,7 @@ const schema32 = {
5077
5180
  },
5078
5181
  additionalProperties: false,
5079
5182
  };
5080
- const schema39 = {
5183
+ const schema41 = {
5081
5184
  type: 'object',
5082
5185
  properties: {
5083
5186
  adminUsername: { type: 'string' },
@@ -5085,7 +5188,7 @@ const schema39 = {
5085
5188
  },
5086
5189
  additionalProperties: false,
5087
5190
  };
5088
- const schema33 = {
5191
+ const schema35 = {
5089
5192
  type: 'object',
5090
5193
  properties: {
5091
5194
  method: {
@@ -5182,12 +5285,12 @@ const schema33 = {
5182
5285
  required: ['url'],
5183
5286
  additionalProperties: false,
5184
5287
  };
5185
- const schema34 = {
5288
+ const schema36 = {
5186
5289
  type: 'string',
5187
5290
  enum: ['GET', 'POST', 'HEAD', 'OPTIONS', 'PATCH', 'PUT', 'DELETE'],
5188
5291
  };
5189
- const schema35 = { type: 'object', additionalProperties: { type: 'string' } };
5190
- function validate35(
5292
+ const schema37 = { type: 'object', additionalProperties: { type: 'string' } };
5293
+ function validate37(
5191
5294
  data,
5192
5295
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
5193
5296
  ) {
@@ -5197,7 +5300,7 @@ function validate35(
5197
5300
  if (data && typeof data == 'object' && !Array.isArray(data)) {
5198
5301
  let missing0;
5199
5302
  if (data.url === undefined && (missing0 = 'url')) {
5200
- validate35.errors = [
5303
+ validate37.errors = [
5201
5304
  {
5202
5305
  instancePath,
5203
5306
  schemaPath: '#/required',
@@ -5219,7 +5322,7 @@ function validate35(
5219
5322
  key0 === 'body'
5220
5323
  )
5221
5324
  ) {
5222
- validate35.errors = [
5325
+ validate37.errors = [
5223
5326
  {
5224
5327
  instancePath,
5225
5328
  schemaPath: '#/additionalProperties',
@@ -5237,7 +5340,7 @@ function validate35(
5237
5340
  let data0 = data.method;
5238
5341
  const _errs2 = errors;
5239
5342
  if (typeof data0 !== 'string') {
5240
- validate35.errors = [
5343
+ validate37.errors = [
5241
5344
  {
5242
5345
  instancePath: instancePath + '/method',
5243
5346
  schemaPath: '#/definitions/HTTPMethod/type',
@@ -5259,12 +5362,12 @@ function validate35(
5259
5362
  data0 === 'DELETE'
5260
5363
  )
5261
5364
  ) {
5262
- validate35.errors = [
5365
+ validate37.errors = [
5263
5366
  {
5264
5367
  instancePath: instancePath + '/method',
5265
5368
  schemaPath: '#/definitions/HTTPMethod/enum',
5266
5369
  keyword: 'enum',
5267
- params: { allowedValues: schema34.enum },
5370
+ params: { allowedValues: schema36.enum },
5268
5371
  message:
5269
5372
  'must be equal to one of the allowed values',
5270
5373
  },
@@ -5279,7 +5382,7 @@ function validate35(
5279
5382
  if (data.url !== undefined) {
5280
5383
  const _errs5 = errors;
5281
5384
  if (typeof data.url !== 'string') {
5282
- validate35.errors = [
5385
+ validate37.errors = [
5283
5386
  {
5284
5387
  instancePath: instancePath + '/url',
5285
5388
  schemaPath: '#/properties/url/type',
@@ -5310,7 +5413,7 @@ function validate35(
5310
5413
  if (
5311
5414
  typeof data2[key1] !== 'string'
5312
5415
  ) {
5313
- validate35.errors = [
5416
+ validate37.errors = [
5314
5417
  {
5315
5418
  instancePath:
5316
5419
  instancePath +
@@ -5342,7 +5445,7 @@ function validate35(
5342
5445
  }
5343
5446
  }
5344
5447
  } else {
5345
- validate35.errors = [
5448
+ validate37.errors = [
5346
5449
  {
5347
5450
  instancePath:
5348
5451
  instancePath + '/headers',
@@ -7331,7 +7434,7 @@ function validate35(
7331
7434
  vErrors.push(err34);
7332
7435
  }
7333
7436
  errors++;
7334
- validate35.errors = vErrors;
7437
+ validate37.errors = vErrors;
7335
7438
  return false;
7336
7439
  } else {
7337
7440
  errors = _errs14;
@@ -7353,7 +7456,7 @@ function validate35(
7353
7456
  }
7354
7457
  }
7355
7458
  } else {
7356
- validate35.errors = [
7459
+ validate37.errors = [
7357
7460
  {
7358
7461
  instancePath,
7359
7462
  schemaPath: '#/type',
@@ -7365,10 +7468,10 @@ function validate35(
7365
7468
  return false;
7366
7469
  }
7367
7470
  }
7368
- validate35.errors = vErrors;
7471
+ validate37.errors = vErrors;
7369
7472
  return errors === 0;
7370
7473
  }
7371
- const schema36 = {
7474
+ const schema38 = {
7372
7475
  type: 'object',
7373
7476
  properties: {
7374
7477
  relativeUri: {
@@ -7435,7 +7538,7 @@ const schema36 = {
7435
7538
  },
7436
7539
  additionalProperties: false,
7437
7540
  };
7438
- function validate37(
7541
+ function validate39(
7439
7542
  data,
7440
7543
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
7441
7544
  ) {
@@ -7445,8 +7548,8 @@ function validate37(
7445
7548
  if (data && typeof data == 'object' && !Array.isArray(data)) {
7446
7549
  const _errs1 = errors;
7447
7550
  for (const key0 in data) {
7448
- if (!func2.call(schema36.properties, key0)) {
7449
- validate37.errors = [
7551
+ if (!func2.call(schema38.properties, key0)) {
7552
+ validate39.errors = [
7450
7553
  {
7451
7554
  instancePath,
7452
7555
  schemaPath: '#/additionalProperties',
@@ -7463,7 +7566,7 @@ function validate37(
7463
7566
  if (data.relativeUri !== undefined) {
7464
7567
  const _errs2 = errors;
7465
7568
  if (typeof data.relativeUri !== 'string') {
7466
- validate37.errors = [
7569
+ validate39.errors = [
7467
7570
  {
7468
7571
  instancePath: instancePath + '/relativeUri',
7469
7572
  schemaPath: '#/properties/relativeUri/type',
@@ -7482,7 +7585,7 @@ function validate37(
7482
7585
  if (data.scriptPath !== undefined) {
7483
7586
  const _errs4 = errors;
7484
7587
  if (typeof data.scriptPath !== 'string') {
7485
- validate37.errors = [
7588
+ validate39.errors = [
7486
7589
  {
7487
7590
  instancePath: instancePath + '/scriptPath',
7488
7591
  schemaPath: '#/properties/scriptPath/type',
@@ -7501,7 +7604,7 @@ function validate37(
7501
7604
  if (data.protocol !== undefined) {
7502
7605
  const _errs6 = errors;
7503
7606
  if (typeof data.protocol !== 'string') {
7504
- validate37.errors = [
7607
+ validate39.errors = [
7505
7608
  {
7506
7609
  instancePath:
7507
7610
  instancePath + '/protocol',
@@ -7523,7 +7626,7 @@ function validate37(
7523
7626
  let data3 = data.method;
7524
7627
  const _errs8 = errors;
7525
7628
  if (typeof data3 !== 'string') {
7526
- validate37.errors = [
7629
+ validate39.errors = [
7527
7630
  {
7528
7631
  instancePath:
7529
7632
  instancePath + '/method',
@@ -7547,7 +7650,7 @@ function validate37(
7547
7650
  data3 === 'DELETE'
7548
7651
  )
7549
7652
  ) {
7550
- validate37.errors = [
7653
+ validate39.errors = [
7551
7654
  {
7552
7655
  instancePath:
7553
7656
  instancePath + '/method',
@@ -7555,7 +7658,7 @@ function validate37(
7555
7658
  '#/definitions/HTTPMethod/enum',
7556
7659
  keyword: 'enum',
7557
7660
  params: {
7558
- allowedValues: schema34.enum,
7661
+ allowedValues: schema36.enum,
7559
7662
  },
7560
7663
  message:
7561
7664
  'must be equal to one of the allowed values',
@@ -7584,7 +7687,7 @@ function validate37(
7584
7687
  typeof data4[key1] !==
7585
7688
  'string'
7586
7689
  ) {
7587
- validate37.errors = [
7690
+ validate39.errors = [
7588
7691
  {
7589
7692
  instancePath:
7590
7693
  instancePath +
@@ -7616,7 +7719,7 @@ function validate37(
7616
7719
  }
7617
7720
  }
7618
7721
  } else {
7619
- validate37.errors = [
7722
+ validate39.errors = [
7620
7723
  {
7621
7724
  instancePath:
7622
7725
  instancePath +
@@ -8254,7 +8357,7 @@ function validate37(
8254
8357
  vErrors.push(err12);
8255
8358
  }
8256
8359
  errors++;
8257
- validate37.errors = vErrors;
8360
+ validate39.errors = vErrors;
8258
8361
  return false;
8259
8362
  } else {
8260
8363
  errors = _errs18;
@@ -8287,7 +8390,7 @@ function validate37(
8287
8390
  key4
8288
8391
  ] !== 'string'
8289
8392
  ) {
8290
- validate37.errors =
8393
+ validate39.errors =
8291
8394
  [
8292
8395
  {
8293
8396
  instancePath:
@@ -8322,7 +8425,7 @@ function validate37(
8322
8425
  }
8323
8426
  }
8324
8427
  } else {
8325
- validate37.errors = [
8428
+ validate39.errors = [
8326
8429
  {
8327
8430
  instancePath:
8328
8431
  instancePath +
@@ -8363,7 +8466,7 @@ function validate37(
8363
8466
  key5
8364
8467
  ] !== 'string'
8365
8468
  ) {
8366
- validate37.errors =
8469
+ validate39.errors =
8367
8470
  [
8368
8471
  {
8369
8472
  instancePath:
@@ -8399,7 +8502,7 @@ function validate37(
8399
8502
  }
8400
8503
  }
8401
8504
  } else {
8402
- validate37.errors = [
8505
+ validate39.errors = [
8403
8506
  {
8404
8507
  instancePath:
8405
8508
  instancePath +
@@ -8428,7 +8531,7 @@ function validate37(
8428
8531
  typeof data.code !==
8429
8532
  'string'
8430
8533
  ) {
8431
- validate37.errors = [
8534
+ validate39.errors = [
8432
8535
  {
8433
8536
  instancePath:
8434
8537
  instancePath +
@@ -8460,7 +8563,7 @@ function validate37(
8460
8563
  }
8461
8564
  }
8462
8565
  } else {
8463
- validate37.errors = [
8566
+ validate39.errors = [
8464
8567
  {
8465
8568
  instancePath,
8466
8569
  schemaPath: '#/type',
@@ -8472,10 +8575,10 @@ function validate37(
8472
8575
  return false;
8473
8576
  }
8474
8577
  }
8475
- validate37.errors = vErrors;
8578
+ validate39.errors = vErrors;
8476
8579
  return errors === 0;
8477
8580
  }
8478
- function validate26(
8581
+ function validate28(
8479
8582
  data,
8480
8583
  { instancePath = '', parentData, parentDataProperty, rootData = data } = {}
8481
8584
  ) {
@@ -8485,7 +8588,7 @@ function validate26(
8485
8588
  if (data && typeof data == 'object' && !Array.isArray(data)) {
8486
8589
  let missing0;
8487
8590
  if (data.step === undefined && (missing0 = 'step')) {
8488
- validate26.errors = [
8591
+ validate28.errors = [
8489
8592
  {
8490
8593
  instancePath,
8491
8594
  schemaPath: '#/required',
@@ -8514,7 +8617,7 @@ function validate26(
8514
8617
  (data.step === undefined &&
8515
8618
  (missing1 = 'step'))
8516
8619
  ) {
8517
- validate26.errors = [
8620
+ validate28.errors = [
8518
8621
  {
8519
8622
  instancePath,
8520
8623
  schemaPath: '#/oneOf/0/required',
@@ -8540,7 +8643,7 @@ function validate26(
8540
8643
  key0 === 'pluginName'
8541
8644
  )
8542
8645
  ) {
8543
- validate26.errors = [
8646
+ validate28.errors = [
8544
8647
  {
8545
8648
  instancePath,
8546
8649
  schemaPath:
@@ -8579,7 +8682,7 @@ function validate26(
8579
8682
  'caption'
8580
8683
  )
8581
8684
  ) {
8582
- validate26.errors =
8685
+ validate28.errors =
8583
8686
  [
8584
8687
  {
8585
8688
  instancePath:
@@ -8619,7 +8722,7 @@ function validate26(
8619
8722
  )
8620
8723
  )
8621
8724
  ) {
8622
- validate26.errors =
8725
+ validate28.errors =
8623
8726
  [
8624
8727
  {
8625
8728
  instancePath:
@@ -8655,7 +8758,7 @@ function validate26(
8655
8758
  typeof data0.caption !==
8656
8759
  'string'
8657
8760
  ) {
8658
- validate26.errors =
8761
+ validate28.errors =
8659
8762
  [
8660
8763
  {
8661
8764
  instancePath:
@@ -8683,7 +8786,7 @@ function validate26(
8683
8786
  }
8684
8787
  }
8685
8788
  } else {
8686
- validate26.errors = [
8789
+ validate28.errors = [
8687
8790
  {
8688
8791
  instancePath:
8689
8792
  instancePath +
@@ -8710,7 +8813,7 @@ function validate26(
8710
8813
  let data3 = data.step;
8711
8814
  const _errs12 = errors;
8712
8815
  if (typeof data3 !== 'string') {
8713
- validate26.errors = [
8816
+ validate28.errors = [
8714
8817
  {
8715
8818
  instancePath:
8716
8819
  instancePath +
@@ -8730,7 +8833,7 @@ function validate26(
8730
8833
  if (
8731
8834
  'activatePlugin' !== data3
8732
8835
  ) {
8733
- validate26.errors = [
8836
+ validate28.errors = [
8734
8837
  {
8735
8838
  instancePath:
8736
8839
  instancePath +
@@ -8762,7 +8865,7 @@ function validate26(
8762
8865
  typeof data.pluginPath !==
8763
8866
  'string'
8764
8867
  ) {
8765
- validate26.errors = [
8868
+ validate28.errors = [
8766
8869
  {
8767
8870
  instancePath:
8768
8871
  instancePath +
@@ -8794,7 +8897,7 @@ function validate26(
8794
8897
  typeof data.pluginName !==
8795
8898
  'string'
8796
8899
  ) {
8797
- validate26.errors =
8900
+ validate28.errors =
8798
8901
  [
8799
8902
  {
8800
8903
  instancePath:
@@ -8824,7 +8927,7 @@ function validate26(
8824
8927
  }
8825
8928
  }
8826
8929
  } else {
8827
- validate26.errors = [
8930
+ validate28.errors = [
8828
8931
  {
8829
8932
  instancePath,
8830
8933
  schemaPath: '#/oneOf/0/type',
@@ -8851,7 +8954,7 @@ function validate26(
8851
8954
  (data.themeFolderName === undefined &&
8852
8955
  (missing2 = 'themeFolderName'))
8853
8956
  ) {
8854
- validate26.errors = [
8957
+ validate28.errors = [
8855
8958
  {
8856
8959
  instancePath,
8857
8960
  schemaPath: '#/oneOf/1/required',
@@ -8876,7 +8979,7 @@ function validate26(
8876
8979
  key2 === 'themeFolderName'
8877
8980
  )
8878
8981
  ) {
8879
- validate26.errors = [
8982
+ validate28.errors = [
8880
8983
  {
8881
8984
  instancePath,
8882
8985
  schemaPath:
@@ -8915,7 +9018,7 @@ function validate26(
8915
9018
  'caption'
8916
9019
  )
8917
9020
  ) {
8918
- validate26.errors =
9021
+ validate28.errors =
8919
9022
  [
8920
9023
  {
8921
9024
  instancePath:
@@ -8955,7 +9058,7 @@ function validate26(
8955
9058
  )
8956
9059
  )
8957
9060
  ) {
8958
- validate26.errors =
9061
+ validate28.errors =
8959
9062
  [
8960
9063
  {
8961
9064
  instancePath:
@@ -8991,7 +9094,7 @@ function validate26(
8991
9094
  typeof data6.caption !==
8992
9095
  'string'
8993
9096
  ) {
8994
- validate26.errors =
9097
+ validate28.errors =
8995
9098
  [
8996
9099
  {
8997
9100
  instancePath:
@@ -9019,7 +9122,7 @@ function validate26(
9019
9122
  }
9020
9123
  }
9021
9124
  } else {
9022
- validate26.errors = [
9125
+ validate28.errors = [
9023
9126
  {
9024
9127
  instancePath:
9025
9128
  instancePath +
@@ -9046,7 +9149,7 @@ function validate26(
9046
9149
  let data9 = data.step;
9047
9150
  const _errs28 = errors;
9048
9151
  if (typeof data9 !== 'string') {
9049
- validate26.errors = [
9152
+ validate28.errors = [
9050
9153
  {
9051
9154
  instancePath:
9052
9155
  instancePath +
@@ -9064,7 +9167,7 @@ function validate26(
9064
9167
  return false;
9065
9168
  }
9066
9169
  if ('activateTheme' !== data9) {
9067
- validate26.errors = [
9170
+ validate28.errors = [
9068
9171
  {
9069
9172
  instancePath:
9070
9173
  instancePath +
@@ -9096,7 +9199,7 @@ function validate26(
9096
9199
  typeof data.themeFolderName !==
9097
9200
  'string'
9098
9201
  ) {
9099
- validate26.errors = [
9202
+ validate28.errors = [
9100
9203
  {
9101
9204
  instancePath:
9102
9205
  instancePath +
@@ -9123,7 +9226,7 @@ function validate26(
9123
9226
  }
9124
9227
  }
9125
9228
  } else {
9126
- validate26.errors = [
9229
+ validate28.errors = [
9127
9230
  {
9128
9231
  instancePath,
9129
9232
  schemaPath: '#/oneOf/1/type',
@@ -9152,7 +9255,7 @@ function validate26(
9152
9255
  (data.toPath === undefined &&
9153
9256
  (missing3 = 'toPath'))
9154
9257
  ) {
9155
- validate26.errors = [
9258
+ validate28.errors = [
9156
9259
  {
9157
9260
  instancePath,
9158
9261
  schemaPath: '#/oneOf/2/required',
@@ -9178,7 +9281,7 @@ function validate26(
9178
9281
  key4 === 'toPath'
9179
9282
  )
9180
9283
  ) {
9181
- validate26.errors = [
9284
+ validate28.errors = [
9182
9285
  {
9183
9286
  instancePath,
9184
9287
  schemaPath:
@@ -9217,7 +9320,7 @@ function validate26(
9217
9320
  'caption'
9218
9321
  )
9219
9322
  ) {
9220
- validate26.errors =
9323
+ validate28.errors =
9221
9324
  [
9222
9325
  {
9223
9326
  instancePath:
@@ -9257,7 +9360,7 @@ function validate26(
9257
9360
  )
9258
9361
  )
9259
9362
  ) {
9260
- validate26.errors =
9363
+ validate28.errors =
9261
9364
  [
9262
9365
  {
9263
9366
  instancePath:
@@ -9293,7 +9396,7 @@ function validate26(
9293
9396
  typeof data11.caption !==
9294
9397
  'string'
9295
9398
  ) {
9296
- validate26.errors =
9399
+ validate28.errors =
9297
9400
  [
9298
9401
  {
9299
9402
  instancePath:
@@ -9321,7 +9424,7 @@ function validate26(
9321
9424
  }
9322
9425
  }
9323
9426
  } else {
9324
- validate26.errors = [
9427
+ validate28.errors = [
9325
9428
  {
9326
9429
  instancePath:
9327
9430
  instancePath +
@@ -9350,7 +9453,7 @@ function validate26(
9350
9453
  if (
9351
9454
  typeof data14 !== 'string'
9352
9455
  ) {
9353
- validate26.errors = [
9456
+ validate28.errors = [
9354
9457
  {
9355
9458
  instancePath:
9356
9459
  instancePath +
@@ -9368,7 +9471,7 @@ function validate26(
9368
9471
  return false;
9369
9472
  }
9370
9473
  if ('cp' !== data14) {
9371
- validate26.errors = [
9474
+ validate28.errors = [
9372
9475
  {
9373
9476
  instancePath:
9374
9477
  instancePath +
@@ -9399,7 +9502,7 @@ function validate26(
9399
9502
  typeof data.fromPath !==
9400
9503
  'string'
9401
9504
  ) {
9402
- validate26.errors = [
9505
+ validate28.errors = [
9403
9506
  {
9404
9507
  instancePath:
9405
9508
  instancePath +
@@ -9431,7 +9534,7 @@ function validate26(
9431
9534
  typeof data.toPath !==
9432
9535
  'string'
9433
9536
  ) {
9434
- validate26.errors =
9537
+ validate28.errors =
9435
9538
  [
9436
9539
  {
9437
9540
  instancePath:
@@ -9461,7 +9564,7 @@ function validate26(
9461
9564
  }
9462
9565
  }
9463
9566
  } else {
9464
- validate26.errors = [
9567
+ validate28.errors = [
9465
9568
  {
9466
9569
  instancePath,
9467
9570
  schemaPath: '#/oneOf/2/type',
@@ -9488,7 +9591,7 @@ function validate26(
9488
9591
  (data.step === undefined &&
9489
9592
  (missing4 = 'step'))
9490
9593
  ) {
9491
- validate26.errors = [
9594
+ validate28.errors = [
9492
9595
  {
9493
9596
  instancePath,
9494
9597
  schemaPath: '#/oneOf/3/required',
@@ -9515,7 +9618,7 @@ function validate26(
9515
9618
  key6 === 'virtualize'
9516
9619
  )
9517
9620
  ) {
9518
- validate26.errors = [
9621
+ validate28.errors = [
9519
9622
  {
9520
9623
  instancePath,
9521
9624
  schemaPath:
@@ -9554,7 +9657,7 @@ function validate26(
9554
9657
  'caption'
9555
9658
  )
9556
9659
  ) {
9557
- validate26.errors =
9660
+ validate28.errors =
9558
9661
  [
9559
9662
  {
9560
9663
  instancePath:
@@ -9594,7 +9697,7 @@ function validate26(
9594
9697
  )
9595
9698
  )
9596
9699
  ) {
9597
- validate26.errors =
9700
+ validate28.errors =
9598
9701
  [
9599
9702
  {
9600
9703
  instancePath:
@@ -9630,7 +9733,7 @@ function validate26(
9630
9733
  typeof data17.caption !==
9631
9734
  'string'
9632
9735
  ) {
9633
- validate26.errors =
9736
+ validate28.errors =
9634
9737
  [
9635
9738
  {
9636
9739
  instancePath:
@@ -9658,7 +9761,7 @@ function validate26(
9658
9761
  }
9659
9762
  }
9660
9763
  } else {
9661
- validate26.errors = [
9764
+ validate28.errors = [
9662
9765
  {
9663
9766
  instancePath:
9664
9767
  instancePath +
@@ -9687,7 +9790,7 @@ function validate26(
9687
9790
  if (
9688
9791
  typeof data20 !== 'string'
9689
9792
  ) {
9690
- validate26.errors = [
9793
+ validate28.errors = [
9691
9794
  {
9692
9795
  instancePath:
9693
9796
  instancePath +
@@ -9708,7 +9811,7 @@ function validate26(
9708
9811
  'defineWpConfigConsts' !==
9709
9812
  data20
9710
9813
  ) {
9711
- validate26.errors = [
9814
+ validate28.errors = [
9712
9815
  {
9713
9816
  instancePath:
9714
9817
  instancePath +
@@ -9755,7 +9858,7 @@ function validate26(
9755
9858
  }
9756
9859
  }
9757
9860
  } else {
9758
- validate26.errors =
9861
+ validate28.errors =
9759
9862
  [
9760
9863
  {
9761
9864
  instancePath:
@@ -9792,7 +9895,7 @@ function validate26(
9792
9895
  typeof data23 !==
9793
9896
  'string'
9794
9897
  ) {
9795
- validate26.errors =
9898
+ validate28.errors =
9796
9899
  [
9797
9900
  {
9798
9901
  instancePath:
@@ -9819,7 +9922,7 @@ function validate26(
9819
9922
  'define-before-run'
9820
9923
  )
9821
9924
  ) {
9822
- validate26.errors =
9925
+ validate28.errors =
9823
9926
  [
9824
9927
  {
9825
9928
  instancePath:
@@ -9831,7 +9934,7 @@ function validate26(
9831
9934
  'enum',
9832
9935
  params: {
9833
9936
  allowedValues:
9834
- schema30
9937
+ schema32
9835
9938
  .oneOf[3]
9836
9939
  .properties
9837
9940
  .method
@@ -9859,7 +9962,7 @@ function validate26(
9859
9962
  typeof data.virtualize !==
9860
9963
  'boolean'
9861
9964
  ) {
9862
- validate26.errors =
9965
+ validate28.errors =
9863
9966
  [
9864
9967
  {
9865
9968
  instancePath:
@@ -9891,7 +9994,7 @@ function validate26(
9891
9994
  }
9892
9995
  }
9893
9996
  } else {
9894
- validate26.errors = [
9997
+ validate28.errors = [
9895
9998
  {
9896
9999
  instancePath,
9897
10000
  schemaPath: '#/oneOf/3/type',
@@ -9918,7 +10021,7 @@ function validate26(
9918
10021
  (data.step === undefined &&
9919
10022
  (missing5 = 'step'))
9920
10023
  ) {
9921
- validate26.errors = [
10024
+ validate28.errors = [
9922
10025
  {
9923
10026
  instancePath,
9924
10027
  schemaPath: '#/oneOf/4/required',
@@ -9943,7 +10046,7 @@ function validate26(
9943
10046
  key9 === 'siteUrl'
9944
10047
  )
9945
10048
  ) {
9946
- validate26.errors = [
10049
+ validate28.errors = [
9947
10050
  {
9948
10051
  instancePath,
9949
10052
  schemaPath:
@@ -9982,7 +10085,7 @@ function validate26(
9982
10085
  'caption'
9983
10086
  )
9984
10087
  ) {
9985
- validate26.errors =
10088
+ validate28.errors =
9986
10089
  [
9987
10090
  {
9988
10091
  instancePath:
@@ -10022,7 +10125,7 @@ function validate26(
10022
10125
  )
10023
10126
  )
10024
10127
  ) {
10025
- validate26.errors =
10128
+ validate28.errors =
10026
10129
  [
10027
10130
  {
10028
10131
  instancePath:
@@ -10058,7 +10161,7 @@ function validate26(
10058
10161
  typeof data25.caption !==
10059
10162
  'string'
10060
10163
  ) {
10061
- validate26.errors =
10164
+ validate28.errors =
10062
10165
  [
10063
10166
  {
10064
10167
  instancePath:
@@ -10086,7 +10189,7 @@ function validate26(
10086
10189
  }
10087
10190
  }
10088
10191
  } else {
10089
- validate26.errors = [
10192
+ validate28.errors = [
10090
10193
  {
10091
10194
  instancePath:
10092
10195
  instancePath +
@@ -10115,7 +10218,7 @@ function validate26(
10115
10218
  if (
10116
10219
  typeof data28 !== 'string'
10117
10220
  ) {
10118
- validate26.errors = [
10221
+ validate28.errors = [
10119
10222
  {
10120
10223
  instancePath:
10121
10224
  instancePath +
@@ -10135,7 +10238,7 @@ function validate26(
10135
10238
  if (
10136
10239
  'defineSiteUrl' !== data28
10137
10240
  ) {
10138
- validate26.errors = [
10241
+ validate28.errors = [
10139
10242
  {
10140
10243
  instancePath:
10141
10244
  instancePath +
@@ -10167,7 +10270,7 @@ function validate26(
10167
10270
  typeof data.siteUrl !==
10168
10271
  'string'
10169
10272
  ) {
10170
- validate26.errors = [
10273
+ validate28.errors = [
10171
10274
  {
10172
10275
  instancePath:
10173
10276
  instancePath +
@@ -10194,7 +10297,7 @@ function validate26(
10194
10297
  }
10195
10298
  }
10196
10299
  } else {
10197
- validate26.errors = [
10300
+ validate28.errors = [
10198
10301
  {
10199
10302
  instancePath,
10200
10303
  schemaPath: '#/oneOf/4/type',
@@ -10219,7 +10322,7 @@ function validate26(
10219
10322
  data.step === undefined &&
10220
10323
  (missing6 = 'step')
10221
10324
  ) {
10222
- validate26.errors = [
10325
+ validate28.errors = [
10223
10326
  {
10224
10327
  instancePath,
10225
10328
  schemaPath: '#/oneOf/5/required',
@@ -10244,7 +10347,7 @@ function validate26(
10244
10347
  key11 === 'wpCliPath'
10245
10348
  )
10246
10349
  ) {
10247
- validate26.errors = [
10350
+ validate28.errors = [
10248
10351
  {
10249
10352
  instancePath,
10250
10353
  schemaPath:
@@ -10283,7 +10386,7 @@ function validate26(
10283
10386
  'caption'
10284
10387
  )
10285
10388
  ) {
10286
- validate26.errors =
10389
+ validate28.errors =
10287
10390
  [
10288
10391
  {
10289
10392
  instancePath:
@@ -10323,7 +10426,7 @@ function validate26(
10323
10426
  )
10324
10427
  )
10325
10428
  ) {
10326
- validate26.errors =
10429
+ validate28.errors =
10327
10430
  [
10328
10431
  {
10329
10432
  instancePath:
@@ -10359,7 +10462,7 @@ function validate26(
10359
10462
  typeof data30.caption !==
10360
10463
  'string'
10361
10464
  ) {
10362
- validate26.errors =
10465
+ validate28.errors =
10363
10466
  [
10364
10467
  {
10365
10468
  instancePath:
@@ -10387,7 +10490,7 @@ function validate26(
10387
10490
  }
10388
10491
  }
10389
10492
  } else {
10390
- validate26.errors = [
10493
+ validate28.errors = [
10391
10494
  {
10392
10495
  instancePath:
10393
10496
  instancePath +
@@ -10416,7 +10519,7 @@ function validate26(
10416
10519
  if (
10417
10520
  typeof data33 !== 'string'
10418
10521
  ) {
10419
- validate26.errors = [
10522
+ validate28.errors = [
10420
10523
  {
10421
10524
  instancePath:
10422
10525
  instancePath +
@@ -10436,7 +10539,7 @@ function validate26(
10436
10539
  if (
10437
10540
  'enableMultisite' !== data33
10438
10541
  ) {
10439
- validate26.errors = [
10542
+ validate28.errors = [
10440
10543
  {
10441
10544
  instancePath:
10442
10545
  instancePath +
@@ -10468,7 +10571,7 @@ function validate26(
10468
10571
  typeof data.wpCliPath !==
10469
10572
  'string'
10470
10573
  ) {
10471
- validate26.errors = [
10574
+ validate28.errors = [
10472
10575
  {
10473
10576
  instancePath:
10474
10577
  instancePath +
@@ -10495,7 +10598,7 @@ function validate26(
10495
10598
  }
10496
10599
  }
10497
10600
  } else {
10498
- validate26.errors = [
10601
+ validate28.errors = [
10499
10602
  {
10500
10603
  instancePath,
10501
10604
  schemaPath: '#/oneOf/5/type',
@@ -10522,7 +10625,7 @@ function validate26(
10522
10625
  (data.step === undefined &&
10523
10626
  (missing7 = 'step'))
10524
10627
  ) {
10525
- validate26.errors = [
10628
+ validate28.errors = [
10526
10629
  {
10527
10630
  instancePath,
10528
10631
  schemaPath: '#/oneOf/6/required',
@@ -10548,7 +10651,7 @@ function validate26(
10548
10651
  key13 === 'importer'
10549
10652
  )
10550
10653
  ) {
10551
- validate26.errors = [
10654
+ validate28.errors = [
10552
10655
  {
10553
10656
  instancePath,
10554
10657
  schemaPath:
@@ -10587,7 +10690,7 @@ function validate26(
10587
10690
  'caption'
10588
10691
  )
10589
10692
  ) {
10590
- validate26.errors =
10693
+ validate28.errors =
10591
10694
  [
10592
10695
  {
10593
10696
  instancePath:
@@ -10627,7 +10730,7 @@ function validate26(
10627
10730
  )
10628
10731
  )
10629
10732
  ) {
10630
- validate26.errors =
10733
+ validate28.errors =
10631
10734
  [
10632
10735
  {
10633
10736
  instancePath:
@@ -10663,7 +10766,7 @@ function validate26(
10663
10766
  typeof data35.caption !==
10664
10767
  'string'
10665
10768
  ) {
10666
- validate26.errors =
10769
+ validate28.errors =
10667
10770
  [
10668
10771
  {
10669
10772
  instancePath:
@@ -10691,7 +10794,7 @@ function validate26(
10691
10794
  }
10692
10795
  }
10693
10796
  } else {
10694
- validate26.errors = [
10797
+ validate28.errors = [
10695
10798
  {
10696
10799
  instancePath:
10697
10800
  instancePath +
@@ -10720,7 +10823,7 @@ function validate26(
10720
10823
  if (
10721
10824
  typeof data38 !== 'string'
10722
10825
  ) {
10723
- validate26.errors = [
10826
+ validate28.errors = [
10724
10827
  {
10725
10828
  instancePath:
10726
10829
  instancePath +
@@ -10738,7 +10841,7 @@ function validate26(
10738
10841
  return false;
10739
10842
  }
10740
10843
  if ('importWxr' !== data38) {
10741
- validate26.errors = [
10844
+ validate28.errors = [
10742
10845
  {
10743
10846
  instancePath:
10744
10847
  instancePath +
@@ -10765,7 +10868,7 @@ function validate26(
10765
10868
  if (data.file !== undefined) {
10766
10869
  const _errs108 = errors;
10767
10870
  if (
10768
- !validate14(data.file, {
10871
+ !validate16(data.file, {
10769
10872
  instancePath:
10770
10873
  instancePath +
10771
10874
  '/file',
@@ -10777,9 +10880,9 @@ function validate26(
10777
10880
  ) {
10778
10881
  vErrors =
10779
10882
  vErrors === null
10780
- ? validate14.errors
10883
+ ? validate16.errors
10781
10884
  : vErrors.concat(
10782
- validate14.errors
10885
+ validate16.errors
10783
10886
  );
10784
10887
  errors = vErrors.length;
10785
10888
  }
@@ -10800,7 +10903,7 @@ function validate26(
10800
10903
  typeof data40 !==
10801
10904
  'string'
10802
10905
  ) {
10803
- validate26.errors =
10906
+ validate28.errors =
10804
10907
  [
10805
10908
  {
10806
10909
  instancePath:
@@ -10827,7 +10930,7 @@ function validate26(
10827
10930
  'default'
10828
10931
  )
10829
10932
  ) {
10830
- validate26.errors =
10933
+ validate28.errors =
10831
10934
  [
10832
10935
  {
10833
10936
  instancePath:
@@ -10839,7 +10942,7 @@ function validate26(
10839
10942
  'enum',
10840
10943
  params: {
10841
10944
  allowedValues:
10842
- schema30
10945
+ schema32
10843
10946
  .oneOf[6]
10844
10947
  .properties
10845
10948
  .importer
@@ -10862,7 +10965,7 @@ function validate26(
10862
10965
  }
10863
10966
  }
10864
10967
  } else {
10865
- validate26.errors = [
10968
+ validate28.errors = [
10866
10969
  {
10867
10970
  instancePath,
10868
10971
  schemaPath: '#/oneOf/6/type',
@@ -10887,7 +10990,7 @@ function validate26(
10887
10990
  data.step === undefined &&
10888
10991
  (missing8 = 'step')
10889
10992
  ) {
10890
- validate26.errors = [
10993
+ validate28.errors = [
10891
10994
  {
10892
10995
  instancePath,
10893
10996
  schemaPath: '#/oneOf/7/required',
@@ -10912,7 +11015,7 @@ function validate26(
10912
11015
  key15 === 'themeSlug'
10913
11016
  )
10914
11017
  ) {
10915
- validate26.errors = [
11018
+ validate28.errors = [
10916
11019
  {
10917
11020
  instancePath,
10918
11021
  schemaPath:
@@ -10951,7 +11054,7 @@ function validate26(
10951
11054
  'caption'
10952
11055
  )
10953
11056
  ) {
10954
- validate26.errors =
11057
+ validate28.errors =
10955
11058
  [
10956
11059
  {
10957
11060
  instancePath:
@@ -10991,7 +11094,7 @@ function validate26(
10991
11094
  )
10992
11095
  )
10993
11096
  ) {
10994
- validate26.errors =
11097
+ validate28.errors =
10995
11098
  [
10996
11099
  {
10997
11100
  instancePath:
@@ -11027,7 +11130,7 @@ function validate26(
11027
11130
  typeof data41.caption !==
11028
11131
  'string'
11029
11132
  ) {
11030
- validate26.errors =
11133
+ validate28.errors =
11031
11134
  [
11032
11135
  {
11033
11136
  instancePath:
@@ -11055,7 +11158,7 @@ function validate26(
11055
11158
  }
11056
11159
  }
11057
11160
  } else {
11058
- validate26.errors = [
11161
+ validate28.errors = [
11059
11162
  {
11060
11163
  instancePath:
11061
11164
  instancePath +
@@ -11084,7 +11187,7 @@ function validate26(
11084
11187
  if (
11085
11188
  typeof data44 !== 'string'
11086
11189
  ) {
11087
- validate26.errors = [
11190
+ validate28.errors = [
11088
11191
  {
11089
11192
  instancePath:
11090
11193
  instancePath +
@@ -11105,7 +11208,7 @@ function validate26(
11105
11208
  'importThemeStarterContent' !==
11106
11209
  data44
11107
11210
  ) {
11108
- validate26.errors = [
11211
+ validate28.errors = [
11109
11212
  {
11110
11213
  instancePath:
11111
11214
  instancePath +
@@ -11137,7 +11240,7 @@ function validate26(
11137
11240
  typeof data.themeSlug !==
11138
11241
  'string'
11139
11242
  ) {
11140
- validate26.errors = [
11243
+ validate28.errors = [
11141
11244
  {
11142
11245
  instancePath:
11143
11246
  instancePath +
@@ -11164,7 +11267,7 @@ function validate26(
11164
11267
  }
11165
11268
  }
11166
11269
  } else {
11167
- validate26.errors = [
11270
+ validate28.errors = [
11168
11271
  {
11169
11272
  instancePath,
11170
11273
  schemaPath: '#/oneOf/7/type',
@@ -11191,7 +11294,7 @@ function validate26(
11191
11294
  (data.wordPressFilesZip === undefined &&
11192
11295
  (missing9 = 'wordPressFilesZip'))
11193
11296
  ) {
11194
- validate26.errors = [
11297
+ validate28.errors = [
11195
11298
  {
11196
11299
  instancePath,
11197
11300
  schemaPath: '#/oneOf/8/required',
@@ -11217,7 +11320,7 @@ function validate26(
11217
11320
  key17 === 'pathInZip'
11218
11321
  )
11219
11322
  ) {
11220
- validate26.errors = [
11323
+ validate28.errors = [
11221
11324
  {
11222
11325
  instancePath,
11223
11326
  schemaPath:
@@ -11256,7 +11359,7 @@ function validate26(
11256
11359
  'caption'
11257
11360
  )
11258
11361
  ) {
11259
- validate26.errors =
11362
+ validate28.errors =
11260
11363
  [
11261
11364
  {
11262
11365
  instancePath:
@@ -11296,7 +11399,7 @@ function validate26(
11296
11399
  )
11297
11400
  )
11298
11401
  ) {
11299
- validate26.errors =
11402
+ validate28.errors =
11300
11403
  [
11301
11404
  {
11302
11405
  instancePath:
@@ -11332,7 +11435,7 @@ function validate26(
11332
11435
  typeof data46.caption !==
11333
11436
  'string'
11334
11437
  ) {
11335
- validate26.errors =
11438
+ validate28.errors =
11336
11439
  [
11337
11440
  {
11338
11441
  instancePath:
@@ -11360,7 +11463,7 @@ function validate26(
11360
11463
  }
11361
11464
  }
11362
11465
  } else {
11363
- validate26.errors = [
11466
+ validate28.errors = [
11364
11467
  {
11365
11468
  instancePath:
11366
11469
  instancePath +
@@ -11389,7 +11492,7 @@ function validate26(
11389
11492
  if (
11390
11493
  typeof data49 !== 'string'
11391
11494
  ) {
11392
- validate26.errors = [
11495
+ validate28.errors = [
11393
11496
  {
11394
11497
  instancePath:
11395
11498
  instancePath +
@@ -11410,7 +11513,7 @@ function validate26(
11410
11513
  'importWordPressFiles' !==
11411
11514
  data49
11412
11515
  ) {
11413
- validate26.errors = [
11516
+ validate28.errors = [
11414
11517
  {
11415
11518
  instancePath:
11416
11519
  instancePath +
@@ -11440,7 +11543,7 @@ function validate26(
11440
11543
  ) {
11441
11544
  const _errs137 = errors;
11442
11545
  if (
11443
- !validate14(
11546
+ !validate16(
11444
11547
  data.wordPressFilesZip,
11445
11548
  {
11446
11549
  instancePath:
@@ -11456,9 +11559,9 @@ function validate26(
11456
11559
  ) {
11457
11560
  vErrors =
11458
11561
  vErrors === null
11459
- ? validate14.errors
11562
+ ? validate16.errors
11460
11563
  : vErrors.concat(
11461
- validate14.errors
11564
+ validate16.errors
11462
11565
  );
11463
11566
  errors = vErrors.length;
11464
11567
  }
@@ -11477,7 +11580,7 @@ function validate26(
11477
11580
  typeof data.pathInZip !==
11478
11581
  'string'
11479
11582
  ) {
11480
- validate26.errors =
11583
+ validate28.errors =
11481
11584
  [
11482
11585
  {
11483
11586
  instancePath:
@@ -11507,7 +11610,7 @@ function validate26(
11507
11610
  }
11508
11611
  }
11509
11612
  } else {
11510
- validate26.errors = [
11613
+ validate28.errors = [
11511
11614
  {
11512
11615
  instancePath,
11513
11616
  schemaPath: '#/oneOf/8/type',
@@ -11534,7 +11637,7 @@ function validate26(
11534
11637
  (data.step === undefined &&
11535
11638
  (missing10 = 'step'))
11536
11639
  ) {
11537
- validate26.errors = [
11640
+ validate28.errors = [
11538
11641
  {
11539
11642
  instancePath,
11540
11643
  schemaPath: '#/oneOf/9/required',
@@ -11563,7 +11666,7 @@ function validate26(
11563
11666
  key19 === 'options'
11564
11667
  )
11565
11668
  ) {
11566
- validate26.errors = [
11669
+ validate28.errors = [
11567
11670
  {
11568
11671
  instancePath,
11569
11672
  schemaPath:
@@ -11602,7 +11705,7 @@ function validate26(
11602
11705
  'caption'
11603
11706
  )
11604
11707
  ) {
11605
- validate26.errors =
11708
+ validate28.errors =
11606
11709
  [
11607
11710
  {
11608
11711
  instancePath:
@@ -11642,7 +11745,7 @@ function validate26(
11642
11745
  )
11643
11746
  )
11644
11747
  ) {
11645
- validate26.errors =
11748
+ validate28.errors =
11646
11749
  [
11647
11750
  {
11648
11751
  instancePath:
@@ -11678,7 +11781,7 @@ function validate26(
11678
11781
  typeof data52.caption !==
11679
11782
  'string'
11680
11783
  ) {
11681
- validate26.errors =
11784
+ validate28.errors =
11682
11785
  [
11683
11786
  {
11684
11787
  instancePath:
@@ -11706,7 +11809,7 @@ function validate26(
11706
11809
  }
11707
11810
  }
11708
11811
  } else {
11709
- validate26.errors = [
11812
+ validate28.errors = [
11710
11813
  {
11711
11814
  instancePath:
11712
11815
  instancePath +
@@ -11739,7 +11842,7 @@ function validate26(
11739
11842
  if (
11740
11843
  typeof data55 !== 'string'
11741
11844
  ) {
11742
- validate26.errors = [
11845
+ validate28.errors = [
11743
11846
  {
11744
11847
  instancePath:
11745
11848
  instancePath +
@@ -11764,7 +11867,7 @@ function validate26(
11764
11867
  data55 === 'error'
11765
11868
  )
11766
11869
  ) {
11767
- validate26.errors = [
11870
+ validate28.errors = [
11768
11871
  {
11769
11872
  instancePath:
11770
11873
  instancePath +
@@ -11774,7 +11877,7 @@ function validate26(
11774
11877
  keyword: 'enum',
11775
11878
  params: {
11776
11879
  allowedValues:
11777
- schema30
11880
+ schema32
11778
11881
  .oneOf[9]
11779
11882
  .properties
11780
11883
  .ifAlreadyInstalled
@@ -11799,7 +11902,7 @@ function validate26(
11799
11902
  typeof data56 !==
11800
11903
  'string'
11801
11904
  ) {
11802
- validate26.errors = [
11905
+ validate28.errors = [
11803
11906
  {
11804
11907
  instancePath:
11805
11908
  instancePath +
@@ -11820,7 +11923,7 @@ function validate26(
11820
11923
  'installPlugin' !==
11821
11924
  data56
11822
11925
  ) {
11823
- validate26.errors = [
11926
+ validate28.errors = [
11824
11927
  {
11825
11928
  instancePath:
11826
11929
  instancePath +
@@ -11856,7 +11959,7 @@ function validate26(
11856
11959
  let valid32 = false;
11857
11960
  const _errs156 = errors;
11858
11961
  if (
11859
- !validate14(
11962
+ !validate16(
11860
11963
  data57,
11861
11964
  {
11862
11965
  instancePath:
@@ -11872,9 +11975,9 @@ function validate26(
11872
11975
  ) {
11873
11976
  vErrors =
11874
11977
  vErrors === null
11875
- ? validate14.errors
11978
+ ? validate16.errors
11876
11979
  : vErrors.concat(
11877
- validate14.errors
11980
+ validate16.errors
11878
11981
  );
11879
11982
  errors =
11880
11983
  vErrors.length;
@@ -11887,7 +11990,7 @@ function validate26(
11887
11990
  const _errs157 =
11888
11991
  errors;
11889
11992
  if (
11890
- !validate16(
11993
+ !validate18(
11891
11994
  data57,
11892
11995
  {
11893
11996
  instancePath:
@@ -11904,9 +12007,9 @@ function validate26(
11904
12007
  vErrors =
11905
12008
  vErrors ===
11906
12009
  null
11907
- ? validate16.errors
12010
+ ? validate18.errors
11908
12011
  : vErrors.concat(
11909
- validate16.errors
12012
+ validate18.errors
11910
12013
  );
11911
12014
  errors =
11912
12015
  vErrors.length;
@@ -11943,7 +12046,7 @@ function validate26(
11943
12046
  );
11944
12047
  }
11945
12048
  errors++;
11946
- validate26.errors =
12049
+ validate28.errors =
11947
12050
  vErrors;
11948
12051
  return false;
11949
12052
  } else {
@@ -11973,7 +12076,7 @@ function validate26(
11973
12076
  const _errs158 =
11974
12077
  errors;
11975
12078
  if (
11976
- !validate14(
12079
+ !validate16(
11977
12080
  data.pluginZipFile,
11978
12081
  {
11979
12082
  instancePath:
@@ -11990,9 +12093,9 @@ function validate26(
11990
12093
  vErrors =
11991
12094
  vErrors ===
11992
12095
  null
11993
- ? validate14.errors
12096
+ ? validate16.errors
11994
12097
  : vErrors.concat(
11995
- validate14.errors
12098
+ validate16.errors
11996
12099
  );
11997
12100
  errors =
11998
12101
  vErrors.length;
@@ -12037,7 +12140,7 @@ function validate26(
12037
12140
  'targetFolderName'
12038
12141
  )
12039
12142
  ) {
12040
- validate26.errors =
12143
+ validate28.errors =
12041
12144
  [
12042
12145
  {
12043
12146
  instancePath:
@@ -12073,7 +12176,7 @@ function validate26(
12073
12176
  typeof data59.activate !==
12074
12177
  'boolean'
12075
12178
  ) {
12076
- validate26.errors =
12179
+ validate28.errors =
12077
12180
  [
12078
12181
  {
12079
12182
  instancePath:
@@ -12111,7 +12214,7 @@ function validate26(
12111
12214
  typeof data59.targetFolderName !==
12112
12215
  'string'
12113
12216
  ) {
12114
- validate26.errors =
12217
+ validate28.errors =
12115
12218
  [
12116
12219
  {
12117
12220
  instancePath:
@@ -12139,7 +12242,7 @@ function validate26(
12139
12242
  }
12140
12243
  }
12141
12244
  } else {
12142
- validate26.errors =
12245
+ validate28.errors =
12143
12246
  [
12144
12247
  {
12145
12248
  instancePath:
@@ -12173,7 +12276,7 @@ function validate26(
12173
12276
  }
12174
12277
  }
12175
12278
  } else {
12176
- validate26.errors = [
12279
+ validate28.errors = [
12177
12280
  {
12178
12281
  instancePath,
12179
12282
  schemaPath: '#/oneOf/9/type',
@@ -12200,7 +12303,7 @@ function validate26(
12200
12303
  (data.themeData === undefined &&
12201
12304
  (missing11 = 'themeData'))
12202
12305
  ) {
12203
- validate26.errors = [
12306
+ validate28.errors = [
12204
12307
  {
12205
12308
  instancePath,
12206
12309
  schemaPath: '#/oneOf/10/required',
@@ -12229,7 +12332,7 @@ function validate26(
12229
12332
  key22 === 'options'
12230
12333
  )
12231
12334
  ) {
12232
- validate26.errors = [
12335
+ validate28.errors = [
12233
12336
  {
12234
12337
  instancePath,
12235
12338
  schemaPath:
@@ -12268,7 +12371,7 @@ function validate26(
12268
12371
  'caption'
12269
12372
  )
12270
12373
  ) {
12271
- validate26.errors =
12374
+ validate28.errors =
12272
12375
  [
12273
12376
  {
12274
12377
  instancePath:
@@ -12308,7 +12411,7 @@ function validate26(
12308
12411
  )
12309
12412
  )
12310
12413
  ) {
12311
- validate26.errors =
12414
+ validate28.errors =
12312
12415
  [
12313
12416
  {
12314
12417
  instancePath:
@@ -12344,7 +12447,7 @@ function validate26(
12344
12447
  typeof data62.caption !==
12345
12448
  'string'
12346
12449
  ) {
12347
- validate26.errors =
12450
+ validate28.errors =
12348
12451
  [
12349
12452
  {
12350
12453
  instancePath:
@@ -12372,7 +12475,7 @@ function validate26(
12372
12475
  }
12373
12476
  }
12374
12477
  } else {
12375
- validate26.errors = [
12478
+ validate28.errors = [
12376
12479
  {
12377
12480
  instancePath:
12378
12481
  instancePath +
@@ -12405,7 +12508,7 @@ function validate26(
12405
12508
  if (
12406
12509
  typeof data65 !== 'string'
12407
12510
  ) {
12408
- validate26.errors = [
12511
+ validate28.errors = [
12409
12512
  {
12410
12513
  instancePath:
12411
12514
  instancePath +
@@ -12430,7 +12533,7 @@ function validate26(
12430
12533
  data65 === 'error'
12431
12534
  )
12432
12535
  ) {
12433
- validate26.errors = [
12536
+ validate28.errors = [
12434
12537
  {
12435
12538
  instancePath:
12436
12539
  instancePath +
@@ -12440,7 +12543,7 @@ function validate26(
12440
12543
  keyword: 'enum',
12441
12544
  params: {
12442
12545
  allowedValues:
12443
- schema30
12546
+ schema32
12444
12547
  .oneOf[10]
12445
12548
  .properties
12446
12549
  .ifAlreadyInstalled
@@ -12465,7 +12568,7 @@ function validate26(
12465
12568
  typeof data66 !==
12466
12569
  'string'
12467
12570
  ) {
12468
- validate26.errors = [
12571
+ validate28.errors = [
12469
12572
  {
12470
12573
  instancePath:
12471
12574
  instancePath +
@@ -12486,7 +12589,7 @@ function validate26(
12486
12589
  'installTheme' !==
12487
12590
  data66
12488
12591
  ) {
12489
- validate26.errors = [
12592
+ validate28.errors = [
12490
12593
  {
12491
12594
  instancePath:
12492
12595
  instancePath +
@@ -12522,7 +12625,7 @@ function validate26(
12522
12625
  let valid38 = false;
12523
12626
  const _errs183 = errors;
12524
12627
  if (
12525
- !validate14(
12628
+ !validate16(
12526
12629
  data67,
12527
12630
  {
12528
12631
  instancePath:
@@ -12538,9 +12641,9 @@ function validate26(
12538
12641
  ) {
12539
12642
  vErrors =
12540
12643
  vErrors === null
12541
- ? validate14.errors
12644
+ ? validate16.errors
12542
12645
  : vErrors.concat(
12543
- validate14.errors
12646
+ validate16.errors
12544
12647
  );
12545
12648
  errors =
12546
12649
  vErrors.length;
@@ -12553,7 +12656,7 @@ function validate26(
12553
12656
  const _errs184 =
12554
12657
  errors;
12555
12658
  if (
12556
- !validate16(
12659
+ !validate18(
12557
12660
  data67,
12558
12661
  {
12559
12662
  instancePath:
@@ -12570,9 +12673,9 @@ function validate26(
12570
12673
  vErrors =
12571
12674
  vErrors ===
12572
12675
  null
12573
- ? validate16.errors
12676
+ ? validate18.errors
12574
12677
  : vErrors.concat(
12575
- validate16.errors
12678
+ validate18.errors
12576
12679
  );
12577
12680
  errors =
12578
12681
  vErrors.length;
@@ -12609,7 +12712,7 @@ function validate26(
12609
12712
  );
12610
12713
  }
12611
12714
  errors++;
12612
- validate26.errors =
12715
+ validate28.errors =
12613
12716
  vErrors;
12614
12717
  return false;
12615
12718
  } else {
@@ -12639,7 +12742,7 @@ function validate26(
12639
12742
  const _errs185 =
12640
12743
  errors;
12641
12744
  if (
12642
- !validate14(
12745
+ !validate16(
12643
12746
  data.themeZipFile,
12644
12747
  {
12645
12748
  instancePath:
@@ -12656,9 +12759,9 @@ function validate26(
12656
12759
  vErrors =
12657
12760
  vErrors ===
12658
12761
  null
12659
- ? validate14.errors
12762
+ ? validate16.errors
12660
12763
  : vErrors.concat(
12661
- validate14.errors
12764
+ validate16.errors
12662
12765
  );
12663
12766
  errors =
12664
12767
  vErrors.length;
@@ -12705,7 +12808,7 @@ function validate26(
12705
12808
  'targetFolderName'
12706
12809
  )
12707
12810
  ) {
12708
- validate26.errors =
12811
+ validate28.errors =
12709
12812
  [
12710
12813
  {
12711
12814
  instancePath:
@@ -12741,7 +12844,7 @@ function validate26(
12741
12844
  typeof data69.activate !==
12742
12845
  'boolean'
12743
12846
  ) {
12744
- validate26.errors =
12847
+ validate28.errors =
12745
12848
  [
12746
12849
  {
12747
12850
  instancePath:
@@ -12779,7 +12882,7 @@ function validate26(
12779
12882
  typeof data69.importStarterContent !==
12780
12883
  'boolean'
12781
12884
  ) {
12782
- validate26.errors =
12885
+ validate28.errors =
12783
12886
  [
12784
12887
  {
12785
12888
  instancePath:
@@ -12817,7 +12920,7 @@ function validate26(
12817
12920
  typeof data69.targetFolderName !==
12818
12921
  'string'
12819
12922
  ) {
12820
- validate26.errors =
12923
+ validate28.errors =
12821
12924
  [
12822
12925
  {
12823
12926
  instancePath:
@@ -12846,7 +12949,7 @@ function validate26(
12846
12949
  }
12847
12950
  }
12848
12951
  } else {
12849
- validate26.errors =
12952
+ validate28.errors =
12850
12953
  [
12851
12954
  {
12852
12955
  instancePath:
@@ -12880,7 +12983,7 @@ function validate26(
12880
12983
  }
12881
12984
  }
12882
12985
  } else {
12883
- validate26.errors = [
12986
+ validate28.errors = [
12884
12987
  {
12885
12988
  instancePath,
12886
12989
  schemaPath: '#/oneOf/10/type',
@@ -12905,7 +13008,7 @@ function validate26(
12905
13008
  data.step === undefined &&
12906
13009
  (missing12 = 'step')
12907
13010
  ) {
12908
- validate26.errors = [
13011
+ validate28.errors = [
12909
13012
  {
12910
13013
  instancePath,
12911
13014
  schemaPath: '#/oneOf/11/required',
@@ -12931,7 +13034,7 @@ function validate26(
12931
13034
  key25 === 'password'
12932
13035
  )
12933
13036
  ) {
12934
- validate26.errors = [
13037
+ validate28.errors = [
12935
13038
  {
12936
13039
  instancePath,
12937
13040
  schemaPath:
@@ -12970,7 +13073,7 @@ function validate26(
12970
13073
  'caption'
12971
13074
  )
12972
13075
  ) {
12973
- validate26.errors =
13076
+ validate28.errors =
12974
13077
  [
12975
13078
  {
12976
13079
  instancePath:
@@ -13010,7 +13113,7 @@ function validate26(
13010
13113
  )
13011
13114
  )
13012
13115
  ) {
13013
- validate26.errors =
13116
+ validate28.errors =
13014
13117
  [
13015
13118
  {
13016
13119
  instancePath:
@@ -13046,7 +13149,7 @@ function validate26(
13046
13149
  typeof data73.caption !==
13047
13150
  'string'
13048
13151
  ) {
13049
- validate26.errors =
13152
+ validate28.errors =
13050
13153
  [
13051
13154
  {
13052
13155
  instancePath:
@@ -13074,7 +13177,7 @@ function validate26(
13074
13177
  }
13075
13178
  }
13076
13179
  } else {
13077
- validate26.errors = [
13180
+ validate28.errors = [
13078
13181
  {
13079
13182
  instancePath:
13080
13183
  instancePath +
@@ -13103,7 +13206,7 @@ function validate26(
13103
13206
  if (
13104
13207
  typeof data76 !== 'string'
13105
13208
  ) {
13106
- validate26.errors = [
13209
+ validate28.errors = [
13107
13210
  {
13108
13211
  instancePath:
13109
13212
  instancePath +
@@ -13121,7 +13224,7 @@ function validate26(
13121
13224
  return false;
13122
13225
  }
13123
13226
  if ('login' !== data76) {
13124
- validate26.errors = [
13227
+ validate28.errors = [
13125
13228
  {
13126
13229
  instancePath:
13127
13230
  instancePath +
@@ -13153,7 +13256,7 @@ function validate26(
13153
13256
  typeof data.username !==
13154
13257
  'string'
13155
13258
  ) {
13156
- validate26.errors = [
13259
+ validate28.errors = [
13157
13260
  {
13158
13261
  instancePath:
13159
13262
  instancePath +
@@ -13185,7 +13288,7 @@ function validate26(
13185
13288
  typeof data.password !==
13186
13289
  'string'
13187
13290
  ) {
13188
- validate26.errors =
13291
+ validate28.errors =
13189
13292
  [
13190
13293
  {
13191
13294
  instancePath:
@@ -13215,7 +13318,7 @@ function validate26(
13215
13318
  }
13216
13319
  }
13217
13320
  } else {
13218
- validate26.errors = [
13321
+ validate28.errors = [
13219
13322
  {
13220
13323
  instancePath,
13221
13324
  schemaPath: '#/oneOf/11/type',
@@ -13242,7 +13345,7 @@ function validate26(
13242
13345
  (data.step === undefined &&
13243
13346
  (missing13 = 'step'))
13244
13347
  ) {
13245
- validate26.errors = [
13348
+ validate28.errors = [
13246
13349
  {
13247
13350
  instancePath,
13248
13351
  schemaPath: '#/oneOf/12/required',
@@ -13267,7 +13370,7 @@ function validate26(
13267
13370
  key27 === 'path'
13268
13371
  )
13269
13372
  ) {
13270
- validate26.errors = [
13373
+ validate28.errors = [
13271
13374
  {
13272
13375
  instancePath,
13273
13376
  schemaPath:
@@ -13306,7 +13409,7 @@ function validate26(
13306
13409
  'caption'
13307
13410
  )
13308
13411
  ) {
13309
- validate26.errors =
13412
+ validate28.errors =
13310
13413
  [
13311
13414
  {
13312
13415
  instancePath:
@@ -13346,7 +13449,7 @@ function validate26(
13346
13449
  )
13347
13450
  )
13348
13451
  ) {
13349
- validate26.errors =
13452
+ validate28.errors =
13350
13453
  [
13351
13454
  {
13352
13455
  instancePath:
@@ -13382,7 +13485,7 @@ function validate26(
13382
13485
  typeof data79.caption !==
13383
13486
  'string'
13384
13487
  ) {
13385
- validate26.errors =
13488
+ validate28.errors =
13386
13489
  [
13387
13490
  {
13388
13491
  instancePath:
@@ -13410,7 +13513,7 @@ function validate26(
13410
13513
  }
13411
13514
  }
13412
13515
  } else {
13413
- validate26.errors = [
13516
+ validate28.errors = [
13414
13517
  {
13415
13518
  instancePath:
13416
13519
  instancePath +
@@ -13439,7 +13542,7 @@ function validate26(
13439
13542
  if (
13440
13543
  typeof data82 !== 'string'
13441
13544
  ) {
13442
- validate26.errors = [
13545
+ validate28.errors = [
13443
13546
  {
13444
13547
  instancePath:
13445
13548
  instancePath +
@@ -13457,7 +13560,7 @@ function validate26(
13457
13560
  return false;
13458
13561
  }
13459
13562
  if ('mkdir' !== data82) {
13460
- validate26.errors = [
13563
+ validate28.errors = [
13461
13564
  {
13462
13565
  instancePath:
13463
13566
  instancePath +
@@ -13487,7 +13590,7 @@ function validate26(
13487
13590
  typeof data.path !==
13488
13591
  'string'
13489
13592
  ) {
13490
- validate26.errors = [
13593
+ validate28.errors = [
13491
13594
  {
13492
13595
  instancePath:
13493
13596
  instancePath +
@@ -13514,7 +13617,7 @@ function validate26(
13514
13617
  }
13515
13618
  }
13516
13619
  } else {
13517
- validate26.errors = [
13620
+ validate28.errors = [
13518
13621
  {
13519
13622
  instancePath,
13520
13623
  schemaPath: '#/oneOf/12/type',
@@ -13543,7 +13646,7 @@ function validate26(
13543
13646
  (data.toPath === undefined &&
13544
13647
  (missing14 = 'toPath'))
13545
13648
  ) {
13546
- validate26.errors = [
13649
+ validate28.errors = [
13547
13650
  {
13548
13651
  instancePath,
13549
13652
  schemaPath: '#/oneOf/13/required',
@@ -13569,7 +13672,7 @@ function validate26(
13569
13672
  key29 === 'toPath'
13570
13673
  )
13571
13674
  ) {
13572
- validate26.errors = [
13675
+ validate28.errors = [
13573
13676
  {
13574
13677
  instancePath,
13575
13678
  schemaPath:
@@ -13608,7 +13711,7 @@ function validate26(
13608
13711
  'caption'
13609
13712
  )
13610
13713
  ) {
13611
- validate26.errors =
13714
+ validate28.errors =
13612
13715
  [
13613
13716
  {
13614
13717
  instancePath:
@@ -13648,7 +13751,7 @@ function validate26(
13648
13751
  )
13649
13752
  )
13650
13753
  ) {
13651
- validate26.errors =
13754
+ validate28.errors =
13652
13755
  [
13653
13756
  {
13654
13757
  instancePath:
@@ -13684,7 +13787,7 @@ function validate26(
13684
13787
  typeof data84.caption !==
13685
13788
  'string'
13686
13789
  ) {
13687
- validate26.errors =
13790
+ validate28.errors =
13688
13791
  [
13689
13792
  {
13690
13793
  instancePath:
@@ -13712,7 +13815,7 @@ function validate26(
13712
13815
  }
13713
13816
  }
13714
13817
  } else {
13715
- validate26.errors = [
13818
+ validate28.errors = [
13716
13819
  {
13717
13820
  instancePath:
13718
13821
  instancePath +
@@ -13741,7 +13844,7 @@ function validate26(
13741
13844
  if (
13742
13845
  typeof data87 !== 'string'
13743
13846
  ) {
13744
- validate26.errors = [
13847
+ validate28.errors = [
13745
13848
  {
13746
13849
  instancePath:
13747
13850
  instancePath +
@@ -13759,7 +13862,7 @@ function validate26(
13759
13862
  return false;
13760
13863
  }
13761
13864
  if ('mv' !== data87) {
13762
- validate26.errors = [
13865
+ validate28.errors = [
13763
13866
  {
13764
13867
  instancePath:
13765
13868
  instancePath +
@@ -13791,7 +13894,7 @@ function validate26(
13791
13894
  typeof data.fromPath !==
13792
13895
  'string'
13793
13896
  ) {
13794
- validate26.errors = [
13897
+ validate28.errors = [
13795
13898
  {
13796
13899
  instancePath:
13797
13900
  instancePath +
@@ -13823,7 +13926,7 @@ function validate26(
13823
13926
  typeof data.toPath !==
13824
13927
  'string'
13825
13928
  ) {
13826
- validate26.errors =
13929
+ validate28.errors =
13827
13930
  [
13828
13931
  {
13829
13932
  instancePath:
@@ -13853,7 +13956,7 @@ function validate26(
13853
13956
  }
13854
13957
  }
13855
13958
  } else {
13856
- validate26.errors = [
13959
+ validate28.errors = [
13857
13960
  {
13858
13961
  instancePath,
13859
13962
  schemaPath: '#/oneOf/13/type',
@@ -13878,7 +13981,7 @@ function validate26(
13878
13981
  data.step === undefined &&
13879
13982
  (missing15 = 'step')
13880
13983
  ) {
13881
- validate26.errors = [
13984
+ validate28.errors = [
13882
13985
  {
13883
13986
  instancePath,
13884
13987
  schemaPath: '#/oneOf/14/required',
@@ -13902,7 +14005,7 @@ function validate26(
13902
14005
  key31 === 'step'
13903
14006
  )
13904
14007
  ) {
13905
- validate26.errors = [
14008
+ validate28.errors = [
13906
14009
  {
13907
14010
  instancePath,
13908
14011
  schemaPath:
@@ -13941,7 +14044,7 @@ function validate26(
13941
14044
  'caption'
13942
14045
  )
13943
14046
  ) {
13944
- validate26.errors =
14047
+ validate28.errors =
13945
14048
  [
13946
14049
  {
13947
14050
  instancePath:
@@ -13981,7 +14084,7 @@ function validate26(
13981
14084
  )
13982
14085
  )
13983
14086
  ) {
13984
- validate26.errors =
14087
+ validate28.errors =
13985
14088
  [
13986
14089
  {
13987
14090
  instancePath:
@@ -14017,7 +14120,7 @@ function validate26(
14017
14120
  typeof data90.caption !==
14018
14121
  'string'
14019
14122
  ) {
14020
- validate26.errors =
14123
+ validate28.errors =
14021
14124
  [
14022
14125
  {
14023
14126
  instancePath:
@@ -14045,7 +14148,7 @@ function validate26(
14045
14148
  }
14046
14149
  }
14047
14150
  } else {
14048
- validate26.errors = [
14151
+ validate28.errors = [
14049
14152
  {
14050
14153
  instancePath:
14051
14154
  instancePath +
@@ -14074,7 +14177,7 @@ function validate26(
14074
14177
  if (
14075
14178
  typeof data93 !== 'string'
14076
14179
  ) {
14077
- validate26.errors = [
14180
+ validate28.errors = [
14078
14181
  {
14079
14182
  instancePath:
14080
14183
  instancePath +
@@ -14092,7 +14195,7 @@ function validate26(
14092
14195
  return false;
14093
14196
  }
14094
14197
  if ('resetData' !== data93) {
14095
- validate26.errors = [
14198
+ validate28.errors = [
14096
14199
  {
14097
14200
  instancePath:
14098
14201
  instancePath +
@@ -14119,7 +14222,7 @@ function validate26(
14119
14222
  }
14120
14223
  }
14121
14224
  } else {
14122
- validate26.errors = [
14225
+ validate28.errors = [
14123
14226
  {
14124
14227
  instancePath,
14125
14228
  schemaPath: '#/oneOf/14/type',
@@ -14146,7 +14249,7 @@ function validate26(
14146
14249
  (data.step === undefined &&
14147
14250
  (missing16 = 'step'))
14148
14251
  ) {
14149
- validate26.errors = [
14252
+ validate28.errors = [
14150
14253
  {
14151
14254
  instancePath,
14152
14255
  schemaPath: '#/oneOf/15/required',
@@ -14171,7 +14274,7 @@ function validate26(
14171
14274
  key33 === 'request'
14172
14275
  )
14173
14276
  ) {
14174
- validate26.errors = [
14277
+ validate28.errors = [
14175
14278
  {
14176
14279
  instancePath,
14177
14280
  schemaPath:
@@ -14210,7 +14313,7 @@ function validate26(
14210
14313
  'caption'
14211
14314
  )
14212
14315
  ) {
14213
- validate26.errors =
14316
+ validate28.errors =
14214
14317
  [
14215
14318
  {
14216
14319
  instancePath:
@@ -14250,7 +14353,7 @@ function validate26(
14250
14353
  )
14251
14354
  )
14252
14355
  ) {
14253
- validate26.errors =
14356
+ validate28.errors =
14254
14357
  [
14255
14358
  {
14256
14359
  instancePath:
@@ -14286,7 +14389,7 @@ function validate26(
14286
14389
  typeof data94.caption !==
14287
14390
  'string'
14288
14391
  ) {
14289
- validate26.errors =
14392
+ validate28.errors =
14290
14393
  [
14291
14394
  {
14292
14395
  instancePath:
@@ -14314,7 +14417,7 @@ function validate26(
14314
14417
  }
14315
14418
  }
14316
14419
  } else {
14317
- validate26.errors = [
14420
+ validate28.errors = [
14318
14421
  {
14319
14422
  instancePath:
14320
14423
  instancePath +
@@ -14343,7 +14446,7 @@ function validate26(
14343
14446
  if (
14344
14447
  typeof data97 !== 'string'
14345
14448
  ) {
14346
- validate26.errors = [
14449
+ validate28.errors = [
14347
14450
  {
14348
14451
  instancePath:
14349
14452
  instancePath +
@@ -14361,7 +14464,7 @@ function validate26(
14361
14464
  return false;
14362
14465
  }
14363
14466
  if ('request' !== data97) {
14364
- validate26.errors = [
14467
+ validate28.errors = [
14365
14468
  {
14366
14469
  instancePath:
14367
14470
  instancePath +
@@ -14390,7 +14493,7 @@ function validate26(
14390
14493
  ) {
14391
14494
  const _errs266 = errors;
14392
14495
  if (
14393
- !validate35(
14496
+ !validate37(
14394
14497
  data.request,
14395
14498
  {
14396
14499
  instancePath:
@@ -14406,9 +14509,9 @@ function validate26(
14406
14509
  ) {
14407
14510
  vErrors =
14408
14511
  vErrors === null
14409
- ? validate35.errors
14512
+ ? validate37.errors
14410
14513
  : vErrors.concat(
14411
- validate35.errors
14514
+ validate37.errors
14412
14515
  );
14413
14516
  errors = vErrors.length;
14414
14517
  }
@@ -14422,7 +14525,7 @@ function validate26(
14422
14525
  }
14423
14526
  }
14424
14527
  } else {
14425
- validate26.errors = [
14528
+ validate28.errors = [
14426
14529
  {
14427
14530
  instancePath,
14428
14531
  schemaPath: '#/oneOf/15/type',
@@ -14449,7 +14552,7 @@ function validate26(
14449
14552
  (data.step === undefined &&
14450
14553
  (missing17 = 'step'))
14451
14554
  ) {
14452
- validate26.errors = [
14555
+ validate28.errors = [
14453
14556
  {
14454
14557
  instancePath,
14455
14558
  schemaPath: '#/oneOf/16/required',
@@ -14474,7 +14577,7 @@ function validate26(
14474
14577
  key35 === 'path'
14475
14578
  )
14476
14579
  ) {
14477
- validate26.errors = [
14580
+ validate28.errors = [
14478
14581
  {
14479
14582
  instancePath,
14480
14583
  schemaPath:
@@ -14513,7 +14616,7 @@ function validate26(
14513
14616
  'caption'
14514
14617
  )
14515
14618
  ) {
14516
- validate26.errors =
14619
+ validate28.errors =
14517
14620
  [
14518
14621
  {
14519
14622
  instancePath:
@@ -14553,7 +14656,7 @@ function validate26(
14553
14656
  )
14554
14657
  )
14555
14658
  ) {
14556
- validate26.errors =
14659
+ validate28.errors =
14557
14660
  [
14558
14661
  {
14559
14662
  instancePath:
@@ -14589,7 +14692,7 @@ function validate26(
14589
14692
  typeof data99.caption !==
14590
14693
  'string'
14591
14694
  ) {
14592
- validate26.errors =
14695
+ validate28.errors =
14593
14696
  [
14594
14697
  {
14595
14698
  instancePath:
@@ -14617,7 +14720,7 @@ function validate26(
14617
14720
  }
14618
14721
  }
14619
14722
  } else {
14620
- validate26.errors = [
14723
+ validate28.errors = [
14621
14724
  {
14622
14725
  instancePath:
14623
14726
  instancePath +
@@ -14646,7 +14749,7 @@ function validate26(
14646
14749
  if (
14647
14750
  typeof data102 !== 'string'
14648
14751
  ) {
14649
- validate26.errors = [
14752
+ validate28.errors = [
14650
14753
  {
14651
14754
  instancePath:
14652
14755
  instancePath +
@@ -14664,7 +14767,7 @@ function validate26(
14664
14767
  return false;
14665
14768
  }
14666
14769
  if ('rm' !== data102) {
14667
- validate26.errors = [
14770
+ validate28.errors = [
14668
14771
  {
14669
14772
  instancePath:
14670
14773
  instancePath +
@@ -14694,7 +14797,7 @@ function validate26(
14694
14797
  typeof data.path !==
14695
14798
  'string'
14696
14799
  ) {
14697
- validate26.errors = [
14800
+ validate28.errors = [
14698
14801
  {
14699
14802
  instancePath:
14700
14803
  instancePath +
@@ -14721,7 +14824,7 @@ function validate26(
14721
14824
  }
14722
14825
  }
14723
14826
  } else {
14724
- validate26.errors = [
14827
+ validate28.errors = [
14725
14828
  {
14726
14829
  instancePath,
14727
14830
  schemaPath: '#/oneOf/16/type',
@@ -14748,7 +14851,7 @@ function validate26(
14748
14851
  (data.step === undefined &&
14749
14852
  (missing18 = 'step'))
14750
14853
  ) {
14751
- validate26.errors = [
14854
+ validate28.errors = [
14752
14855
  {
14753
14856
  instancePath,
14754
14857
  schemaPath: '#/oneOf/17/required',
@@ -14773,7 +14876,7 @@ function validate26(
14773
14876
  key37 === 'path'
14774
14877
  )
14775
14878
  ) {
14776
- validate26.errors = [
14879
+ validate28.errors = [
14777
14880
  {
14778
14881
  instancePath,
14779
14882
  schemaPath:
@@ -14813,7 +14916,7 @@ function validate26(
14813
14916
  'caption'
14814
14917
  )
14815
14918
  ) {
14816
- validate26.errors =
14919
+ validate28.errors =
14817
14920
  [
14818
14921
  {
14819
14922
  instancePath:
@@ -14853,7 +14956,7 @@ function validate26(
14853
14956
  )
14854
14957
  )
14855
14958
  ) {
14856
- validate26.errors =
14959
+ validate28.errors =
14857
14960
  [
14858
14961
  {
14859
14962
  instancePath:
@@ -14889,7 +14992,7 @@ function validate26(
14889
14992
  typeof data104.caption !==
14890
14993
  'string'
14891
14994
  ) {
14892
- validate26.errors =
14995
+ validate28.errors =
14893
14996
  [
14894
14997
  {
14895
14998
  instancePath:
@@ -14917,7 +15020,7 @@ function validate26(
14917
15020
  }
14918
15021
  }
14919
15022
  } else {
14920
- validate26.errors = [
15023
+ validate28.errors = [
14921
15024
  {
14922
15025
  instancePath:
14923
15026
  instancePath +
@@ -14946,7 +15049,7 @@ function validate26(
14946
15049
  if (
14947
15050
  typeof data107 !== 'string'
14948
15051
  ) {
14949
- validate26.errors = [
15052
+ validate28.errors = [
14950
15053
  {
14951
15054
  instancePath:
14952
15055
  instancePath +
@@ -14964,7 +15067,7 @@ function validate26(
14964
15067
  return false;
14965
15068
  }
14966
15069
  if ('rmdir' !== data107) {
14967
- validate26.errors = [
15070
+ validate28.errors = [
14968
15071
  {
14969
15072
  instancePath:
14970
15073
  instancePath +
@@ -14994,7 +15097,7 @@ function validate26(
14994
15097
  typeof data.path !==
14995
15098
  'string'
14996
15099
  ) {
14997
- validate26.errors = [
15100
+ validate28.errors = [
14998
15101
  {
14999
15102
  instancePath:
15000
15103
  instancePath +
@@ -15021,7 +15124,7 @@ function validate26(
15021
15124
  }
15022
15125
  }
15023
15126
  } else {
15024
- validate26.errors = [
15127
+ validate28.errors = [
15025
15128
  {
15026
15129
  instancePath,
15027
15130
  schemaPath: '#/oneOf/17/type',
@@ -15048,7 +15151,7 @@ function validate26(
15048
15151
  (data.step === undefined &&
15049
15152
  (missing19 = 'step'))
15050
15153
  ) {
15051
- validate26.errors = [
15154
+ validate28.errors = [
15052
15155
  {
15053
15156
  instancePath,
15054
15157
  schemaPath: '#/oneOf/18/required',
@@ -15073,7 +15176,7 @@ function validate26(
15073
15176
  key39 === 'code'
15074
15177
  )
15075
15178
  ) {
15076
- validate26.errors = [
15179
+ validate28.errors = [
15077
15180
  {
15078
15181
  instancePath,
15079
15182
  schemaPath:
@@ -15113,7 +15216,7 @@ function validate26(
15113
15216
  'caption'
15114
15217
  )
15115
15218
  ) {
15116
- validate26.errors =
15219
+ validate28.errors =
15117
15220
  [
15118
15221
  {
15119
15222
  instancePath:
@@ -15153,7 +15256,7 @@ function validate26(
15153
15256
  )
15154
15257
  )
15155
15258
  ) {
15156
- validate26.errors =
15259
+ validate28.errors =
15157
15260
  [
15158
15261
  {
15159
15262
  instancePath:
@@ -15189,7 +15292,7 @@ function validate26(
15189
15292
  typeof data109.caption !==
15190
15293
  'string'
15191
15294
  ) {
15192
- validate26.errors =
15295
+ validate28.errors =
15193
15296
  [
15194
15297
  {
15195
15298
  instancePath:
@@ -15217,7 +15320,7 @@ function validate26(
15217
15320
  }
15218
15321
  }
15219
15322
  } else {
15220
- validate26.errors = [
15323
+ validate28.errors = [
15221
15324
  {
15222
15325
  instancePath:
15223
15326
  instancePath +
@@ -15246,7 +15349,7 @@ function validate26(
15246
15349
  if (
15247
15350
  typeof data112 !== 'string'
15248
15351
  ) {
15249
- validate26.errors = [
15352
+ validate28.errors = [
15250
15353
  {
15251
15354
  instancePath:
15252
15355
  instancePath +
@@ -15264,7 +15367,7 @@ function validate26(
15264
15367
  return false;
15265
15368
  }
15266
15369
  if ('runPHP' !== data112) {
15267
- validate26.errors = [
15370
+ validate28.errors = [
15268
15371
  {
15269
15372
  instancePath:
15270
15373
  instancePath +
@@ -15578,7 +15681,7 @@ function validate26(
15578
15681
  vErrors.push(err8);
15579
15682
  }
15580
15683
  errors++;
15581
- validate26.errors =
15684
+ validate28.errors =
15582
15685
  vErrors;
15583
15686
  return false;
15584
15687
  } else {
@@ -15602,7 +15705,7 @@ function validate26(
15602
15705
  }
15603
15706
  }
15604
15707
  } else {
15605
- validate26.errors = [
15708
+ validate28.errors = [
15606
15709
  {
15607
15710
  instancePath,
15608
15711
  schemaPath: '#/oneOf/18/type',
@@ -15629,7 +15732,7 @@ function validate26(
15629
15732
  (data.step === undefined &&
15630
15733
  (missing21 = 'step'))
15631
15734
  ) {
15632
- validate26.errors = [
15735
+ validate28.errors = [
15633
15736
  {
15634
15737
  instancePath,
15635
15738
  schemaPath: '#/oneOf/19/required',
@@ -15654,7 +15757,7 @@ function validate26(
15654
15757
  key42 === 'options'
15655
15758
  )
15656
15759
  ) {
15657
- validate26.errors = [
15760
+ validate28.errors = [
15658
15761
  {
15659
15762
  instancePath,
15660
15763
  schemaPath:
@@ -15694,7 +15797,7 @@ function validate26(
15694
15797
  'caption'
15695
15798
  )
15696
15799
  ) {
15697
- validate26.errors =
15800
+ validate28.errors =
15698
15801
  [
15699
15802
  {
15700
15803
  instancePath:
@@ -15734,7 +15837,7 @@ function validate26(
15734
15837
  )
15735
15838
  )
15736
15839
  ) {
15737
- validate26.errors =
15840
+ validate28.errors =
15738
15841
  [
15739
15842
  {
15740
15843
  instancePath:
@@ -15770,7 +15873,7 @@ function validate26(
15770
15873
  typeof data116.caption !==
15771
15874
  'string'
15772
15875
  ) {
15773
- validate26.errors =
15876
+ validate28.errors =
15774
15877
  [
15775
15878
  {
15776
15879
  instancePath:
@@ -15798,7 +15901,7 @@ function validate26(
15798
15901
  }
15799
15902
  }
15800
15903
  } else {
15801
- validate26.errors = [
15904
+ validate28.errors = [
15802
15905
  {
15803
15906
  instancePath:
15804
15907
  instancePath +
@@ -15827,7 +15930,7 @@ function validate26(
15827
15930
  if (
15828
15931
  typeof data119 !== 'string'
15829
15932
  ) {
15830
- validate26.errors = [
15933
+ validate28.errors = [
15831
15934
  {
15832
15935
  instancePath:
15833
15936
  instancePath +
@@ -15848,7 +15951,7 @@ function validate26(
15848
15951
  'runPHPWithOptions' !==
15849
15952
  data119
15850
15953
  ) {
15851
- validate26.errors = [
15954
+ validate28.errors = [
15852
15955
  {
15853
15956
  instancePath:
15854
15957
  instancePath +
@@ -15877,7 +15980,7 @@ function validate26(
15877
15980
  ) {
15878
15981
  const _errs330 = errors;
15879
15982
  if (
15880
- !validate37(
15983
+ !validate39(
15881
15984
  data.options,
15882
15985
  {
15883
15986
  instancePath:
@@ -15893,9 +15996,9 @@ function validate26(
15893
15996
  ) {
15894
15997
  vErrors =
15895
15998
  vErrors === null
15896
- ? validate37.errors
15999
+ ? validate39.errors
15897
16000
  : vErrors.concat(
15898
- validate37.errors
16001
+ validate39.errors
15899
16002
  );
15900
16003
  errors = vErrors.length;
15901
16004
  }
@@ -15909,7 +16012,7 @@ function validate26(
15909
16012
  }
15910
16013
  }
15911
16014
  } else {
15912
- validate26.errors = [
16015
+ validate28.errors = [
15913
16016
  {
15914
16017
  instancePath,
15915
16018
  schemaPath: '#/oneOf/19/type',
@@ -15936,7 +16039,7 @@ function validate26(
15936
16039
  (data.step === undefined &&
15937
16040
  (missing22 = 'step'))
15938
16041
  ) {
15939
- validate26.errors = [
16042
+ validate28.errors = [
15940
16043
  {
15941
16044
  instancePath,
15942
16045
  schemaPath: '#/oneOf/20/required',
@@ -15961,7 +16064,7 @@ function validate26(
15961
16064
  key44 === 'options'
15962
16065
  )
15963
16066
  ) {
15964
- validate26.errors = [
16067
+ validate28.errors = [
15965
16068
  {
15966
16069
  instancePath,
15967
16070
  schemaPath:
@@ -16001,7 +16104,7 @@ function validate26(
16001
16104
  'caption'
16002
16105
  )
16003
16106
  ) {
16004
- validate26.errors =
16107
+ validate28.errors =
16005
16108
  [
16006
16109
  {
16007
16110
  instancePath:
@@ -16041,7 +16144,7 @@ function validate26(
16041
16144
  )
16042
16145
  )
16043
16146
  ) {
16044
- validate26.errors =
16147
+ validate28.errors =
16045
16148
  [
16046
16149
  {
16047
16150
  instancePath:
@@ -16077,7 +16180,7 @@ function validate26(
16077
16180
  typeof data121.caption !==
16078
16181
  'string'
16079
16182
  ) {
16080
- validate26.errors =
16183
+ validate28.errors =
16081
16184
  [
16082
16185
  {
16083
16186
  instancePath:
@@ -16105,7 +16208,7 @@ function validate26(
16105
16208
  }
16106
16209
  }
16107
16210
  } else {
16108
- validate26.errors = [
16211
+ validate28.errors = [
16109
16212
  {
16110
16213
  instancePath:
16111
16214
  instancePath +
@@ -16134,7 +16237,7 @@ function validate26(
16134
16237
  if (
16135
16238
  typeof data124 !== 'string'
16136
16239
  ) {
16137
- validate26.errors = [
16240
+ validate28.errors = [
16138
16241
  {
16139
16242
  instancePath:
16140
16243
  instancePath +
@@ -16155,7 +16258,7 @@ function validate26(
16155
16258
  'runWpInstallationWizard' !==
16156
16259
  data124
16157
16260
  ) {
16158
- validate26.errors = [
16261
+ validate28.errors = [
16159
16262
  {
16160
16263
  instancePath:
16161
16264
  instancePath +
@@ -16205,7 +16308,7 @@ function validate26(
16205
16308
  'adminPassword'
16206
16309
  )
16207
16310
  ) {
16208
- validate26.errors =
16311
+ validate28.errors =
16209
16312
  [
16210
16313
  {
16211
16314
  instancePath:
@@ -16241,7 +16344,7 @@ function validate26(
16241
16344
  typeof data125.adminUsername !==
16242
16345
  'string'
16243
16346
  ) {
16244
- validate26.errors =
16347
+ validate28.errors =
16245
16348
  [
16246
16349
  {
16247
16350
  instancePath:
@@ -16277,7 +16380,7 @@ function validate26(
16277
16380
  typeof data125.adminPassword !==
16278
16381
  'string'
16279
16382
  ) {
16280
- validate26.errors =
16383
+ validate28.errors =
16281
16384
  [
16282
16385
  {
16283
16386
  instancePath:
@@ -16305,7 +16408,7 @@ function validate26(
16305
16408
  }
16306
16409
  }
16307
16410
  } else {
16308
- validate26.errors =
16411
+ validate28.errors =
16309
16412
  [
16310
16413
  {
16311
16414
  instancePath:
@@ -16335,7 +16438,7 @@ function validate26(
16335
16438
  }
16336
16439
  }
16337
16440
  } else {
16338
- validate26.errors = [
16441
+ validate28.errors = [
16339
16442
  {
16340
16443
  instancePath,
16341
16444
  schemaPath: '#/oneOf/20/type',
@@ -16362,7 +16465,7 @@ function validate26(
16362
16465
  (data.step === undefined &&
16363
16466
  (missing23 = 'step'))
16364
16467
  ) {
16365
- validate26.errors = [
16468
+ validate28.errors = [
16366
16469
  {
16367
16470
  instancePath,
16368
16471
  schemaPath: '#/oneOf/21/required',
@@ -16387,7 +16490,7 @@ function validate26(
16387
16490
  key47 === 'sql'
16388
16491
  )
16389
16492
  ) {
16390
- validate26.errors = [
16493
+ validate28.errors = [
16391
16494
  {
16392
16495
  instancePath,
16393
16496
  schemaPath:
@@ -16427,7 +16530,7 @@ function validate26(
16427
16530
  'caption'
16428
16531
  )
16429
16532
  ) {
16430
- validate26.errors =
16533
+ validate28.errors =
16431
16534
  [
16432
16535
  {
16433
16536
  instancePath:
@@ -16467,7 +16570,7 @@ function validate26(
16467
16570
  )
16468
16571
  )
16469
16572
  ) {
16470
- validate26.errors =
16573
+ validate28.errors =
16471
16574
  [
16472
16575
  {
16473
16576
  instancePath:
@@ -16503,7 +16606,7 @@ function validate26(
16503
16606
  typeof data128.caption !==
16504
16607
  'string'
16505
16608
  ) {
16506
- validate26.errors =
16609
+ validate28.errors =
16507
16610
  [
16508
16611
  {
16509
16612
  instancePath:
@@ -16531,7 +16634,7 @@ function validate26(
16531
16634
  }
16532
16635
  }
16533
16636
  } else {
16534
- validate26.errors = [
16637
+ validate28.errors = [
16535
16638
  {
16536
16639
  instancePath:
16537
16640
  instancePath +
@@ -16560,7 +16663,7 @@ function validate26(
16560
16663
  if (
16561
16664
  typeof data131 !== 'string'
16562
16665
  ) {
16563
- validate26.errors = [
16666
+ validate28.errors = [
16564
16667
  {
16565
16668
  instancePath:
16566
16669
  instancePath +
@@ -16578,7 +16681,7 @@ function validate26(
16578
16681
  return false;
16579
16682
  }
16580
16683
  if ('runSql' !== data131) {
16581
- validate26.errors = [
16684
+ validate28.errors = [
16582
16685
  {
16583
16686
  instancePath:
16584
16687
  instancePath +
@@ -16605,7 +16708,7 @@ function validate26(
16605
16708
  if (data.sql !== undefined) {
16606
16709
  const _errs363 = errors;
16607
16710
  if (
16608
- !validate14(data.sql, {
16711
+ !validate16(data.sql, {
16609
16712
  instancePath:
16610
16713
  instancePath +
16611
16714
  '/sql',
@@ -16617,9 +16720,9 @@ function validate26(
16617
16720
  ) {
16618
16721
  vErrors =
16619
16722
  vErrors === null
16620
- ? validate14.errors
16723
+ ? validate16.errors
16621
16724
  : vErrors.concat(
16622
- validate14.errors
16725
+ validate16.errors
16623
16726
  );
16624
16727
  errors = vErrors.length;
16625
16728
  }
@@ -16633,7 +16736,7 @@ function validate26(
16633
16736
  }
16634
16737
  }
16635
16738
  } else {
16636
- validate26.errors = [
16739
+ validate28.errors = [
16637
16740
  {
16638
16741
  instancePath,
16639
16742
  schemaPath: '#/oneOf/21/type',
@@ -16660,7 +16763,7 @@ function validate26(
16660
16763
  (data.step === undefined &&
16661
16764
  (missing24 = 'step'))
16662
16765
  ) {
16663
- validate26.errors = [
16766
+ validate28.errors = [
16664
16767
  {
16665
16768
  instancePath,
16666
16769
  schemaPath: '#/oneOf/22/required',
@@ -16685,7 +16788,7 @@ function validate26(
16685
16788
  key49 === 'options'
16686
16789
  )
16687
16790
  ) {
16688
- validate26.errors = [
16791
+ validate28.errors = [
16689
16792
  {
16690
16793
  instancePath,
16691
16794
  schemaPath:
@@ -16725,7 +16828,7 @@ function validate26(
16725
16828
  'caption'
16726
16829
  )
16727
16830
  ) {
16728
- validate26.errors =
16831
+ validate28.errors =
16729
16832
  [
16730
16833
  {
16731
16834
  instancePath:
@@ -16765,7 +16868,7 @@ function validate26(
16765
16868
  )
16766
16869
  )
16767
16870
  ) {
16768
- validate26.errors =
16871
+ validate28.errors =
16769
16872
  [
16770
16873
  {
16771
16874
  instancePath:
@@ -16801,7 +16904,7 @@ function validate26(
16801
16904
  typeof data133.caption !==
16802
16905
  'string'
16803
16906
  ) {
16804
- validate26.errors =
16907
+ validate28.errors =
16805
16908
  [
16806
16909
  {
16807
16910
  instancePath:
@@ -16829,7 +16932,7 @@ function validate26(
16829
16932
  }
16830
16933
  }
16831
16934
  } else {
16832
- validate26.errors = [
16935
+ validate28.errors = [
16833
16936
  {
16834
16937
  instancePath:
16835
16938
  instancePath +
@@ -16858,7 +16961,7 @@ function validate26(
16858
16961
  if (
16859
16962
  typeof data136 !== 'string'
16860
16963
  ) {
16861
- validate26.errors = [
16964
+ validate28.errors = [
16862
16965
  {
16863
16966
  instancePath:
16864
16967
  instancePath +
@@ -16878,7 +16981,7 @@ function validate26(
16878
16981
  if (
16879
16982
  'setSiteOptions' !== data136
16880
16983
  ) {
16881
- validate26.errors = [
16984
+ validate28.errors = [
16882
16985
  {
16883
16986
  instancePath:
16884
16987
  instancePath +
@@ -16927,7 +17030,7 @@ function validate26(
16927
17030
  }
16928
17031
  }
16929
17032
  } else {
16930
- validate26.errors =
17033
+ validate28.errors =
16931
17034
  [
16932
17035
  {
16933
17036
  instancePath:
@@ -16957,7 +17060,7 @@ function validate26(
16957
17060
  }
16958
17061
  }
16959
17062
  } else {
16960
- validate26.errors = [
17063
+ validate28.errors = [
16961
17064
  {
16962
17065
  instancePath,
16963
17066
  schemaPath: '#/oneOf/22/type',
@@ -16984,7 +17087,7 @@ function validate26(
16984
17087
  (data.step === undefined &&
16985
17088
  (missing25 = 'step'))
16986
17089
  ) {
16987
- validate26.errors = [
17090
+ validate28.errors = [
16988
17091
  {
16989
17092
  instancePath,
16990
17093
  schemaPath: '#/oneOf/23/required',
@@ -17011,7 +17114,7 @@ function validate26(
17011
17114
  key52 === 'extractToPath'
17012
17115
  )
17013
17116
  ) {
17014
- validate26.errors = [
17117
+ validate28.errors = [
17015
17118
  {
17016
17119
  instancePath,
17017
17120
  schemaPath:
@@ -17051,7 +17154,7 @@ function validate26(
17051
17154
  'caption'
17052
17155
  )
17053
17156
  ) {
17054
- validate26.errors =
17157
+ validate28.errors =
17055
17158
  [
17056
17159
  {
17057
17160
  instancePath:
@@ -17091,7 +17194,7 @@ function validate26(
17091
17194
  )
17092
17195
  )
17093
17196
  ) {
17094
- validate26.errors =
17197
+ validate28.errors =
17095
17198
  [
17096
17199
  {
17097
17200
  instancePath:
@@ -17127,7 +17230,7 @@ function validate26(
17127
17230
  typeof data139.caption !==
17128
17231
  'string'
17129
17232
  ) {
17130
- validate26.errors =
17233
+ validate28.errors =
17131
17234
  [
17132
17235
  {
17133
17236
  instancePath:
@@ -17155,7 +17258,7 @@ function validate26(
17155
17258
  }
17156
17259
  }
17157
17260
  } else {
17158
- validate26.errors = [
17261
+ validate28.errors = [
17159
17262
  {
17160
17263
  instancePath:
17161
17264
  instancePath +
@@ -17184,7 +17287,7 @@ function validate26(
17184
17287
  if (
17185
17288
  typeof data142 !== 'string'
17186
17289
  ) {
17187
- validate26.errors = [
17290
+ validate28.errors = [
17188
17291
  {
17189
17292
  instancePath:
17190
17293
  instancePath +
@@ -17202,7 +17305,7 @@ function validate26(
17202
17305
  return false;
17203
17306
  }
17204
17307
  if ('unzip' !== data142) {
17205
- validate26.errors = [
17308
+ validate28.errors = [
17206
17309
  {
17207
17310
  instancePath:
17208
17311
  instancePath +
@@ -17231,7 +17334,7 @@ function validate26(
17231
17334
  ) {
17232
17335
  const _errs392 = errors;
17233
17336
  if (
17234
- !validate14(
17337
+ !validate16(
17235
17338
  data.zipFile,
17236
17339
  {
17237
17340
  instancePath:
@@ -17247,9 +17350,9 @@ function validate26(
17247
17350
  ) {
17248
17351
  vErrors =
17249
17352
  vErrors === null
17250
- ? validate14.errors
17353
+ ? validate16.errors
17251
17354
  : vErrors.concat(
17252
- validate14.errors
17355
+ validate16.errors
17253
17356
  );
17254
17357
  errors = vErrors.length;
17255
17358
  }
@@ -17268,7 +17371,7 @@ function validate26(
17268
17371
  typeof data.zipPath !==
17269
17372
  'string'
17270
17373
  ) {
17271
- validate26.errors =
17374
+ validate28.errors =
17272
17375
  [
17273
17376
  {
17274
17377
  instancePath:
@@ -17303,7 +17406,7 @@ function validate26(
17303
17406
  typeof data.extractToPath !==
17304
17407
  'string'
17305
17408
  ) {
17306
- validate26.errors =
17409
+ validate28.errors =
17307
17410
  [
17308
17411
  {
17309
17412
  instancePath:
@@ -17335,7 +17438,7 @@ function validate26(
17335
17438
  }
17336
17439
  }
17337
17440
  } else {
17338
- validate26.errors = [
17441
+ validate28.errors = [
17339
17442
  {
17340
17443
  instancePath,
17341
17444
  schemaPath: '#/oneOf/23/type',
@@ -17364,7 +17467,7 @@ function validate26(
17364
17467
  (data.userId === undefined &&
17365
17468
  (missing26 = 'userId'))
17366
17469
  ) {
17367
- validate26.errors = [
17470
+ validate28.errors = [
17368
17471
  {
17369
17472
  instancePath,
17370
17473
  schemaPath: '#/oneOf/24/required',
@@ -17390,7 +17493,7 @@ function validate26(
17390
17493
  key54 === 'userId'
17391
17494
  )
17392
17495
  ) {
17393
- validate26.errors = [
17496
+ validate28.errors = [
17394
17497
  {
17395
17498
  instancePath,
17396
17499
  schemaPath:
@@ -17430,7 +17533,7 @@ function validate26(
17430
17533
  'caption'
17431
17534
  )
17432
17535
  ) {
17433
- validate26.errors =
17536
+ validate28.errors =
17434
17537
  [
17435
17538
  {
17436
17539
  instancePath:
@@ -17470,7 +17573,7 @@ function validate26(
17470
17573
  )
17471
17574
  )
17472
17575
  ) {
17473
- validate26.errors =
17576
+ validate28.errors =
17474
17577
  [
17475
17578
  {
17476
17579
  instancePath:
@@ -17506,7 +17609,7 @@ function validate26(
17506
17609
  typeof data146.caption !==
17507
17610
  'string'
17508
17611
  ) {
17509
- validate26.errors =
17612
+ validate28.errors =
17510
17613
  [
17511
17614
  {
17512
17615
  instancePath:
@@ -17534,7 +17637,7 @@ function validate26(
17534
17637
  }
17535
17638
  }
17536
17639
  } else {
17537
- validate26.errors = [
17640
+ validate28.errors = [
17538
17641
  {
17539
17642
  instancePath:
17540
17643
  instancePath +
@@ -17563,7 +17666,7 @@ function validate26(
17563
17666
  if (
17564
17667
  typeof data149 !== 'string'
17565
17668
  ) {
17566
- validate26.errors = [
17669
+ validate28.errors = [
17567
17670
  {
17568
17671
  instancePath:
17569
17672
  instancePath +
@@ -17583,7 +17686,7 @@ function validate26(
17583
17686
  if (
17584
17687
  'updateUserMeta' !== data149
17585
17688
  ) {
17586
- validate26.errors = [
17689
+ validate28.errors = [
17587
17690
  {
17588
17691
  instancePath:
17589
17692
  instancePath +
@@ -17630,7 +17733,7 @@ function validate26(
17630
17733
  }
17631
17734
  }
17632
17735
  } else {
17633
- validate26.errors =
17736
+ validate28.errors =
17634
17737
  [
17635
17738
  {
17636
17739
  instancePath:
@@ -17672,7 +17775,7 @@ function validate26(
17672
17775
  )
17673
17776
  )
17674
17777
  ) {
17675
- validate26.errors =
17778
+ validate28.errors =
17676
17779
  [
17677
17780
  {
17678
17781
  instancePath:
@@ -17702,7 +17805,7 @@ function validate26(
17702
17805
  }
17703
17806
  }
17704
17807
  } else {
17705
- validate26.errors = [
17808
+ validate28.errors = [
17706
17809
  {
17707
17810
  instancePath,
17708
17811
  schemaPath: '#/oneOf/24/type',
@@ -17731,7 +17834,7 @@ function validate26(
17731
17834
  (data.step === undefined &&
17732
17835
  (missing27 = 'step'))
17733
17836
  ) {
17734
- validate26.errors = [
17837
+ validate28.errors = [
17735
17838
  {
17736
17839
  instancePath,
17737
17840
  schemaPath: '#/oneOf/25/required',
@@ -17757,7 +17860,7 @@ function validate26(
17757
17860
  key57 === 'data'
17758
17861
  )
17759
17862
  ) {
17760
- validate26.errors = [
17863
+ validate28.errors = [
17761
17864
  {
17762
17865
  instancePath,
17763
17866
  schemaPath:
@@ -17797,7 +17900,7 @@ function validate26(
17797
17900
  'caption'
17798
17901
  )
17799
17902
  ) {
17800
- validate26.errors =
17903
+ validate28.errors =
17801
17904
  [
17802
17905
  {
17803
17906
  instancePath:
@@ -17837,7 +17940,7 @@ function validate26(
17837
17940
  )
17838
17941
  )
17839
17942
  ) {
17840
- validate26.errors =
17943
+ validate28.errors =
17841
17944
  [
17842
17945
  {
17843
17946
  instancePath:
@@ -17873,7 +17976,7 @@ function validate26(
17873
17976
  typeof data153.caption !==
17874
17977
  'string'
17875
17978
  ) {
17876
- validate26.errors =
17979
+ validate28.errors =
17877
17980
  [
17878
17981
  {
17879
17982
  instancePath:
@@ -17901,7 +18004,7 @@ function validate26(
17901
18004
  }
17902
18005
  }
17903
18006
  } else {
17904
- validate26.errors = [
18007
+ validate28.errors = [
17905
18008
  {
17906
18009
  instancePath:
17907
18010
  instancePath +
@@ -17930,7 +18033,7 @@ function validate26(
17930
18033
  if (
17931
18034
  typeof data156 !== 'string'
17932
18035
  ) {
17933
- validate26.errors = [
18036
+ validate28.errors = [
17934
18037
  {
17935
18038
  instancePath:
17936
18039
  instancePath +
@@ -17948,7 +18051,7 @@ function validate26(
17948
18051
  return false;
17949
18052
  }
17950
18053
  if ('writeFile' !== data156) {
17951
- validate26.errors = [
18054
+ validate28.errors = [
17952
18055
  {
17953
18056
  instancePath:
17954
18057
  instancePath +
@@ -17978,7 +18081,7 @@ function validate26(
17978
18081
  typeof data.path !==
17979
18082
  'string'
17980
18083
  ) {
17981
- validate26.errors = [
18084
+ validate28.errors = [
17982
18085
  {
17983
18086
  instancePath:
17984
18087
  instancePath +
@@ -18010,7 +18113,7 @@ function validate26(
18010
18113
  let valid92 = false;
18011
18114
  const _errs431 = errors;
18012
18115
  if (
18013
- !validate14(
18116
+ !validate16(
18014
18117
  data158,
18015
18118
  {
18016
18119
  instancePath:
@@ -18026,9 +18129,9 @@ function validate26(
18026
18129
  ) {
18027
18130
  vErrors =
18028
18131
  vErrors === null
18029
- ? validate14.errors
18132
+ ? validate16.errors
18030
18133
  : vErrors.concat(
18031
- validate14.errors
18134
+ validate16.errors
18032
18135
  );
18033
18136
  errors =
18034
18137
  vErrors.length;
@@ -18721,7 +18824,7 @@ function validate26(
18721
18824
  );
18722
18825
  }
18723
18826
  errors++;
18724
- validate26.errors =
18827
+ validate28.errors =
18725
18828
  vErrors;
18726
18829
  return false;
18727
18830
  } else {
@@ -18749,7 +18852,7 @@ function validate26(
18749
18852
  }
18750
18853
  }
18751
18854
  } else {
18752
- validate26.errors = [
18855
+ validate28.errors = [
18753
18856
  {
18754
18857
  instancePath,
18755
18858
  schemaPath: '#/oneOf/25/type',
@@ -18778,7 +18881,7 @@ function validate26(
18778
18881
  (data.writeToPath === undefined &&
18779
18882
  (missing30 = 'writeToPath'))
18780
18883
  ) {
18781
- validate26.errors = [
18884
+ validate28.errors = [
18782
18885
  {
18783
18886
  instancePath,
18784
18887
  schemaPath: '#/oneOf/26/required',
@@ -18804,7 +18907,7 @@ function validate26(
18804
18907
  key61 === 'filesTree'
18805
18908
  )
18806
18909
  ) {
18807
- validate26.errors = [
18910
+ validate28.errors = [
18808
18911
  {
18809
18912
  instancePath,
18810
18913
  schemaPath:
@@ -18844,7 +18947,7 @@ function validate26(
18844
18947
  'caption'
18845
18948
  )
18846
18949
  ) {
18847
- validate26.errors =
18950
+ validate28.errors =
18848
18951
  [
18849
18952
  {
18850
18953
  instancePath:
@@ -18884,7 +18987,7 @@ function validate26(
18884
18987
  )
18885
18988
  )
18886
18989
  ) {
18887
- validate26.errors =
18990
+ validate28.errors =
18888
18991
  [
18889
18992
  {
18890
18993
  instancePath:
@@ -18920,7 +19023,7 @@ function validate26(
18920
19023
  typeof data166.caption !==
18921
19024
  'string'
18922
19025
  ) {
18923
- validate26.errors =
19026
+ validate28.errors =
18924
19027
  [
18925
19028
  {
18926
19029
  instancePath:
@@ -18948,7 +19051,7 @@ function validate26(
18948
19051
  }
18949
19052
  }
18950
19053
  } else {
18951
- validate26.errors = [
19054
+ validate28.errors = [
18952
19055
  {
18953
19056
  instancePath:
18954
19057
  instancePath +
@@ -18977,7 +19080,7 @@ function validate26(
18977
19080
  if (
18978
19081
  typeof data169 !== 'string'
18979
19082
  ) {
18980
- validate26.errors = [
19083
+ validate28.errors = [
18981
19084
  {
18982
19085
  instancePath:
18983
19086
  instancePath +
@@ -18995,7 +19098,7 @@ function validate26(
18995
19098
  return false;
18996
19099
  }
18997
19100
  if ('writeFiles' !== data169) {
18998
- validate26.errors = [
19101
+ validate28.errors = [
18999
19102
  {
19000
19103
  instancePath:
19001
19104
  instancePath +
@@ -19028,7 +19131,7 @@ function validate26(
19028
19131
  typeof data.writeToPath !==
19029
19132
  'string'
19030
19133
  ) {
19031
- validate26.errors = [
19134
+ validate28.errors = [
19032
19135
  {
19033
19136
  instancePath:
19034
19137
  instancePath +
@@ -19057,7 +19160,7 @@ function validate26(
19057
19160
  ) {
19058
19161
  const _errs466 = errors;
19059
19162
  if (
19060
- !validate16(
19163
+ !validate18(
19061
19164
  data.filesTree,
19062
19165
  {
19063
19166
  instancePath:
@@ -19073,9 +19176,9 @@ function validate26(
19073
19176
  ) {
19074
19177
  vErrors =
19075
19178
  vErrors === null
19076
- ? validate16.errors
19179
+ ? validate18.errors
19077
19180
  : vErrors.concat(
19078
- validate16.errors
19181
+ validate18.errors
19079
19182
  );
19080
19183
  errors =
19081
19184
  vErrors.length;
@@ -19091,7 +19194,7 @@ function validate26(
19091
19194
  }
19092
19195
  }
19093
19196
  } else {
19094
- validate26.errors = [
19197
+ validate28.errors = [
19095
19198
  {
19096
19199
  instancePath,
19097
19200
  schemaPath: '#/oneOf/26/type',
@@ -19118,7 +19221,7 @@ function validate26(
19118
19221
  (data.step === undefined &&
19119
19222
  (missing31 = 'step'))
19120
19223
  ) {
19121
- validate26.errors = [
19224
+ validate28.errors = [
19122
19225
  {
19123
19226
  instancePath,
19124
19227
  schemaPath: '#/oneOf/27/required',
@@ -19144,7 +19247,7 @@ function validate26(
19144
19247
  key63 === 'wpCliPath'
19145
19248
  )
19146
19249
  ) {
19147
- validate26.errors = [
19250
+ validate28.errors = [
19148
19251
  {
19149
19252
  instancePath,
19150
19253
  schemaPath:
@@ -19184,7 +19287,7 @@ function validate26(
19184
19287
  'caption'
19185
19288
  )
19186
19289
  ) {
19187
- validate26.errors =
19290
+ validate28.errors =
19188
19291
  [
19189
19292
  {
19190
19293
  instancePath:
@@ -19224,7 +19327,7 @@ function validate26(
19224
19327
  )
19225
19328
  )
19226
19329
  ) {
19227
- validate26.errors =
19330
+ validate28.errors =
19228
19331
  [
19229
19332
  {
19230
19333
  instancePath:
@@ -19260,7 +19363,7 @@ function validate26(
19260
19363
  typeof data172.caption !==
19261
19364
  'string'
19262
19365
  ) {
19263
- validate26.errors =
19366
+ validate28.errors =
19264
19367
  [
19265
19368
  {
19266
19369
  instancePath:
@@ -19288,7 +19391,7 @@ function validate26(
19288
19391
  }
19289
19392
  }
19290
19393
  } else {
19291
- validate26.errors = [
19394
+ validate28.errors = [
19292
19395
  {
19293
19396
  instancePath:
19294
19397
  instancePath +
@@ -19317,7 +19420,7 @@ function validate26(
19317
19420
  if (
19318
19421
  typeof data175 !== 'string'
19319
19422
  ) {
19320
- validate26.errors = [
19423
+ validate28.errors = [
19321
19424
  {
19322
19425
  instancePath:
19323
19426
  instancePath +
@@ -19335,7 +19438,7 @@ function validate26(
19335
19438
  return false;
19336
19439
  }
19337
19440
  if ('wp-cli' !== data175) {
19338
- validate26.errors = [
19441
+ validate28.errors = [
19339
19442
  {
19340
19443
  instancePath:
19341
19444
  instancePath +
@@ -19514,7 +19617,7 @@ function validate26(
19514
19617
  vErrors.push(err25);
19515
19618
  }
19516
19619
  errors++;
19517
- validate26.errors =
19620
+ validate28.errors =
19518
19621
  vErrors;
19519
19622
  return false;
19520
19623
  } else {
@@ -19543,7 +19646,7 @@ function validate26(
19543
19646
  typeof data.wpCliPath !==
19544
19647
  'string'
19545
19648
  ) {
19546
- validate26.errors =
19649
+ validate28.errors =
19547
19650
  [
19548
19651
  {
19549
19652
  instancePath:
@@ -19573,7 +19676,7 @@ function validate26(
19573
19676
  }
19574
19677
  }
19575
19678
  } else {
19576
- validate26.errors = [
19679
+ validate28.errors = [
19577
19680
  {
19578
19681
  instancePath,
19579
19682
  schemaPath: '#/oneOf/27/type',
@@ -19600,7 +19703,7 @@ function validate26(
19600
19703
  (data.step === undefined &&
19601
19704
  (missing32 = 'step'))
19602
19705
  ) {
19603
- validate26.errors = [
19706
+ validate28.errors = [
19604
19707
  {
19605
19708
  instancePath,
19606
19709
  schemaPath: '#/oneOf/28/required',
@@ -19625,7 +19728,7 @@ function validate26(
19625
19728
  key65 === 'language'
19626
19729
  )
19627
19730
  ) {
19628
- validate26.errors = [
19731
+ validate28.errors = [
19629
19732
  {
19630
19733
  instancePath,
19631
19734
  schemaPath:
@@ -19665,7 +19768,7 @@ function validate26(
19665
19768
  'caption'
19666
19769
  )
19667
19770
  ) {
19668
- validate26.errors =
19771
+ validate28.errors =
19669
19772
  [
19670
19773
  {
19671
19774
  instancePath:
@@ -19705,7 +19808,7 @@ function validate26(
19705
19808
  )
19706
19809
  )
19707
19810
  ) {
19708
- validate26.errors =
19811
+ validate28.errors =
19709
19812
  [
19710
19813
  {
19711
19814
  instancePath:
@@ -19741,7 +19844,7 @@ function validate26(
19741
19844
  typeof data179.caption !==
19742
19845
  'string'
19743
19846
  ) {
19744
- validate26.errors =
19847
+ validate28.errors =
19745
19848
  [
19746
19849
  {
19747
19850
  instancePath:
@@ -19769,7 +19872,7 @@ function validate26(
19769
19872
  }
19770
19873
  }
19771
19874
  } else {
19772
- validate26.errors = [
19875
+ validate28.errors = [
19773
19876
  {
19774
19877
  instancePath:
19775
19878
  instancePath +
@@ -19798,7 +19901,7 @@ function validate26(
19798
19901
  if (
19799
19902
  typeof data182 !== 'string'
19800
19903
  ) {
19801
- validate26.errors = [
19904
+ validate28.errors = [
19802
19905
  {
19803
19906
  instancePath:
19804
19907
  instancePath +
@@ -19819,7 +19922,7 @@ function validate26(
19819
19922
  'setSiteLanguage' !==
19820
19923
  data182
19821
19924
  ) {
19822
- validate26.errors = [
19925
+ validate28.errors = [
19823
19926
  {
19824
19927
  instancePath:
19825
19928
  instancePath +
@@ -19851,7 +19954,7 @@ function validate26(
19851
19954
  typeof data.language !==
19852
19955
  'string'
19853
19956
  ) {
19854
- validate26.errors = [
19957
+ validate28.errors = [
19855
19958
  {
19856
19959
  instancePath:
19857
19960
  instancePath +
@@ -19878,7 +19981,7 @@ function validate26(
19878
19981
  }
19879
19982
  }
19880
19983
  } else {
19881
- validate26.errors = [
19984
+ validate28.errors = [
19882
19985
  {
19883
19986
  instancePath,
19884
19987
  schemaPath: '#/oneOf/28/type',
@@ -19891,7 +19994,7 @@ function validate26(
19891
19994
  }
19892
19995
  }
19893
19996
  } else {
19894
- validate26.errors = [
19997
+ validate28.errors = [
19895
19998
  {
19896
19999
  instancePath,
19897
20000
  schemaPath: '#/discriminator',
@@ -19907,7 +20010,7 @@ function validate26(
19907
20010
  return false;
19908
20011
  }
19909
20012
  } else {
19910
- validate26.errors = [
20013
+ validate28.errors = [
19911
20014
  {
19912
20015
  instancePath,
19913
20016
  schemaPath: '#/discriminator',
@@ -19924,7 +20027,7 @@ function validate26(
19924
20027
  }
19925
20028
  }
19926
20029
  } else {
19927
- validate26.errors = [
20030
+ validate28.errors = [
19928
20031
  {
19929
20032
  instancePath,
19930
20033
  schemaPath: '#/type',
@@ -19936,7 +20039,7 @@ function validate26(
19936
20039
  return false;
19937
20040
  }
19938
20041
  }
19939
- validate26.errors = vErrors;
20042
+ validate28.errors = vErrors;
19940
20043
  return errors === 0;
19941
20044
  }
19942
20045
  function validate11(
@@ -20789,7 +20892,7 @@ function validate11(
20789
20892
  keyword:
20790
20893
  'type',
20791
20894
  params: {
20792
- type: schema16
20895
+ type: schema18
20793
20896
  .additionalProperties
20794
20897
  .type,
20795
20898
  },
@@ -20894,7 +20997,7 @@ function validate11(
20894
20997
  const _errs53 =
20895
20998
  errors;
20896
20999
  if (
20897
- !validate14(
21000
+ !validate16(
20898
21001
  data19,
20899
21002
  {
20900
21003
  instancePath:
@@ -20912,9 +21015,9 @@ function validate11(
20912
21015
  vErrors =
20913
21016
  vErrors ===
20914
21017
  null
20915
- ? validate14.errors
21018
+ ? validate16.errors
20916
21019
  : vErrors.concat(
20917
- validate14.errors
21020
+ validate16.errors
20918
21021
  );
20919
21022
  errors =
20920
21023
  vErrors.length;
@@ -21508,7 +21611,7 @@ function validate11(
21508
21611
  const _errs76 =
21509
21612
  errors;
21510
21613
  if (
21511
- !validate26(
21614
+ !validate28(
21512
21615
  data27,
21513
21616
  {
21514
21617
  instancePath:
@@ -21526,9 +21629,9 @@ function validate11(
21526
21629
  vErrors =
21527
21630
  vErrors ===
21528
21631
  null
21529
- ? validate26.errors
21632
+ ? validate28.errors
21530
21633
  : vErrors.concat(
21531
- validate26.errors
21634
+ validate28.errors
21532
21635
  );
21533
21636
  errors =
21534
21637
  vErrors.length;