@wp-playground/blueprints 1.0.15 → 1.0.17

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.
@@ -452,6 +452,13 @@ const schema11 = {
452
452
  $ref: '#/definitions/FileReference',
453
453
  description: 'The file to import',
454
454
  },
455
+ importer: {
456
+ type: 'string',
457
+ enum: ['data-liberation', 'default'],
458
+ description:
459
+ 'The importer to use. Possible values:\n\n- `default`: The importer from https://github.com/humanmade/WordPress-Importer\n- `data-liberation`: The experimental Data Liberation WXR importer developed at https://github.com/WordPress/wordpress-playground/issues/1894\n\nThis option is deprecated. The syntax will not be removed, but once the Data Liberation importer matures, it will become the only supported importer and the `importer` option will be ignored.',
460
+ deprecated: true,
461
+ },
455
462
  },
456
463
  required: ['file', 'step'],
457
464
  },
@@ -3143,6 +3150,13 @@ const schema22 = {
3143
3150
  $ref: '#/definitions/FileReference',
3144
3151
  description: 'The file to import',
3145
3152
  },
3153
+ importer: {
3154
+ type: 'string',
3155
+ enum: ['data-liberation', 'default'],
3156
+ description:
3157
+ 'The importer to use. Possible values:\n\n- `default`: The importer from https://github.com/humanmade/WordPress-Importer\n- `data-liberation`: The experimental Data Liberation WXR importer developed at https://github.com/WordPress/wordpress-playground/issues/1894\n\nThis option is deprecated. The syntax will not be removed, but once the Data Liberation importer matures, it will become the only supported importer and the `importer` option will be ignored.',
3158
+ deprecated: true,
3159
+ },
3146
3160
  },
3147
3161
  required: ['file', 'step'],
3148
3162
  },
@@ -9755,7 +9769,8 @@ function validate14(
9755
9769
  !(
9756
9770
  key13 === 'progress' ||
9757
9771
  key13 === 'step' ||
9758
- key13 === 'file'
9772
+ key13 === 'file' ||
9773
+ key13 === 'importer'
9759
9774
  )
9760
9775
  ) {
9761
9776
  validate14.errors = [
@@ -9998,6 +10013,75 @@ function validate14(
9998
10013
  } else {
9999
10014
  var valid21 = true;
10000
10015
  }
10016
+ if (valid21) {
10017
+ if (
10018
+ data.importer !==
10019
+ undefined
10020
+ ) {
10021
+ let data40 =
10022
+ data.importer;
10023
+ const _errs109 = errors;
10024
+ if (
10025
+ typeof data40 !==
10026
+ 'string'
10027
+ ) {
10028
+ validate14.errors =
10029
+ [
10030
+ {
10031
+ instancePath:
10032
+ instancePath +
10033
+ '/importer',
10034
+ schemaPath:
10035
+ '#/oneOf/6/properties/importer/type',
10036
+ keyword:
10037
+ 'type',
10038
+ params: {
10039
+ type: 'string',
10040
+ },
10041
+ message:
10042
+ 'must be string',
10043
+ },
10044
+ ];
10045
+ return false;
10046
+ }
10047
+ if (
10048
+ !(
10049
+ data40 ===
10050
+ 'data-liberation' ||
10051
+ data40 ===
10052
+ 'default'
10053
+ )
10054
+ ) {
10055
+ validate14.errors =
10056
+ [
10057
+ {
10058
+ instancePath:
10059
+ instancePath +
10060
+ '/importer',
10061
+ schemaPath:
10062
+ '#/oneOf/6/properties/importer/enum',
10063
+ keyword:
10064
+ 'enum',
10065
+ params: {
10066
+ allowedValues:
10067
+ schema22
10068
+ .oneOf[6]
10069
+ .properties
10070
+ .importer
10071
+ .enum,
10072
+ },
10073
+ message:
10074
+ 'must be equal to one of the allowed values',
10075
+ },
10076
+ ];
10077
+ return false;
10078
+ }
10079
+ var valid21 =
10080
+ _errs109 === errors;
10081
+ } else {
10082
+ var valid21 = true;
10083
+ }
10084
+ }
10001
10085
  }
10002
10086
  }
10003
10087
  }
@@ -10016,8 +10100,8 @@ function validate14(
10016
10100
  }
10017
10101
  }
10018
10102
  } else if (tag0 === 'importThemeStarterContent') {
10019
- const _errs109 = errors;
10020
- if (errors === _errs109) {
10103
+ const _errs111 = errors;
10104
+ if (errors === _errs111) {
10021
10105
  if (
10022
10106
  data &&
10023
10107
  typeof data == 'object' &&
@@ -10044,7 +10128,7 @@ function validate14(
10044
10128
  ];
10045
10129
  return false;
10046
10130
  } else {
10047
- const _errs111 = errors;
10131
+ const _errs113 = errors;
10048
10132
  for (const key15 in data) {
10049
10133
  if (
10050
10134
  !(
@@ -10072,18 +10156,18 @@ function validate14(
10072
10156
  break;
10073
10157
  }
10074
10158
  }
10075
- if (_errs111 === errors) {
10159
+ if (_errs113 === errors) {
10076
10160
  if (data.progress !== undefined) {
10077
- let data40 = data.progress;
10078
- const _errs112 = errors;
10079
- if (errors === _errs112) {
10161
+ let data41 = data.progress;
10162
+ const _errs114 = errors;
10163
+ if (errors === _errs114) {
10080
10164
  if (
10081
- data40 &&
10082
- typeof data40 == 'object' &&
10083
- !Array.isArray(data40)
10165
+ data41 &&
10166
+ typeof data41 == 'object' &&
10167
+ !Array.isArray(data41)
10084
10168
  ) {
10085
- const _errs114 = errors;
10086
- for (const key16 in data40) {
10169
+ const _errs116 = errors;
10170
+ for (const key16 in data41) {
10087
10171
  if (
10088
10172
  !(
10089
10173
  key16 ===
@@ -10114,21 +10198,21 @@ function validate14(
10114
10198
  break;
10115
10199
  }
10116
10200
  }
10117
- if (_errs114 === errors) {
10201
+ if (_errs116 === errors) {
10118
10202
  if (
10119
- data40.weight !==
10203
+ data41.weight !==
10120
10204
  undefined
10121
10205
  ) {
10122
- let data41 =
10123
- data40.weight;
10124
- const _errs115 =
10206
+ let data42 =
10207
+ data41.weight;
10208
+ const _errs117 =
10125
10209
  errors;
10126
10210
  if (
10127
10211
  !(
10128
- typeof data41 ==
10212
+ typeof data42 ==
10129
10213
  'number' &&
10130
10214
  isFinite(
10131
- data41
10215
+ data42
10132
10216
  )
10133
10217
  )
10134
10218
  ) {
@@ -10152,20 +10236,20 @@ function validate14(
10152
10236
  return false;
10153
10237
  }
10154
10238
  var valid25 =
10155
- _errs115 ===
10239
+ _errs117 ===
10156
10240
  errors;
10157
10241
  } else {
10158
10242
  var valid25 = true;
10159
10243
  }
10160
10244
  if (valid25) {
10161
10245
  if (
10162
- data40.caption !==
10246
+ data41.caption !==
10163
10247
  undefined
10164
10248
  ) {
10165
- const _errs117 =
10249
+ const _errs119 =
10166
10250
  errors;
10167
10251
  if (
10168
- typeof data40.caption !==
10252
+ typeof data41.caption !==
10169
10253
  'string'
10170
10254
  ) {
10171
10255
  validate14.errors =
@@ -10188,7 +10272,7 @@ function validate14(
10188
10272
  return false;
10189
10273
  }
10190
10274
  var valid25 =
10191
- _errs117 ===
10275
+ _errs119 ===
10192
10276
  errors;
10193
10277
  } else {
10194
10278
  var valid25 = true;
@@ -10214,16 +10298,16 @@ function validate14(
10214
10298
  return false;
10215
10299
  }
10216
10300
  }
10217
- var valid24 = _errs112 === errors;
10301
+ var valid24 = _errs114 === errors;
10218
10302
  } else {
10219
10303
  var valid24 = true;
10220
10304
  }
10221
10305
  if (valid24) {
10222
10306
  if (data.step !== undefined) {
10223
- let data43 = data.step;
10224
- const _errs119 = errors;
10307
+ let data44 = data.step;
10308
+ const _errs121 = errors;
10225
10309
  if (
10226
- typeof data43 !== 'string'
10310
+ typeof data44 !== 'string'
10227
10311
  ) {
10228
10312
  validate14.errors = [
10229
10313
  {
@@ -10244,7 +10328,7 @@ function validate14(
10244
10328
  }
10245
10329
  if (
10246
10330
  'importThemeStarterContent' !==
10247
- data43
10331
+ data44
10248
10332
  ) {
10249
10333
  validate14.errors = [
10250
10334
  {
@@ -10265,7 +10349,7 @@ function validate14(
10265
10349
  return false;
10266
10350
  }
10267
10351
  var valid24 =
10268
- _errs119 === errors;
10352
+ _errs121 === errors;
10269
10353
  } else {
10270
10354
  var valid24 = true;
10271
10355
  }
@@ -10273,7 +10357,7 @@ function validate14(
10273
10357
  if (
10274
10358
  data.themeSlug !== undefined
10275
10359
  ) {
10276
- const _errs121 = errors;
10360
+ const _errs123 = errors;
10277
10361
  if (
10278
10362
  typeof data.themeSlug !==
10279
10363
  'string'
@@ -10296,7 +10380,7 @@ function validate14(
10296
10380
  return false;
10297
10381
  }
10298
10382
  var valid24 =
10299
- _errs121 === errors;
10383
+ _errs123 === errors;
10300
10384
  } else {
10301
10385
  var valid24 = true;
10302
10386
  }
@@ -10318,8 +10402,8 @@ function validate14(
10318
10402
  }
10319
10403
  }
10320
10404
  } else if (tag0 === 'importWordPressFiles') {
10321
- const _errs123 = errors;
10322
- if (errors === _errs123) {
10405
+ const _errs125 = errors;
10406
+ if (errors === _errs125) {
10323
10407
  if (
10324
10408
  data &&
10325
10409
  typeof data == 'object' &&
@@ -10348,7 +10432,7 @@ function validate14(
10348
10432
  ];
10349
10433
  return false;
10350
10434
  } else {
10351
- const _errs125 = errors;
10435
+ const _errs127 = errors;
10352
10436
  for (const key17 in data) {
10353
10437
  if (
10354
10438
  !(
@@ -10377,18 +10461,18 @@ function validate14(
10377
10461
  break;
10378
10462
  }
10379
10463
  }
10380
- if (_errs125 === errors) {
10464
+ if (_errs127 === errors) {
10381
10465
  if (data.progress !== undefined) {
10382
- let data45 = data.progress;
10383
- const _errs126 = errors;
10384
- if (errors === _errs126) {
10466
+ let data46 = data.progress;
10467
+ const _errs128 = errors;
10468
+ if (errors === _errs128) {
10385
10469
  if (
10386
- data45 &&
10387
- typeof data45 == 'object' &&
10388
- !Array.isArray(data45)
10470
+ data46 &&
10471
+ typeof data46 == 'object' &&
10472
+ !Array.isArray(data46)
10389
10473
  ) {
10390
- const _errs128 = errors;
10391
- for (const key18 in data45) {
10474
+ const _errs130 = errors;
10475
+ for (const key18 in data46) {
10392
10476
  if (
10393
10477
  !(
10394
10478
  key18 ===
@@ -10419,21 +10503,21 @@ function validate14(
10419
10503
  break;
10420
10504
  }
10421
10505
  }
10422
- if (_errs128 === errors) {
10506
+ if (_errs130 === errors) {
10423
10507
  if (
10424
- data45.weight !==
10508
+ data46.weight !==
10425
10509
  undefined
10426
10510
  ) {
10427
- let data46 =
10428
- data45.weight;
10429
- const _errs129 =
10511
+ let data47 =
10512
+ data46.weight;
10513
+ const _errs131 =
10430
10514
  errors;
10431
10515
  if (
10432
10516
  !(
10433
- typeof data46 ==
10517
+ typeof data47 ==
10434
10518
  'number' &&
10435
10519
  isFinite(
10436
- data46
10520
+ data47
10437
10521
  )
10438
10522
  )
10439
10523
  ) {
@@ -10457,20 +10541,20 @@ function validate14(
10457
10541
  return false;
10458
10542
  }
10459
10543
  var valid28 =
10460
- _errs129 ===
10544
+ _errs131 ===
10461
10545
  errors;
10462
10546
  } else {
10463
10547
  var valid28 = true;
10464
10548
  }
10465
10549
  if (valid28) {
10466
10550
  if (
10467
- data45.caption !==
10551
+ data46.caption !==
10468
10552
  undefined
10469
10553
  ) {
10470
- const _errs131 =
10554
+ const _errs133 =
10471
10555
  errors;
10472
10556
  if (
10473
- typeof data45.caption !==
10557
+ typeof data46.caption !==
10474
10558
  'string'
10475
10559
  ) {
10476
10560
  validate14.errors =
@@ -10493,7 +10577,7 @@ function validate14(
10493
10577
  return false;
10494
10578
  }
10495
10579
  var valid28 =
10496
- _errs131 ===
10580
+ _errs133 ===
10497
10581
  errors;
10498
10582
  } else {
10499
10583
  var valid28 = true;
@@ -10519,16 +10603,16 @@ function validate14(
10519
10603
  return false;
10520
10604
  }
10521
10605
  }
10522
- var valid27 = _errs126 === errors;
10606
+ var valid27 = _errs128 === errors;
10523
10607
  } else {
10524
10608
  var valid27 = true;
10525
10609
  }
10526
10610
  if (valid27) {
10527
10611
  if (data.step !== undefined) {
10528
- let data48 = data.step;
10529
- const _errs133 = errors;
10612
+ let data49 = data.step;
10613
+ const _errs135 = errors;
10530
10614
  if (
10531
- typeof data48 !== 'string'
10615
+ typeof data49 !== 'string'
10532
10616
  ) {
10533
10617
  validate14.errors = [
10534
10618
  {
@@ -10549,7 +10633,7 @@ function validate14(
10549
10633
  }
10550
10634
  if (
10551
10635
  'importWordPressFiles' !==
10552
- data48
10636
+ data49
10553
10637
  ) {
10554
10638
  validate14.errors = [
10555
10639
  {
@@ -10570,7 +10654,7 @@ function validate14(
10570
10654
  return false;
10571
10655
  }
10572
10656
  var valid27 =
10573
- _errs133 === errors;
10657
+ _errs135 === errors;
10574
10658
  } else {
10575
10659
  var valid27 = true;
10576
10660
  }
@@ -10579,7 +10663,7 @@ function validate14(
10579
10663
  data.wordPressFilesZip !==
10580
10664
  undefined
10581
10665
  ) {
10582
- const _errs135 = errors;
10666
+ const _errs137 = errors;
10583
10667
  if (
10584
10668
  !validate12(
10585
10669
  data.wordPressFilesZip,
@@ -10604,7 +10688,7 @@ function validate14(
10604
10688
  errors = vErrors.length;
10605
10689
  }
10606
10690
  var valid27 =
10607
- _errs135 === errors;
10691
+ _errs137 === errors;
10608
10692
  } else {
10609
10693
  var valid27 = true;
10610
10694
  }
@@ -10613,7 +10697,7 @@ function validate14(
10613
10697
  data.pathInZip !==
10614
10698
  undefined
10615
10699
  ) {
10616
- const _errs136 = errors;
10700
+ const _errs138 = errors;
10617
10701
  if (
10618
10702
  typeof data.pathInZip !==
10619
10703
  'string'
@@ -10638,7 +10722,7 @@ function validate14(
10638
10722
  return false;
10639
10723
  }
10640
10724
  var valid27 =
10641
- _errs136 === errors;
10725
+ _errs138 === errors;
10642
10726
  } else {
10643
10727
  var valid27 = true;
10644
10728
  }
@@ -10661,8 +10745,8 @@ function validate14(
10661
10745
  }
10662
10746
  }
10663
10747
  } else if (tag0 === 'installPlugin') {
10664
- const _errs138 = errors;
10665
- if (errors === _errs138) {
10748
+ const _errs140 = errors;
10749
+ if (errors === _errs140) {
10666
10750
  if (
10667
10751
  data &&
10668
10752
  typeof data == 'object' &&
@@ -10691,7 +10775,7 @@ function validate14(
10691
10775
  ];
10692
10776
  return false;
10693
10777
  } else {
10694
- const _errs140 = errors;
10778
+ const _errs142 = errors;
10695
10779
  for (const key19 in data) {
10696
10780
  if (
10697
10781
  !(
@@ -10723,18 +10807,18 @@ function validate14(
10723
10807
  break;
10724
10808
  }
10725
10809
  }
10726
- if (_errs140 === errors) {
10810
+ if (_errs142 === errors) {
10727
10811
  if (data.progress !== undefined) {
10728
- let data51 = data.progress;
10729
- const _errs141 = errors;
10730
- if (errors === _errs141) {
10812
+ let data52 = data.progress;
10813
+ const _errs143 = errors;
10814
+ if (errors === _errs143) {
10731
10815
  if (
10732
- data51 &&
10733
- typeof data51 == 'object' &&
10734
- !Array.isArray(data51)
10816
+ data52 &&
10817
+ typeof data52 == 'object' &&
10818
+ !Array.isArray(data52)
10735
10819
  ) {
10736
- const _errs143 = errors;
10737
- for (const key20 in data51) {
10820
+ const _errs145 = errors;
10821
+ for (const key20 in data52) {
10738
10822
  if (
10739
10823
  !(
10740
10824
  key20 ===
@@ -10765,21 +10849,21 @@ function validate14(
10765
10849
  break;
10766
10850
  }
10767
10851
  }
10768
- if (_errs143 === errors) {
10852
+ if (_errs145 === errors) {
10769
10853
  if (
10770
- data51.weight !==
10854
+ data52.weight !==
10771
10855
  undefined
10772
10856
  ) {
10773
- let data52 =
10774
- data51.weight;
10775
- const _errs144 =
10857
+ let data53 =
10858
+ data52.weight;
10859
+ const _errs146 =
10776
10860
  errors;
10777
10861
  if (
10778
10862
  !(
10779
- typeof data52 ==
10863
+ typeof data53 ==
10780
10864
  'number' &&
10781
10865
  isFinite(
10782
- data52
10866
+ data53
10783
10867
  )
10784
10868
  )
10785
10869
  ) {
@@ -10803,20 +10887,20 @@ function validate14(
10803
10887
  return false;
10804
10888
  }
10805
10889
  var valid31 =
10806
- _errs144 ===
10890
+ _errs146 ===
10807
10891
  errors;
10808
10892
  } else {
10809
10893
  var valid31 = true;
10810
10894
  }
10811
10895
  if (valid31) {
10812
10896
  if (
10813
- data51.caption !==
10897
+ data52.caption !==
10814
10898
  undefined
10815
10899
  ) {
10816
- const _errs146 =
10900
+ const _errs148 =
10817
10901
  errors;
10818
10902
  if (
10819
- typeof data51.caption !==
10903
+ typeof data52.caption !==
10820
10904
  'string'
10821
10905
  ) {
10822
10906
  validate14.errors =
@@ -10839,7 +10923,7 @@ function validate14(
10839
10923
  return false;
10840
10924
  }
10841
10925
  var valid31 =
10842
- _errs146 ===
10926
+ _errs148 ===
10843
10927
  errors;
10844
10928
  } else {
10845
10929
  var valid31 = true;
@@ -10865,7 +10949,7 @@ function validate14(
10865
10949
  return false;
10866
10950
  }
10867
10951
  }
10868
- var valid30 = _errs141 === errors;
10952
+ var valid30 = _errs143 === errors;
10869
10953
  } else {
10870
10954
  var valid30 = true;
10871
10955
  }
@@ -10874,11 +10958,11 @@ function validate14(
10874
10958
  data.ifAlreadyInstalled !==
10875
10959
  undefined
10876
10960
  ) {
10877
- let data54 =
10961
+ let data55 =
10878
10962
  data.ifAlreadyInstalled;
10879
- const _errs148 = errors;
10963
+ const _errs150 = errors;
10880
10964
  if (
10881
- typeof data54 !== 'string'
10965
+ typeof data55 !== 'string'
10882
10966
  ) {
10883
10967
  validate14.errors = [
10884
10968
  {
@@ -10899,10 +10983,10 @@ function validate14(
10899
10983
  }
10900
10984
  if (
10901
10985
  !(
10902
- data54 ===
10986
+ data55 ===
10903
10987
  'overwrite' ||
10904
- data54 === 'skip' ||
10905
- data54 === 'error'
10988
+ data55 === 'skip' ||
10989
+ data55 === 'error'
10906
10990
  )
10907
10991
  ) {
10908
10992
  validate14.errors = [
@@ -10928,16 +11012,16 @@ function validate14(
10928
11012
  return false;
10929
11013
  }
10930
11014
  var valid30 =
10931
- _errs148 === errors;
11015
+ _errs150 === errors;
10932
11016
  } else {
10933
11017
  var valid30 = true;
10934
11018
  }
10935
11019
  if (valid30) {
10936
11020
  if (data.step !== undefined) {
10937
- let data55 = data.step;
10938
- const _errs150 = errors;
11021
+ let data56 = data.step;
11022
+ const _errs152 = errors;
10939
11023
  if (
10940
- typeof data55 !==
11024
+ typeof data56 !==
10941
11025
  'string'
10942
11026
  ) {
10943
11027
  validate14.errors = [
@@ -10959,7 +11043,7 @@ function validate14(
10959
11043
  }
10960
11044
  if (
10961
11045
  'installPlugin' !==
10962
- data55
11046
+ data56
10963
11047
  ) {
10964
11048
  validate14.errors = [
10965
11049
  {
@@ -10981,7 +11065,7 @@ function validate14(
10981
11065
  return false;
10982
11066
  }
10983
11067
  var valid30 =
10984
- _errs150 === errors;
11068
+ _errs152 === errors;
10985
11069
  } else {
10986
11070
  var valid30 = true;
10987
11071
  }
@@ -10990,15 +11074,15 @@ function validate14(
10990
11074
  data.pluginData !==
10991
11075
  undefined
10992
11076
  ) {
10993
- let data56 =
11077
+ let data57 =
10994
11078
  data.pluginData;
10995
- const _errs152 = errors;
10996
- const _errs153 = errors;
10997
- let valid32 = false;
10998
11079
  const _errs154 = errors;
11080
+ const _errs155 = errors;
11081
+ let valid32 = false;
11082
+ const _errs156 = errors;
10999
11083
  if (
11000
11084
  !validate12(
11001
- data56,
11085
+ data57,
11002
11086
  {
11003
11087
  instancePath:
11004
11088
  instancePath +
@@ -11021,15 +11105,15 @@ function validate14(
11021
11105
  vErrors.length;
11022
11106
  }
11023
11107
  var _valid0 =
11024
- _errs154 === errors;
11108
+ _errs156 === errors;
11025
11109
  valid32 =
11026
11110
  valid32 || _valid0;
11027
11111
  if (!valid32) {
11028
- const _errs155 =
11112
+ const _errs157 =
11029
11113
  errors;
11030
11114
  if (
11031
11115
  !validate18(
11032
- data56,
11116
+ data57,
11033
11117
  {
11034
11118
  instancePath:
11035
11119
  instancePath +
@@ -11053,7 +11137,7 @@ function validate14(
11053
11137
  vErrors.length;
11054
11138
  }
11055
11139
  var _valid0 =
11056
- _errs155 ===
11140
+ _errs157 ===
11057
11141
  errors;
11058
11142
  valid32 =
11059
11143
  valid32 ||
@@ -11088,13 +11172,13 @@ function validate14(
11088
11172
  vErrors;
11089
11173
  return false;
11090
11174
  } else {
11091
- errors = _errs153;
11175
+ errors = _errs155;
11092
11176
  if (
11093
11177
  vErrors !== null
11094
11178
  ) {
11095
- if (_errs153) {
11179
+ if (_errs155) {
11096
11180
  vErrors.length =
11097
- _errs153;
11181
+ _errs155;
11098
11182
  } else {
11099
11183
  vErrors =
11100
11184
  null;
@@ -11102,7 +11186,7 @@ function validate14(
11102
11186
  }
11103
11187
  }
11104
11188
  var valid30 =
11105
- _errs152 === errors;
11189
+ _errs154 === errors;
11106
11190
  } else {
11107
11191
  var valid30 = true;
11108
11192
  }
@@ -11111,7 +11195,7 @@ function validate14(
11111
11195
  data.pluginZipFile !==
11112
11196
  undefined
11113
11197
  ) {
11114
- const _errs156 =
11198
+ const _errs158 =
11115
11199
  errors;
11116
11200
  if (
11117
11201
  !validate12(
@@ -11139,7 +11223,7 @@ function validate14(
11139
11223
  vErrors.length;
11140
11224
  }
11141
11225
  var valid30 =
11142
- _errs156 ===
11226
+ _errs158 ===
11143
11227
  errors;
11144
11228
  } else {
11145
11229
  var valid30 = true;
@@ -11149,27 +11233,27 @@ function validate14(
11149
11233
  data.options !==
11150
11234
  undefined
11151
11235
  ) {
11152
- let data58 =
11236
+ let data59 =
11153
11237
  data.options;
11154
- const _errs157 =
11238
+ const _errs159 =
11155
11239
  errors;
11156
- const _errs158 =
11240
+ const _errs160 =
11157
11241
  errors;
11158
11242
  if (
11159
11243
  errors ===
11160
- _errs158
11244
+ _errs160
11161
11245
  ) {
11162
11246
  if (
11163
- data58 &&
11164
- typeof data58 ==
11247
+ data59 &&
11248
+ typeof data59 ==
11165
11249
  'object' &&
11166
11250
  !Array.isArray(
11167
- data58
11251
+ data59
11168
11252
  )
11169
11253
  ) {
11170
- const _errs160 =
11254
+ const _errs162 =
11171
11255
  errors;
11172
- for (const key21 in data58) {
11256
+ for (const key21 in data59) {
11173
11257
  if (
11174
11258
  !(
11175
11259
  key21 ===
@@ -11201,17 +11285,17 @@ function validate14(
11201
11285
  }
11202
11286
  }
11203
11287
  if (
11204
- _errs160 ===
11288
+ _errs162 ===
11205
11289
  errors
11206
11290
  ) {
11207
11291
  if (
11208
- data58.activate !==
11292
+ data59.activate !==
11209
11293
  undefined
11210
11294
  ) {
11211
- const _errs161 =
11295
+ const _errs163 =
11212
11296
  errors;
11213
11297
  if (
11214
- typeof data58.activate !==
11298
+ typeof data59.activate !==
11215
11299
  'boolean'
11216
11300
  ) {
11217
11301
  validate14.errors =
@@ -11234,7 +11318,7 @@ function validate14(
11234
11318
  return false;
11235
11319
  }
11236
11320
  var valid34 =
11237
- _errs161 ===
11321
+ _errs163 ===
11238
11322
  errors;
11239
11323
  } else {
11240
11324
  var valid34 = true;
@@ -11243,13 +11327,13 @@ function validate14(
11243
11327
  valid34
11244
11328
  ) {
11245
11329
  if (
11246
- data58.targetFolderName !==
11330
+ data59.targetFolderName !==
11247
11331
  undefined
11248
11332
  ) {
11249
- const _errs163 =
11333
+ const _errs165 =
11250
11334
  errors;
11251
11335
  if (
11252
- typeof data58.targetFolderName !==
11336
+ typeof data59.targetFolderName !==
11253
11337
  'string'
11254
11338
  ) {
11255
11339
  validate14.errors =
@@ -11272,7 +11356,7 @@ function validate14(
11272
11356
  return false;
11273
11357
  }
11274
11358
  var valid34 =
11275
- _errs163 ===
11359
+ _errs165 ===
11276
11360
  errors;
11277
11361
  } else {
11278
11362
  var valid34 = true;
@@ -11301,7 +11385,7 @@ function validate14(
11301
11385
  }
11302
11386
  }
11303
11387
  var valid30 =
11304
- _errs157 ===
11388
+ _errs159 ===
11305
11389
  errors;
11306
11390
  } else {
11307
11391
  var valid30 = true;
@@ -11327,8 +11411,8 @@ function validate14(
11327
11411
  }
11328
11412
  }
11329
11413
  } else if (tag0 === 'installTheme') {
11330
- const _errs165 = errors;
11331
- if (errors === _errs165) {
11414
+ const _errs167 = errors;
11415
+ if (errors === _errs167) {
11332
11416
  if (
11333
11417
  data &&
11334
11418
  typeof data == 'object' &&
@@ -11357,7 +11441,7 @@ function validate14(
11357
11441
  ];
11358
11442
  return false;
11359
11443
  } else {
11360
- const _errs167 = errors;
11444
+ const _errs169 = errors;
11361
11445
  for (const key22 in data) {
11362
11446
  if (
11363
11447
  !(
@@ -11389,18 +11473,18 @@ function validate14(
11389
11473
  break;
11390
11474
  }
11391
11475
  }
11392
- if (_errs167 === errors) {
11476
+ if (_errs169 === errors) {
11393
11477
  if (data.progress !== undefined) {
11394
- let data61 = data.progress;
11395
- const _errs168 = errors;
11396
- if (errors === _errs168) {
11478
+ let data62 = data.progress;
11479
+ const _errs170 = errors;
11480
+ if (errors === _errs170) {
11397
11481
  if (
11398
- data61 &&
11399
- typeof data61 == 'object' &&
11400
- !Array.isArray(data61)
11482
+ data62 &&
11483
+ typeof data62 == 'object' &&
11484
+ !Array.isArray(data62)
11401
11485
  ) {
11402
- const _errs170 = errors;
11403
- for (const key23 in data61) {
11486
+ const _errs172 = errors;
11487
+ for (const key23 in data62) {
11404
11488
  if (
11405
11489
  !(
11406
11490
  key23 ===
@@ -11431,21 +11515,21 @@ function validate14(
11431
11515
  break;
11432
11516
  }
11433
11517
  }
11434
- if (_errs170 === errors) {
11518
+ if (_errs172 === errors) {
11435
11519
  if (
11436
- data61.weight !==
11520
+ data62.weight !==
11437
11521
  undefined
11438
11522
  ) {
11439
- let data62 =
11440
- data61.weight;
11441
- const _errs171 =
11523
+ let data63 =
11524
+ data62.weight;
11525
+ const _errs173 =
11442
11526
  errors;
11443
11527
  if (
11444
11528
  !(
11445
- typeof data62 ==
11529
+ typeof data63 ==
11446
11530
  'number' &&
11447
11531
  isFinite(
11448
- data62
11532
+ data63
11449
11533
  )
11450
11534
  )
11451
11535
  ) {
@@ -11469,20 +11553,20 @@ function validate14(
11469
11553
  return false;
11470
11554
  }
11471
11555
  var valid37 =
11472
- _errs171 ===
11556
+ _errs173 ===
11473
11557
  errors;
11474
11558
  } else {
11475
11559
  var valid37 = true;
11476
11560
  }
11477
11561
  if (valid37) {
11478
11562
  if (
11479
- data61.caption !==
11563
+ data62.caption !==
11480
11564
  undefined
11481
11565
  ) {
11482
- const _errs173 =
11566
+ const _errs175 =
11483
11567
  errors;
11484
11568
  if (
11485
- typeof data61.caption !==
11569
+ typeof data62.caption !==
11486
11570
  'string'
11487
11571
  ) {
11488
11572
  validate14.errors =
@@ -11505,7 +11589,7 @@ function validate14(
11505
11589
  return false;
11506
11590
  }
11507
11591
  var valid37 =
11508
- _errs173 ===
11592
+ _errs175 ===
11509
11593
  errors;
11510
11594
  } else {
11511
11595
  var valid37 = true;
@@ -11531,7 +11615,7 @@ function validate14(
11531
11615
  return false;
11532
11616
  }
11533
11617
  }
11534
- var valid36 = _errs168 === errors;
11618
+ var valid36 = _errs170 === errors;
11535
11619
  } else {
11536
11620
  var valid36 = true;
11537
11621
  }
@@ -11540,11 +11624,11 @@ function validate14(
11540
11624
  data.ifAlreadyInstalled !==
11541
11625
  undefined
11542
11626
  ) {
11543
- let data64 =
11627
+ let data65 =
11544
11628
  data.ifAlreadyInstalled;
11545
- const _errs175 = errors;
11629
+ const _errs177 = errors;
11546
11630
  if (
11547
- typeof data64 !== 'string'
11631
+ typeof data65 !== 'string'
11548
11632
  ) {
11549
11633
  validate14.errors = [
11550
11634
  {
@@ -11565,10 +11649,10 @@ function validate14(
11565
11649
  }
11566
11650
  if (
11567
11651
  !(
11568
- data64 ===
11652
+ data65 ===
11569
11653
  'overwrite' ||
11570
- data64 === 'skip' ||
11571
- data64 === 'error'
11654
+ data65 === 'skip' ||
11655
+ data65 === 'error'
11572
11656
  )
11573
11657
  ) {
11574
11658
  validate14.errors = [
@@ -11594,16 +11678,16 @@ function validate14(
11594
11678
  return false;
11595
11679
  }
11596
11680
  var valid36 =
11597
- _errs175 === errors;
11681
+ _errs177 === errors;
11598
11682
  } else {
11599
11683
  var valid36 = true;
11600
11684
  }
11601
11685
  if (valid36) {
11602
11686
  if (data.step !== undefined) {
11603
- let data65 = data.step;
11604
- const _errs177 = errors;
11687
+ let data66 = data.step;
11688
+ const _errs179 = errors;
11605
11689
  if (
11606
- typeof data65 !==
11690
+ typeof data66 !==
11607
11691
  'string'
11608
11692
  ) {
11609
11693
  validate14.errors = [
@@ -11625,7 +11709,7 @@ function validate14(
11625
11709
  }
11626
11710
  if (
11627
11711
  'installTheme' !==
11628
- data65
11712
+ data66
11629
11713
  ) {
11630
11714
  validate14.errors = [
11631
11715
  {
@@ -11647,7 +11731,7 @@ function validate14(
11647
11731
  return false;
11648
11732
  }
11649
11733
  var valid36 =
11650
- _errs177 === errors;
11734
+ _errs179 === errors;
11651
11735
  } else {
11652
11736
  var valid36 = true;
11653
11737
  }
@@ -11656,15 +11740,15 @@ function validate14(
11656
11740
  data.themeData !==
11657
11741
  undefined
11658
11742
  ) {
11659
- let data66 =
11743
+ let data67 =
11660
11744
  data.themeData;
11661
- const _errs179 = errors;
11662
- const _errs180 = errors;
11663
- let valid38 = false;
11664
11745
  const _errs181 = errors;
11746
+ const _errs182 = errors;
11747
+ let valid38 = false;
11748
+ const _errs183 = errors;
11665
11749
  if (
11666
11750
  !validate12(
11667
- data66,
11751
+ data67,
11668
11752
  {
11669
11753
  instancePath:
11670
11754
  instancePath +
@@ -11687,15 +11771,15 @@ function validate14(
11687
11771
  vErrors.length;
11688
11772
  }
11689
11773
  var _valid1 =
11690
- _errs181 === errors;
11774
+ _errs183 === errors;
11691
11775
  valid38 =
11692
11776
  valid38 || _valid1;
11693
11777
  if (!valid38) {
11694
- const _errs182 =
11778
+ const _errs184 =
11695
11779
  errors;
11696
11780
  if (
11697
11781
  !validate18(
11698
- data66,
11782
+ data67,
11699
11783
  {
11700
11784
  instancePath:
11701
11785
  instancePath +
@@ -11719,7 +11803,7 @@ function validate14(
11719
11803
  vErrors.length;
11720
11804
  }
11721
11805
  var _valid1 =
11722
- _errs182 ===
11806
+ _errs184 ===
11723
11807
  errors;
11724
11808
  valid38 =
11725
11809
  valid38 ||
@@ -11754,13 +11838,13 @@ function validate14(
11754
11838
  vErrors;
11755
11839
  return false;
11756
11840
  } else {
11757
- errors = _errs180;
11841
+ errors = _errs182;
11758
11842
  if (
11759
11843
  vErrors !== null
11760
11844
  ) {
11761
- if (_errs180) {
11845
+ if (_errs182) {
11762
11846
  vErrors.length =
11763
- _errs180;
11847
+ _errs182;
11764
11848
  } else {
11765
11849
  vErrors =
11766
11850
  null;
@@ -11768,7 +11852,7 @@ function validate14(
11768
11852
  }
11769
11853
  }
11770
11854
  var valid36 =
11771
- _errs179 === errors;
11855
+ _errs181 === errors;
11772
11856
  } else {
11773
11857
  var valid36 = true;
11774
11858
  }
@@ -11777,7 +11861,7 @@ function validate14(
11777
11861
  data.themeZipFile !==
11778
11862
  undefined
11779
11863
  ) {
11780
- const _errs183 =
11864
+ const _errs185 =
11781
11865
  errors;
11782
11866
  if (
11783
11867
  !validate12(
@@ -11805,7 +11889,7 @@ function validate14(
11805
11889
  vErrors.length;
11806
11890
  }
11807
11891
  var valid36 =
11808
- _errs183 ===
11892
+ _errs185 ===
11809
11893
  errors;
11810
11894
  } else {
11811
11895
  var valid36 = true;
@@ -11815,27 +11899,27 @@ function validate14(
11815
11899
  data.options !==
11816
11900
  undefined
11817
11901
  ) {
11818
- let data68 =
11902
+ let data69 =
11819
11903
  data.options;
11820
- const _errs184 =
11904
+ const _errs186 =
11821
11905
  errors;
11822
- const _errs185 =
11906
+ const _errs187 =
11823
11907
  errors;
11824
11908
  if (
11825
11909
  errors ===
11826
- _errs185
11910
+ _errs187
11827
11911
  ) {
11828
11912
  if (
11829
- data68 &&
11830
- typeof data68 ==
11913
+ data69 &&
11914
+ typeof data69 ==
11831
11915
  'object' &&
11832
11916
  !Array.isArray(
11833
- data68
11917
+ data69
11834
11918
  )
11835
11919
  ) {
11836
- const _errs187 =
11920
+ const _errs189 =
11837
11921
  errors;
11838
- for (const key24 in data68) {
11922
+ for (const key24 in data69) {
11839
11923
  if (
11840
11924
  !(
11841
11925
  key24 ===
@@ -11869,17 +11953,17 @@ function validate14(
11869
11953
  }
11870
11954
  }
11871
11955
  if (
11872
- _errs187 ===
11956
+ _errs189 ===
11873
11957
  errors
11874
11958
  ) {
11875
11959
  if (
11876
- data68.activate !==
11960
+ data69.activate !==
11877
11961
  undefined
11878
11962
  ) {
11879
- const _errs188 =
11963
+ const _errs190 =
11880
11964
  errors;
11881
11965
  if (
11882
- typeof data68.activate !==
11966
+ typeof data69.activate !==
11883
11967
  'boolean'
11884
11968
  ) {
11885
11969
  validate14.errors =
@@ -11902,7 +11986,7 @@ function validate14(
11902
11986
  return false;
11903
11987
  }
11904
11988
  var valid40 =
11905
- _errs188 ===
11989
+ _errs190 ===
11906
11990
  errors;
11907
11991
  } else {
11908
11992
  var valid40 = true;
@@ -11911,13 +11995,13 @@ function validate14(
11911
11995
  valid40
11912
11996
  ) {
11913
11997
  if (
11914
- data68.importStarterContent !==
11998
+ data69.importStarterContent !==
11915
11999
  undefined
11916
12000
  ) {
11917
- const _errs190 =
12001
+ const _errs192 =
11918
12002
  errors;
11919
12003
  if (
11920
- typeof data68.importStarterContent !==
12004
+ typeof data69.importStarterContent !==
11921
12005
  'boolean'
11922
12006
  ) {
11923
12007
  validate14.errors =
@@ -11940,7 +12024,7 @@ function validate14(
11940
12024
  return false;
11941
12025
  }
11942
12026
  var valid40 =
11943
- _errs190 ===
12027
+ _errs192 ===
11944
12028
  errors;
11945
12029
  } else {
11946
12030
  var valid40 = true;
@@ -11949,13 +12033,13 @@ function validate14(
11949
12033
  valid40
11950
12034
  ) {
11951
12035
  if (
11952
- data68.targetFolderName !==
12036
+ data69.targetFolderName !==
11953
12037
  undefined
11954
12038
  ) {
11955
- const _errs192 =
12039
+ const _errs194 =
11956
12040
  errors;
11957
12041
  if (
11958
- typeof data68.targetFolderName !==
12042
+ typeof data69.targetFolderName !==
11959
12043
  'string'
11960
12044
  ) {
11961
12045
  validate14.errors =
@@ -11978,7 +12062,7 @@ function validate14(
11978
12062
  return false;
11979
12063
  }
11980
12064
  var valid40 =
11981
- _errs192 ===
12065
+ _errs194 ===
11982
12066
  errors;
11983
12067
  } else {
11984
12068
  var valid40 = true;
@@ -12008,7 +12092,7 @@ function validate14(
12008
12092
  }
12009
12093
  }
12010
12094
  var valid36 =
12011
- _errs184 ===
12095
+ _errs186 ===
12012
12096
  errors;
12013
12097
  } else {
12014
12098
  var valid36 = true;
@@ -12034,8 +12118,8 @@ function validate14(
12034
12118
  }
12035
12119
  }
12036
12120
  } else if (tag0 === 'login') {
12037
- const _errs194 = errors;
12038
- if (errors === _errs194) {
12121
+ const _errs196 = errors;
12122
+ if (errors === _errs196) {
12039
12123
  if (
12040
12124
  data &&
12041
12125
  typeof data == 'object' &&
@@ -12062,7 +12146,7 @@ function validate14(
12062
12146
  ];
12063
12147
  return false;
12064
12148
  } else {
12065
- const _errs196 = errors;
12149
+ const _errs198 = errors;
12066
12150
  for (const key25 in data) {
12067
12151
  if (
12068
12152
  !(
@@ -12091,18 +12175,18 @@ function validate14(
12091
12175
  break;
12092
12176
  }
12093
12177
  }
12094
- if (_errs196 === errors) {
12178
+ if (_errs198 === errors) {
12095
12179
  if (data.progress !== undefined) {
12096
- let data72 = data.progress;
12097
- const _errs197 = errors;
12098
- if (errors === _errs197) {
12180
+ let data73 = data.progress;
12181
+ const _errs199 = errors;
12182
+ if (errors === _errs199) {
12099
12183
  if (
12100
- data72 &&
12101
- typeof data72 == 'object' &&
12102
- !Array.isArray(data72)
12184
+ data73 &&
12185
+ typeof data73 == 'object' &&
12186
+ !Array.isArray(data73)
12103
12187
  ) {
12104
- const _errs199 = errors;
12105
- for (const key26 in data72) {
12188
+ const _errs201 = errors;
12189
+ for (const key26 in data73) {
12106
12190
  if (
12107
12191
  !(
12108
12192
  key26 ===
@@ -12133,21 +12217,21 @@ function validate14(
12133
12217
  break;
12134
12218
  }
12135
12219
  }
12136
- if (_errs199 === errors) {
12220
+ if (_errs201 === errors) {
12137
12221
  if (
12138
- data72.weight !==
12222
+ data73.weight !==
12139
12223
  undefined
12140
12224
  ) {
12141
- let data73 =
12142
- data72.weight;
12143
- const _errs200 =
12225
+ let data74 =
12226
+ data73.weight;
12227
+ const _errs202 =
12144
12228
  errors;
12145
12229
  if (
12146
12230
  !(
12147
- typeof data73 ==
12231
+ typeof data74 ==
12148
12232
  'number' &&
12149
12233
  isFinite(
12150
- data73
12234
+ data74
12151
12235
  )
12152
12236
  )
12153
12237
  ) {
@@ -12171,20 +12255,20 @@ function validate14(
12171
12255
  return false;
12172
12256
  }
12173
12257
  var valid43 =
12174
- _errs200 ===
12258
+ _errs202 ===
12175
12259
  errors;
12176
12260
  } else {
12177
12261
  var valid43 = true;
12178
12262
  }
12179
12263
  if (valid43) {
12180
12264
  if (
12181
- data72.caption !==
12265
+ data73.caption !==
12182
12266
  undefined
12183
12267
  ) {
12184
- const _errs202 =
12268
+ const _errs204 =
12185
12269
  errors;
12186
12270
  if (
12187
- typeof data72.caption !==
12271
+ typeof data73.caption !==
12188
12272
  'string'
12189
12273
  ) {
12190
12274
  validate14.errors =
@@ -12207,7 +12291,7 @@ function validate14(
12207
12291
  return false;
12208
12292
  }
12209
12293
  var valid43 =
12210
- _errs202 ===
12294
+ _errs204 ===
12211
12295
  errors;
12212
12296
  } else {
12213
12297
  var valid43 = true;
@@ -12233,16 +12317,16 @@ function validate14(
12233
12317
  return false;
12234
12318
  }
12235
12319
  }
12236
- var valid42 = _errs197 === errors;
12320
+ var valid42 = _errs199 === errors;
12237
12321
  } else {
12238
12322
  var valid42 = true;
12239
12323
  }
12240
12324
  if (valid42) {
12241
12325
  if (data.step !== undefined) {
12242
- let data75 = data.step;
12243
- const _errs204 = errors;
12326
+ let data76 = data.step;
12327
+ const _errs206 = errors;
12244
12328
  if (
12245
- typeof data75 !== 'string'
12329
+ typeof data76 !== 'string'
12246
12330
  ) {
12247
12331
  validate14.errors = [
12248
12332
  {
@@ -12261,7 +12345,7 @@ function validate14(
12261
12345
  ];
12262
12346
  return false;
12263
12347
  }
12264
- if ('login' !== data75) {
12348
+ if ('login' !== data76) {
12265
12349
  validate14.errors = [
12266
12350
  {
12267
12351
  instancePath:
@@ -12281,7 +12365,7 @@ function validate14(
12281
12365
  return false;
12282
12366
  }
12283
12367
  var valid42 =
12284
- _errs204 === errors;
12368
+ _errs206 === errors;
12285
12369
  } else {
12286
12370
  var valid42 = true;
12287
12371
  }
@@ -12289,7 +12373,7 @@ function validate14(
12289
12373
  if (
12290
12374
  data.username !== undefined
12291
12375
  ) {
12292
- const _errs206 = errors;
12376
+ const _errs208 = errors;
12293
12377
  if (
12294
12378
  typeof data.username !==
12295
12379
  'string'
@@ -12312,7 +12396,7 @@ function validate14(
12312
12396
  return false;
12313
12397
  }
12314
12398
  var valid42 =
12315
- _errs206 === errors;
12399
+ _errs208 === errors;
12316
12400
  } else {
12317
12401
  var valid42 = true;
12318
12402
  }
@@ -12321,7 +12405,7 @@ function validate14(
12321
12405
  data.password !==
12322
12406
  undefined
12323
12407
  ) {
12324
- const _errs208 = errors;
12408
+ const _errs210 = errors;
12325
12409
  if (
12326
12410
  typeof data.password !==
12327
12411
  'string'
@@ -12346,7 +12430,7 @@ function validate14(
12346
12430
  return false;
12347
12431
  }
12348
12432
  var valid42 =
12349
- _errs208 === errors;
12433
+ _errs210 === errors;
12350
12434
  } else {
12351
12435
  var valid42 = true;
12352
12436
  }
@@ -12369,8 +12453,8 @@ function validate14(
12369
12453
  }
12370
12454
  }
12371
12455
  } else if (tag0 === 'mkdir') {
12372
- const _errs210 = errors;
12373
- if (errors === _errs210) {
12456
+ const _errs212 = errors;
12457
+ if (errors === _errs212) {
12374
12458
  if (
12375
12459
  data &&
12376
12460
  typeof data == 'object' &&
@@ -12399,7 +12483,7 @@ function validate14(
12399
12483
  ];
12400
12484
  return false;
12401
12485
  } else {
12402
- const _errs212 = errors;
12486
+ const _errs214 = errors;
12403
12487
  for (const key27 in data) {
12404
12488
  if (
12405
12489
  !(
@@ -12427,18 +12511,18 @@ function validate14(
12427
12511
  break;
12428
12512
  }
12429
12513
  }
12430
- if (_errs212 === errors) {
12514
+ if (_errs214 === errors) {
12431
12515
  if (data.progress !== undefined) {
12432
- let data78 = data.progress;
12433
- const _errs213 = errors;
12434
- if (errors === _errs213) {
12516
+ let data79 = data.progress;
12517
+ const _errs215 = errors;
12518
+ if (errors === _errs215) {
12435
12519
  if (
12436
- data78 &&
12437
- typeof data78 == 'object' &&
12438
- !Array.isArray(data78)
12520
+ data79 &&
12521
+ typeof data79 == 'object' &&
12522
+ !Array.isArray(data79)
12439
12523
  ) {
12440
- const _errs215 = errors;
12441
- for (const key28 in data78) {
12524
+ const _errs217 = errors;
12525
+ for (const key28 in data79) {
12442
12526
  if (
12443
12527
  !(
12444
12528
  key28 ===
@@ -12469,21 +12553,21 @@ function validate14(
12469
12553
  break;
12470
12554
  }
12471
12555
  }
12472
- if (_errs215 === errors) {
12556
+ if (_errs217 === errors) {
12473
12557
  if (
12474
- data78.weight !==
12558
+ data79.weight !==
12475
12559
  undefined
12476
12560
  ) {
12477
- let data79 =
12478
- data78.weight;
12479
- const _errs216 =
12561
+ let data80 =
12562
+ data79.weight;
12563
+ const _errs218 =
12480
12564
  errors;
12481
12565
  if (
12482
12566
  !(
12483
- typeof data79 ==
12567
+ typeof data80 ==
12484
12568
  'number' &&
12485
12569
  isFinite(
12486
- data79
12570
+ data80
12487
12571
  )
12488
12572
  )
12489
12573
  ) {
@@ -12507,20 +12591,20 @@ function validate14(
12507
12591
  return false;
12508
12592
  }
12509
12593
  var valid46 =
12510
- _errs216 ===
12594
+ _errs218 ===
12511
12595
  errors;
12512
12596
  } else {
12513
12597
  var valid46 = true;
12514
12598
  }
12515
12599
  if (valid46) {
12516
12600
  if (
12517
- data78.caption !==
12601
+ data79.caption !==
12518
12602
  undefined
12519
12603
  ) {
12520
- const _errs218 =
12604
+ const _errs220 =
12521
12605
  errors;
12522
12606
  if (
12523
- typeof data78.caption !==
12607
+ typeof data79.caption !==
12524
12608
  'string'
12525
12609
  ) {
12526
12610
  validate14.errors =
@@ -12543,7 +12627,7 @@ function validate14(
12543
12627
  return false;
12544
12628
  }
12545
12629
  var valid46 =
12546
- _errs218 ===
12630
+ _errs220 ===
12547
12631
  errors;
12548
12632
  } else {
12549
12633
  var valid46 = true;
@@ -12569,16 +12653,16 @@ function validate14(
12569
12653
  return false;
12570
12654
  }
12571
12655
  }
12572
- var valid45 = _errs213 === errors;
12656
+ var valid45 = _errs215 === errors;
12573
12657
  } else {
12574
12658
  var valid45 = true;
12575
12659
  }
12576
12660
  if (valid45) {
12577
12661
  if (data.step !== undefined) {
12578
- let data81 = data.step;
12579
- const _errs220 = errors;
12662
+ let data82 = data.step;
12663
+ const _errs222 = errors;
12580
12664
  if (
12581
- typeof data81 !== 'string'
12665
+ typeof data82 !== 'string'
12582
12666
  ) {
12583
12667
  validate14.errors = [
12584
12668
  {
@@ -12597,7 +12681,7 @@ function validate14(
12597
12681
  ];
12598
12682
  return false;
12599
12683
  }
12600
- if ('mkdir' !== data81) {
12684
+ if ('mkdir' !== data82) {
12601
12685
  validate14.errors = [
12602
12686
  {
12603
12687
  instancePath:
@@ -12617,13 +12701,13 @@ function validate14(
12617
12701
  return false;
12618
12702
  }
12619
12703
  var valid45 =
12620
- _errs220 === errors;
12704
+ _errs222 === errors;
12621
12705
  } else {
12622
12706
  var valid45 = true;
12623
12707
  }
12624
12708
  if (valid45) {
12625
12709
  if (data.path !== undefined) {
12626
- const _errs222 = errors;
12710
+ const _errs224 = errors;
12627
12711
  if (
12628
12712
  typeof data.path !==
12629
12713
  'string'
@@ -12646,7 +12730,7 @@ function validate14(
12646
12730
  return false;
12647
12731
  }
12648
12732
  var valid45 =
12649
- _errs222 === errors;
12733
+ _errs224 === errors;
12650
12734
  } else {
12651
12735
  var valid45 = true;
12652
12736
  }
@@ -12668,8 +12752,8 @@ function validate14(
12668
12752
  }
12669
12753
  }
12670
12754
  } else if (tag0 === 'mv') {
12671
- const _errs224 = errors;
12672
- if (errors === _errs224) {
12755
+ const _errs226 = errors;
12756
+ if (errors === _errs226) {
12673
12757
  if (
12674
12758
  data &&
12675
12759
  typeof data == 'object' &&
@@ -12700,7 +12784,7 @@ function validate14(
12700
12784
  ];
12701
12785
  return false;
12702
12786
  } else {
12703
- const _errs226 = errors;
12787
+ const _errs228 = errors;
12704
12788
  for (const key29 in data) {
12705
12789
  if (
12706
12790
  !(
@@ -12729,18 +12813,18 @@ function validate14(
12729
12813
  break;
12730
12814
  }
12731
12815
  }
12732
- if (_errs226 === errors) {
12816
+ if (_errs228 === errors) {
12733
12817
  if (data.progress !== undefined) {
12734
- let data83 = data.progress;
12735
- const _errs227 = errors;
12736
- if (errors === _errs227) {
12818
+ let data84 = data.progress;
12819
+ const _errs229 = errors;
12820
+ if (errors === _errs229) {
12737
12821
  if (
12738
- data83 &&
12739
- typeof data83 == 'object' &&
12740
- !Array.isArray(data83)
12822
+ data84 &&
12823
+ typeof data84 == 'object' &&
12824
+ !Array.isArray(data84)
12741
12825
  ) {
12742
- const _errs229 = errors;
12743
- for (const key30 in data83) {
12826
+ const _errs231 = errors;
12827
+ for (const key30 in data84) {
12744
12828
  if (
12745
12829
  !(
12746
12830
  key30 ===
@@ -12771,21 +12855,21 @@ function validate14(
12771
12855
  break;
12772
12856
  }
12773
12857
  }
12774
- if (_errs229 === errors) {
12858
+ if (_errs231 === errors) {
12775
12859
  if (
12776
- data83.weight !==
12860
+ data84.weight !==
12777
12861
  undefined
12778
12862
  ) {
12779
- let data84 =
12780
- data83.weight;
12781
- const _errs230 =
12863
+ let data85 =
12864
+ data84.weight;
12865
+ const _errs232 =
12782
12866
  errors;
12783
12867
  if (
12784
12868
  !(
12785
- typeof data84 ==
12869
+ typeof data85 ==
12786
12870
  'number' &&
12787
12871
  isFinite(
12788
- data84
12872
+ data85
12789
12873
  )
12790
12874
  )
12791
12875
  ) {
@@ -12809,20 +12893,20 @@ function validate14(
12809
12893
  return false;
12810
12894
  }
12811
12895
  var valid49 =
12812
- _errs230 ===
12896
+ _errs232 ===
12813
12897
  errors;
12814
12898
  } else {
12815
12899
  var valid49 = true;
12816
12900
  }
12817
12901
  if (valid49) {
12818
12902
  if (
12819
- data83.caption !==
12903
+ data84.caption !==
12820
12904
  undefined
12821
12905
  ) {
12822
- const _errs232 =
12906
+ const _errs234 =
12823
12907
  errors;
12824
12908
  if (
12825
- typeof data83.caption !==
12909
+ typeof data84.caption !==
12826
12910
  'string'
12827
12911
  ) {
12828
12912
  validate14.errors =
@@ -12845,7 +12929,7 @@ function validate14(
12845
12929
  return false;
12846
12930
  }
12847
12931
  var valid49 =
12848
- _errs232 ===
12932
+ _errs234 ===
12849
12933
  errors;
12850
12934
  } else {
12851
12935
  var valid49 = true;
@@ -12871,16 +12955,16 @@ function validate14(
12871
12955
  return false;
12872
12956
  }
12873
12957
  }
12874
- var valid48 = _errs227 === errors;
12958
+ var valid48 = _errs229 === errors;
12875
12959
  } else {
12876
12960
  var valid48 = true;
12877
12961
  }
12878
12962
  if (valid48) {
12879
12963
  if (data.step !== undefined) {
12880
- let data86 = data.step;
12881
- const _errs234 = errors;
12964
+ let data87 = data.step;
12965
+ const _errs236 = errors;
12882
12966
  if (
12883
- typeof data86 !== 'string'
12967
+ typeof data87 !== 'string'
12884
12968
  ) {
12885
12969
  validate14.errors = [
12886
12970
  {
@@ -12899,7 +12983,7 @@ function validate14(
12899
12983
  ];
12900
12984
  return false;
12901
12985
  }
12902
- if ('mv' !== data86) {
12986
+ if ('mv' !== data87) {
12903
12987
  validate14.errors = [
12904
12988
  {
12905
12989
  instancePath:
@@ -12919,7 +13003,7 @@ function validate14(
12919
13003
  return false;
12920
13004
  }
12921
13005
  var valid48 =
12922
- _errs234 === errors;
13006
+ _errs236 === errors;
12923
13007
  } else {
12924
13008
  var valid48 = true;
12925
13009
  }
@@ -12927,7 +13011,7 @@ function validate14(
12927
13011
  if (
12928
13012
  data.fromPath !== undefined
12929
13013
  ) {
12930
- const _errs236 = errors;
13014
+ const _errs238 = errors;
12931
13015
  if (
12932
13016
  typeof data.fromPath !==
12933
13017
  'string'
@@ -12950,7 +13034,7 @@ function validate14(
12950
13034
  return false;
12951
13035
  }
12952
13036
  var valid48 =
12953
- _errs236 === errors;
13037
+ _errs238 === errors;
12954
13038
  } else {
12955
13039
  var valid48 = true;
12956
13040
  }
@@ -12959,7 +13043,7 @@ function validate14(
12959
13043
  data.toPath !==
12960
13044
  undefined
12961
13045
  ) {
12962
- const _errs238 = errors;
13046
+ const _errs240 = errors;
12963
13047
  if (
12964
13048
  typeof data.toPath !==
12965
13049
  'string'
@@ -12984,7 +13068,7 @@ function validate14(
12984
13068
  return false;
12985
13069
  }
12986
13070
  var valid48 =
12987
- _errs238 === errors;
13071
+ _errs240 === errors;
12988
13072
  } else {
12989
13073
  var valid48 = true;
12990
13074
  }
@@ -13007,8 +13091,8 @@ function validate14(
13007
13091
  }
13008
13092
  }
13009
13093
  } else if (tag0 === 'resetData') {
13010
- const _errs240 = errors;
13011
- if (errors === _errs240) {
13094
+ const _errs242 = errors;
13095
+ if (errors === _errs242) {
13012
13096
  if (
13013
13097
  data &&
13014
13098
  typeof data == 'object' &&
@@ -13035,7 +13119,7 @@ function validate14(
13035
13119
  ];
13036
13120
  return false;
13037
13121
  } else {
13038
- const _errs242 = errors;
13122
+ const _errs244 = errors;
13039
13123
  for (const key31 in data) {
13040
13124
  if (
13041
13125
  !(
@@ -13062,18 +13146,18 @@ function validate14(
13062
13146
  break;
13063
13147
  }
13064
13148
  }
13065
- if (_errs242 === errors) {
13149
+ if (_errs244 === errors) {
13066
13150
  if (data.progress !== undefined) {
13067
- let data89 = data.progress;
13068
- const _errs243 = errors;
13069
- if (errors === _errs243) {
13151
+ let data90 = data.progress;
13152
+ const _errs245 = errors;
13153
+ if (errors === _errs245) {
13070
13154
  if (
13071
- data89 &&
13072
- typeof data89 == 'object' &&
13073
- !Array.isArray(data89)
13155
+ data90 &&
13156
+ typeof data90 == 'object' &&
13157
+ !Array.isArray(data90)
13074
13158
  ) {
13075
- const _errs245 = errors;
13076
- for (const key32 in data89) {
13159
+ const _errs247 = errors;
13160
+ for (const key32 in data90) {
13077
13161
  if (
13078
13162
  !(
13079
13163
  key32 ===
@@ -13104,21 +13188,21 @@ function validate14(
13104
13188
  break;
13105
13189
  }
13106
13190
  }
13107
- if (_errs245 === errors) {
13191
+ if (_errs247 === errors) {
13108
13192
  if (
13109
- data89.weight !==
13193
+ data90.weight !==
13110
13194
  undefined
13111
13195
  ) {
13112
- let data90 =
13113
- data89.weight;
13114
- const _errs246 =
13196
+ let data91 =
13197
+ data90.weight;
13198
+ const _errs248 =
13115
13199
  errors;
13116
13200
  if (
13117
13201
  !(
13118
- typeof data90 ==
13202
+ typeof data91 ==
13119
13203
  'number' &&
13120
13204
  isFinite(
13121
- data90
13205
+ data91
13122
13206
  )
13123
13207
  )
13124
13208
  ) {
@@ -13142,20 +13226,20 @@ function validate14(
13142
13226
  return false;
13143
13227
  }
13144
13228
  var valid52 =
13145
- _errs246 ===
13229
+ _errs248 ===
13146
13230
  errors;
13147
13231
  } else {
13148
13232
  var valid52 = true;
13149
13233
  }
13150
13234
  if (valid52) {
13151
13235
  if (
13152
- data89.caption !==
13236
+ data90.caption !==
13153
13237
  undefined
13154
13238
  ) {
13155
- const _errs248 =
13239
+ const _errs250 =
13156
13240
  errors;
13157
13241
  if (
13158
- typeof data89.caption !==
13242
+ typeof data90.caption !==
13159
13243
  'string'
13160
13244
  ) {
13161
13245
  validate14.errors =
@@ -13178,7 +13262,7 @@ function validate14(
13178
13262
  return false;
13179
13263
  }
13180
13264
  var valid52 =
13181
- _errs248 ===
13265
+ _errs250 ===
13182
13266
  errors;
13183
13267
  } else {
13184
13268
  var valid52 = true;
@@ -13204,16 +13288,16 @@ function validate14(
13204
13288
  return false;
13205
13289
  }
13206
13290
  }
13207
- var valid51 = _errs243 === errors;
13291
+ var valid51 = _errs245 === errors;
13208
13292
  } else {
13209
13293
  var valid51 = true;
13210
13294
  }
13211
13295
  if (valid51) {
13212
13296
  if (data.step !== undefined) {
13213
- let data92 = data.step;
13214
- const _errs250 = errors;
13297
+ let data93 = data.step;
13298
+ const _errs252 = errors;
13215
13299
  if (
13216
- typeof data92 !== 'string'
13300
+ typeof data93 !== 'string'
13217
13301
  ) {
13218
13302
  validate14.errors = [
13219
13303
  {
@@ -13232,7 +13316,7 @@ function validate14(
13232
13316
  ];
13233
13317
  return false;
13234
13318
  }
13235
- if ('resetData' !== data92) {
13319
+ if ('resetData' !== data93) {
13236
13320
  validate14.errors = [
13237
13321
  {
13238
13322
  instancePath:
@@ -13252,7 +13336,7 @@ function validate14(
13252
13336
  return false;
13253
13337
  }
13254
13338
  var valid51 =
13255
- _errs250 === errors;
13339
+ _errs252 === errors;
13256
13340
  } else {
13257
13341
  var valid51 = true;
13258
13342
  }
@@ -13273,8 +13357,8 @@ function validate14(
13273
13357
  }
13274
13358
  }
13275
13359
  } else if (tag0 === 'request') {
13276
- const _errs252 = errors;
13277
- if (errors === _errs252) {
13360
+ const _errs254 = errors;
13361
+ if (errors === _errs254) {
13278
13362
  if (
13279
13363
  data &&
13280
13364
  typeof data == 'object' &&
@@ -13303,7 +13387,7 @@ function validate14(
13303
13387
  ];
13304
13388
  return false;
13305
13389
  } else {
13306
- const _errs254 = errors;
13390
+ const _errs256 = errors;
13307
13391
  for (const key33 in data) {
13308
13392
  if (
13309
13393
  !(
@@ -13331,18 +13415,18 @@ function validate14(
13331
13415
  break;
13332
13416
  }
13333
13417
  }
13334
- if (_errs254 === errors) {
13418
+ if (_errs256 === errors) {
13335
13419
  if (data.progress !== undefined) {
13336
- let data93 = data.progress;
13337
- const _errs255 = errors;
13338
- if (errors === _errs255) {
13420
+ let data94 = data.progress;
13421
+ const _errs257 = errors;
13422
+ if (errors === _errs257) {
13339
13423
  if (
13340
- data93 &&
13341
- typeof data93 == 'object' &&
13342
- !Array.isArray(data93)
13424
+ data94 &&
13425
+ typeof data94 == 'object' &&
13426
+ !Array.isArray(data94)
13343
13427
  ) {
13344
- const _errs257 = errors;
13345
- for (const key34 in data93) {
13428
+ const _errs259 = errors;
13429
+ for (const key34 in data94) {
13346
13430
  if (
13347
13431
  !(
13348
13432
  key34 ===
@@ -13373,21 +13457,21 @@ function validate14(
13373
13457
  break;
13374
13458
  }
13375
13459
  }
13376
- if (_errs257 === errors) {
13460
+ if (_errs259 === errors) {
13377
13461
  if (
13378
- data93.weight !==
13462
+ data94.weight !==
13379
13463
  undefined
13380
13464
  ) {
13381
- let data94 =
13382
- data93.weight;
13383
- const _errs258 =
13465
+ let data95 =
13466
+ data94.weight;
13467
+ const _errs260 =
13384
13468
  errors;
13385
13469
  if (
13386
13470
  !(
13387
- typeof data94 ==
13471
+ typeof data95 ==
13388
13472
  'number' &&
13389
13473
  isFinite(
13390
- data94
13474
+ data95
13391
13475
  )
13392
13476
  )
13393
13477
  ) {
@@ -13411,20 +13495,20 @@ function validate14(
13411
13495
  return false;
13412
13496
  }
13413
13497
  var valid55 =
13414
- _errs258 ===
13498
+ _errs260 ===
13415
13499
  errors;
13416
13500
  } else {
13417
13501
  var valid55 = true;
13418
13502
  }
13419
13503
  if (valid55) {
13420
13504
  if (
13421
- data93.caption !==
13505
+ data94.caption !==
13422
13506
  undefined
13423
13507
  ) {
13424
- const _errs260 =
13508
+ const _errs262 =
13425
13509
  errors;
13426
13510
  if (
13427
- typeof data93.caption !==
13511
+ typeof data94.caption !==
13428
13512
  'string'
13429
13513
  ) {
13430
13514
  validate14.errors =
@@ -13447,7 +13531,7 @@ function validate14(
13447
13531
  return false;
13448
13532
  }
13449
13533
  var valid55 =
13450
- _errs260 ===
13534
+ _errs262 ===
13451
13535
  errors;
13452
13536
  } else {
13453
13537
  var valid55 = true;
@@ -13473,16 +13557,16 @@ function validate14(
13473
13557
  return false;
13474
13558
  }
13475
13559
  }
13476
- var valid54 = _errs255 === errors;
13560
+ var valid54 = _errs257 === errors;
13477
13561
  } else {
13478
13562
  var valid54 = true;
13479
13563
  }
13480
13564
  if (valid54) {
13481
13565
  if (data.step !== undefined) {
13482
- let data96 = data.step;
13483
- const _errs262 = errors;
13566
+ let data97 = data.step;
13567
+ const _errs264 = errors;
13484
13568
  if (
13485
- typeof data96 !== 'string'
13569
+ typeof data97 !== 'string'
13486
13570
  ) {
13487
13571
  validate14.errors = [
13488
13572
  {
@@ -13501,7 +13585,7 @@ function validate14(
13501
13585
  ];
13502
13586
  return false;
13503
13587
  }
13504
- if ('request' !== data96) {
13588
+ if ('request' !== data97) {
13505
13589
  validate14.errors = [
13506
13590
  {
13507
13591
  instancePath:
@@ -13521,7 +13605,7 @@ function validate14(
13521
13605
  return false;
13522
13606
  }
13523
13607
  var valid54 =
13524
- _errs262 === errors;
13608
+ _errs264 === errors;
13525
13609
  } else {
13526
13610
  var valid54 = true;
13527
13611
  }
@@ -13529,7 +13613,7 @@ function validate14(
13529
13613
  if (
13530
13614
  data.request !== undefined
13531
13615
  ) {
13532
- const _errs264 = errors;
13616
+ const _errs266 = errors;
13533
13617
  if (
13534
13618
  !validate28(
13535
13619
  data.request,
@@ -13554,7 +13638,7 @@ function validate14(
13554
13638
  errors = vErrors.length;
13555
13639
  }
13556
13640
  var valid54 =
13557
- _errs264 === errors;
13641
+ _errs266 === errors;
13558
13642
  } else {
13559
13643
  var valid54 = true;
13560
13644
  }
@@ -13576,8 +13660,8 @@ function validate14(
13576
13660
  }
13577
13661
  }
13578
13662
  } else if (tag0 === 'rm') {
13579
- const _errs265 = errors;
13580
- if (errors === _errs265) {
13663
+ const _errs267 = errors;
13664
+ if (errors === _errs267) {
13581
13665
  if (
13582
13666
  data &&
13583
13667
  typeof data == 'object' &&
@@ -13606,7 +13690,7 @@ function validate14(
13606
13690
  ];
13607
13691
  return false;
13608
13692
  } else {
13609
- const _errs267 = errors;
13693
+ const _errs269 = errors;
13610
13694
  for (const key35 in data) {
13611
13695
  if (
13612
13696
  !(
@@ -13634,18 +13718,18 @@ function validate14(
13634
13718
  break;
13635
13719
  }
13636
13720
  }
13637
- if (_errs267 === errors) {
13721
+ if (_errs269 === errors) {
13638
13722
  if (data.progress !== undefined) {
13639
- let data98 = data.progress;
13640
- const _errs268 = errors;
13641
- if (errors === _errs268) {
13723
+ let data99 = data.progress;
13724
+ const _errs270 = errors;
13725
+ if (errors === _errs270) {
13642
13726
  if (
13643
- data98 &&
13644
- typeof data98 == 'object' &&
13645
- !Array.isArray(data98)
13727
+ data99 &&
13728
+ typeof data99 == 'object' &&
13729
+ !Array.isArray(data99)
13646
13730
  ) {
13647
- const _errs270 = errors;
13648
- for (const key36 in data98) {
13731
+ const _errs272 = errors;
13732
+ for (const key36 in data99) {
13649
13733
  if (
13650
13734
  !(
13651
13735
  key36 ===
@@ -13676,21 +13760,21 @@ function validate14(
13676
13760
  break;
13677
13761
  }
13678
13762
  }
13679
- if (_errs270 === errors) {
13763
+ if (_errs272 === errors) {
13680
13764
  if (
13681
- data98.weight !==
13765
+ data99.weight !==
13682
13766
  undefined
13683
13767
  ) {
13684
- let data99 =
13685
- data98.weight;
13686
- const _errs271 =
13768
+ let data100 =
13769
+ data99.weight;
13770
+ const _errs273 =
13687
13771
  errors;
13688
13772
  if (
13689
13773
  !(
13690
- typeof data99 ==
13774
+ typeof data100 ==
13691
13775
  'number' &&
13692
13776
  isFinite(
13693
- data99
13777
+ data100
13694
13778
  )
13695
13779
  )
13696
13780
  ) {
@@ -13714,20 +13798,20 @@ function validate14(
13714
13798
  return false;
13715
13799
  }
13716
13800
  var valid58 =
13717
- _errs271 ===
13801
+ _errs273 ===
13718
13802
  errors;
13719
13803
  } else {
13720
13804
  var valid58 = true;
13721
13805
  }
13722
13806
  if (valid58) {
13723
13807
  if (
13724
- data98.caption !==
13808
+ data99.caption !==
13725
13809
  undefined
13726
13810
  ) {
13727
- const _errs273 =
13811
+ const _errs275 =
13728
13812
  errors;
13729
13813
  if (
13730
- typeof data98.caption !==
13814
+ typeof data99.caption !==
13731
13815
  'string'
13732
13816
  ) {
13733
13817
  validate14.errors =
@@ -13750,7 +13834,7 @@ function validate14(
13750
13834
  return false;
13751
13835
  }
13752
13836
  var valid58 =
13753
- _errs273 ===
13837
+ _errs275 ===
13754
13838
  errors;
13755
13839
  } else {
13756
13840
  var valid58 = true;
@@ -13776,16 +13860,16 @@ function validate14(
13776
13860
  return false;
13777
13861
  }
13778
13862
  }
13779
- var valid57 = _errs268 === errors;
13863
+ var valid57 = _errs270 === errors;
13780
13864
  } else {
13781
13865
  var valid57 = true;
13782
13866
  }
13783
13867
  if (valid57) {
13784
13868
  if (data.step !== undefined) {
13785
- let data101 = data.step;
13786
- const _errs275 = errors;
13869
+ let data102 = data.step;
13870
+ const _errs277 = errors;
13787
13871
  if (
13788
- typeof data101 !== 'string'
13872
+ typeof data102 !== 'string'
13789
13873
  ) {
13790
13874
  validate14.errors = [
13791
13875
  {
@@ -13804,7 +13888,7 @@ function validate14(
13804
13888
  ];
13805
13889
  return false;
13806
13890
  }
13807
- if ('rm' !== data101) {
13891
+ if ('rm' !== data102) {
13808
13892
  validate14.errors = [
13809
13893
  {
13810
13894
  instancePath:
@@ -13824,13 +13908,13 @@ function validate14(
13824
13908
  return false;
13825
13909
  }
13826
13910
  var valid57 =
13827
- _errs275 === errors;
13911
+ _errs277 === errors;
13828
13912
  } else {
13829
13913
  var valid57 = true;
13830
13914
  }
13831
13915
  if (valid57) {
13832
13916
  if (data.path !== undefined) {
13833
- const _errs277 = errors;
13917
+ const _errs279 = errors;
13834
13918
  if (
13835
13919
  typeof data.path !==
13836
13920
  'string'
@@ -13853,7 +13937,7 @@ function validate14(
13853
13937
  return false;
13854
13938
  }
13855
13939
  var valid57 =
13856
- _errs277 === errors;
13940
+ _errs279 === errors;
13857
13941
  } else {
13858
13942
  var valid57 = true;
13859
13943
  }
@@ -13875,8 +13959,8 @@ function validate14(
13875
13959
  }
13876
13960
  }
13877
13961
  } else if (tag0 === 'rmdir') {
13878
- const _errs279 = errors;
13879
- if (errors === _errs279) {
13962
+ const _errs281 = errors;
13963
+ if (errors === _errs281) {
13880
13964
  if (
13881
13965
  data &&
13882
13966
  typeof data == 'object' &&
@@ -13905,7 +13989,7 @@ function validate14(
13905
13989
  ];
13906
13990
  return false;
13907
13991
  } else {
13908
- const _errs281 = errors;
13992
+ const _errs283 = errors;
13909
13993
  for (const key37 in data) {
13910
13994
  if (
13911
13995
  !(
@@ -13933,19 +14017,19 @@ function validate14(
13933
14017
  break;
13934
14018
  }
13935
14019
  }
13936
- if (_errs281 === errors) {
14020
+ if (_errs283 === errors) {
13937
14021
  if (data.progress !== undefined) {
13938
- let data103 = data.progress;
13939
- const _errs282 = errors;
13940
- if (errors === _errs282) {
14022
+ let data104 = data.progress;
14023
+ const _errs284 = errors;
14024
+ if (errors === _errs284) {
13941
14025
  if (
13942
- data103 &&
13943
- typeof data103 ==
14026
+ data104 &&
14027
+ typeof data104 ==
13944
14028
  'object' &&
13945
- !Array.isArray(data103)
14029
+ !Array.isArray(data104)
13946
14030
  ) {
13947
- const _errs284 = errors;
13948
- for (const key38 in data103) {
14031
+ const _errs286 = errors;
14032
+ for (const key38 in data104) {
13949
14033
  if (
13950
14034
  !(
13951
14035
  key38 ===
@@ -13976,21 +14060,21 @@ function validate14(
13976
14060
  break;
13977
14061
  }
13978
14062
  }
13979
- if (_errs284 === errors) {
14063
+ if (_errs286 === errors) {
13980
14064
  if (
13981
- data103.weight !==
14065
+ data104.weight !==
13982
14066
  undefined
13983
14067
  ) {
13984
- let data104 =
13985
- data103.weight;
13986
- const _errs285 =
14068
+ let data105 =
14069
+ data104.weight;
14070
+ const _errs287 =
13987
14071
  errors;
13988
14072
  if (
13989
14073
  !(
13990
- typeof data104 ==
14074
+ typeof data105 ==
13991
14075
  'number' &&
13992
14076
  isFinite(
13993
- data104
14077
+ data105
13994
14078
  )
13995
14079
  )
13996
14080
  ) {
@@ -14014,20 +14098,20 @@ function validate14(
14014
14098
  return false;
14015
14099
  }
14016
14100
  var valid61 =
14017
- _errs285 ===
14101
+ _errs287 ===
14018
14102
  errors;
14019
14103
  } else {
14020
14104
  var valid61 = true;
14021
14105
  }
14022
14106
  if (valid61) {
14023
14107
  if (
14024
- data103.caption !==
14108
+ data104.caption !==
14025
14109
  undefined
14026
14110
  ) {
14027
- const _errs287 =
14111
+ const _errs289 =
14028
14112
  errors;
14029
14113
  if (
14030
- typeof data103.caption !==
14114
+ typeof data104.caption !==
14031
14115
  'string'
14032
14116
  ) {
14033
14117
  validate14.errors =
@@ -14050,7 +14134,7 @@ function validate14(
14050
14134
  return false;
14051
14135
  }
14052
14136
  var valid61 =
14053
- _errs287 ===
14137
+ _errs289 ===
14054
14138
  errors;
14055
14139
  } else {
14056
14140
  var valid61 = true;
@@ -14076,16 +14160,16 @@ function validate14(
14076
14160
  return false;
14077
14161
  }
14078
14162
  }
14079
- var valid60 = _errs282 === errors;
14163
+ var valid60 = _errs284 === errors;
14080
14164
  } else {
14081
14165
  var valid60 = true;
14082
14166
  }
14083
14167
  if (valid60) {
14084
14168
  if (data.step !== undefined) {
14085
- let data106 = data.step;
14086
- const _errs289 = errors;
14169
+ let data107 = data.step;
14170
+ const _errs291 = errors;
14087
14171
  if (
14088
- typeof data106 !== 'string'
14172
+ typeof data107 !== 'string'
14089
14173
  ) {
14090
14174
  validate14.errors = [
14091
14175
  {
@@ -14104,7 +14188,7 @@ function validate14(
14104
14188
  ];
14105
14189
  return false;
14106
14190
  }
14107
- if ('rmdir' !== data106) {
14191
+ if ('rmdir' !== data107) {
14108
14192
  validate14.errors = [
14109
14193
  {
14110
14194
  instancePath:
@@ -14124,13 +14208,13 @@ function validate14(
14124
14208
  return false;
14125
14209
  }
14126
14210
  var valid60 =
14127
- _errs289 === errors;
14211
+ _errs291 === errors;
14128
14212
  } else {
14129
14213
  var valid60 = true;
14130
14214
  }
14131
14215
  if (valid60) {
14132
14216
  if (data.path !== undefined) {
14133
- const _errs291 = errors;
14217
+ const _errs293 = errors;
14134
14218
  if (
14135
14219
  typeof data.path !==
14136
14220
  'string'
@@ -14153,7 +14237,7 @@ function validate14(
14153
14237
  return false;
14154
14238
  }
14155
14239
  var valid60 =
14156
- _errs291 === errors;
14240
+ _errs293 === errors;
14157
14241
  } else {
14158
14242
  var valid60 = true;
14159
14243
  }
@@ -14175,8 +14259,8 @@ function validate14(
14175
14259
  }
14176
14260
  }
14177
14261
  } else if (tag0 === 'runPHP') {
14178
- const _errs293 = errors;
14179
- if (errors === _errs293) {
14262
+ const _errs295 = errors;
14263
+ if (errors === _errs295) {
14180
14264
  if (
14181
14265
  data &&
14182
14266
  typeof data == 'object' &&
@@ -14205,7 +14289,7 @@ function validate14(
14205
14289
  ];
14206
14290
  return false;
14207
14291
  } else {
14208
- const _errs295 = errors;
14292
+ const _errs297 = errors;
14209
14293
  for (const key39 in data) {
14210
14294
  if (
14211
14295
  !(
@@ -14233,19 +14317,19 @@ function validate14(
14233
14317
  break;
14234
14318
  }
14235
14319
  }
14236
- if (_errs295 === errors) {
14320
+ if (_errs297 === errors) {
14237
14321
  if (data.progress !== undefined) {
14238
- let data108 = data.progress;
14239
- const _errs296 = errors;
14240
- if (errors === _errs296) {
14322
+ let data109 = data.progress;
14323
+ const _errs298 = errors;
14324
+ if (errors === _errs298) {
14241
14325
  if (
14242
- data108 &&
14243
- typeof data108 ==
14326
+ data109 &&
14327
+ typeof data109 ==
14244
14328
  'object' &&
14245
- !Array.isArray(data108)
14329
+ !Array.isArray(data109)
14246
14330
  ) {
14247
- const _errs298 = errors;
14248
- for (const key40 in data108) {
14331
+ const _errs300 = errors;
14332
+ for (const key40 in data109) {
14249
14333
  if (
14250
14334
  !(
14251
14335
  key40 ===
@@ -14276,21 +14360,21 @@ function validate14(
14276
14360
  break;
14277
14361
  }
14278
14362
  }
14279
- if (_errs298 === errors) {
14363
+ if (_errs300 === errors) {
14280
14364
  if (
14281
- data108.weight !==
14365
+ data109.weight !==
14282
14366
  undefined
14283
14367
  ) {
14284
- let data109 =
14285
- data108.weight;
14286
- const _errs299 =
14368
+ let data110 =
14369
+ data109.weight;
14370
+ const _errs301 =
14287
14371
  errors;
14288
14372
  if (
14289
14373
  !(
14290
- typeof data109 ==
14374
+ typeof data110 ==
14291
14375
  'number' &&
14292
14376
  isFinite(
14293
- data109
14377
+ data110
14294
14378
  )
14295
14379
  )
14296
14380
  ) {
@@ -14314,20 +14398,20 @@ function validate14(
14314
14398
  return false;
14315
14399
  }
14316
14400
  var valid64 =
14317
- _errs299 ===
14401
+ _errs301 ===
14318
14402
  errors;
14319
14403
  } else {
14320
14404
  var valid64 = true;
14321
14405
  }
14322
14406
  if (valid64) {
14323
14407
  if (
14324
- data108.caption !==
14408
+ data109.caption !==
14325
14409
  undefined
14326
14410
  ) {
14327
- const _errs301 =
14411
+ const _errs303 =
14328
14412
  errors;
14329
14413
  if (
14330
- typeof data108.caption !==
14414
+ typeof data109.caption !==
14331
14415
  'string'
14332
14416
  ) {
14333
14417
  validate14.errors =
@@ -14350,7 +14434,7 @@ function validate14(
14350
14434
  return false;
14351
14435
  }
14352
14436
  var valid64 =
14353
- _errs301 ===
14437
+ _errs303 ===
14354
14438
  errors;
14355
14439
  } else {
14356
14440
  var valid64 = true;
@@ -14376,16 +14460,16 @@ function validate14(
14376
14460
  return false;
14377
14461
  }
14378
14462
  }
14379
- var valid63 = _errs296 === errors;
14463
+ var valid63 = _errs298 === errors;
14380
14464
  } else {
14381
14465
  var valid63 = true;
14382
14466
  }
14383
14467
  if (valid63) {
14384
14468
  if (data.step !== undefined) {
14385
- let data111 = data.step;
14386
- const _errs303 = errors;
14469
+ let data112 = data.step;
14470
+ const _errs305 = errors;
14387
14471
  if (
14388
- typeof data111 !== 'string'
14472
+ typeof data112 !== 'string'
14389
14473
  ) {
14390
14474
  validate14.errors = [
14391
14475
  {
@@ -14404,7 +14488,7 @@ function validate14(
14404
14488
  ];
14405
14489
  return false;
14406
14490
  }
14407
- if ('runPHP' !== data111) {
14491
+ if ('runPHP' !== data112) {
14408
14492
  validate14.errors = [
14409
14493
  {
14410
14494
  instancePath:
@@ -14424,13 +14508,13 @@ function validate14(
14424
14508
  return false;
14425
14509
  }
14426
14510
  var valid63 =
14427
- _errs303 === errors;
14511
+ _errs305 === errors;
14428
14512
  } else {
14429
14513
  var valid63 = true;
14430
14514
  }
14431
14515
  if (valid63) {
14432
14516
  if (data.code !== undefined) {
14433
- const _errs305 = errors;
14517
+ const _errs307 = errors;
14434
14518
  if (
14435
14519
  typeof data.code !==
14436
14520
  'string'
@@ -14453,7 +14537,7 @@ function validate14(
14453
14537
  return false;
14454
14538
  }
14455
14539
  var valid63 =
14456
- _errs305 === errors;
14540
+ _errs307 === errors;
14457
14541
  } else {
14458
14542
  var valid63 = true;
14459
14543
  }
@@ -14475,8 +14559,8 @@ function validate14(
14475
14559
  }
14476
14560
  }
14477
14561
  } else if (tag0 === 'runPHPWithOptions') {
14478
- const _errs307 = errors;
14479
- if (errors === _errs307) {
14562
+ const _errs309 = errors;
14563
+ if (errors === _errs309) {
14480
14564
  if (
14481
14565
  data &&
14482
14566
  typeof data == 'object' &&
@@ -14505,7 +14589,7 @@ function validate14(
14505
14589
  ];
14506
14590
  return false;
14507
14591
  } else {
14508
- const _errs309 = errors;
14592
+ const _errs311 = errors;
14509
14593
  for (const key41 in data) {
14510
14594
  if (
14511
14595
  !(
@@ -14533,19 +14617,19 @@ function validate14(
14533
14617
  break;
14534
14618
  }
14535
14619
  }
14536
- if (_errs309 === errors) {
14620
+ if (_errs311 === errors) {
14537
14621
  if (data.progress !== undefined) {
14538
- let data113 = data.progress;
14539
- const _errs310 = errors;
14540
- if (errors === _errs310) {
14622
+ let data114 = data.progress;
14623
+ const _errs312 = errors;
14624
+ if (errors === _errs312) {
14541
14625
  if (
14542
- data113 &&
14543
- typeof data113 ==
14626
+ data114 &&
14627
+ typeof data114 ==
14544
14628
  'object' &&
14545
- !Array.isArray(data113)
14629
+ !Array.isArray(data114)
14546
14630
  ) {
14547
- const _errs312 = errors;
14548
- for (const key42 in data113) {
14631
+ const _errs314 = errors;
14632
+ for (const key42 in data114) {
14549
14633
  if (
14550
14634
  !(
14551
14635
  key42 ===
@@ -14576,21 +14660,21 @@ function validate14(
14576
14660
  break;
14577
14661
  }
14578
14662
  }
14579
- if (_errs312 === errors) {
14663
+ if (_errs314 === errors) {
14580
14664
  if (
14581
- data113.weight !==
14665
+ data114.weight !==
14582
14666
  undefined
14583
14667
  ) {
14584
- let data114 =
14585
- data113.weight;
14586
- const _errs313 =
14668
+ let data115 =
14669
+ data114.weight;
14670
+ const _errs315 =
14587
14671
  errors;
14588
14672
  if (
14589
14673
  !(
14590
- typeof data114 ==
14674
+ typeof data115 ==
14591
14675
  'number' &&
14592
14676
  isFinite(
14593
- data114
14677
+ data115
14594
14678
  )
14595
14679
  )
14596
14680
  ) {
@@ -14614,20 +14698,20 @@ function validate14(
14614
14698
  return false;
14615
14699
  }
14616
14700
  var valid67 =
14617
- _errs313 ===
14701
+ _errs315 ===
14618
14702
  errors;
14619
14703
  } else {
14620
14704
  var valid67 = true;
14621
14705
  }
14622
14706
  if (valid67) {
14623
14707
  if (
14624
- data113.caption !==
14708
+ data114.caption !==
14625
14709
  undefined
14626
14710
  ) {
14627
- const _errs315 =
14711
+ const _errs317 =
14628
14712
  errors;
14629
14713
  if (
14630
- typeof data113.caption !==
14714
+ typeof data114.caption !==
14631
14715
  'string'
14632
14716
  ) {
14633
14717
  validate14.errors =
@@ -14650,7 +14734,7 @@ function validate14(
14650
14734
  return false;
14651
14735
  }
14652
14736
  var valid67 =
14653
- _errs315 ===
14737
+ _errs317 ===
14654
14738
  errors;
14655
14739
  } else {
14656
14740
  var valid67 = true;
@@ -14676,16 +14760,16 @@ function validate14(
14676
14760
  return false;
14677
14761
  }
14678
14762
  }
14679
- var valid66 = _errs310 === errors;
14763
+ var valid66 = _errs312 === errors;
14680
14764
  } else {
14681
14765
  var valid66 = true;
14682
14766
  }
14683
14767
  if (valid66) {
14684
14768
  if (data.step !== undefined) {
14685
- let data116 = data.step;
14686
- const _errs317 = errors;
14769
+ let data117 = data.step;
14770
+ const _errs319 = errors;
14687
14771
  if (
14688
- typeof data116 !== 'string'
14772
+ typeof data117 !== 'string'
14689
14773
  ) {
14690
14774
  validate14.errors = [
14691
14775
  {
@@ -14706,7 +14790,7 @@ function validate14(
14706
14790
  }
14707
14791
  if (
14708
14792
  'runPHPWithOptions' !==
14709
- data116
14793
+ data117
14710
14794
  ) {
14711
14795
  validate14.errors = [
14712
14796
  {
@@ -14727,7 +14811,7 @@ function validate14(
14727
14811
  return false;
14728
14812
  }
14729
14813
  var valid66 =
14730
- _errs317 === errors;
14814
+ _errs319 === errors;
14731
14815
  } else {
14732
14816
  var valid66 = true;
14733
14817
  }
@@ -14735,7 +14819,7 @@ function validate14(
14735
14819
  if (
14736
14820
  data.options !== undefined
14737
14821
  ) {
14738
- const _errs319 = errors;
14822
+ const _errs321 = errors;
14739
14823
  if (
14740
14824
  !validate30(
14741
14825
  data.options,
@@ -14760,7 +14844,7 @@ function validate14(
14760
14844
  errors = vErrors.length;
14761
14845
  }
14762
14846
  var valid66 =
14763
- _errs319 === errors;
14847
+ _errs321 === errors;
14764
14848
  } else {
14765
14849
  var valid66 = true;
14766
14850
  }
@@ -14782,8 +14866,8 @@ function validate14(
14782
14866
  }
14783
14867
  }
14784
14868
  } else if (tag0 === 'runWpInstallationWizard') {
14785
- const _errs320 = errors;
14786
- if (errors === _errs320) {
14869
+ const _errs322 = errors;
14870
+ if (errors === _errs322) {
14787
14871
  if (
14788
14872
  data &&
14789
14873
  typeof data == 'object' &&
@@ -14812,7 +14896,7 @@ function validate14(
14812
14896
  ];
14813
14897
  return false;
14814
14898
  } else {
14815
- const _errs322 = errors;
14899
+ const _errs324 = errors;
14816
14900
  for (const key43 in data) {
14817
14901
  if (
14818
14902
  !(
@@ -14840,19 +14924,19 @@ function validate14(
14840
14924
  break;
14841
14925
  }
14842
14926
  }
14843
- if (_errs322 === errors) {
14927
+ if (_errs324 === errors) {
14844
14928
  if (data.progress !== undefined) {
14845
- let data118 = data.progress;
14846
- const _errs323 = errors;
14847
- if (errors === _errs323) {
14929
+ let data119 = data.progress;
14930
+ const _errs325 = errors;
14931
+ if (errors === _errs325) {
14848
14932
  if (
14849
- data118 &&
14850
- typeof data118 ==
14933
+ data119 &&
14934
+ typeof data119 ==
14851
14935
  'object' &&
14852
- !Array.isArray(data118)
14936
+ !Array.isArray(data119)
14853
14937
  ) {
14854
- const _errs325 = errors;
14855
- for (const key44 in data118) {
14938
+ const _errs327 = errors;
14939
+ for (const key44 in data119) {
14856
14940
  if (
14857
14941
  !(
14858
14942
  key44 ===
@@ -14883,21 +14967,21 @@ function validate14(
14883
14967
  break;
14884
14968
  }
14885
14969
  }
14886
- if (_errs325 === errors) {
14970
+ if (_errs327 === errors) {
14887
14971
  if (
14888
- data118.weight !==
14972
+ data119.weight !==
14889
14973
  undefined
14890
14974
  ) {
14891
- let data119 =
14892
- data118.weight;
14893
- const _errs326 =
14975
+ let data120 =
14976
+ data119.weight;
14977
+ const _errs328 =
14894
14978
  errors;
14895
14979
  if (
14896
14980
  !(
14897
- typeof data119 ==
14981
+ typeof data120 ==
14898
14982
  'number' &&
14899
14983
  isFinite(
14900
- data119
14984
+ data120
14901
14985
  )
14902
14986
  )
14903
14987
  ) {
@@ -14921,20 +15005,20 @@ function validate14(
14921
15005
  return false;
14922
15006
  }
14923
15007
  var valid70 =
14924
- _errs326 ===
15008
+ _errs328 ===
14925
15009
  errors;
14926
15010
  } else {
14927
15011
  var valid70 = true;
14928
15012
  }
14929
15013
  if (valid70) {
14930
15014
  if (
14931
- data118.caption !==
15015
+ data119.caption !==
14932
15016
  undefined
14933
15017
  ) {
14934
- const _errs328 =
15018
+ const _errs330 =
14935
15019
  errors;
14936
15020
  if (
14937
- typeof data118.caption !==
15021
+ typeof data119.caption !==
14938
15022
  'string'
14939
15023
  ) {
14940
15024
  validate14.errors =
@@ -14957,7 +15041,7 @@ function validate14(
14957
15041
  return false;
14958
15042
  }
14959
15043
  var valid70 =
14960
- _errs328 ===
15044
+ _errs330 ===
14961
15045
  errors;
14962
15046
  } else {
14963
15047
  var valid70 = true;
@@ -14983,16 +15067,16 @@ function validate14(
14983
15067
  return false;
14984
15068
  }
14985
15069
  }
14986
- var valid69 = _errs323 === errors;
15070
+ var valid69 = _errs325 === errors;
14987
15071
  } else {
14988
15072
  var valid69 = true;
14989
15073
  }
14990
15074
  if (valid69) {
14991
15075
  if (data.step !== undefined) {
14992
- let data121 = data.step;
14993
- const _errs330 = errors;
15076
+ let data122 = data.step;
15077
+ const _errs332 = errors;
14994
15078
  if (
14995
- typeof data121 !== 'string'
15079
+ typeof data122 !== 'string'
14996
15080
  ) {
14997
15081
  validate14.errors = [
14998
15082
  {
@@ -15013,7 +15097,7 @@ function validate14(
15013
15097
  }
15014
15098
  if (
15015
15099
  'runWpInstallationWizard' !==
15016
- data121
15100
+ data122
15017
15101
  ) {
15018
15102
  validate14.errors = [
15019
15103
  {
@@ -15034,7 +15118,7 @@ function validate14(
15034
15118
  return false;
15035
15119
  }
15036
15120
  var valid69 =
15037
- _errs330 === errors;
15121
+ _errs332 === errors;
15038
15122
  } else {
15039
15123
  var valid69 = true;
15040
15124
  }
@@ -15042,21 +15126,21 @@ function validate14(
15042
15126
  if (
15043
15127
  data.options !== undefined
15044
15128
  ) {
15045
- let data122 = data.options;
15046
- const _errs332 = errors;
15047
- const _errs333 = errors;
15048
- if (errors === _errs333) {
15129
+ let data123 = data.options;
15130
+ const _errs334 = errors;
15131
+ const _errs335 = errors;
15132
+ if (errors === _errs335) {
15049
15133
  if (
15050
- data122 &&
15051
- typeof data122 ==
15134
+ data123 &&
15135
+ typeof data123 ==
15052
15136
  'object' &&
15053
15137
  !Array.isArray(
15054
- data122
15138
+ data123
15055
15139
  )
15056
15140
  ) {
15057
- const _errs335 =
15141
+ const _errs337 =
15058
15142
  errors;
15059
- for (const key45 in data122) {
15143
+ for (const key45 in data123) {
15060
15144
  if (
15061
15145
  !(
15062
15146
  key45 ===
@@ -15088,17 +15172,17 @@ function validate14(
15088
15172
  }
15089
15173
  }
15090
15174
  if (
15091
- _errs335 ===
15175
+ _errs337 ===
15092
15176
  errors
15093
15177
  ) {
15094
15178
  if (
15095
- data122.adminUsername !==
15179
+ data123.adminUsername !==
15096
15180
  undefined
15097
15181
  ) {
15098
- const _errs336 =
15182
+ const _errs338 =
15099
15183
  errors;
15100
15184
  if (
15101
- typeof data122.adminUsername !==
15185
+ typeof data123.adminUsername !==
15102
15186
  'string'
15103
15187
  ) {
15104
15188
  validate14.errors =
@@ -15121,20 +15205,20 @@ function validate14(
15121
15205
  return false;
15122
15206
  }
15123
15207
  var valid72 =
15124
- _errs336 ===
15208
+ _errs338 ===
15125
15209
  errors;
15126
15210
  } else {
15127
15211
  var valid72 = true;
15128
15212
  }
15129
15213
  if (valid72) {
15130
15214
  if (
15131
- data122.adminPassword !==
15215
+ data123.adminPassword !==
15132
15216
  undefined
15133
15217
  ) {
15134
- const _errs338 =
15218
+ const _errs340 =
15135
15219
  errors;
15136
15220
  if (
15137
- typeof data122.adminPassword !==
15221
+ typeof data123.adminPassword !==
15138
15222
  'string'
15139
15223
  ) {
15140
15224
  validate14.errors =
@@ -15157,7 +15241,7 @@ function validate14(
15157
15241
  return false;
15158
15242
  }
15159
15243
  var valid72 =
15160
- _errs338 ===
15244
+ _errs340 ===
15161
15245
  errors;
15162
15246
  } else {
15163
15247
  var valid72 = true;
@@ -15186,7 +15270,7 @@ function validate14(
15186
15270
  }
15187
15271
  }
15188
15272
  var valid69 =
15189
- _errs332 === errors;
15273
+ _errs334 === errors;
15190
15274
  } else {
15191
15275
  var valid69 = true;
15192
15276
  }
@@ -15208,8 +15292,8 @@ function validate14(
15208
15292
  }
15209
15293
  }
15210
15294
  } else if (tag0 === 'runSql') {
15211
- const _errs340 = errors;
15212
- if (errors === _errs340) {
15295
+ const _errs342 = errors;
15296
+ if (errors === _errs342) {
15213
15297
  if (
15214
15298
  data &&
15215
15299
  typeof data == 'object' &&
@@ -15238,7 +15322,7 @@ function validate14(
15238
15322
  ];
15239
15323
  return false;
15240
15324
  } else {
15241
- const _errs342 = errors;
15325
+ const _errs344 = errors;
15242
15326
  for (const key46 in data) {
15243
15327
  if (
15244
15328
  !(
@@ -15266,19 +15350,19 @@ function validate14(
15266
15350
  break;
15267
15351
  }
15268
15352
  }
15269
- if (_errs342 === errors) {
15353
+ if (_errs344 === errors) {
15270
15354
  if (data.progress !== undefined) {
15271
- let data125 = data.progress;
15272
- const _errs343 = errors;
15273
- if (errors === _errs343) {
15355
+ let data126 = data.progress;
15356
+ const _errs345 = errors;
15357
+ if (errors === _errs345) {
15274
15358
  if (
15275
- data125 &&
15276
- typeof data125 ==
15359
+ data126 &&
15360
+ typeof data126 ==
15277
15361
  'object' &&
15278
- !Array.isArray(data125)
15362
+ !Array.isArray(data126)
15279
15363
  ) {
15280
- const _errs345 = errors;
15281
- for (const key47 in data125) {
15364
+ const _errs347 = errors;
15365
+ for (const key47 in data126) {
15282
15366
  if (
15283
15367
  !(
15284
15368
  key47 ===
@@ -15309,21 +15393,21 @@ function validate14(
15309
15393
  break;
15310
15394
  }
15311
15395
  }
15312
- if (_errs345 === errors) {
15396
+ if (_errs347 === errors) {
15313
15397
  if (
15314
- data125.weight !==
15398
+ data126.weight !==
15315
15399
  undefined
15316
15400
  ) {
15317
- let data126 =
15318
- data125.weight;
15319
- const _errs346 =
15401
+ let data127 =
15402
+ data126.weight;
15403
+ const _errs348 =
15320
15404
  errors;
15321
15405
  if (
15322
15406
  !(
15323
- typeof data126 ==
15407
+ typeof data127 ==
15324
15408
  'number' &&
15325
15409
  isFinite(
15326
- data126
15410
+ data127
15327
15411
  )
15328
15412
  )
15329
15413
  ) {
@@ -15347,20 +15431,20 @@ function validate14(
15347
15431
  return false;
15348
15432
  }
15349
15433
  var valid75 =
15350
- _errs346 ===
15434
+ _errs348 ===
15351
15435
  errors;
15352
15436
  } else {
15353
15437
  var valid75 = true;
15354
15438
  }
15355
15439
  if (valid75) {
15356
15440
  if (
15357
- data125.caption !==
15441
+ data126.caption !==
15358
15442
  undefined
15359
15443
  ) {
15360
- const _errs348 =
15444
+ const _errs350 =
15361
15445
  errors;
15362
15446
  if (
15363
- typeof data125.caption !==
15447
+ typeof data126.caption !==
15364
15448
  'string'
15365
15449
  ) {
15366
15450
  validate14.errors =
@@ -15383,7 +15467,7 @@ function validate14(
15383
15467
  return false;
15384
15468
  }
15385
15469
  var valid75 =
15386
- _errs348 ===
15470
+ _errs350 ===
15387
15471
  errors;
15388
15472
  } else {
15389
15473
  var valid75 = true;
@@ -15409,16 +15493,16 @@ function validate14(
15409
15493
  return false;
15410
15494
  }
15411
15495
  }
15412
- var valid74 = _errs343 === errors;
15496
+ var valid74 = _errs345 === errors;
15413
15497
  } else {
15414
15498
  var valid74 = true;
15415
15499
  }
15416
15500
  if (valid74) {
15417
15501
  if (data.step !== undefined) {
15418
- let data128 = data.step;
15419
- const _errs350 = errors;
15502
+ let data129 = data.step;
15503
+ const _errs352 = errors;
15420
15504
  if (
15421
- typeof data128 !== 'string'
15505
+ typeof data129 !== 'string'
15422
15506
  ) {
15423
15507
  validate14.errors = [
15424
15508
  {
@@ -15437,7 +15521,7 @@ function validate14(
15437
15521
  ];
15438
15522
  return false;
15439
15523
  }
15440
- if ('runSql' !== data128) {
15524
+ if ('runSql' !== data129) {
15441
15525
  validate14.errors = [
15442
15526
  {
15443
15527
  instancePath:
@@ -15457,13 +15541,13 @@ function validate14(
15457
15541
  return false;
15458
15542
  }
15459
15543
  var valid74 =
15460
- _errs350 === errors;
15544
+ _errs352 === errors;
15461
15545
  } else {
15462
15546
  var valid74 = true;
15463
15547
  }
15464
15548
  if (valid74) {
15465
15549
  if (data.sql !== undefined) {
15466
- const _errs352 = errors;
15550
+ const _errs354 = errors;
15467
15551
  if (
15468
15552
  !validate12(data.sql, {
15469
15553
  instancePath:
@@ -15484,7 +15568,7 @@ function validate14(
15484
15568
  errors = vErrors.length;
15485
15569
  }
15486
15570
  var valid74 =
15487
- _errs352 === errors;
15571
+ _errs354 === errors;
15488
15572
  } else {
15489
15573
  var valid74 = true;
15490
15574
  }
@@ -15506,8 +15590,8 @@ function validate14(
15506
15590
  }
15507
15591
  }
15508
15592
  } else if (tag0 === 'setSiteOptions') {
15509
- const _errs353 = errors;
15510
- if (errors === _errs353) {
15593
+ const _errs355 = errors;
15594
+ if (errors === _errs355) {
15511
15595
  if (
15512
15596
  data &&
15513
15597
  typeof data == 'object' &&
@@ -15536,7 +15620,7 @@ function validate14(
15536
15620
  ];
15537
15621
  return false;
15538
15622
  } else {
15539
- const _errs355 = errors;
15623
+ const _errs357 = errors;
15540
15624
  for (const key48 in data) {
15541
15625
  if (
15542
15626
  !(
@@ -15564,19 +15648,19 @@ function validate14(
15564
15648
  break;
15565
15649
  }
15566
15650
  }
15567
- if (_errs355 === errors) {
15651
+ if (_errs357 === errors) {
15568
15652
  if (data.progress !== undefined) {
15569
- let data130 = data.progress;
15570
- const _errs356 = errors;
15571
- if (errors === _errs356) {
15653
+ let data131 = data.progress;
15654
+ const _errs358 = errors;
15655
+ if (errors === _errs358) {
15572
15656
  if (
15573
- data130 &&
15574
- typeof data130 ==
15657
+ data131 &&
15658
+ typeof data131 ==
15575
15659
  'object' &&
15576
- !Array.isArray(data130)
15660
+ !Array.isArray(data131)
15577
15661
  ) {
15578
- const _errs358 = errors;
15579
- for (const key49 in data130) {
15662
+ const _errs360 = errors;
15663
+ for (const key49 in data131) {
15580
15664
  if (
15581
15665
  !(
15582
15666
  key49 ===
@@ -15607,21 +15691,21 @@ function validate14(
15607
15691
  break;
15608
15692
  }
15609
15693
  }
15610
- if (_errs358 === errors) {
15694
+ if (_errs360 === errors) {
15611
15695
  if (
15612
- data130.weight !==
15696
+ data131.weight !==
15613
15697
  undefined
15614
15698
  ) {
15615
- let data131 =
15616
- data130.weight;
15617
- const _errs359 =
15699
+ let data132 =
15700
+ data131.weight;
15701
+ const _errs361 =
15618
15702
  errors;
15619
15703
  if (
15620
15704
  !(
15621
- typeof data131 ==
15705
+ typeof data132 ==
15622
15706
  'number' &&
15623
15707
  isFinite(
15624
- data131
15708
+ data132
15625
15709
  )
15626
15710
  )
15627
15711
  ) {
@@ -15645,20 +15729,20 @@ function validate14(
15645
15729
  return false;
15646
15730
  }
15647
15731
  var valid78 =
15648
- _errs359 ===
15732
+ _errs361 ===
15649
15733
  errors;
15650
15734
  } else {
15651
15735
  var valid78 = true;
15652
15736
  }
15653
15737
  if (valid78) {
15654
15738
  if (
15655
- data130.caption !==
15739
+ data131.caption !==
15656
15740
  undefined
15657
15741
  ) {
15658
- const _errs361 =
15742
+ const _errs363 =
15659
15743
  errors;
15660
15744
  if (
15661
- typeof data130.caption !==
15745
+ typeof data131.caption !==
15662
15746
  'string'
15663
15747
  ) {
15664
15748
  validate14.errors =
@@ -15681,7 +15765,7 @@ function validate14(
15681
15765
  return false;
15682
15766
  }
15683
15767
  var valid78 =
15684
- _errs361 ===
15768
+ _errs363 ===
15685
15769
  errors;
15686
15770
  } else {
15687
15771
  var valid78 = true;
@@ -15707,16 +15791,16 @@ function validate14(
15707
15791
  return false;
15708
15792
  }
15709
15793
  }
15710
- var valid77 = _errs356 === errors;
15794
+ var valid77 = _errs358 === errors;
15711
15795
  } else {
15712
15796
  var valid77 = true;
15713
15797
  }
15714
15798
  if (valid77) {
15715
15799
  if (data.step !== undefined) {
15716
- let data133 = data.step;
15717
- const _errs363 = errors;
15800
+ let data134 = data.step;
15801
+ const _errs365 = errors;
15718
15802
  if (
15719
- typeof data133 !== 'string'
15803
+ typeof data134 !== 'string'
15720
15804
  ) {
15721
15805
  validate14.errors = [
15722
15806
  {
@@ -15736,7 +15820,7 @@ function validate14(
15736
15820
  return false;
15737
15821
  }
15738
15822
  if (
15739
- 'setSiteOptions' !== data133
15823
+ 'setSiteOptions' !== data134
15740
15824
  ) {
15741
15825
  validate14.errors = [
15742
15826
  {
@@ -15757,7 +15841,7 @@ function validate14(
15757
15841
  return false;
15758
15842
  }
15759
15843
  var valid77 =
15760
- _errs363 === errors;
15844
+ _errs365 === errors;
15761
15845
  } else {
15762
15846
  var valid77 = true;
15763
15847
  }
@@ -15765,22 +15849,22 @@ function validate14(
15765
15849
  if (
15766
15850
  data.options !== undefined
15767
15851
  ) {
15768
- let data134 = data.options;
15769
- const _errs365 = errors;
15770
- if (errors === _errs365) {
15852
+ let data135 = data.options;
15853
+ const _errs367 = errors;
15854
+ if (errors === _errs367) {
15771
15855
  if (
15772
- data134 &&
15773
- typeof data134 ==
15856
+ data135 &&
15857
+ typeof data135 ==
15774
15858
  'object' &&
15775
15859
  !Array.isArray(
15776
- data134
15860
+ data135
15777
15861
  )
15778
15862
  ) {
15779
- for (const key50 in data134) {
15780
- const _errs368 =
15863
+ for (const key50 in data135) {
15864
+ const _errs370 =
15781
15865
  errors;
15782
15866
  var valid79 =
15783
- _errs368 ===
15867
+ _errs370 ===
15784
15868
  errors;
15785
15869
  if (!valid79) {
15786
15870
  break;
@@ -15808,7 +15892,7 @@ function validate14(
15808
15892
  }
15809
15893
  }
15810
15894
  var valid77 =
15811
- _errs365 === errors;
15895
+ _errs367 === errors;
15812
15896
  } else {
15813
15897
  var valid77 = true;
15814
15898
  }
@@ -15830,8 +15914,8 @@ function validate14(
15830
15914
  }
15831
15915
  }
15832
15916
  } else if (tag0 === 'unzip') {
15833
- const _errs369 = errors;
15834
- if (errors === _errs369) {
15917
+ const _errs371 = errors;
15918
+ if (errors === _errs371) {
15835
15919
  if (
15836
15920
  data &&
15837
15921
  typeof data == 'object' &&
@@ -15860,7 +15944,7 @@ function validate14(
15860
15944
  ];
15861
15945
  return false;
15862
15946
  } else {
15863
- const _errs371 = errors;
15947
+ const _errs373 = errors;
15864
15948
  for (const key51 in data) {
15865
15949
  if (
15866
15950
  !(
@@ -15890,19 +15974,19 @@ function validate14(
15890
15974
  break;
15891
15975
  }
15892
15976
  }
15893
- if (_errs371 === errors) {
15977
+ if (_errs373 === errors) {
15894
15978
  if (data.progress !== undefined) {
15895
- let data136 = data.progress;
15896
- const _errs372 = errors;
15897
- if (errors === _errs372) {
15979
+ let data137 = data.progress;
15980
+ const _errs374 = errors;
15981
+ if (errors === _errs374) {
15898
15982
  if (
15899
- data136 &&
15900
- typeof data136 ==
15983
+ data137 &&
15984
+ typeof data137 ==
15901
15985
  'object' &&
15902
- !Array.isArray(data136)
15986
+ !Array.isArray(data137)
15903
15987
  ) {
15904
- const _errs374 = errors;
15905
- for (const key52 in data136) {
15988
+ const _errs376 = errors;
15989
+ for (const key52 in data137) {
15906
15990
  if (
15907
15991
  !(
15908
15992
  key52 ===
@@ -15933,21 +16017,21 @@ function validate14(
15933
16017
  break;
15934
16018
  }
15935
16019
  }
15936
- if (_errs374 === errors) {
16020
+ if (_errs376 === errors) {
15937
16021
  if (
15938
- data136.weight !==
16022
+ data137.weight !==
15939
16023
  undefined
15940
16024
  ) {
15941
- let data137 =
15942
- data136.weight;
15943
- const _errs375 =
16025
+ let data138 =
16026
+ data137.weight;
16027
+ const _errs377 =
15944
16028
  errors;
15945
16029
  if (
15946
16030
  !(
15947
- typeof data137 ==
16031
+ typeof data138 ==
15948
16032
  'number' &&
15949
16033
  isFinite(
15950
- data137
16034
+ data138
15951
16035
  )
15952
16036
  )
15953
16037
  ) {
@@ -15971,20 +16055,20 @@ function validate14(
15971
16055
  return false;
15972
16056
  }
15973
16057
  var valid82 =
15974
- _errs375 ===
16058
+ _errs377 ===
15975
16059
  errors;
15976
16060
  } else {
15977
16061
  var valid82 = true;
15978
16062
  }
15979
16063
  if (valid82) {
15980
16064
  if (
15981
- data136.caption !==
16065
+ data137.caption !==
15982
16066
  undefined
15983
16067
  ) {
15984
- const _errs377 =
16068
+ const _errs379 =
15985
16069
  errors;
15986
16070
  if (
15987
- typeof data136.caption !==
16071
+ typeof data137.caption !==
15988
16072
  'string'
15989
16073
  ) {
15990
16074
  validate14.errors =
@@ -16007,7 +16091,7 @@ function validate14(
16007
16091
  return false;
16008
16092
  }
16009
16093
  var valid82 =
16010
- _errs377 ===
16094
+ _errs379 ===
16011
16095
  errors;
16012
16096
  } else {
16013
16097
  var valid82 = true;
@@ -16033,16 +16117,16 @@ function validate14(
16033
16117
  return false;
16034
16118
  }
16035
16119
  }
16036
- var valid81 = _errs372 === errors;
16120
+ var valid81 = _errs374 === errors;
16037
16121
  } else {
16038
16122
  var valid81 = true;
16039
16123
  }
16040
16124
  if (valid81) {
16041
16125
  if (data.step !== undefined) {
16042
- let data139 = data.step;
16043
- const _errs379 = errors;
16126
+ let data140 = data.step;
16127
+ const _errs381 = errors;
16044
16128
  if (
16045
- typeof data139 !== 'string'
16129
+ typeof data140 !== 'string'
16046
16130
  ) {
16047
16131
  validate14.errors = [
16048
16132
  {
@@ -16061,7 +16145,7 @@ function validate14(
16061
16145
  ];
16062
16146
  return false;
16063
16147
  }
16064
- if ('unzip' !== data139) {
16148
+ if ('unzip' !== data140) {
16065
16149
  validate14.errors = [
16066
16150
  {
16067
16151
  instancePath:
@@ -16081,7 +16165,7 @@ function validate14(
16081
16165
  return false;
16082
16166
  }
16083
16167
  var valid81 =
16084
- _errs379 === errors;
16168
+ _errs381 === errors;
16085
16169
  } else {
16086
16170
  var valid81 = true;
16087
16171
  }
@@ -16089,7 +16173,7 @@ function validate14(
16089
16173
  if (
16090
16174
  data.zipFile !== undefined
16091
16175
  ) {
16092
- const _errs381 = errors;
16176
+ const _errs383 = errors;
16093
16177
  if (
16094
16178
  !validate12(
16095
16179
  data.zipFile,
@@ -16114,7 +16198,7 @@ function validate14(
16114
16198
  errors = vErrors.length;
16115
16199
  }
16116
16200
  var valid81 =
16117
- _errs381 === errors;
16201
+ _errs383 === errors;
16118
16202
  } else {
16119
16203
  var valid81 = true;
16120
16204
  }
@@ -16123,7 +16207,7 @@ function validate14(
16123
16207
  data.zipPath !==
16124
16208
  undefined
16125
16209
  ) {
16126
- const _errs382 = errors;
16210
+ const _errs384 = errors;
16127
16211
  if (
16128
16212
  typeof data.zipPath !==
16129
16213
  'string'
@@ -16148,7 +16232,7 @@ function validate14(
16148
16232
  return false;
16149
16233
  }
16150
16234
  var valid81 =
16151
- _errs382 === errors;
16235
+ _errs384 === errors;
16152
16236
  } else {
16153
16237
  var valid81 = true;
16154
16238
  }
@@ -16157,7 +16241,7 @@ function validate14(
16157
16241
  data.extractToPath !==
16158
16242
  undefined
16159
16243
  ) {
16160
- const _errs384 =
16244
+ const _errs386 =
16161
16245
  errors;
16162
16246
  if (
16163
16247
  typeof data.extractToPath !==
@@ -16183,7 +16267,7 @@ function validate14(
16183
16267
  return false;
16184
16268
  }
16185
16269
  var valid81 =
16186
- _errs384 ===
16270
+ _errs386 ===
16187
16271
  errors;
16188
16272
  } else {
16189
16273
  var valid81 = true;
@@ -16208,8 +16292,8 @@ function validate14(
16208
16292
  }
16209
16293
  }
16210
16294
  } else if (tag0 === 'updateUserMeta') {
16211
- const _errs386 = errors;
16212
- if (errors === _errs386) {
16295
+ const _errs388 = errors;
16296
+ if (errors === _errs388) {
16213
16297
  if (
16214
16298
  data &&
16215
16299
  typeof data == 'object' &&
@@ -16240,7 +16324,7 @@ function validate14(
16240
16324
  ];
16241
16325
  return false;
16242
16326
  } else {
16243
- const _errs388 = errors;
16327
+ const _errs390 = errors;
16244
16328
  for (const key53 in data) {
16245
16329
  if (
16246
16330
  !(
@@ -16269,19 +16353,19 @@ function validate14(
16269
16353
  break;
16270
16354
  }
16271
16355
  }
16272
- if (_errs388 === errors) {
16356
+ if (_errs390 === errors) {
16273
16357
  if (data.progress !== undefined) {
16274
- let data143 = data.progress;
16275
- const _errs389 = errors;
16276
- if (errors === _errs389) {
16358
+ let data144 = data.progress;
16359
+ const _errs391 = errors;
16360
+ if (errors === _errs391) {
16277
16361
  if (
16278
- data143 &&
16279
- typeof data143 ==
16362
+ data144 &&
16363
+ typeof data144 ==
16280
16364
  'object' &&
16281
- !Array.isArray(data143)
16365
+ !Array.isArray(data144)
16282
16366
  ) {
16283
- const _errs391 = errors;
16284
- for (const key54 in data143) {
16367
+ const _errs393 = errors;
16368
+ for (const key54 in data144) {
16285
16369
  if (
16286
16370
  !(
16287
16371
  key54 ===
@@ -16312,21 +16396,21 @@ function validate14(
16312
16396
  break;
16313
16397
  }
16314
16398
  }
16315
- if (_errs391 === errors) {
16399
+ if (_errs393 === errors) {
16316
16400
  if (
16317
- data143.weight !==
16401
+ data144.weight !==
16318
16402
  undefined
16319
16403
  ) {
16320
- let data144 =
16321
- data143.weight;
16322
- const _errs392 =
16404
+ let data145 =
16405
+ data144.weight;
16406
+ const _errs394 =
16323
16407
  errors;
16324
16408
  if (
16325
16409
  !(
16326
- typeof data144 ==
16410
+ typeof data145 ==
16327
16411
  'number' &&
16328
16412
  isFinite(
16329
- data144
16413
+ data145
16330
16414
  )
16331
16415
  )
16332
16416
  ) {
@@ -16350,20 +16434,20 @@ function validate14(
16350
16434
  return false;
16351
16435
  }
16352
16436
  var valid85 =
16353
- _errs392 ===
16437
+ _errs394 ===
16354
16438
  errors;
16355
16439
  } else {
16356
16440
  var valid85 = true;
16357
16441
  }
16358
16442
  if (valid85) {
16359
16443
  if (
16360
- data143.caption !==
16444
+ data144.caption !==
16361
16445
  undefined
16362
16446
  ) {
16363
- const _errs394 =
16447
+ const _errs396 =
16364
16448
  errors;
16365
16449
  if (
16366
- typeof data143.caption !==
16450
+ typeof data144.caption !==
16367
16451
  'string'
16368
16452
  ) {
16369
16453
  validate14.errors =
@@ -16386,7 +16470,7 @@ function validate14(
16386
16470
  return false;
16387
16471
  }
16388
16472
  var valid85 =
16389
- _errs394 ===
16473
+ _errs396 ===
16390
16474
  errors;
16391
16475
  } else {
16392
16476
  var valid85 = true;
@@ -16412,16 +16496,16 @@ function validate14(
16412
16496
  return false;
16413
16497
  }
16414
16498
  }
16415
- var valid84 = _errs389 === errors;
16499
+ var valid84 = _errs391 === errors;
16416
16500
  } else {
16417
16501
  var valid84 = true;
16418
16502
  }
16419
16503
  if (valid84) {
16420
16504
  if (data.step !== undefined) {
16421
- let data146 = data.step;
16422
- const _errs396 = errors;
16505
+ let data147 = data.step;
16506
+ const _errs398 = errors;
16423
16507
  if (
16424
- typeof data146 !== 'string'
16508
+ typeof data147 !== 'string'
16425
16509
  ) {
16426
16510
  validate14.errors = [
16427
16511
  {
@@ -16441,7 +16525,7 @@ function validate14(
16441
16525
  return false;
16442
16526
  }
16443
16527
  if (
16444
- 'updateUserMeta' !== data146
16528
+ 'updateUserMeta' !== data147
16445
16529
  ) {
16446
16530
  validate14.errors = [
16447
16531
  {
@@ -16462,28 +16546,28 @@ function validate14(
16462
16546
  return false;
16463
16547
  }
16464
16548
  var valid84 =
16465
- _errs396 === errors;
16549
+ _errs398 === errors;
16466
16550
  } else {
16467
16551
  var valid84 = true;
16468
16552
  }
16469
16553
  if (valid84) {
16470
16554
  if (data.meta !== undefined) {
16471
- let data147 = data.meta;
16472
- const _errs398 = errors;
16473
- if (errors === _errs398) {
16555
+ let data148 = data.meta;
16556
+ const _errs400 = errors;
16557
+ if (errors === _errs400) {
16474
16558
  if (
16475
- data147 &&
16476
- typeof data147 ==
16559
+ data148 &&
16560
+ typeof data148 ==
16477
16561
  'object' &&
16478
16562
  !Array.isArray(
16479
- data147
16563
+ data148
16480
16564
  )
16481
16565
  ) {
16482
- for (const key55 in data147) {
16483
- const _errs401 =
16566
+ for (const key55 in data148) {
16567
+ const _errs403 =
16484
16568
  errors;
16485
16569
  var valid86 =
16486
- _errs401 ===
16570
+ _errs403 ===
16487
16571
  errors;
16488
16572
  if (!valid86) {
16489
16573
  break;
@@ -16511,7 +16595,7 @@ function validate14(
16511
16595
  }
16512
16596
  }
16513
16597
  var valid84 =
16514
- _errs398 === errors;
16598
+ _errs400 === errors;
16515
16599
  } else {
16516
16600
  var valid84 = true;
16517
16601
  }
@@ -16520,15 +16604,15 @@ function validate14(
16520
16604
  data.userId !==
16521
16605
  undefined
16522
16606
  ) {
16523
- let data149 =
16607
+ let data150 =
16524
16608
  data.userId;
16525
- const _errs402 = errors;
16609
+ const _errs404 = errors;
16526
16610
  if (
16527
16611
  !(
16528
- typeof data149 ==
16612
+ typeof data150 ==
16529
16613
  'number' &&
16530
16614
  isFinite(
16531
- data149
16615
+ data150
16532
16616
  )
16533
16617
  )
16534
16618
  ) {
@@ -16552,7 +16636,7 @@ function validate14(
16552
16636
  return false;
16553
16637
  }
16554
16638
  var valid84 =
16555
- _errs402 === errors;
16639
+ _errs404 === errors;
16556
16640
  } else {
16557
16641
  var valid84 = true;
16558
16642
  }
@@ -16575,8 +16659,8 @@ function validate14(
16575
16659
  }
16576
16660
  }
16577
16661
  } else if (tag0 === 'writeFile') {
16578
- const _errs404 = errors;
16579
- if (errors === _errs404) {
16662
+ const _errs406 = errors;
16663
+ if (errors === _errs406) {
16580
16664
  if (
16581
16665
  data &&
16582
16666
  typeof data == 'object' &&
@@ -16607,7 +16691,7 @@ function validate14(
16607
16691
  ];
16608
16692
  return false;
16609
16693
  } else {
16610
- const _errs406 = errors;
16694
+ const _errs408 = errors;
16611
16695
  for (const key56 in data) {
16612
16696
  if (
16613
16697
  !(
@@ -16636,19 +16720,19 @@ function validate14(
16636
16720
  break;
16637
16721
  }
16638
16722
  }
16639
- if (_errs406 === errors) {
16723
+ if (_errs408 === errors) {
16640
16724
  if (data.progress !== undefined) {
16641
- let data150 = data.progress;
16642
- const _errs407 = errors;
16643
- if (errors === _errs407) {
16725
+ let data151 = data.progress;
16726
+ const _errs409 = errors;
16727
+ if (errors === _errs409) {
16644
16728
  if (
16645
- data150 &&
16646
- typeof data150 ==
16729
+ data151 &&
16730
+ typeof data151 ==
16647
16731
  'object' &&
16648
- !Array.isArray(data150)
16732
+ !Array.isArray(data151)
16649
16733
  ) {
16650
- const _errs409 = errors;
16651
- for (const key57 in data150) {
16734
+ const _errs411 = errors;
16735
+ for (const key57 in data151) {
16652
16736
  if (
16653
16737
  !(
16654
16738
  key57 ===
@@ -16679,21 +16763,21 @@ function validate14(
16679
16763
  break;
16680
16764
  }
16681
16765
  }
16682
- if (_errs409 === errors) {
16766
+ if (_errs411 === errors) {
16683
16767
  if (
16684
- data150.weight !==
16768
+ data151.weight !==
16685
16769
  undefined
16686
16770
  ) {
16687
- let data151 =
16688
- data150.weight;
16689
- const _errs410 =
16771
+ let data152 =
16772
+ data151.weight;
16773
+ const _errs412 =
16690
16774
  errors;
16691
16775
  if (
16692
16776
  !(
16693
- typeof data151 ==
16777
+ typeof data152 ==
16694
16778
  'number' &&
16695
16779
  isFinite(
16696
- data151
16780
+ data152
16697
16781
  )
16698
16782
  )
16699
16783
  ) {
@@ -16717,20 +16801,20 @@ function validate14(
16717
16801
  return false;
16718
16802
  }
16719
16803
  var valid89 =
16720
- _errs410 ===
16804
+ _errs412 ===
16721
16805
  errors;
16722
16806
  } else {
16723
16807
  var valid89 = true;
16724
16808
  }
16725
16809
  if (valid89) {
16726
16810
  if (
16727
- data150.caption !==
16811
+ data151.caption !==
16728
16812
  undefined
16729
16813
  ) {
16730
- const _errs412 =
16814
+ const _errs414 =
16731
16815
  errors;
16732
16816
  if (
16733
- typeof data150.caption !==
16817
+ typeof data151.caption !==
16734
16818
  'string'
16735
16819
  ) {
16736
16820
  validate14.errors =
@@ -16753,7 +16837,7 @@ function validate14(
16753
16837
  return false;
16754
16838
  }
16755
16839
  var valid89 =
16756
- _errs412 ===
16840
+ _errs414 ===
16757
16841
  errors;
16758
16842
  } else {
16759
16843
  var valid89 = true;
@@ -16779,16 +16863,16 @@ function validate14(
16779
16863
  return false;
16780
16864
  }
16781
16865
  }
16782
- var valid88 = _errs407 === errors;
16866
+ var valid88 = _errs409 === errors;
16783
16867
  } else {
16784
16868
  var valid88 = true;
16785
16869
  }
16786
16870
  if (valid88) {
16787
16871
  if (data.step !== undefined) {
16788
- let data153 = data.step;
16789
- const _errs414 = errors;
16872
+ let data154 = data.step;
16873
+ const _errs416 = errors;
16790
16874
  if (
16791
- typeof data153 !== 'string'
16875
+ typeof data154 !== 'string'
16792
16876
  ) {
16793
16877
  validate14.errors = [
16794
16878
  {
@@ -16807,7 +16891,7 @@ function validate14(
16807
16891
  ];
16808
16892
  return false;
16809
16893
  }
16810
- if ('writeFile' !== data153) {
16894
+ if ('writeFile' !== data154) {
16811
16895
  validate14.errors = [
16812
16896
  {
16813
16897
  instancePath:
@@ -16827,13 +16911,13 @@ function validate14(
16827
16911
  return false;
16828
16912
  }
16829
16913
  var valid88 =
16830
- _errs414 === errors;
16914
+ _errs416 === errors;
16831
16915
  } else {
16832
16916
  var valid88 = true;
16833
16917
  }
16834
16918
  if (valid88) {
16835
16919
  if (data.path !== undefined) {
16836
- const _errs416 = errors;
16920
+ const _errs418 = errors;
16837
16921
  if (
16838
16922
  typeof data.path !==
16839
16923
  'string'
@@ -16856,7 +16940,7 @@ function validate14(
16856
16940
  return false;
16857
16941
  }
16858
16942
  var valid88 =
16859
- _errs416 === errors;
16943
+ _errs418 === errors;
16860
16944
  } else {
16861
16945
  var valid88 = true;
16862
16946
  }
@@ -16864,14 +16948,14 @@ function validate14(
16864
16948
  if (
16865
16949
  data.data !== undefined
16866
16950
  ) {
16867
- let data155 = data.data;
16868
- const _errs418 = errors;
16869
- const _errs419 = errors;
16870
- let valid90 = false;
16951
+ let data156 = data.data;
16871
16952
  const _errs420 = errors;
16953
+ const _errs421 = errors;
16954
+ let valid90 = false;
16955
+ const _errs422 = errors;
16872
16956
  if (
16873
16957
  !validate12(
16874
- data155,
16958
+ data156,
16875
16959
  {
16876
16960
  instancePath:
16877
16961
  instancePath +
@@ -16894,14 +16978,14 @@ function validate14(
16894
16978
  vErrors.length;
16895
16979
  }
16896
16980
  var _valid2 =
16897
- _errs420 === errors;
16981
+ _errs422 === errors;
16898
16982
  valid90 =
16899
16983
  valid90 || _valid2;
16900
16984
  if (!valid90) {
16901
- const _errs421 =
16985
+ const _errs423 =
16902
16986
  errors;
16903
16987
  if (
16904
- typeof data155 !==
16988
+ typeof data156 !==
16905
16989
  'string'
16906
16990
  ) {
16907
16991
  const err2 = {
@@ -16933,45 +17017,45 @@ function validate14(
16933
17017
  errors++;
16934
17018
  }
16935
17019
  var _valid2 =
16936
- _errs421 ===
17020
+ _errs423 ===
16937
17021
  errors;
16938
17022
  valid90 =
16939
17023
  valid90 ||
16940
17024
  _valid2;
16941
17025
  if (!valid90) {
16942
- const _errs423 =
17026
+ const _errs425 =
16943
17027
  errors;
16944
17028
  if (
16945
17029
  errors ===
16946
- _errs423
17030
+ _errs425
16947
17031
  ) {
16948
17032
  if (
16949
- data155 &&
16950
- typeof data155 ==
17033
+ data156 &&
17034
+ typeof data156 ==
16951
17035
  'object' &&
16952
17036
  !Array.isArray(
16953
- data155
17037
+ data156
16954
17038
  )
16955
17039
  ) {
16956
17040
  let missing27;
16957
17041
  if (
16958
- (data155.BYTES_PER_ELEMENT ===
17042
+ (data156.BYTES_PER_ELEMENT ===
16959
17043
  undefined &&
16960
17044
  (missing27 =
16961
17045
  'BYTES_PER_ELEMENT')) ||
16962
- (data155.buffer ===
17046
+ (data156.buffer ===
16963
17047
  undefined &&
16964
17048
  (missing27 =
16965
17049
  'buffer')) ||
16966
- (data155.byteLength ===
17050
+ (data156.byteLength ===
16967
17051
  undefined &&
16968
17052
  (missing27 =
16969
17053
  'byteLength')) ||
16970
- (data155.byteOffset ===
17054
+ (data156.byteOffset ===
16971
17055
  undefined &&
16972
17056
  (missing27 =
16973
17057
  'byteOffset')) ||
16974
- (data155.length ===
17058
+ (data156.length ===
16975
17059
  undefined &&
16976
17060
  (missing27 =
16977
17061
  'length'))
@@ -17009,9 +17093,9 @@ function validate14(
17009
17093
  }
17010
17094
  errors++;
17011
17095
  } else {
17012
- const _errs425 =
17096
+ const _errs427 =
17013
17097
  errors;
17014
- for (const key58 in data155) {
17098
+ for (const key58 in data156) {
17015
17099
  if (
17016
17100
  !(
17017
17101
  key58 ===
@@ -17026,18 +17110,18 @@ function validate14(
17026
17110
  'length'
17027
17111
  )
17028
17112
  ) {
17029
- let data156 =
17030
- data155[
17113
+ let data157 =
17114
+ data156[
17031
17115
  key58
17032
17116
  ];
17033
- const _errs426 =
17117
+ const _errs428 =
17034
17118
  errors;
17035
17119
  if (
17036
17120
  !(
17037
- typeof data156 ==
17121
+ typeof data157 ==
17038
17122
  'number' &&
17039
17123
  isFinite(
17040
- data156
17124
+ data157
17041
17125
  )
17042
17126
  )
17043
17127
  ) {
@@ -17081,7 +17165,7 @@ function validate14(
17081
17165
  errors++;
17082
17166
  }
17083
17167
  var valid91 =
17084
- _errs426 ===
17168
+ _errs428 ===
17085
17169
  errors;
17086
17170
  if (
17087
17171
  !valid91
@@ -17091,23 +17175,23 @@ function validate14(
17091
17175
  }
17092
17176
  }
17093
17177
  if (
17094
- _errs425 ===
17178
+ _errs427 ===
17095
17179
  errors
17096
17180
  ) {
17097
17181
  if (
17098
- data155.BYTES_PER_ELEMENT !==
17182
+ data156.BYTES_PER_ELEMENT !==
17099
17183
  undefined
17100
17184
  ) {
17101
- let data157 =
17102
- data155.BYTES_PER_ELEMENT;
17103
- const _errs428 =
17185
+ let data158 =
17186
+ data156.BYTES_PER_ELEMENT;
17187
+ const _errs430 =
17104
17188
  errors;
17105
17189
  if (
17106
17190
  !(
17107
- typeof data157 ==
17191
+ typeof data158 ==
17108
17192
  'number' &&
17109
17193
  isFinite(
17110
- data157
17194
+ data158
17111
17195
  )
17112
17196
  )
17113
17197
  ) {
@@ -17142,7 +17226,7 @@ function validate14(
17142
17226
  errors++;
17143
17227
  }
17144
17228
  var valid92 =
17145
- _errs428 ===
17229
+ _errs430 ===
17146
17230
  errors;
17147
17231
  } else {
17148
17232
  var valid92 = true;
@@ -17151,28 +17235,28 @@ function validate14(
17151
17235
  valid92
17152
17236
  ) {
17153
17237
  if (
17154
- data155.buffer !==
17238
+ data156.buffer !==
17155
17239
  undefined
17156
17240
  ) {
17157
- let data158 =
17158
- data155.buffer;
17159
- const _errs430 =
17241
+ let data159 =
17242
+ data156.buffer;
17243
+ const _errs432 =
17160
17244
  errors;
17161
17245
  if (
17162
17246
  errors ===
17163
- _errs430
17247
+ _errs432
17164
17248
  ) {
17165
17249
  if (
17166
- data158 &&
17167
- typeof data158 ==
17250
+ data159 &&
17251
+ typeof data159 ==
17168
17252
  'object' &&
17169
17253
  !Array.isArray(
17170
- data158
17254
+ data159
17171
17255
  )
17172
17256
  ) {
17173
17257
  let missing28;
17174
17258
  if (
17175
- data158.byteLength ===
17259
+ data159.byteLength ===
17176
17260
  undefined &&
17177
17261
  (missing28 =
17178
17262
  'byteLength')
@@ -17210,9 +17294,9 @@ function validate14(
17210
17294
  }
17211
17295
  errors++;
17212
17296
  } else {
17213
- const _errs432 =
17297
+ const _errs434 =
17214
17298
  errors;
17215
- for (const key59 in data158) {
17299
+ for (const key59 in data159) {
17216
17300
  if (
17217
17301
  !(
17218
17302
  key59 ===
@@ -17253,21 +17337,21 @@ function validate14(
17253
17337
  }
17254
17338
  }
17255
17339
  if (
17256
- _errs432 ===
17340
+ _errs434 ===
17257
17341
  errors
17258
17342
  ) {
17259
17343
  if (
17260
- data158.byteLength !==
17344
+ data159.byteLength !==
17261
17345
  undefined
17262
17346
  ) {
17263
- let data159 =
17264
- data158.byteLength;
17347
+ let data160 =
17348
+ data159.byteLength;
17265
17349
  if (
17266
17350
  !(
17267
- typeof data159 ==
17351
+ typeof data160 ==
17268
17352
  'number' &&
17269
17353
  isFinite(
17270
- data159
17354
+ data160
17271
17355
  )
17272
17356
  )
17273
17357
  ) {
@@ -17337,7 +17421,7 @@ function validate14(
17337
17421
  }
17338
17422
  }
17339
17423
  var valid92 =
17340
- _errs430 ===
17424
+ _errs432 ===
17341
17425
  errors;
17342
17426
  } else {
17343
17427
  var valid92 = true;
@@ -17346,19 +17430,19 @@ function validate14(
17346
17430
  valid92
17347
17431
  ) {
17348
17432
  if (
17349
- data155.byteLength !==
17433
+ data156.byteLength !==
17350
17434
  undefined
17351
17435
  ) {
17352
- let data160 =
17353
- data155.byteLength;
17354
- const _errs435 =
17436
+ let data161 =
17437
+ data156.byteLength;
17438
+ const _errs437 =
17355
17439
  errors;
17356
17440
  if (
17357
17441
  !(
17358
- typeof data160 ==
17442
+ typeof data161 ==
17359
17443
  'number' &&
17360
17444
  isFinite(
17361
- data160
17445
+ data161
17362
17446
  )
17363
17447
  )
17364
17448
  ) {
@@ -17393,7 +17477,7 @@ function validate14(
17393
17477
  errors++;
17394
17478
  }
17395
17479
  var valid92 =
17396
- _errs435 ===
17480
+ _errs437 ===
17397
17481
  errors;
17398
17482
  } else {
17399
17483
  var valid92 = true;
@@ -17402,19 +17486,19 @@ function validate14(
17402
17486
  valid92
17403
17487
  ) {
17404
17488
  if (
17405
- data155.byteOffset !==
17489
+ data156.byteOffset !==
17406
17490
  undefined
17407
17491
  ) {
17408
- let data161 =
17409
- data155.byteOffset;
17410
- const _errs437 =
17492
+ let data162 =
17493
+ data156.byteOffset;
17494
+ const _errs439 =
17411
17495
  errors;
17412
17496
  if (
17413
17497
  !(
17414
- typeof data161 ==
17498
+ typeof data162 ==
17415
17499
  'number' &&
17416
17500
  isFinite(
17417
- data161
17501
+ data162
17418
17502
  )
17419
17503
  )
17420
17504
  ) {
@@ -17449,7 +17533,7 @@ function validate14(
17449
17533
  errors++;
17450
17534
  }
17451
17535
  var valid92 =
17452
- _errs437 ===
17536
+ _errs439 ===
17453
17537
  errors;
17454
17538
  } else {
17455
17539
  var valid92 = true;
@@ -17458,19 +17542,19 @@ function validate14(
17458
17542
  valid92
17459
17543
  ) {
17460
17544
  if (
17461
- data155.length !==
17545
+ data156.length !==
17462
17546
  undefined
17463
17547
  ) {
17464
- let data162 =
17465
- data155.length;
17466
- const _errs439 =
17548
+ let data163 =
17549
+ data156.length;
17550
+ const _errs441 =
17467
17551
  errors;
17468
17552
  if (
17469
17553
  !(
17470
- typeof data162 ==
17554
+ typeof data163 ==
17471
17555
  'number' &&
17472
17556
  isFinite(
17473
- data162
17557
+ data163
17474
17558
  )
17475
17559
  )
17476
17560
  ) {
@@ -17505,7 +17589,7 @@ function validate14(
17505
17589
  errors++;
17506
17590
  }
17507
17591
  var valid92 =
17508
- _errs439 ===
17592
+ _errs441 ===
17509
17593
  errors;
17510
17594
  } else {
17511
17595
  var valid92 = true;
@@ -17549,7 +17633,7 @@ function validate14(
17549
17633
  }
17550
17634
  }
17551
17635
  var _valid2 =
17552
- _errs423 ===
17636
+ _errs425 ===
17553
17637
  errors;
17554
17638
  valid90 =
17555
17639
  valid90 ||
@@ -17585,13 +17669,13 @@ function validate14(
17585
17669
  vErrors;
17586
17670
  return false;
17587
17671
  } else {
17588
- errors = _errs419;
17672
+ errors = _errs421;
17589
17673
  if (
17590
17674
  vErrors !== null
17591
17675
  ) {
17592
- if (_errs419) {
17676
+ if (_errs421) {
17593
17677
  vErrors.length =
17594
- _errs419;
17678
+ _errs421;
17595
17679
  } else {
17596
17680
  vErrors =
17597
17681
  null;
@@ -17599,7 +17683,7 @@ function validate14(
17599
17683
  }
17600
17684
  }
17601
17685
  var valid88 =
17602
- _errs418 === errors;
17686
+ _errs420 === errors;
17603
17687
  } else {
17604
17688
  var valid88 = true;
17605
17689
  }
@@ -17622,8 +17706,8 @@ function validate14(
17622
17706
  }
17623
17707
  }
17624
17708
  } else if (tag0 === 'writeFiles') {
17625
- const _errs441 = errors;
17626
- if (errors === _errs441) {
17709
+ const _errs443 = errors;
17710
+ if (errors === _errs443) {
17627
17711
  if (
17628
17712
  data &&
17629
17713
  typeof data == 'object' &&
@@ -17654,7 +17738,7 @@ function validate14(
17654
17738
  ];
17655
17739
  return false;
17656
17740
  } else {
17657
- const _errs443 = errors;
17741
+ const _errs445 = errors;
17658
17742
  for (const key60 in data) {
17659
17743
  if (
17660
17744
  !(
@@ -17683,19 +17767,19 @@ function validate14(
17683
17767
  break;
17684
17768
  }
17685
17769
  }
17686
- if (_errs443 === errors) {
17770
+ if (_errs445 === errors) {
17687
17771
  if (data.progress !== undefined) {
17688
- let data163 = data.progress;
17689
- const _errs444 = errors;
17690
- if (errors === _errs444) {
17772
+ let data164 = data.progress;
17773
+ const _errs446 = errors;
17774
+ if (errors === _errs446) {
17691
17775
  if (
17692
- data163 &&
17693
- typeof data163 ==
17776
+ data164 &&
17777
+ typeof data164 ==
17694
17778
  'object' &&
17695
- !Array.isArray(data163)
17779
+ !Array.isArray(data164)
17696
17780
  ) {
17697
- const _errs446 = errors;
17698
- for (const key61 in data163) {
17781
+ const _errs448 = errors;
17782
+ for (const key61 in data164) {
17699
17783
  if (
17700
17784
  !(
17701
17785
  key61 ===
@@ -17726,21 +17810,21 @@ function validate14(
17726
17810
  break;
17727
17811
  }
17728
17812
  }
17729
- if (_errs446 === errors) {
17813
+ if (_errs448 === errors) {
17730
17814
  if (
17731
- data163.weight !==
17815
+ data164.weight !==
17732
17816
  undefined
17733
17817
  ) {
17734
- let data164 =
17735
- data163.weight;
17736
- const _errs447 =
17818
+ let data165 =
17819
+ data164.weight;
17820
+ const _errs449 =
17737
17821
  errors;
17738
17822
  if (
17739
17823
  !(
17740
- typeof data164 ==
17824
+ typeof data165 ==
17741
17825
  'number' &&
17742
17826
  isFinite(
17743
- data164
17827
+ data165
17744
17828
  )
17745
17829
  )
17746
17830
  ) {
@@ -17764,20 +17848,20 @@ function validate14(
17764
17848
  return false;
17765
17849
  }
17766
17850
  var valid96 =
17767
- _errs447 ===
17851
+ _errs449 ===
17768
17852
  errors;
17769
17853
  } else {
17770
17854
  var valid96 = true;
17771
17855
  }
17772
17856
  if (valid96) {
17773
17857
  if (
17774
- data163.caption !==
17858
+ data164.caption !==
17775
17859
  undefined
17776
17860
  ) {
17777
- const _errs449 =
17861
+ const _errs451 =
17778
17862
  errors;
17779
17863
  if (
17780
- typeof data163.caption !==
17864
+ typeof data164.caption !==
17781
17865
  'string'
17782
17866
  ) {
17783
17867
  validate14.errors =
@@ -17800,7 +17884,7 @@ function validate14(
17800
17884
  return false;
17801
17885
  }
17802
17886
  var valid96 =
17803
- _errs449 ===
17887
+ _errs451 ===
17804
17888
  errors;
17805
17889
  } else {
17806
17890
  var valid96 = true;
@@ -17826,16 +17910,16 @@ function validate14(
17826
17910
  return false;
17827
17911
  }
17828
17912
  }
17829
- var valid95 = _errs444 === errors;
17913
+ var valid95 = _errs446 === errors;
17830
17914
  } else {
17831
17915
  var valid95 = true;
17832
17916
  }
17833
17917
  if (valid95) {
17834
17918
  if (data.step !== undefined) {
17835
- let data166 = data.step;
17836
- const _errs451 = errors;
17919
+ let data167 = data.step;
17920
+ const _errs453 = errors;
17837
17921
  if (
17838
- typeof data166 !== 'string'
17922
+ typeof data167 !== 'string'
17839
17923
  ) {
17840
17924
  validate14.errors = [
17841
17925
  {
@@ -17854,7 +17938,7 @@ function validate14(
17854
17938
  ];
17855
17939
  return false;
17856
17940
  }
17857
- if ('writeFiles' !== data166) {
17941
+ if ('writeFiles' !== data167) {
17858
17942
  validate14.errors = [
17859
17943
  {
17860
17944
  instancePath:
@@ -17874,7 +17958,7 @@ function validate14(
17874
17958
  return false;
17875
17959
  }
17876
17960
  var valid95 =
17877
- _errs451 === errors;
17961
+ _errs453 === errors;
17878
17962
  } else {
17879
17963
  var valid95 = true;
17880
17964
  }
@@ -17883,7 +17967,7 @@ function validate14(
17883
17967
  data.writeToPath !==
17884
17968
  undefined
17885
17969
  ) {
17886
- const _errs453 = errors;
17970
+ const _errs455 = errors;
17887
17971
  if (
17888
17972
  typeof data.writeToPath !==
17889
17973
  'string'
@@ -17906,7 +17990,7 @@ function validate14(
17906
17990
  return false;
17907
17991
  }
17908
17992
  var valid95 =
17909
- _errs453 === errors;
17993
+ _errs455 === errors;
17910
17994
  } else {
17911
17995
  var valid95 = true;
17912
17996
  }
@@ -17915,7 +17999,7 @@ function validate14(
17915
17999
  data.filesTree !==
17916
18000
  undefined
17917
18001
  ) {
17918
- const _errs455 = errors;
18002
+ const _errs457 = errors;
17919
18003
  if (
17920
18004
  !validate18(
17921
18005
  data.filesTree,
@@ -17941,7 +18025,7 @@ function validate14(
17941
18025
  vErrors.length;
17942
18026
  }
17943
18027
  var valid95 =
17944
- _errs455 === errors;
18028
+ _errs457 === errors;
17945
18029
  } else {
17946
18030
  var valid95 = true;
17947
18031
  }
@@ -17964,8 +18048,8 @@ function validate14(
17964
18048
  }
17965
18049
  }
17966
18050
  } else if (tag0 === 'wp-cli') {
17967
- const _errs456 = errors;
17968
- if (errors === _errs456) {
18051
+ const _errs458 = errors;
18052
+ if (errors === _errs458) {
17969
18053
  if (
17970
18054
  data &&
17971
18055
  typeof data == 'object' &&
@@ -17994,7 +18078,7 @@ function validate14(
17994
18078
  ];
17995
18079
  return false;
17996
18080
  } else {
17997
- const _errs458 = errors;
18081
+ const _errs460 = errors;
17998
18082
  for (const key62 in data) {
17999
18083
  if (
18000
18084
  !(
@@ -18023,19 +18107,19 @@ function validate14(
18023
18107
  break;
18024
18108
  }
18025
18109
  }
18026
- if (_errs458 === errors) {
18110
+ if (_errs460 === errors) {
18027
18111
  if (data.progress !== undefined) {
18028
- let data169 = data.progress;
18029
- const _errs459 = errors;
18030
- if (errors === _errs459) {
18112
+ let data170 = data.progress;
18113
+ const _errs461 = errors;
18114
+ if (errors === _errs461) {
18031
18115
  if (
18032
- data169 &&
18033
- typeof data169 ==
18116
+ data170 &&
18117
+ typeof data170 ==
18034
18118
  'object' &&
18035
- !Array.isArray(data169)
18119
+ !Array.isArray(data170)
18036
18120
  ) {
18037
- const _errs461 = errors;
18038
- for (const key63 in data169) {
18121
+ const _errs463 = errors;
18122
+ for (const key63 in data170) {
18039
18123
  if (
18040
18124
  !(
18041
18125
  key63 ===
@@ -18066,21 +18150,21 @@ function validate14(
18066
18150
  break;
18067
18151
  }
18068
18152
  }
18069
- if (_errs461 === errors) {
18153
+ if (_errs463 === errors) {
18070
18154
  if (
18071
- data169.weight !==
18155
+ data170.weight !==
18072
18156
  undefined
18073
18157
  ) {
18074
- let data170 =
18075
- data169.weight;
18076
- const _errs462 =
18158
+ let data171 =
18159
+ data170.weight;
18160
+ const _errs464 =
18077
18161
  errors;
18078
18162
  if (
18079
18163
  !(
18080
- typeof data170 ==
18164
+ typeof data171 ==
18081
18165
  'number' &&
18082
18166
  isFinite(
18083
- data170
18167
+ data171
18084
18168
  )
18085
18169
  )
18086
18170
  ) {
@@ -18104,20 +18188,20 @@ function validate14(
18104
18188
  return false;
18105
18189
  }
18106
18190
  var valid99 =
18107
- _errs462 ===
18191
+ _errs464 ===
18108
18192
  errors;
18109
18193
  } else {
18110
18194
  var valid99 = true;
18111
18195
  }
18112
18196
  if (valid99) {
18113
18197
  if (
18114
- data169.caption !==
18198
+ data170.caption !==
18115
18199
  undefined
18116
18200
  ) {
18117
- const _errs464 =
18201
+ const _errs466 =
18118
18202
  errors;
18119
18203
  if (
18120
- typeof data169.caption !==
18204
+ typeof data170.caption !==
18121
18205
  'string'
18122
18206
  ) {
18123
18207
  validate14.errors =
@@ -18140,7 +18224,7 @@ function validate14(
18140
18224
  return false;
18141
18225
  }
18142
18226
  var valid99 =
18143
- _errs464 ===
18227
+ _errs466 ===
18144
18228
  errors;
18145
18229
  } else {
18146
18230
  var valid99 = true;
@@ -18166,16 +18250,16 @@ function validate14(
18166
18250
  return false;
18167
18251
  }
18168
18252
  }
18169
- var valid98 = _errs459 === errors;
18253
+ var valid98 = _errs461 === errors;
18170
18254
  } else {
18171
18255
  var valid98 = true;
18172
18256
  }
18173
18257
  if (valid98) {
18174
18258
  if (data.step !== undefined) {
18175
- let data172 = data.step;
18176
- const _errs466 = errors;
18259
+ let data173 = data.step;
18260
+ const _errs468 = errors;
18177
18261
  if (
18178
- typeof data172 !== 'string'
18262
+ typeof data173 !== 'string'
18179
18263
  ) {
18180
18264
  validate14.errors = [
18181
18265
  {
@@ -18194,7 +18278,7 @@ function validate14(
18194
18278
  ];
18195
18279
  return false;
18196
18280
  }
18197
- if ('wp-cli' !== data172) {
18281
+ if ('wp-cli' !== data173) {
18198
18282
  validate14.errors = [
18199
18283
  {
18200
18284
  instancePath:
@@ -18214,7 +18298,7 @@ function validate14(
18214
18298
  return false;
18215
18299
  }
18216
18300
  var valid98 =
18217
- _errs466 === errors;
18301
+ _errs468 === errors;
18218
18302
  } else {
18219
18303
  var valid98 = true;
18220
18304
  }
@@ -18222,13 +18306,13 @@ function validate14(
18222
18306
  if (
18223
18307
  data.command !== undefined
18224
18308
  ) {
18225
- let data173 = data.command;
18226
- const _errs468 = errors;
18227
- const _errs469 = errors;
18228
- let valid100 = false;
18309
+ let data174 = data.command;
18229
18310
  const _errs470 = errors;
18311
+ const _errs471 = errors;
18312
+ let valid100 = false;
18313
+ const _errs472 = errors;
18230
18314
  if (
18231
- typeof data173 !==
18315
+ typeof data174 !==
18232
18316
  'string'
18233
18317
  ) {
18234
18318
  const err15 = {
@@ -18252,31 +18336,31 @@ function validate14(
18252
18336
  errors++;
18253
18337
  }
18254
18338
  var _valid3 =
18255
- _errs470 === errors;
18339
+ _errs472 === errors;
18256
18340
  valid100 =
18257
18341
  valid100 || _valid3;
18258
18342
  if (!valid100) {
18259
- const _errs472 = errors;
18343
+ const _errs474 = errors;
18260
18344
  if (
18261
- errors === _errs472
18345
+ errors === _errs474
18262
18346
  ) {
18263
18347
  if (
18264
18348
  Array.isArray(
18265
- data173
18349
+ data174
18266
18350
  )
18267
18351
  ) {
18268
18352
  var valid101 = true;
18269
18353
  const len0 =
18270
- data173.length;
18354
+ data174.length;
18271
18355
  for (
18272
18356
  let i0 = 0;
18273
18357
  i0 < len0;
18274
18358
  i0++
18275
18359
  ) {
18276
- const _errs474 =
18360
+ const _errs476 =
18277
18361
  errors;
18278
18362
  if (
18279
- typeof data173[
18363
+ typeof data174[
18280
18364
  i0
18281
18365
  ] !==
18282
18366
  'string'
@@ -18313,7 +18397,7 @@ function validate14(
18313
18397
  errors++;
18314
18398
  }
18315
18399
  var valid101 =
18316
- _errs474 ===
18400
+ _errs476 ===
18317
18401
  errors;
18318
18402
  if (
18319
18403
  !valid101
@@ -18352,7 +18436,7 @@ function validate14(
18352
18436
  }
18353
18437
  }
18354
18438
  var _valid3 =
18355
- _errs472 === errors;
18439
+ _errs474 === errors;
18356
18440
  valid100 =
18357
18441
  valid100 || _valid3;
18358
18442
  }
@@ -18378,18 +18462,18 @@ function validate14(
18378
18462
  vErrors;
18379
18463
  return false;
18380
18464
  } else {
18381
- errors = _errs469;
18465
+ errors = _errs471;
18382
18466
  if (vErrors !== null) {
18383
- if (_errs469) {
18467
+ if (_errs471) {
18384
18468
  vErrors.length =
18385
- _errs469;
18469
+ _errs471;
18386
18470
  } else {
18387
18471
  vErrors = null;
18388
18472
  }
18389
18473
  }
18390
18474
  }
18391
18475
  var valid98 =
18392
- _errs468 === errors;
18476
+ _errs470 === errors;
18393
18477
  } else {
18394
18478
  var valid98 = true;
18395
18479
  }
@@ -18398,7 +18482,7 @@ function validate14(
18398
18482
  data.wpCliPath !==
18399
18483
  undefined
18400
18484
  ) {
18401
- const _errs476 = errors;
18485
+ const _errs478 = errors;
18402
18486
  if (
18403
18487
  typeof data.wpCliPath !==
18404
18488
  'string'
@@ -18423,7 +18507,7 @@ function validate14(
18423
18507
  return false;
18424
18508
  }
18425
18509
  var valid98 =
18426
- _errs476 === errors;
18510
+ _errs478 === errors;
18427
18511
  } else {
18428
18512
  var valid98 = true;
18429
18513
  }
@@ -18446,8 +18530,8 @@ function validate14(
18446
18530
  }
18447
18531
  }
18448
18532
  } else if (tag0 === 'setSiteLanguage') {
18449
- const _errs478 = errors;
18450
- if (errors === _errs478) {
18533
+ const _errs480 = errors;
18534
+ if (errors === _errs480) {
18451
18535
  if (
18452
18536
  data &&
18453
18537
  typeof data == 'object' &&
@@ -18476,7 +18560,7 @@ function validate14(
18476
18560
  ];
18477
18561
  return false;
18478
18562
  } else {
18479
- const _errs480 = errors;
18563
+ const _errs482 = errors;
18480
18564
  for (const key64 in data) {
18481
18565
  if (
18482
18566
  !(
@@ -18504,19 +18588,19 @@ function validate14(
18504
18588
  break;
18505
18589
  }
18506
18590
  }
18507
- if (_errs480 === errors) {
18591
+ if (_errs482 === errors) {
18508
18592
  if (data.progress !== undefined) {
18509
- let data176 = data.progress;
18510
- const _errs481 = errors;
18511
- if (errors === _errs481) {
18593
+ let data177 = data.progress;
18594
+ const _errs483 = errors;
18595
+ if (errors === _errs483) {
18512
18596
  if (
18513
- data176 &&
18514
- typeof data176 ==
18597
+ data177 &&
18598
+ typeof data177 ==
18515
18599
  'object' &&
18516
- !Array.isArray(data176)
18600
+ !Array.isArray(data177)
18517
18601
  ) {
18518
- const _errs483 = errors;
18519
- for (const key65 in data176) {
18602
+ const _errs485 = errors;
18603
+ for (const key65 in data177) {
18520
18604
  if (
18521
18605
  !(
18522
18606
  key65 ===
@@ -18547,21 +18631,21 @@ function validate14(
18547
18631
  break;
18548
18632
  }
18549
18633
  }
18550
- if (_errs483 === errors) {
18634
+ if (_errs485 === errors) {
18551
18635
  if (
18552
- data176.weight !==
18636
+ data177.weight !==
18553
18637
  undefined
18554
18638
  ) {
18555
- let data177 =
18556
- data176.weight;
18557
- const _errs484 =
18639
+ let data178 =
18640
+ data177.weight;
18641
+ const _errs486 =
18558
18642
  errors;
18559
18643
  if (
18560
18644
  !(
18561
- typeof data177 ==
18645
+ typeof data178 ==
18562
18646
  'number' &&
18563
18647
  isFinite(
18564
- data177
18648
+ data178
18565
18649
  )
18566
18650
  )
18567
18651
  ) {
@@ -18585,20 +18669,20 @@ function validate14(
18585
18669
  return false;
18586
18670
  }
18587
18671
  var valid104 =
18588
- _errs484 ===
18672
+ _errs486 ===
18589
18673
  errors;
18590
18674
  } else {
18591
18675
  var valid104 = true;
18592
18676
  }
18593
18677
  if (valid104) {
18594
18678
  if (
18595
- data176.caption !==
18679
+ data177.caption !==
18596
18680
  undefined
18597
18681
  ) {
18598
- const _errs486 =
18682
+ const _errs488 =
18599
18683
  errors;
18600
18684
  if (
18601
- typeof data176.caption !==
18685
+ typeof data177.caption !==
18602
18686
  'string'
18603
18687
  ) {
18604
18688
  validate14.errors =
@@ -18621,7 +18705,7 @@ function validate14(
18621
18705
  return false;
18622
18706
  }
18623
18707
  var valid104 =
18624
- _errs486 ===
18708
+ _errs488 ===
18625
18709
  errors;
18626
18710
  } else {
18627
18711
  var valid104 = true;
@@ -18647,16 +18731,16 @@ function validate14(
18647
18731
  return false;
18648
18732
  }
18649
18733
  }
18650
- var valid103 = _errs481 === errors;
18734
+ var valid103 = _errs483 === errors;
18651
18735
  } else {
18652
18736
  var valid103 = true;
18653
18737
  }
18654
18738
  if (valid103) {
18655
18739
  if (data.step !== undefined) {
18656
- let data179 = data.step;
18657
- const _errs488 = errors;
18740
+ let data180 = data.step;
18741
+ const _errs490 = errors;
18658
18742
  if (
18659
- typeof data179 !== 'string'
18743
+ typeof data180 !== 'string'
18660
18744
  ) {
18661
18745
  validate14.errors = [
18662
18746
  {
@@ -18677,7 +18761,7 @@ function validate14(
18677
18761
  }
18678
18762
  if (
18679
18763
  'setSiteLanguage' !==
18680
- data179
18764
+ data180
18681
18765
  ) {
18682
18766
  validate14.errors = [
18683
18767
  {
@@ -18698,7 +18782,7 @@ function validate14(
18698
18782
  return false;
18699
18783
  }
18700
18784
  var valid103 =
18701
- _errs488 === errors;
18785
+ _errs490 === errors;
18702
18786
  } else {
18703
18787
  var valid103 = true;
18704
18788
  }
@@ -18706,7 +18790,7 @@ function validate14(
18706
18790
  if (
18707
18791
  data.language !== undefined
18708
18792
  ) {
18709
- const _errs490 = errors;
18793
+ const _errs492 = errors;
18710
18794
  if (
18711
18795
  typeof data.language !==
18712
18796
  'string'
@@ -18729,7 +18813,7 @@ function validate14(
18729
18813
  return false;
18730
18814
  }
18731
18815
  var valid103 =
18732
- _errs490 === errors;
18816
+ _errs492 === errors;
18733
18817
  } else {
18734
18818
  var valid103 = true;
18735
18819
  }