@revolugo/elements 4.16.10-beta.2 → 4.16.10-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63154,183 +63154,6 @@ webpackContext.id = "7844";
63154
63154
 
63155
63155
  // extracted by mini-css-extract-plugin
63156
63156
 
63157
- /***/ }),
63158
-
63159
- /***/ "797e":
63160
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
63161
-
63162
- "use strict";
63163
-
63164
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayMap.js
63165
- var _arrayMap = __webpack_require__("8db3");
63166
-
63167
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseClone.js + 14 modules
63168
- var _baseClone = __webpack_require__("8143");
63169
-
63170
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_castPath.js + 3 modules
63171
- var _castPath = __webpack_require__("05a1");
63172
-
63173
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/last.js
63174
- /**
63175
- * Gets the last element of `array`.
63176
- *
63177
- * @static
63178
- * @memberOf _
63179
- * @since 0.1.0
63180
- * @category Array
63181
- * @param {Array} array The array to query.
63182
- * @returns {*} Returns the last element of `array`.
63183
- * @example
63184
- *
63185
- * _.last([1, 2, 3]);
63186
- * // => 3
63187
- */
63188
- function last(array) {
63189
- var length = array == null ? 0 : array.length;
63190
- return length ? array[length - 1] : undefined;
63191
- }
63192
-
63193
- /* harmony default export */ var lodash_es_last = (last);
63194
-
63195
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseGet.js
63196
- var _baseGet = __webpack_require__("fdab");
63197
-
63198
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSlice.js
63199
- var _baseSlice = __webpack_require__("4982");
63200
-
63201
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_parent.js
63202
-
63203
-
63204
-
63205
- /**
63206
- * Gets the parent value at `path` of `object`.
63207
- *
63208
- * @private
63209
- * @param {Object} object The object to query.
63210
- * @param {Array} path The path to get the parent value of.
63211
- * @returns {*} Returns the parent value.
63212
- */
63213
- function _parent_parent(object, path) {
63214
- return path.length < 2 ? object : Object(_baseGet["a" /* default */])(object, Object(_baseSlice["a" /* default */])(path, 0, -1));
63215
- }
63216
-
63217
- /* harmony default export */ var _parent = (_parent_parent);
63218
-
63219
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_toKey.js
63220
- var _toKey = __webpack_require__("73f5");
63221
-
63222
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnset.js
63223
-
63224
-
63225
-
63226
-
63227
-
63228
- /**
63229
- * The base implementation of `_.unset`.
63230
- *
63231
- * @private
63232
- * @param {Object} object The object to modify.
63233
- * @param {Array|string} path The property path to unset.
63234
- * @returns {boolean} Returns `true` if the property is deleted, else `false`.
63235
- */
63236
- function baseUnset(object, path) {
63237
- path = Object(_castPath["a" /* default */])(path, object);
63238
- object = _parent(object, path);
63239
- return object == null || delete object[Object(_toKey["a" /* default */])(lodash_es_last(path))];
63240
- }
63241
-
63242
- /* harmony default export */ var _baseUnset = (baseUnset);
63243
-
63244
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
63245
- var _copyObject = __webpack_require__("a93e");
63246
-
63247
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isPlainObject.js
63248
- var isPlainObject = __webpack_require__("8a1f");
63249
-
63250
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_customOmitClone.js
63251
-
63252
-
63253
- /**
63254
- * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
63255
- * objects.
63256
- *
63257
- * @private
63258
- * @param {*} value The value to inspect.
63259
- * @param {string} key The key of the property to inspect.
63260
- * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
63261
- */
63262
- function customOmitClone(value) {
63263
- return Object(isPlainObject["a" /* default */])(value) ? undefined : value;
63264
- }
63265
-
63266
- /* harmony default export */ var _customOmitClone = (customOmitClone);
63267
-
63268
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_flatRest.js + 1 modules
63269
- var _flatRest = __webpack_require__("b751");
63270
-
63271
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeysIn.js
63272
- var _getAllKeysIn = __webpack_require__("5e38");
63273
-
63274
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js
63275
-
63276
-
63277
-
63278
-
63279
-
63280
-
63281
-
63282
-
63283
-
63284
- /** Used to compose bitmasks for cloning. */
63285
- var CLONE_DEEP_FLAG = 1,
63286
- CLONE_FLAT_FLAG = 2,
63287
- CLONE_SYMBOLS_FLAG = 4;
63288
-
63289
- /**
63290
- * The opposite of `_.pick`; this method creates an object composed of the
63291
- * own and inherited enumerable property paths of `object` that are not omitted.
63292
- *
63293
- * **Note:** This method is considerably slower than `_.pick`.
63294
- *
63295
- * @static
63296
- * @since 0.1.0
63297
- * @memberOf _
63298
- * @category Object
63299
- * @param {Object} object The source object.
63300
- * @param {...(string|string[])} [paths] The property paths to omit.
63301
- * @returns {Object} Returns the new object.
63302
- * @example
63303
- *
63304
- * var object = { 'a': 1, 'b': '2', 'c': 3 };
63305
- *
63306
- * _.omit(object, ['a', 'c']);
63307
- * // => { 'b': '2' }
63308
- */
63309
- var omit = Object(_flatRest["a" /* default */])(function(object, paths) {
63310
- var result = {};
63311
- if (object == null) {
63312
- return result;
63313
- }
63314
- var isDeep = false;
63315
- paths = Object(_arrayMap["a" /* default */])(paths, function(path) {
63316
- path = Object(_castPath["a" /* default */])(path, object);
63317
- isDeep || (isDeep = path.length > 1);
63318
- return path;
63319
- });
63320
- Object(_copyObject["a" /* default */])(object, Object(_getAllKeysIn["a" /* default */])(object), result);
63321
- if (isDeep) {
63322
- result = Object(_baseClone["a" /* default */])(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, _customOmitClone);
63323
- }
63324
- var length = paths.length;
63325
- while (length--) {
63326
- _baseUnset(result, paths[length]);
63327
- }
63328
- return result;
63329
- });
63330
-
63331
- /* harmony default export */ var lodash_es_omit = __webpack_exports__["a"] = (omit);
63332
-
63333
-
63334
63157
  /***/ }),
63335
63158
 
63336
63159
  /***/ "7a01":
@@ -84821,7 +84644,7 @@ var constants = __webpack_require__("946e");
84821
84644
  var leaflet_src = __webpack_require__("7cd9");
84822
84645
  var leaflet_src_default = /*#__PURE__*/__webpack_require__.n(leaflet_src);
84823
84646
 
84824
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 4 modules
84647
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
84825
84648
  var omit = __webpack_require__("797e");
84826
84649
 
84827
84650
  // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue2-leaflet@2.7.1_@types+leaflet@1.8.0_leaflet@1.9.3_vue@2.7.14/node_modules/vue2-leaflet/dist/components/LControl.js
@@ -98903,8 +98726,8 @@ var index_umd = __webpack_require__("75e1");
98903
98726
  // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/libs/common/dist/index.js + 23 modules
98904
98727
  var dist = __webpack_require__("f6d7");
98905
98728
 
98906
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/cloneDeep.js
98907
- var cloneDeep = __webpack_require__("bbb7");
98729
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
98730
+ var omit = __webpack_require__("797e");
98908
98731
 
98909
98732
  // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vuetify@2.7.1_patch_hash=36h37pdwirhpxopcp3mbv4skpa_vue@2.7.14/node_modules/vuetify/lib/services/theme/utils.js + 1 modules
98910
98733
  var utils = __webpack_require__("b2c2");
@@ -99327,7 +99150,7 @@ const bookingApiClientConfigMixin = () => {
99327
99150
  // CONCATENATED MODULE: ./src/plugins/revolugo-config.ts
99328
99151
  function cov_wqxd4hn8r() {
99329
99152
  var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/plugins/revolugo-config.ts";
99330
- var hash = "c6317c4c333fb78c69502c4151152eeb621bdd85";
99153
+ var hash = "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca";
99331
99154
  var global = new Function("return this")();
99332
99155
  var gcv = "__coverage__";
99333
99156
  var coverageData = {
@@ -99339,7 +99162,7 @@ function cov_wqxd4hn8r() {
99339
99162
  column: 0
99340
99163
  },
99341
99164
  end: {
99342
- line: 55,
99165
+ line: 32,
99343
99166
  column: 1
99344
99167
  }
99345
99168
  },
@@ -99369,7 +99192,7 @@ function cov_wqxd4hn8r() {
99369
99192
  column: 4
99370
99193
  },
99371
99194
  end: {
99372
- line: 44,
99195
+ line: 21,
99373
99196
  column: 7
99374
99197
  }
99375
99198
  },
@@ -99386,360 +99209,310 @@ function cov_wqxd4hn8r() {
99386
99209
  "5": {
99387
99210
  start: {
99388
99211
  line: 19,
99389
- column: 35
99212
+ column: 12
99390
99213
  },
99391
99214
  end: {
99392
99215
  line: 19,
99393
- column: 76
99216
+ column: 42
99394
99217
  }
99395
99218
  },
99396
99219
  "6": {
99397
99220
  start: {
99398
- line: 20,
99399
- column: 12
99221
+ line: 22,
99222
+ column: 4
99400
99223
  },
99401
99224
  end: {
99402
- line: 20,
99403
- column: 42
99225
+ line: 27,
99226
+ column: 7
99404
99227
  }
99405
99228
  },
99406
99229
  "7": {
99407
99230
  start: {
99408
- line: 21,
99409
- column: 12
99231
+ line: 23,
99232
+ column: 19
99410
99233
  },
99411
99234
  end: {
99412
- line: 42,
99413
- column: 13
99235
+ line: 23,
99236
+ column: 49
99414
99237
  }
99415
99238
  },
99416
99239
  "8": {
99417
99240
  start: {
99418
- line: 26,
99419
- column: 40
99241
+ line: 25,
99242
+ column: 12
99420
99243
  },
99421
99244
  end: {
99422
- line: 30,
99423
- column: 17
99245
+ line: 25,
99246
+ column: 62
99424
99247
  }
99425
99248
  },
99426
99249
  "9": {
99427
99250
  start: {
99428
99251
  line: 31,
99429
- column: 16
99252
+ column: 4
99430
99253
  },
99431
99254
  end: {
99432
- line: 36,
99433
- column: 17
99255
+ line: 31,
99256
+ column: 58
99434
99257
  }
99435
99258
  },
99436
99259
  "10": {
99437
99260
  start: {
99438
99261
  line: 33,
99439
- column: 20
99262
+ column: 35
99440
99263
  },
99441
99264
  end: {
99442
- line: 35,
99443
- column: 22
99265
+ line: 106,
99266
+ column: 2
99444
99267
  }
99445
99268
  },
99446
99269
  "11": {
99447
99270
  start: {
99448
- line: 37,
99271
+ line: 38,
99449
99272
  column: 16
99450
99273
  },
99451
99274
  end: {
99452
- line: 37,
99453
- column: 80
99275
+ line: 38,
99276
+ column: 35
99454
99277
  }
99455
99278
  },
99456
99279
  "12": {
99457
99280
  start: {
99458
99281
  line: 39,
99459
- column: 17
99282
+ column: 16
99460
99283
  },
99461
99284
  end: {
99462
- line: 42,
99463
- column: 13
99285
+ line: 48,
99286
+ column: 17
99464
99287
  }
99465
99288
  },
99466
99289
  "13": {
99467
99290
  start: {
99468
- line: 40,
99469
- column: 16
99291
+ line: 47,
99292
+ column: 20
99470
99293
  },
99471
99294
  end: {
99472
- line: 41,
99473
- column: 30
99295
+ line: 47,
99296
+ column: 47
99474
99297
  }
99475
99298
  },
99476
99299
  "14": {
99477
- start: {
99478
- line: 45,
99479
- column: 4
99480
- },
99481
- end: {
99482
- line: 50,
99483
- column: 7
99484
- }
99485
- },
99486
- "15": {
99487
- start: {
99488
- line: 46,
99489
- column: 19
99490
- },
99491
- end: {
99492
- line: 46,
99493
- column: 49
99494
- }
99495
- },
99496
- "16": {
99497
- start: {
99498
- line: 48,
99499
- column: 12
99500
- },
99501
- end: {
99502
- line: 48,
99503
- column: 62
99504
- }
99505
- },
99506
- "17": {
99507
99300
  start: {
99508
99301
  line: 54,
99509
- column: 4
99510
- },
99511
- end: {
99512
- line: 54,
99513
- column: 58
99514
- }
99515
- },
99516
- "18": {
99517
- start: {
99518
- line: 56,
99519
- column: 35
99302
+ column: 12
99520
99303
  },
99521
99304
  end: {
99522
- line: 122,
99523
- column: 2
99305
+ line: 58,
99306
+ column: 13
99524
99307
  }
99525
99308
  },
99526
- "19": {
99309
+ "15": {
99527
99310
  start: {
99528
- line: 61,
99311
+ line: 55,
99529
99312
  column: 16
99530
99313
  },
99531
99314
  end: {
99532
- line: 61,
99533
- column: 35
99315
+ line: 56,
99316
+ column: 30
99534
99317
  }
99535
99318
  },
99536
- "20": {
99319
+ "16": {
99537
99320
  start: {
99538
- line: 62,
99321
+ line: 57,
99539
99322
  column: 16
99540
99323
  },
99541
99324
  end: {
99542
- line: 71,
99543
- column: 17
99544
- }
99545
- },
99546
- "21": {
99547
- start: {
99548
- line: 70,
99549
- column: 20
99550
- },
99551
- end: {
99552
- line: 70,
99553
- column: 47
99325
+ line: 57,
99326
+ column: 23
99554
99327
  }
99555
99328
  },
99556
- "22": {
99329
+ "17": {
99557
99330
  start: {
99558
- line: 77,
99331
+ line: 59,
99559
99332
  column: 36
99560
99333
  },
99561
99334
  end: {
99562
- line: 81,
99335
+ line: 63,
99563
99336
  column: 13
99564
99337
  }
99565
99338
  },
99566
- "23": {
99339
+ "18": {
99567
99340
  start: {
99568
- line: 82,
99341
+ line: 64,
99569
99342
  column: 36
99570
99343
  },
99571
99344
  end: {
99572
- line: 82,
99345
+ line: 64,
99573
99346
  column: 38
99574
99347
  }
99575
99348
  },
99576
- "24": {
99349
+ "19": {
99577
99350
  start: {
99578
- line: 83,
99351
+ line: 65,
99579
99352
  column: 12
99580
99353
  },
99581
99354
  end: {
99582
- line: 85,
99355
+ line: 67,
99583
99356
  column: 13
99584
99357
  }
99585
99358
  },
99586
- "25": {
99359
+ "20": {
99587
99360
  start: {
99588
- line: 84,
99361
+ line: 66,
99589
99362
  column: 16
99590
99363
  },
99591
99364
  end: {
99592
- line: 84,
99365
+ line: 66,
99593
99366
  column: 86
99594
99367
  }
99595
99368
  },
99596
- "26": {
99369
+ "21": {
99597
99370
  start: {
99598
- line: 86,
99371
+ line: 68,
99599
99372
  column: 12
99600
99373
  },
99601
99374
  end: {
99602
- line: 86,
99603
- column: 106
99375
+ line: 70,
99376
+ column: 77
99604
99377
  }
99605
99378
  },
99606
- "27": {
99379
+ "22": {
99607
99380
  start: {
99608
- line: 87,
99381
+ line: 71,
99609
99382
  column: 12
99610
99383
  },
99611
99384
  end: {
99612
- line: 87,
99385
+ line: 71,
99613
99386
  column: 86
99614
99387
  }
99615
99388
  },
99616
- "28": {
99389
+ "23": {
99617
99390
  start: {
99618
- line: 92,
99391
+ line: 76,
99619
99392
  column: 12
99620
99393
  },
99621
99394
  end: {
99622
- line: 92,
99395
+ line: 76,
99623
99396
  column: 49
99624
99397
  }
99625
99398
  },
99626
- "29": {
99399
+ "24": {
99627
99400
  start: {
99628
- line: 94,
99401
+ line: 78,
99629
99402
  column: 35
99630
99403
  },
99631
99404
  end: {
99632
- line: 94,
99405
+ line: 78,
99633
99406
  column: 54
99634
99407
  }
99635
99408
  },
99636
- "30": {
99409
+ "25": {
99637
99410
  start: {
99638
- line: 96,
99411
+ line: 80,
99639
99412
  column: 12
99640
99413
  },
99641
99414
  end: {
99642
- line: 119,
99415
+ line: 103,
99643
99416
  column: 15
99644
99417
  }
99645
99418
  },
99646
- "31": {
99419
+ "26": {
99647
99420
  start: {
99648
- line: 97,
99421
+ line: 81,
99649
99422
  column: 30
99650
99423
  },
99651
99424
  end: {
99652
- line: 97,
99425
+ line: 81,
99653
99426
  column: 89
99654
99427
  }
99655
99428
  },
99656
- "32": {
99429
+ "27": {
99657
99430
  start: {
99658
- line: 99,
99431
+ line: 83,
99659
99432
  column: 16
99660
99433
  },
99661
99434
  end: {
99662
- line: 118,
99435
+ line: 102,
99663
99436
  column: 17
99664
99437
  }
99665
99438
  },
99666
- "33": {
99439
+ "28": {
99667
99440
  start: {
99668
- line: 100,
99441
+ line: 84,
99669
99442
  column: 20
99670
99443
  },
99671
99444
  end: {
99672
- line: 117,
99445
+ line: 101,
99673
99446
  column: 21
99674
99447
  }
99675
99448
  },
99676
- "34": {
99449
+ "29": {
99677
99450
  start: {
99678
- line: 101,
99451
+ line: 85,
99679
99452
  column: 43
99680
99453
  },
99681
99454
  end: {
99682
- line: 101,
99455
+ line: 85,
99683
99456
  column: 85
99684
99457
  }
99685
99458
  },
99686
- "35": {
99459
+ "30": {
99687
99460
  start: {
99688
- line: 102,
99461
+ line: 86,
99689
99462
  column: 24
99690
99463
  },
99691
99464
  end: {
99692
- line: 112,
99465
+ line: 96,
99693
99466
  column: 25
99694
99467
  }
99695
99468
  },
99696
- "36": {
99469
+ "31": {
99697
99470
  start: {
99698
- line: 104,
99471
+ line: 88,
99699
99472
  column: 28
99700
99473
  },
99701
99474
  end: {
99702
- line: 111,
99475
+ line: 95,
99703
99476
  column: 29
99704
99477
  }
99705
99478
  },
99706
- "37": {
99479
+ "32": {
99707
99480
  start: {
99708
- line: 105,
99481
+ line: 89,
99709
99482
  column: 32
99710
99483
  },
99711
99484
  end: {
99712
- line: 107,
99485
+ line: 91,
99713
99486
  column: 105
99714
99487
  }
99715
99488
  },
99716
- "38": {
99489
+ "33": {
99717
99490
  start: {
99718
- line: 110,
99491
+ line: 94,
99719
99492
  column: 32
99720
99493
  },
99721
99494
  end: {
99722
- line: 110,
99495
+ line: 94,
99723
99496
  column: 125
99724
99497
  }
99725
99498
  },
99726
- "39": {
99499
+ "34": {
99727
99500
  start: {
99728
- line: 116,
99501
+ line: 100,
99729
99502
  column: 24
99730
99503
  },
99731
99504
  end: {
99732
- line: 116,
99505
+ line: 100,
99733
99506
  column: 89
99734
99507
  }
99735
99508
  },
99736
- "40": {
99509
+ "35": {
99737
99510
  start: {
99738
- line: 125,
99511
+ line: 109,
99739
99512
  column: 8
99740
99513
  },
99741
99514
  end: {
99742
- line: 125,
99515
+ line: 109,
99743
99516
  column: 47
99744
99517
  }
99745
99518
  }
@@ -99787,7 +99560,7 @@ function cov_wqxd4hn8r() {
99787
99560
  column: 23
99788
99561
  },
99789
99562
  end: {
99790
- line: 43,
99563
+ line: 20,
99791
99564
  column: 9
99792
99565
  }
99793
99566
  },
@@ -99797,169 +99570,169 @@ function cov_wqxd4hn8r() {
99797
99570
  name: "(anonymous_2)",
99798
99571
  decl: {
99799
99572
  start: {
99800
- line: 46,
99573
+ line: 23,
99801
99574
  column: 13
99802
99575
  },
99803
99576
  end: {
99804
- line: 46,
99577
+ line: 23,
99805
99578
  column: 14
99806
99579
  }
99807
99580
  },
99808
99581
  loc: {
99809
99582
  start: {
99810
- line: 46,
99583
+ line: 23,
99811
99584
  column: 19
99812
99585
  },
99813
99586
  end: {
99814
- line: 46,
99587
+ line: 23,
99815
99588
  column: 49
99816
99589
  }
99817
99590
  },
99818
- line: 46
99591
+ line: 23
99819
99592
  },
99820
99593
  "3": {
99821
99594
  name: "(anonymous_3)",
99822
99595
  decl: {
99823
99596
  start: {
99824
- line: 47,
99597
+ line: 24,
99825
99598
  column: 13
99826
99599
  },
99827
99600
  end: {
99828
- line: 47,
99601
+ line: 24,
99829
99602
  column: 14
99830
99603
  }
99831
99604
  },
99832
99605
  loc: {
99833
99606
  start: {
99834
- line: 47,
99607
+ line: 24,
99835
99608
  column: 33
99836
99609
  },
99837
99610
  end: {
99838
- line: 49,
99611
+ line: 26,
99839
99612
  column: 9
99840
99613
  }
99841
99614
  },
99842
- line: 47
99615
+ line: 24
99843
99616
  },
99844
99617
  "4": {
99845
99618
  name: "(anonymous_4)",
99846
99619
  decl: {
99847
99620
  start: {
99848
- line: 60,
99621
+ line: 37,
99849
99622
  column: 12
99850
99623
  },
99851
99624
  end: {
99852
- line: 60,
99625
+ line: 37,
99853
99626
  column: 13
99854
99627
  }
99855
99628
  },
99856
99629
  loc: {
99857
99630
  start: {
99858
- line: 60,
99631
+ line: 37,
99859
99632
  column: 33
99860
99633
  },
99861
99634
  end: {
99862
- line: 72,
99635
+ line: 49,
99863
99636
  column: 13
99864
99637
  }
99865
99638
  },
99866
- line: 60
99639
+ line: 37
99867
99640
  },
99868
99641
  "5": {
99869
99642
  name: "(anonymous_5)",
99870
99643
  decl: {
99871
99644
  start: {
99872
- line: 76,
99645
+ line: 53,
99873
99646
  column: 8
99874
99647
  },
99875
99648
  end: {
99876
- line: 76,
99649
+ line: 53,
99877
99650
  column: 9
99878
99651
  }
99879
99652
  },
99880
99653
  loc: {
99881
99654
  start: {
99882
- line: 76,
99655
+ line: 53,
99883
99656
  column: 30
99884
99657
  },
99885
99658
  end: {
99886
- line: 88,
99659
+ line: 72,
99887
99660
  column: 9
99888
99661
  }
99889
99662
  },
99890
- line: 76
99663
+ line: 53
99891
99664
  },
99892
99665
  "6": {
99893
99666
  name: "(anonymous_6)",
99894
99667
  decl: {
99895
99668
  start: {
99896
- line: 89,
99669
+ line: 73,
99897
99670
  column: 8
99898
99671
  },
99899
99672
  end: {
99900
- line: 89,
99673
+ line: 73,
99901
99674
  column: 9
99902
99675
  }
99903
99676
  },
99904
99677
  loc: {
99905
99678
  start: {
99906
- line: 89,
99679
+ line: 73,
99907
99680
  column: 22
99908
99681
  },
99909
99682
  end: {
99910
- line: 120,
99683
+ line: 104,
99911
99684
  column: 9
99912
99685
  }
99913
99686
  },
99914
- line: 89
99687
+ line: 73
99915
99688
  },
99916
99689
  "7": {
99917
99690
  name: "(anonymous_7)",
99918
99691
  decl: {
99919
99692
  start: {
99920
- line: 96,
99693
+ line: 80,
99921
99694
  column: 27
99922
99695
  },
99923
99696
  end: {
99924
- line: 96,
99697
+ line: 80,
99925
99698
  column: 28
99926
99699
  }
99927
99700
  },
99928
99701
  loc: {
99929
99702
  start: {
99930
- line: 96,
99703
+ line: 80,
99931
99704
  column: 33
99932
99705
  },
99933
99706
  end: {
99934
- line: 119,
99707
+ line: 103,
99935
99708
  column: 13
99936
99709
  }
99937
99710
  },
99938
- line: 96
99711
+ line: 80
99939
99712
  },
99940
99713
  "8": {
99941
99714
  name: "(anonymous_8)",
99942
99715
  decl: {
99943
99716
  start: {
99944
- line: 124,
99717
+ line: 108,
99945
99718
  column: 4
99946
99719
  },
99947
99720
  end: {
99948
- line: 124,
99721
+ line: 108,
99949
99722
  column: 5
99950
99723
  }
99951
99724
  },
99952
99725
  loc: {
99953
99726
  start: {
99954
- line: 124,
99727
+ line: 108,
99955
99728
  column: 15
99956
99729
  },
99957
99730
  end: {
99958
- line: 126,
99731
+ line: 110,
99959
99732
  column: 5
99960
99733
  }
99961
99734
  },
99962
- line: 124
99735
+ line: 108
99963
99736
  }
99964
99737
  },
99965
99738
  branchMap: {
@@ -99998,240 +99771,24 @@ function cov_wqxd4hn8r() {
99998
99771
  },
99999
99772
  "1": {
100000
99773
  loc: {
100001
- start: {
100002
- line: 21,
100003
- column: 12
100004
- },
100005
- end: {
100006
- line: 42,
100007
- column: 13
100008
- }
100009
- },
100010
- type: "if",
100011
- locations: [{
100012
- start: {
100013
- line: 21,
100014
- column: 12
100015
- },
100016
- end: {
100017
- line: 42,
100018
- column: 13
100019
- }
100020
- }, {
100021
99774
  start: {
100022
99775
  line: 39,
100023
- column: 17
100024
- },
100025
- end: {
100026
- line: 42,
100027
- column: 13
100028
- }
100029
- }],
100030
- line: 21
100031
- },
100032
- "2": {
100033
- loc: {
100034
- start: {
100035
- line: 21,
100036
- column: 16
100037
- },
100038
- end: {
100039
- line: 24,
100040
- column: 76
100041
- }
100042
- },
100043
- type: "binary-expr",
100044
- locations: [{
100045
- start: {
100046
- line: 21,
100047
- column: 16
100048
- },
100049
- end: {
100050
- line: 21,
100051
- column: 29
100052
- }
100053
- }, {
100054
- start: {
100055
- line: 22,
100056
99776
  column: 16
100057
99777
  },
100058
99778
  end: {
100059
- line: 22,
100060
- column: 37
100061
- }
100062
- }, {
100063
- start: {
100064
- line: 23,
100065
- column: 17
100066
- },
100067
- end: {
100068
- line: 23,
100069
- column: 122
100070
- }
100071
- }, {
100072
- start: {
100073
- line: 24,
100074
- column: 20
100075
- },
100076
- end: {
100077
- line: 24,
100078
- column: 75
100079
- }
100080
- }],
100081
- line: 21
100082
- },
100083
- "3": {
100084
- loc: {
100085
- start: {
100086
- line: 23,
100087
- column: 36
100088
- },
100089
- end: {
100090
- line: 23,
100091
- column: 121
100092
- }
100093
- },
100094
- type: "cond-expr",
100095
- locations: [{
100096
- start: {
100097
- line: 23,
100098
- column: 91
100099
- },
100100
- end: {
100101
- line: 23,
100102
- column: 97
100103
- }
100104
- }, {
100105
- start: {
100106
- line: 23,
100107
- column: 100
100108
- },
100109
- end: {
100110
- line: 23,
100111
- column: 121
100112
- }
100113
- }],
100114
- line: 23
100115
- },
100116
- "4": {
100117
- loc: {
100118
- start: {
100119
- line: 23,
100120
- column: 36
100121
- },
100122
- end: {
100123
- line: 23,
100124
- column: 88
100125
- }
100126
- },
100127
- type: "binary-expr",
100128
- locations: [{
100129
- start: {
100130
- line: 23,
100131
- column: 36
100132
- },
100133
- end: {
100134
- line: 23,
100135
- column: 59
100136
- }
100137
- }, {
100138
- start: {
100139
- line: 23,
100140
- column: 63
100141
- },
100142
- end: {
100143
- line: 23,
100144
- column: 88
100145
- }
100146
- }],
100147
- line: 23
100148
- },
100149
- "5": {
100150
- loc: {
100151
- start: {
100152
- line: 31,
100153
- column: 16
100154
- },
100155
- end: {
100156
- line: 36,
99779
+ line: 48,
100157
99780
  column: 17
100158
99781
  }
100159
99782
  },
100160
99783
  type: "if",
100161
99784
  locations: [{
100162
- start: {
100163
- line: 31,
100164
- column: 16
100165
- },
100166
- end: {
100167
- line: 36,
100168
- column: 17
100169
- }
100170
- }, {
100171
- start: {
100172
- line: undefined,
100173
- column: undefined
100174
- },
100175
- end: {
100176
- line: undefined,
100177
- column: undefined
100178
- }
100179
- }],
100180
- line: 31
100181
- },
100182
- "6": {
100183
- loc: {
100184
- start: {
100185
- line: 31,
100186
- column: 20
100187
- },
100188
- end: {
100189
- line: 32,
100190
- column: 63
100191
- }
100192
- },
100193
- type: "binary-expr",
100194
- locations: [{
100195
- start: {
100196
- line: 31,
100197
- column: 20
100198
- },
100199
- end: {
100200
- line: 31,
100201
- column: 60
100202
- }
100203
- }, {
100204
- start: {
100205
- line: 32,
100206
- column: 20
100207
- },
100208
- end: {
100209
- line: 32,
100210
- column: 63
100211
- }
100212
- }],
100213
- line: 31
100214
- },
100215
- "7": {
100216
- loc: {
100217
99785
  start: {
100218
99786
  line: 39,
100219
- column: 17
99787
+ column: 16
100220
99788
  },
100221
99789
  end: {
100222
- line: 42,
100223
- column: 13
100224
- }
100225
- },
100226
- type: "if",
100227
- locations: [{
100228
- start: {
100229
- line: 39,
99790
+ line: 48,
100230
99791
  column: 17
100231
- },
100232
- end: {
100233
- line: 42,
100234
- column: 13
100235
99792
  }
100236
99793
  }, {
100237
99794
  start: {
@@ -100245,820 +99802,754 @@ function cov_wqxd4hn8r() {
100245
99802
  }],
100246
99803
  line: 39
100247
99804
  },
100248
- "8": {
99805
+ "2": {
100249
99806
  loc: {
100250
99807
  start: {
100251
99808
  line: 39,
100252
- column: 21
100253
- },
100254
- end: {
100255
- line: 39,
100256
- column: 61
100257
- }
100258
- },
100259
- type: "binary-expr",
100260
- locations: [{
100261
- start: {
100262
- line: 39,
100263
- column: 21
100264
- },
100265
- end: {
100266
- line: 39,
100267
- column: 35
100268
- }
100269
- }, {
100270
- start: {
100271
- line: 39,
100272
- column: 39
100273
- },
100274
- end: {
100275
- line: 39,
100276
- column: 61
100277
- }
100278
- }],
100279
- line: 39
100280
- },
100281
- "9": {
100282
- loc: {
100283
- start: {
100284
- line: 62,
100285
- column: 16
100286
- },
100287
- end: {
100288
- line: 71,
100289
- column: 17
100290
- }
100291
- },
100292
- type: "if",
100293
- locations: [{
100294
- start: {
100295
- line: 62,
100296
- column: 16
100297
- },
100298
- end: {
100299
- line: 71,
100300
- column: 17
100301
- }
100302
- }, {
100303
- start: {
100304
- line: undefined,
100305
- column: undefined
100306
- },
100307
- end: {
100308
- line: undefined,
100309
- column: undefined
100310
- }
100311
- }],
100312
- line: 62
100313
- },
100314
- "10": {
100315
- loc: {
100316
- start: {
100317
- line: 62,
100318
99809
  column: 20
100319
99810
  },
100320
99811
  end: {
100321
- line: 69,
99812
+ line: 46,
100322
99813
  column: 114
100323
99814
  }
100324
99815
  },
100325
99816
  type: "binary-expr",
100326
99817
  locations: [{
100327
99818
  start: {
100328
- line: 62,
99819
+ line: 39,
100329
99820
  column: 21
100330
99821
  },
100331
99822
  end: {
100332
- line: 62,
99823
+ line: 39,
100333
99824
  column: 73
100334
99825
  }
100335
99826
  }, {
100336
99827
  start: {
100337
- line: 63,
99828
+ line: 40,
100338
99829
  column: 21
100339
99830
  },
100340
99831
  end: {
100341
- line: 63,
99832
+ line: 40,
100342
99833
  column: 81
100343
99834
  }
100344
99835
  }, {
100345
99836
  start: {
100346
- line: 64,
99837
+ line: 41,
100347
99838
  column: 21
100348
99839
  },
100349
99840
  end: {
100350
- line: 64,
99841
+ line: 41,
100351
99842
  column: 143
100352
99843
  }
100353
99844
  }, {
100354
99845
  start: {
100355
- line: 65,
99846
+ line: 42,
100356
99847
  column: 24
100357
99848
  },
100358
99849
  end: {
100359
- line: 65,
99850
+ line: 42,
100360
99851
  column: 162
100361
99852
  }
100362
99853
  }, {
100363
99854
  start: {
100364
- line: 66,
99855
+ line: 43,
100365
99856
  column: 24
100366
99857
  },
100367
99858
  end: {
100368
- line: 67,
99859
+ line: 44,
100369
99860
  column: 114
100370
99861
  }
100371
99862
  }, {
100372
99863
  start: {
100373
- line: 68,
99864
+ line: 45,
100374
99865
  column: 24
100375
99866
  },
100376
99867
  end: {
100377
- line: 69,
99868
+ line: 46,
100378
99869
  column: 113
100379
99870
  }
100380
99871
  }],
100381
- line: 62
99872
+ line: 39
100382
99873
  },
100383
- "11": {
99874
+ "3": {
100384
99875
  loc: {
100385
99876
  start: {
100386
- line: 62,
99877
+ line: 39,
100387
99878
  column: 21
100388
99879
  },
100389
99880
  end: {
100390
- line: 62,
99881
+ line: 39,
100391
99882
  column: 73
100392
99883
  }
100393
99884
  },
100394
99885
  type: "cond-expr",
100395
99886
  locations: [{
100396
99887
  start: {
100397
- line: 62,
99888
+ line: 39,
100398
99889
  column: 54
100399
99890
  },
100400
99891
  end: {
100401
- line: 62,
99892
+ line: 39,
100402
99893
  column: 60
100403
99894
  }
100404
99895
  }, {
100405
99896
  start: {
100406
- line: 62,
99897
+ line: 39,
100407
99898
  column: 63
100408
99899
  },
100409
99900
  end: {
100410
- line: 62,
99901
+ line: 39,
100411
99902
  column: 73
100412
99903
  }
100413
99904
  }],
100414
- line: 62
99905
+ line: 39
100415
99906
  },
100416
- "12": {
99907
+ "4": {
100417
99908
  loc: {
100418
99909
  start: {
100419
- line: 62,
99910
+ line: 39,
100420
99911
  column: 21
100421
99912
  },
100422
99913
  end: {
100423
- line: 62,
99914
+ line: 39,
100424
99915
  column: 51
100425
99916
  }
100426
99917
  },
100427
99918
  type: "binary-expr",
100428
99919
  locations: [{
100429
99920
  start: {
100430
- line: 62,
99921
+ line: 39,
100431
99922
  column: 21
100432
99923
  },
100433
99924
  end: {
100434
- line: 62,
99925
+ line: 39,
100435
99926
  column: 33
100436
99927
  }
100437
99928
  }, {
100438
99929
  start: {
100439
- line: 62,
99930
+ line: 39,
100440
99931
  column: 37
100441
99932
  },
100442
99933
  end: {
100443
- line: 62,
99934
+ line: 39,
100444
99935
  column: 51
100445
99936
  }
100446
99937
  }],
100447
- line: 62
99938
+ line: 39
100448
99939
  },
100449
- "13": {
99940
+ "5": {
100450
99941
  loc: {
100451
99942
  start: {
100452
- line: 63,
99943
+ line: 40,
100453
99944
  column: 21
100454
99945
  },
100455
99946
  end: {
100456
- line: 63,
99947
+ line: 40,
100457
99948
  column: 81
100458
99949
  }
100459
99950
  },
100460
99951
  type: "cond-expr",
100461
99952
  locations: [{
100462
99953
  start: {
100463
- line: 63,
99954
+ line: 40,
100464
99955
  column: 54
100465
99956
  },
100466
99957
  end: {
100467
- line: 63,
99958
+ line: 40,
100468
99959
  column: 60
100469
99960
  }
100470
99961
  }, {
100471
99962
  start: {
100472
- line: 63,
99963
+ line: 40,
100473
99964
  column: 63
100474
99965
  },
100475
99966
  end: {
100476
- line: 63,
99967
+ line: 40,
100477
99968
  column: 81
100478
99969
  }
100479
99970
  }],
100480
- line: 63
99971
+ line: 40
100481
99972
  },
100482
- "14": {
99973
+ "6": {
100483
99974
  loc: {
100484
99975
  start: {
100485
- line: 63,
99976
+ line: 40,
100486
99977
  column: 21
100487
99978
  },
100488
99979
  end: {
100489
- line: 63,
99980
+ line: 40,
100490
99981
  column: 51
100491
99982
  }
100492
99983
  },
100493
99984
  type: "binary-expr",
100494
99985
  locations: [{
100495
99986
  start: {
100496
- line: 63,
99987
+ line: 40,
100497
99988
  column: 21
100498
99989
  },
100499
99990
  end: {
100500
- line: 63,
99991
+ line: 40,
100501
99992
  column: 33
100502
99993
  }
100503
99994
  }, {
100504
99995
  start: {
100505
- line: 63,
99996
+ line: 40,
100506
99997
  column: 37
100507
99998
  },
100508
99999
  end: {
100509
- line: 63,
100000
+ line: 40,
100510
100001
  column: 51
100511
100002
  }
100512
100003
  }],
100513
- line: 63
100004
+ line: 40
100514
100005
  },
100515
- "15": {
100006
+ "7": {
100516
100007
  loc: {
100517
100008
  start: {
100518
- line: 64,
100009
+ line: 41,
100519
100010
  column: 22
100520
100011
  },
100521
100012
  end: {
100522
- line: 64,
100013
+ line: 41,
100523
100014
  column: 74
100524
100015
  }
100525
100016
  },
100526
100017
  type: "cond-expr",
100527
100018
  locations: [{
100528
100019
  start: {
100529
- line: 64,
100020
+ line: 41,
100530
100021
  column: 55
100531
100022
  },
100532
100023
  end: {
100533
- line: 64,
100024
+ line: 41,
100534
100025
  column: 61
100535
100026
  }
100536
100027
  }, {
100537
100028
  start: {
100538
- line: 64,
100029
+ line: 41,
100539
100030
  column: 64
100540
100031
  },
100541
100032
  end: {
100542
- line: 64,
100033
+ line: 41,
100543
100034
  column: 74
100544
100035
  }
100545
100036
  }],
100546
- line: 64
100037
+ line: 41
100547
100038
  },
100548
- "16": {
100039
+ "8": {
100549
100040
  loc: {
100550
100041
  start: {
100551
- line: 64,
100042
+ line: 41,
100552
100043
  column: 22
100553
100044
  },
100554
100045
  end: {
100555
- line: 64,
100046
+ line: 41,
100556
100047
  column: 52
100557
100048
  }
100558
100049
  },
100559
100050
  type: "binary-expr",
100560
100051
  locations: [{
100561
100052
  start: {
100562
- line: 64,
100053
+ line: 41,
100563
100054
  column: 22
100564
100055
  },
100565
100056
  end: {
100566
- line: 64,
100057
+ line: 41,
100567
100058
  column: 34
100568
100059
  }
100569
100060
  }, {
100570
100061
  start: {
100571
- line: 64,
100062
+ line: 41,
100572
100063
  column: 38
100573
100064
  },
100574
100065
  end: {
100575
- line: 64,
100066
+ line: 41,
100576
100067
  column: 52
100577
100068
  }
100578
100069
  }],
100579
- line: 64
100070
+ line: 41
100580
100071
  },
100581
- "17": {
100072
+ "9": {
100582
100073
  loc: {
100583
100074
  start: {
100584
- line: 64,
100075
+ line: 41,
100585
100076
  column: 81
100586
100077
  },
100587
100078
  end: {
100588
- line: 64,
100079
+ line: 41,
100589
100080
  column: 142
100590
100081
  }
100591
100082
  },
100592
100083
  type: "cond-expr",
100593
100084
  locations: [{
100594
100085
  start: {
100595
- line: 64,
100086
+ line: 41,
100596
100087
  column: 120
100597
100088
  },
100598
100089
  end: {
100599
- line: 64,
100090
+ line: 41,
100600
100091
  column: 126
100601
100092
  }
100602
100093
  }, {
100603
100094
  start: {
100604
- line: 64,
100095
+ line: 41,
100605
100096
  column: 129
100606
100097
  },
100607
100098
  end: {
100608
- line: 64,
100099
+ line: 41,
100609
100100
  column: 142
100610
100101
  }
100611
100102
  }],
100612
- line: 64
100103
+ line: 41
100613
100104
  },
100614
- "18": {
100105
+ "10": {
100615
100106
  loc: {
100616
100107
  start: {
100617
- line: 64,
100108
+ line: 41,
100618
100109
  column: 81
100619
100110
  },
100620
100111
  end: {
100621
- line: 64,
100112
+ line: 41,
100622
100113
  column: 117
100623
100114
  }
100624
100115
  },
100625
100116
  type: "binary-expr",
100626
100117
  locations: [{
100627
100118
  start: {
100628
- line: 64,
100119
+ line: 41,
100629
100120
  column: 81
100630
100121
  },
100631
100122
  end: {
100632
- line: 64,
100123
+ line: 41,
100633
100124
  column: 96
100634
100125
  }
100635
100126
  }, {
100636
100127
  start: {
100637
- line: 64,
100128
+ line: 41,
100638
100129
  column: 100
100639
100130
  },
100640
100131
  end: {
100641
- line: 64,
100132
+ line: 41,
100642
100133
  column: 117
100643
100134
  }
100644
100135
  }],
100645
- line: 64
100136
+ line: 41
100646
100137
  },
100647
- "19": {
100138
+ "11": {
100648
100139
  loc: {
100649
100140
  start: {
100650
- line: 65,
100141
+ line: 42,
100651
100142
  column: 25
100652
100143
  },
100653
100144
  end: {
100654
- line: 65,
100145
+ line: 42,
100655
100146
  column: 85
100656
100147
  }
100657
100148
  },
100658
100149
  type: "cond-expr",
100659
100150
  locations: [{
100660
100151
  start: {
100661
- line: 65,
100152
+ line: 42,
100662
100153
  column: 58
100663
100154
  },
100664
100155
  end: {
100665
- line: 65,
100156
+ line: 42,
100666
100157
  column: 64
100667
100158
  }
100668
100159
  }, {
100669
100160
  start: {
100670
- line: 65,
100161
+ line: 42,
100671
100162
  column: 67
100672
100163
  },
100673
100164
  end: {
100674
- line: 65,
100165
+ line: 42,
100675
100166
  column: 85
100676
100167
  }
100677
100168
  }],
100678
- line: 65
100169
+ line: 42
100679
100170
  },
100680
- "20": {
100171
+ "12": {
100681
100172
  loc: {
100682
100173
  start: {
100683
- line: 65,
100174
+ line: 42,
100684
100175
  column: 25
100685
100176
  },
100686
100177
  end: {
100687
- line: 65,
100178
+ line: 42,
100688
100179
  column: 55
100689
100180
  }
100690
100181
  },
100691
100182
  type: "binary-expr",
100692
100183
  locations: [{
100693
100184
  start: {
100694
- line: 65,
100185
+ line: 42,
100695
100186
  column: 25
100696
100187
  },
100697
100188
  end: {
100698
- line: 65,
100189
+ line: 42,
100699
100190
  column: 37
100700
100191
  }
100701
100192
  }, {
100702
100193
  start: {
100703
- line: 65,
100194
+ line: 42,
100704
100195
  column: 41
100705
100196
  },
100706
100197
  end: {
100707
- line: 65,
100198
+ line: 42,
100708
100199
  column: 55
100709
100200
  }
100710
100201
  }],
100711
- line: 65
100202
+ line: 42
100712
100203
  },
100713
- "21": {
100204
+ "13": {
100714
100205
  loc: {
100715
100206
  start: {
100716
- line: 65,
100207
+ line: 42,
100717
100208
  column: 92
100718
100209
  },
100719
100210
  end: {
100720
- line: 65,
100211
+ line: 42,
100721
100212
  column: 161
100722
100213
  }
100723
100214
  },
100724
100215
  type: "cond-expr",
100725
100216
  locations: [{
100726
100217
  start: {
100727
- line: 65,
100218
+ line: 42,
100728
100219
  column: 131
100729
100220
  },
100730
100221
  end: {
100731
- line: 65,
100222
+ line: 42,
100732
100223
  column: 137
100733
100224
  }
100734
100225
  }, {
100735
100226
  start: {
100736
- line: 65,
100227
+ line: 42,
100737
100228
  column: 140
100738
100229
  },
100739
100230
  end: {
100740
- line: 65,
100231
+ line: 42,
100741
100232
  column: 161
100742
100233
  }
100743
100234
  }],
100744
- line: 65
100235
+ line: 42
100745
100236
  },
100746
- "22": {
100237
+ "14": {
100747
100238
  loc: {
100748
100239
  start: {
100749
- line: 65,
100240
+ line: 42,
100750
100241
  column: 92
100751
100242
  },
100752
100243
  end: {
100753
- line: 65,
100244
+ line: 42,
100754
100245
  column: 128
100755
100246
  }
100756
100247
  },
100757
100248
  type: "binary-expr",
100758
100249
  locations: [{
100759
100250
  start: {
100760
- line: 65,
100251
+ line: 42,
100761
100252
  column: 92
100762
100253
  },
100763
100254
  end: {
100764
- line: 65,
100255
+ line: 42,
100765
100256
  column: 107
100766
100257
  }
100767
100258
  }, {
100768
100259
  start: {
100769
- line: 65,
100260
+ line: 42,
100770
100261
  column: 111
100771
100262
  },
100772
100263
  end: {
100773
- line: 65,
100264
+ line: 42,
100774
100265
  column: 128
100775
100266
  }
100776
100267
  }],
100777
- line: 65
100268
+ line: 42
100778
100269
  },
100779
- "23": {
100270
+ "15": {
100780
100271
  loc: {
100781
100272
  start: {
100782
- line: 66,
100273
+ line: 43,
100783
100274
  column: 39
100784
100275
  },
100785
100276
  end: {
100786
- line: 66,
100277
+ line: 43,
100787
100278
  column: 100
100788
100279
  }
100789
100280
  },
100790
100281
  type: "cond-expr",
100791
100282
  locations: [{
100792
100283
  start: {
100793
- line: 66,
100284
+ line: 43,
100794
100285
  column: 72
100795
100286
  },
100796
100287
  end: {
100797
- line: 66,
100288
+ line: 43,
100798
100289
  column: 78
100799
100290
  }
100800
100291
  }, {
100801
100292
  start: {
100802
- line: 66,
100293
+ line: 43,
100803
100294
  column: 81
100804
100295
  },
100805
100296
  end: {
100806
- line: 66,
100297
+ line: 43,
100807
100298
  column: 100
100808
100299
  }
100809
100300
  }],
100810
- line: 66
100301
+ line: 43
100811
100302
  },
100812
- "24": {
100303
+ "16": {
100813
100304
  loc: {
100814
100305
  start: {
100815
- line: 66,
100306
+ line: 43,
100816
100307
  column: 39
100817
100308
  },
100818
100309
  end: {
100819
- line: 66,
100310
+ line: 43,
100820
100311
  column: 69
100821
100312
  }
100822
100313
  },
100823
100314
  type: "binary-expr",
100824
100315
  locations: [{
100825
100316
  start: {
100826
- line: 66,
100317
+ line: 43,
100827
100318
  column: 39
100828
100319
  },
100829
100320
  end: {
100830
- line: 66,
100321
+ line: 43,
100831
100322
  column: 51
100832
100323
  }
100833
100324
  }, {
100834
100325
  start: {
100835
- line: 66,
100326
+ line: 43,
100836
100327
  column: 55
100837
100328
  },
100838
100329
  end: {
100839
- line: 66,
100330
+ line: 43,
100840
100331
  column: 69
100841
100332
  }
100842
100333
  }],
100843
- line: 66
100334
+ line: 43
100844
100335
  },
100845
- "25": {
100336
+ "17": {
100846
100337
  loc: {
100847
100338
  start: {
100848
- line: 67,
100339
+ line: 44,
100849
100340
  column: 43
100850
100341
  },
100851
100342
  end: {
100852
- line: 67,
100343
+ line: 44,
100853
100344
  column: 113
100854
100345
  }
100855
100346
  },
100856
100347
  type: "cond-expr",
100857
100348
  locations: [{
100858
100349
  start: {
100859
- line: 67,
100350
+ line: 44,
100860
100351
  column: 82
100861
100352
  },
100862
100353
  end: {
100863
- line: 67,
100354
+ line: 44,
100864
100355
  column: 88
100865
100356
  }
100866
100357
  }, {
100867
100358
  start: {
100868
- line: 67,
100359
+ line: 44,
100869
100360
  column: 91
100870
100361
  },
100871
100362
  end: {
100872
- line: 67,
100363
+ line: 44,
100873
100364
  column: 113
100874
100365
  }
100875
100366
  }],
100876
- line: 67
100367
+ line: 44
100877
100368
  },
100878
- "26": {
100369
+ "18": {
100879
100370
  loc: {
100880
100371
  start: {
100881
- line: 67,
100372
+ line: 44,
100882
100373
  column: 43
100883
100374
  },
100884
100375
  end: {
100885
- line: 67,
100376
+ line: 44,
100886
100377
  column: 79
100887
100378
  }
100888
100379
  },
100889
100380
  type: "binary-expr",
100890
100381
  locations: [{
100891
100382
  start: {
100892
- line: 67,
100383
+ line: 44,
100893
100384
  column: 43
100894
100385
  },
100895
100386
  end: {
100896
- line: 67,
100387
+ line: 44,
100897
100388
  column: 58
100898
100389
  }
100899
100390
  }, {
100900
100391
  start: {
100901
- line: 67,
100392
+ line: 44,
100902
100393
  column: 62
100903
100394
  },
100904
100395
  end: {
100905
- line: 67,
100396
+ line: 44,
100906
100397
  column: 79
100907
100398
  }
100908
100399
  }],
100909
- line: 67
100400
+ line: 44
100910
100401
  },
100911
- "27": {
100402
+ "19": {
100912
100403
  loc: {
100913
100404
  start: {
100914
- line: 68,
100405
+ line: 45,
100915
100406
  column: 39
100916
100407
  },
100917
100408
  end: {
100918
- line: 68,
100409
+ line: 45,
100919
100410
  column: 99
100920
100411
  }
100921
100412
  },
100922
100413
  type: "cond-expr",
100923
100414
  locations: [{
100924
100415
  start: {
100925
- line: 68,
100416
+ line: 45,
100926
100417
  column: 72
100927
100418
  },
100928
100419
  end: {
100929
- line: 68,
100420
+ line: 45,
100930
100421
  column: 78
100931
100422
  }
100932
100423
  }, {
100933
100424
  start: {
100934
- line: 68,
100425
+ line: 45,
100935
100426
  column: 81
100936
100427
  },
100937
100428
  end: {
100938
- line: 68,
100429
+ line: 45,
100939
100430
  column: 99
100940
100431
  }
100941
100432
  }],
100942
- line: 68
100433
+ line: 45
100943
100434
  },
100944
- "28": {
100435
+ "20": {
100945
100436
  loc: {
100946
100437
  start: {
100947
- line: 68,
100438
+ line: 45,
100948
100439
  column: 39
100949
100440
  },
100950
100441
  end: {
100951
- line: 68,
100442
+ line: 45,
100952
100443
  column: 69
100953
100444
  }
100954
100445
  },
100955
100446
  type: "binary-expr",
100956
100447
  locations: [{
100957
100448
  start: {
100958
- line: 68,
100449
+ line: 45,
100959
100450
  column: 39
100960
100451
  },
100961
100452
  end: {
100962
- line: 68,
100453
+ line: 45,
100963
100454
  column: 51
100964
100455
  }
100965
100456
  }, {
100966
100457
  start: {
100967
- line: 68,
100458
+ line: 45,
100968
100459
  column: 55
100969
100460
  },
100970
100461
  end: {
100971
- line: 68,
100462
+ line: 45,
100972
100463
  column: 69
100973
100464
  }
100974
100465
  }],
100975
- line: 68
100466
+ line: 45
100976
100467
  },
100977
- "29": {
100468
+ "21": {
100978
100469
  loc: {
100979
100470
  start: {
100980
- line: 69,
100471
+ line: 46,
100981
100472
  column: 43
100982
100473
  },
100983
100474
  end: {
100984
- line: 69,
100475
+ line: 46,
100985
100476
  column: 112
100986
100477
  }
100987
100478
  },
100988
100479
  type: "cond-expr",
100989
100480
  locations: [{
100990
100481
  start: {
100991
- line: 69,
100482
+ line: 46,
100992
100483
  column: 82
100993
100484
  },
100994
100485
  end: {
100995
- line: 69,
100486
+ line: 46,
100996
100487
  column: 88
100997
100488
  }
100998
100489
  }, {
100999
100490
  start: {
101000
- line: 69,
100491
+ line: 46,
101001
100492
  column: 91
101002
100493
  },
101003
100494
  end: {
101004
- line: 69,
100495
+ line: 46,
101005
100496
  column: 112
101006
100497
  }
101007
100498
  }],
101008
- line: 69
100499
+ line: 46
101009
100500
  },
101010
- "30": {
100501
+ "22": {
101011
100502
  loc: {
101012
100503
  start: {
101013
- line: 69,
100504
+ line: 46,
101014
100505
  column: 43
101015
100506
  },
101016
100507
  end: {
101017
- line: 69,
100508
+ line: 46,
101018
100509
  column: 79
101019
100510
  }
101020
100511
  },
101021
100512
  type: "binary-expr",
101022
100513
  locations: [{
101023
100514
  start: {
101024
- line: 69,
100515
+ line: 46,
101025
100516
  column: 43
101026
100517
  },
101027
100518
  end: {
101028
- line: 69,
100519
+ line: 46,
101029
100520
  column: 58
101030
100521
  }
101031
100522
  }, {
101032
100523
  start: {
101033
- line: 69,
100524
+ line: 46,
101034
100525
  column: 62
101035
100526
  },
101036
100527
  end: {
101037
- line: 69,
100528
+ line: 46,
101038
100529
  column: 79
101039
100530
  }
101040
100531
  }],
101041
- line: 69
100532
+ line: 46
101042
100533
  },
101043
- "31": {
100534
+ "23": {
101044
100535
  loc: {
101045
100536
  start: {
101046
- line: 83,
100537
+ line: 54,
101047
100538
  column: 12
101048
100539
  },
101049
100540
  end: {
101050
- line: 85,
100541
+ line: 58,
101051
100542
  column: 13
101052
100543
  }
101053
100544
  },
101054
100545
  type: "if",
101055
100546
  locations: [{
101056
100547
  start: {
101057
- line: 83,
100548
+ line: 54,
101058
100549
  column: 12
101059
100550
  },
101060
100551
  end: {
101061
- line: 85,
100552
+ line: 58,
101062
100553
  column: 13
101063
100554
  }
101064
100555
  }, {
@@ -101071,40 +100562,139 @@ function cov_wqxd4hn8r() {
101071
100562
  column: undefined
101072
100563
  }
101073
100564
  }],
101074
- line: 83
100565
+ line: 54
101075
100566
  },
101076
- "32": {
100567
+ "24": {
101077
100568
  loc: {
101078
100569
  start: {
101079
- line: 104,
100570
+ line: 54,
100571
+ column: 16
100572
+ },
100573
+ end: {
100574
+ line: 54,
100575
+ column: 66
100576
+ }
100577
+ },
100578
+ type: "binary-expr",
100579
+ locations: [{
100580
+ start: {
100581
+ line: 54,
100582
+ column: 16
100583
+ },
100584
+ end: {
100585
+ line: 54,
100586
+ column: 35
100587
+ }
100588
+ }, {
100589
+ start: {
100590
+ line: 54,
100591
+ column: 39
100592
+ },
100593
+ end: {
100594
+ line: 54,
100595
+ column: 66
100596
+ }
100597
+ }],
100598
+ line: 54
100599
+ },
100600
+ "25": {
100601
+ loc: {
100602
+ start: {
100603
+ line: 65,
100604
+ column: 12
100605
+ },
100606
+ end: {
100607
+ line: 67,
100608
+ column: 13
100609
+ }
100610
+ },
100611
+ type: "if",
100612
+ locations: [{
100613
+ start: {
100614
+ line: 65,
100615
+ column: 12
100616
+ },
100617
+ end: {
100618
+ line: 67,
100619
+ column: 13
100620
+ }
100621
+ }, {
100622
+ start: {
100623
+ line: undefined,
100624
+ column: undefined
100625
+ },
100626
+ end: {
100627
+ line: undefined,
100628
+ column: undefined
100629
+ }
100630
+ }],
100631
+ line: 65
100632
+ },
100633
+ "26": {
100634
+ loc: {
100635
+ start: {
100636
+ line: 68,
100637
+ column: 77
100638
+ },
100639
+ end: {
100640
+ line: 70,
100641
+ column: 75
100642
+ }
100643
+ },
100644
+ type: "cond-expr",
100645
+ locations: [{
100646
+ start: {
100647
+ line: 69,
100648
+ column: 18
100649
+ },
100650
+ end: {
100651
+ line: 69,
100652
+ column: 45
100653
+ }
100654
+ }, {
100655
+ start: {
100656
+ line: 70,
100657
+ column: 18
100658
+ },
100659
+ end: {
100660
+ line: 70,
100661
+ column: 75
100662
+ }
100663
+ }],
100664
+ line: 68
100665
+ },
100666
+ "27": {
100667
+ loc: {
100668
+ start: {
100669
+ line: 88,
101080
100670
  column: 28
101081
100671
  },
101082
100672
  end: {
101083
- line: 111,
100673
+ line: 95,
101084
100674
  column: 29
101085
100675
  }
101086
100676
  },
101087
100677
  type: "if",
101088
100678
  locations: [{
101089
100679
  start: {
101090
- line: 104,
100680
+ line: 88,
101091
100681
  column: 28
101092
100682
  },
101093
100683
  end: {
101094
- line: 111,
100684
+ line: 95,
101095
100685
  column: 29
101096
100686
  }
101097
100687
  }, {
101098
100688
  start: {
101099
- line: 109,
100689
+ line: 93,
101100
100690
  column: 33
101101
100691
  },
101102
100692
  end: {
101103
- line: 111,
100693
+ line: 95,
101104
100694
  column: 29
101105
100695
  }
101106
100696
  }],
101107
- line: 104
100697
+ line: 88
101108
100698
  }
101109
100699
  },
101110
100700
  s: {
@@ -101143,12 +100733,7 @@ function cov_wqxd4hn8r() {
101143
100733
  "32": 0,
101144
100734
  "33": 0,
101145
100735
  "34": 0,
101146
- "35": 0,
101147
- "36": 0,
101148
- "37": 0,
101149
- "38": 0,
101150
- "39": 0,
101151
- "40": 0
100736
+ "35": 0
101152
100737
  },
101153
100738
  f: {
101154
100739
  "0": 0,
@@ -101164,7 +100749,7 @@ function cov_wqxd4hn8r() {
101164
100749
  b: {
101165
100750
  "0": [0, 0],
101166
100751
  "1": [0, 0],
101167
- "2": [0, 0, 0, 0],
100752
+ "2": [0, 0, 0, 0, 0, 0],
101168
100753
  "3": [0, 0],
101169
100754
  "4": [0, 0],
101170
100755
  "5": [0, 0],
@@ -101172,7 +100757,7 @@ function cov_wqxd4hn8r() {
101172
100757
  "7": [0, 0],
101173
100758
  "8": [0, 0],
101174
100759
  "9": [0, 0],
101175
- "10": [0, 0, 0, 0, 0, 0],
100760
+ "10": [0, 0],
101176
100761
  "11": [0, 0],
101177
100762
  "12": [0, 0],
101178
100763
  "13": [0, 0],
@@ -101189,15 +100774,10 @@ function cov_wqxd4hn8r() {
101189
100774
  "24": [0, 0],
101190
100775
  "25": [0, 0],
101191
100776
  "26": [0, 0],
101192
- "27": [0, 0],
101193
- "28": [0, 0],
101194
- "29": [0, 0],
101195
- "30": [0, 0],
101196
- "31": [0, 0],
101197
- "32": [0, 0]
100777
+ "27": [0, 0]
101198
100778
  },
101199
100779
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
101200
- hash: "c6317c4c333fb78c69502c4151152eeb621bdd85"
100780
+ hash: "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca"
101201
100781
  };
101202
100782
  var coverage = global[gcv] || (global[gcv] = {});
101203
100783
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -101239,76 +100819,43 @@ try {
101239
100819
  },
101240
100820
  set: config => {
101241
100821
  cov_wqxd4hn8r().f[1]++;
101242
- const previousConfig = (cov_wqxd4hn8r().s[5]++, Object(cloneDeep["a" /* default */])(window.RevolugoElements.config));
101243
- cov_wqxd4hn8r().s[6]++;
100822
+ cov_wqxd4hn8r().s[5]++;
101244
100823
  configMonitor.config = config;
101245
- cov_wqxd4hn8r().s[7]++;
101246
- if ((cov_wqxd4hn8r().b[2][0]++, config.apiKey) && (cov_wqxd4hn8r().b[2][1]++, config.apiEnvironment) && ((cov_wqxd4hn8r().b[2][2]++, config.apiKey !== ((cov_wqxd4hn8r().b[4][0]++, previousConfig === null) || (cov_wqxd4hn8r().b[4][1]++, previousConfig === void 0) ? (cov_wqxd4hn8r().b[3][0]++, void 0) : (cov_wqxd4hn8r().b[3][1]++, previousConfig.apiKey))) || (cov_wqxd4hn8r().b[2][3]++, config.apiEnvironment !== previousConfig.apiEnvironment))) {
101247
- cov_wqxd4hn8r().b[1][0]++;
101248
- // Update bookingApiClient
101249
- const apiClientConfig = (cov_wqxd4hn8r().s[8]++, {
101250
- apiKey: config.apiKey,
101251
- apiVersion: dist["a" /* ApiVersionEnum */].V1,
101252
- apiEnvironment: config.apiEnvironment
101253
- });
101254
- cov_wqxd4hn8r().s[9]++;
101255
- if ((cov_wqxd4hn8r().b[6][0]++, Object({"NODE_ENV":"production","BASE_URL":"/"}).VUE_APP_X_CONSUMER_CUSTOM_ID) && (cov_wqxd4hn8r().b[6][1]++, config.apiEnvironment === dist["e" /* Environment */].LOCAL)) {
101256
- cov_wqxd4hn8r().b[5][0]++;
101257
- cov_wqxd4hn8r().s[10]++;
101258
- apiClientConfig.optionalHeaders = {
101259
- 'x-consumer-custom-id': Object({"NODE_ENV":"production","BASE_URL":"/"}).VUE_APP_X_CONSUMER_CUSTOM_ID
101260
- };
101261
- } else {
101262
- cov_wqxd4hn8r().b[5][1]++;
101263
- }
101264
- cov_wqxd4hn8r().s[11]++;
101265
- configMonitor.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
101266
- } else {
101267
- cov_wqxd4hn8r().b[1][1]++;
101268
- cov_wqxd4hn8r().s[12]++;
101269
- if ((cov_wqxd4hn8r().b[8][0]++, !config.apiKey) || (cov_wqxd4hn8r().b[8][1]++, !config.apiEnvironment)) {
101270
- cov_wqxd4hn8r().b[7][0]++;
101271
- cov_wqxd4hn8r().s[13]++;
101272
- configMonitor.bookingApiClient = undefined;
101273
- } else {
101274
- cov_wqxd4hn8r().b[7][1]++;
101275
- }
101276
- }
101277
100824
  }
101278
100825
  });
101279
- cov_wqxd4hn8r().s[14]++;
100826
+ cov_wqxd4hn8r().s[6]++;
101280
100827
  Object.defineProperty(window.RevolugoElements, 'bookingApiClient', {
101281
100828
  get: () => {
101282
100829
  cov_wqxd4hn8r().f[2]++;
101283
- cov_wqxd4hn8r().s[15]++;
100830
+ cov_wqxd4hn8r().s[7]++;
101284
100831
  return configMonitor.bookingApiClient;
101285
100832
  },
101286
100833
  set: bookingApiClient => {
101287
100834
  cov_wqxd4hn8r().f[3]++;
101288
- cov_wqxd4hn8r().s[16]++;
100835
+ cov_wqxd4hn8r().s[8]++;
101289
100836
  configMonitor.bookingApiClient = bookingApiClient;
101290
100837
  }
101291
100838
  });
101292
100839
  } catch (error) {
101293
- cov_wqxd4hn8r().s[17]++;
100840
+ cov_wqxd4hn8r().s[9]++;
101294
100841
  // eslint-disable-next-line no-console
101295
100842
  console.error('Error while setting up config', error);
101296
100843
  }
101297
- const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* default */].extend({
100844
+ const revolugoConfigMixin = (cov_wqxd4hn8r().s[10]++, vue_runtime_esm["a" /* default */].extend({
101298
100845
  watch: {
101299
100846
  config: {
101300
100847
  immediate: true,
101301
100848
  handler(val, oldVal) {
101302
100849
  cov_wqxd4hn8r().f[4]++;
101303
- cov_wqxd4hn8r().s[19]++;
100850
+ cov_wqxd4hn8r().s[11]++;
101304
100851
  this.applyConfig();
101305
- cov_wqxd4hn8r().s[20]++;
101306
- if ((cov_wqxd4hn8r().b[10][0]++, (cov_wqxd4hn8r().b[12][0]++, val === null) || (cov_wqxd4hn8r().b[12][1]++, val === void 0) ? (cov_wqxd4hn8r().b[11][0]++, void 0) : (cov_wqxd4hn8r().b[11][1]++, val.apiKey)) && (cov_wqxd4hn8r().b[10][1]++, (cov_wqxd4hn8r().b[14][0]++, val === null) || (cov_wqxd4hn8r().b[14][1]++, val === void 0) ? (cov_wqxd4hn8r().b[13][0]++, void 0) : (cov_wqxd4hn8r().b[13][1]++, val.apiEnvironment)) && ((cov_wqxd4hn8r().b[10][2]++, ((cov_wqxd4hn8r().b[16][0]++, val === null) || (cov_wqxd4hn8r().b[16][1]++, val === void 0) ? (cov_wqxd4hn8r().b[15][0]++, void 0) : (cov_wqxd4hn8r().b[15][1]++, val.apiKey)) !== ((cov_wqxd4hn8r().b[18][0]++, oldVal === null) || (cov_wqxd4hn8r().b[18][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[17][0]++, void 0) : (cov_wqxd4hn8r().b[17][1]++, oldVal.apiKey))) || (cov_wqxd4hn8r().b[10][3]++, ((cov_wqxd4hn8r().b[20][0]++, val === null) || (cov_wqxd4hn8r().b[20][1]++, val === void 0) ? (cov_wqxd4hn8r().b[19][0]++, void 0) : (cov_wqxd4hn8r().b[19][1]++, val.apiEnvironment)) !== ((cov_wqxd4hn8r().b[22][0]++, oldVal === null) || (cov_wqxd4hn8r().b[22][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[21][0]++, void 0) : (cov_wqxd4hn8r().b[21][1]++, oldVal.apiEnvironment))) || (cov_wqxd4hn8r().b[10][4]++, JSON.stringify((cov_wqxd4hn8r().b[24][0]++, val === null) || (cov_wqxd4hn8r().b[24][1]++, val === void 0) ? (cov_wqxd4hn8r().b[23][0]++, void 0) : (cov_wqxd4hn8r().b[23][1]++, val.optionalHeaders)) !== JSON.stringify((cov_wqxd4hn8r().b[26][0]++, oldVal === null) || (cov_wqxd4hn8r().b[26][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[25][0]++, void 0) : (cov_wqxd4hn8r().b[25][1]++, oldVal.optionalHeaders))) || (cov_wqxd4hn8r().b[10][5]++, JSON.stringify((cov_wqxd4hn8r().b[28][0]++, val === null) || (cov_wqxd4hn8r().b[28][1]++, val === void 0) ? (cov_wqxd4hn8r().b[27][0]++, void 0) : (cov_wqxd4hn8r().b[27][1]++, val.organizationId)) !== JSON.stringify((cov_wqxd4hn8r().b[30][0]++, oldVal === null) || (cov_wqxd4hn8r().b[30][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[29][0]++, void 0) : (cov_wqxd4hn8r().b[29][1]++, oldVal.organizationId))))) {
101307
- cov_wqxd4hn8r().b[9][0]++;
101308
- cov_wqxd4hn8r().s[21]++;
100852
+ cov_wqxd4hn8r().s[12]++;
100853
+ if ((cov_wqxd4hn8r().b[2][0]++, (cov_wqxd4hn8r().b[4][0]++, val === null) || (cov_wqxd4hn8r().b[4][1]++, val === void 0) ? (cov_wqxd4hn8r().b[3][0]++, void 0) : (cov_wqxd4hn8r().b[3][1]++, val.apiKey)) && (cov_wqxd4hn8r().b[2][1]++, (cov_wqxd4hn8r().b[6][0]++, val === null) || (cov_wqxd4hn8r().b[6][1]++, val === void 0) ? (cov_wqxd4hn8r().b[5][0]++, void 0) : (cov_wqxd4hn8r().b[5][1]++, val.apiEnvironment)) && ((cov_wqxd4hn8r().b[2][2]++, ((cov_wqxd4hn8r().b[8][0]++, val === null) || (cov_wqxd4hn8r().b[8][1]++, val === void 0) ? (cov_wqxd4hn8r().b[7][0]++, void 0) : (cov_wqxd4hn8r().b[7][1]++, val.apiKey)) !== ((cov_wqxd4hn8r().b[10][0]++, oldVal === null) || (cov_wqxd4hn8r().b[10][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[9][0]++, void 0) : (cov_wqxd4hn8r().b[9][1]++, oldVal.apiKey))) || (cov_wqxd4hn8r().b[2][3]++, ((cov_wqxd4hn8r().b[12][0]++, val === null) || (cov_wqxd4hn8r().b[12][1]++, val === void 0) ? (cov_wqxd4hn8r().b[11][0]++, void 0) : (cov_wqxd4hn8r().b[11][1]++, val.apiEnvironment)) !== ((cov_wqxd4hn8r().b[14][0]++, oldVal === null) || (cov_wqxd4hn8r().b[14][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[13][0]++, void 0) : (cov_wqxd4hn8r().b[13][1]++, oldVal.apiEnvironment))) || (cov_wqxd4hn8r().b[2][4]++, JSON.stringify((cov_wqxd4hn8r().b[16][0]++, val === null) || (cov_wqxd4hn8r().b[16][1]++, val === void 0) ? (cov_wqxd4hn8r().b[15][0]++, void 0) : (cov_wqxd4hn8r().b[15][1]++, val.optionalHeaders)) !== JSON.stringify((cov_wqxd4hn8r().b[18][0]++, oldVal === null) || (cov_wqxd4hn8r().b[18][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[17][0]++, void 0) : (cov_wqxd4hn8r().b[17][1]++, oldVal.optionalHeaders))) || (cov_wqxd4hn8r().b[2][5]++, JSON.stringify((cov_wqxd4hn8r().b[20][0]++, val === null) || (cov_wqxd4hn8r().b[20][1]++, val === void 0) ? (cov_wqxd4hn8r().b[19][0]++, void 0) : (cov_wqxd4hn8r().b[19][1]++, val.organizationId)) !== JSON.stringify((cov_wqxd4hn8r().b[22][0]++, oldVal === null) || (cov_wqxd4hn8r().b[22][1]++, oldVal === void 0) ? (cov_wqxd4hn8r().b[21][0]++, void 0) : (cov_wqxd4hn8r().b[21][1]++, oldVal.organizationId))))) {
100854
+ cov_wqxd4hn8r().b[1][0]++;
100855
+ cov_wqxd4hn8r().s[13]++;
101309
100856
  this.updateBookingClient();
101310
100857
  } else {
101311
- cov_wqxd4hn8r().b[9][1]++;
100858
+ cov_wqxd4hn8r().b[1][1]++;
101312
100859
  }
101313
100860
  }
101314
100861
  }
@@ -101316,62 +100863,72 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
101316
100863
  methods: {
101317
100864
  updateBookingClient() {
101318
100865
  cov_wqxd4hn8r().f[5]++;
101319
- const apiClientConfig = (cov_wqxd4hn8r().s[22]++, {
100866
+ cov_wqxd4hn8r().s[14]++;
100867
+ if ((cov_wqxd4hn8r().b[24][0]++, !this.config.apiKey) || (cov_wqxd4hn8r().b[24][1]++, !this.config.apiEnvironment)) {
100868
+ cov_wqxd4hn8r().b[23][0]++;
100869
+ cov_wqxd4hn8r().s[15]++;
100870
+ window.RevolugoElements.bookingApiClient = undefined;
100871
+ cov_wqxd4hn8r().s[16]++;
100872
+ return;
100873
+ } else {
100874
+ cov_wqxd4hn8r().b[23][1]++;
100875
+ }
100876
+ const apiClientConfig = (cov_wqxd4hn8r().s[17]++, {
101320
100877
  apiEnvironment: this.config.apiEnvironment,
101321
100878
  apiKey: this.config.apiKey,
101322
100879
  apiVersion: dist["a" /* ApiVersionEnum */].V1
101323
100880
  });
101324
- const optionalHeaders = (cov_wqxd4hn8r().s[23]++, {});
101325
- cov_wqxd4hn8r().s[24]++;
100881
+ const optionalHeaders = (cov_wqxd4hn8r().s[18]++, {});
100882
+ cov_wqxd4hn8r().s[19]++;
101326
100883
  if (this.config.organizationId) {
101327
- cov_wqxd4hn8r().b[31][0]++;
101328
- cov_wqxd4hn8r().s[25]++;
100884
+ cov_wqxd4hn8r().b[25][0]++;
100885
+ cov_wqxd4hn8r().s[20]++;
101329
100886
  optionalHeaders['x-custom-organization'] = this.config.organizationId;
101330
100887
  } else {
101331
- cov_wqxd4hn8r().b[31][1]++;
100888
+ cov_wqxd4hn8r().b[25][1]++;
101332
100889
  }
101333
- cov_wqxd4hn8r().s[26]++;
101334
- apiClientConfig.optionalHeaders = Object.assign(optionalHeaders, this.config.optionalHeaders);
101335
- cov_wqxd4hn8r().s[27]++;
100890
+ cov_wqxd4hn8r().s[21]++;
100891
+ apiClientConfig.optionalHeaders = Object.assign(optionalHeaders, this.config.apiEnvironment === dist["e" /* Environment */].LOCAL ? (cov_wqxd4hn8r().b[26][0]++, this.config.optionalHeaders) : (cov_wqxd4hn8r().b[26][1]++, Object(omit["a" /* default */])(this.config.optionalHeaders, 'x-consumer-custom-id')));
100892
+ cov_wqxd4hn8r().s[22]++;
101336
100893
  window.RevolugoElements.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
101337
100894
  },
101338
100895
  applyConfig() {
101339
100896
  cov_wqxd4hn8r().f[6]++;
101340
- cov_wqxd4hn8r().s[28]++;
100897
+ cov_wqxd4hn8r().s[23]++;
101341
100898
  // Apply locale
101342
100899
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
101343
100900
  this.$i18n.locale = this.config.lang;
101344
100901
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
101345
100902
  const {
101346
100903
  shadowRoot
101347
- } = (cov_wqxd4hn8r().s[29]++, this.$root.$options);
100904
+ } = (cov_wqxd4hn8r().s[24]++, this.$root.$options);
101348
100905
  // Apply theme colors
101349
- cov_wqxd4hn8r().s[30]++;
100906
+ cov_wqxd4hn8r().s[25]++;
101350
100907
  this.$nextTick(() => {
101351
100908
  cov_wqxd4hn8r().f[7]++;
101352
- const theme = (cov_wqxd4hn8r().s[31]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
100909
+ const theme = (cov_wqxd4hn8r().s[26]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
101353
100910
  /* eslint-disable guard-for-in */
101354
- cov_wqxd4hn8r().s[32]++;
100911
+ cov_wqxd4hn8r().s[27]++;
101355
100912
  for (const key in theme) {
101356
- cov_wqxd4hn8r().s[33]++;
100913
+ cov_wqxd4hn8r().s[28]++;
101357
100914
  try {
101358
- const variations = (cov_wqxd4hn8r().s[34]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
101359
- cov_wqxd4hn8r().s[35]++;
100915
+ const variations = (cov_wqxd4hn8r().s[29]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
100916
+ cov_wqxd4hn8r().s[30]++;
101360
100917
  for (const variation in variations) {
101361
- cov_wqxd4hn8r().s[36]++;
100918
+ cov_wqxd4hn8r().s[31]++;
101362
100919
  /* eslint-disable max-depth */
101363
100920
  if (shadowRoot) {
101364
- cov_wqxd4hn8r().b[32][0]++;
101365
- cov_wqxd4hn8r().s[37]++;
100921
+ cov_wqxd4hn8r().b[27][0]++;
100922
+ cov_wqxd4hn8r().s[32]++;
101366
100923
  shadowRoot.querySelector('#app').style.setProperty(`--v-${key}-${variation}`, variations[variation]);
101367
100924
  } else {
101368
- cov_wqxd4hn8r().b[32][1]++;
101369
- cov_wqxd4hn8r().s[38]++;
100925
+ cov_wqxd4hn8r().b[27][1]++;
100926
+ cov_wqxd4hn8r().s[33]++;
101370
100927
  document.documentElement.style.setProperty(`--v-${key}-${variation}`, variations[variation]);
101371
100928
  }
101372
100929
  }
101373
100930
  } catch (error) {
101374
- cov_wqxd4hn8r().s[39]++;
100931
+ cov_wqxd4hn8r().s[34]++;
101375
100932
  // eslint-disable-next-line no-console
101376
100933
  console.error('cannot apply theme colors with name', key, error);
101377
100934
  }
@@ -101383,7 +100940,7 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
101383
100940
  /* harmony default export */ var revolugo_config = ({
101384
100941
  install(V) {
101385
100942
  cov_wqxd4hn8r().f[8]++;
101386
- cov_wqxd4hn8r().s[40]++;
100943
+ cov_wqxd4hn8r().s[35]++;
101387
100944
  V.mixin(bookingApiClientConfigMixin());
101388
100945
  }
101389
100946
  });