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

Sign up to get free protection for your applications and to get access to all the features.
@@ -44839,7 +44839,7 @@ var staticRenderFns = [];
44839
44839
  // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/vue@2.7.14_patch_hash=eabltful76efbfyd536dwkbr5a/node_modules/vue/dist/vue.runtime.esm.js
44840
44840
  var vue_runtime_esm = __webpack_require__("ad27");
44841
44841
 
44842
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 4 modules
44842
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
44843
44843
  var omit = __webpack_require__("797e");
44844
44844
 
44845
44845
  // EXTERNAL MODULE: ./src/components/RevolugoElements/HotelRoomOffersView/HotelRoomOffersView.props.ts
@@ -66878,183 +66878,6 @@ __webpack_require__("e3cd");
66878
66878
 
66879
66879
  // extracted by mini-css-extract-plugin
66880
66880
 
66881
- /***/ }),
66882
-
66883
- /***/ "797e":
66884
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
66885
-
66886
- "use strict";
66887
-
66888
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayMap.js
66889
- var _arrayMap = __webpack_require__("8db3");
66890
-
66891
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseClone.js + 14 modules
66892
- var _baseClone = __webpack_require__("8143");
66893
-
66894
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_castPath.js + 3 modules
66895
- var _castPath = __webpack_require__("05a1");
66896
-
66897
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/last.js
66898
- /**
66899
- * Gets the last element of `array`.
66900
- *
66901
- * @static
66902
- * @memberOf _
66903
- * @since 0.1.0
66904
- * @category Array
66905
- * @param {Array} array The array to query.
66906
- * @returns {*} Returns the last element of `array`.
66907
- * @example
66908
- *
66909
- * _.last([1, 2, 3]);
66910
- * // => 3
66911
- */
66912
- function last(array) {
66913
- var length = array == null ? 0 : array.length;
66914
- return length ? array[length - 1] : undefined;
66915
- }
66916
-
66917
- /* harmony default export */ var lodash_es_last = (last);
66918
-
66919
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseGet.js
66920
- var _baseGet = __webpack_require__("fdab");
66921
-
66922
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSlice.js
66923
- var _baseSlice = __webpack_require__("4982");
66924
-
66925
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_parent.js
66926
-
66927
-
66928
-
66929
- /**
66930
- * Gets the parent value at `path` of `object`.
66931
- *
66932
- * @private
66933
- * @param {Object} object The object to query.
66934
- * @param {Array} path The path to get the parent value of.
66935
- * @returns {*} Returns the parent value.
66936
- */
66937
- function _parent_parent(object, path) {
66938
- return path.length < 2 ? object : Object(_baseGet["a" /* default */])(object, Object(_baseSlice["a" /* default */])(path, 0, -1));
66939
- }
66940
-
66941
- /* harmony default export */ var _parent = (_parent_parent);
66942
-
66943
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_toKey.js
66944
- var _toKey = __webpack_require__("73f5");
66945
-
66946
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnset.js
66947
-
66948
-
66949
-
66950
-
66951
-
66952
- /**
66953
- * The base implementation of `_.unset`.
66954
- *
66955
- * @private
66956
- * @param {Object} object The object to modify.
66957
- * @param {Array|string} path The property path to unset.
66958
- * @returns {boolean} Returns `true` if the property is deleted, else `false`.
66959
- */
66960
- function baseUnset(object, path) {
66961
- path = Object(_castPath["a" /* default */])(path, object);
66962
- object = _parent(object, path);
66963
- return object == null || delete object[Object(_toKey["a" /* default */])(lodash_es_last(path))];
66964
- }
66965
-
66966
- /* harmony default export */ var _baseUnset = (baseUnset);
66967
-
66968
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
66969
- var _copyObject = __webpack_require__("a93e");
66970
-
66971
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isPlainObject.js
66972
- var isPlainObject = __webpack_require__("8a1f");
66973
-
66974
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_customOmitClone.js
66975
-
66976
-
66977
- /**
66978
- * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
66979
- * objects.
66980
- *
66981
- * @private
66982
- * @param {*} value The value to inspect.
66983
- * @param {string} key The key of the property to inspect.
66984
- * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
66985
- */
66986
- function customOmitClone(value) {
66987
- return Object(isPlainObject["a" /* default */])(value) ? undefined : value;
66988
- }
66989
-
66990
- /* harmony default export */ var _customOmitClone = (customOmitClone);
66991
-
66992
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_flatRest.js + 1 modules
66993
- var _flatRest = __webpack_require__("b751");
66994
-
66995
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeysIn.js
66996
- var _getAllKeysIn = __webpack_require__("5e38");
66997
-
66998
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js
66999
-
67000
-
67001
-
67002
-
67003
-
67004
-
67005
-
67006
-
67007
-
67008
- /** Used to compose bitmasks for cloning. */
67009
- var CLONE_DEEP_FLAG = 1,
67010
- CLONE_FLAT_FLAG = 2,
67011
- CLONE_SYMBOLS_FLAG = 4;
67012
-
67013
- /**
67014
- * The opposite of `_.pick`; this method creates an object composed of the
67015
- * own and inherited enumerable property paths of `object` that are not omitted.
67016
- *
67017
- * **Note:** This method is considerably slower than `_.pick`.
67018
- *
67019
- * @static
67020
- * @since 0.1.0
67021
- * @memberOf _
67022
- * @category Object
67023
- * @param {Object} object The source object.
67024
- * @param {...(string|string[])} [paths] The property paths to omit.
67025
- * @returns {Object} Returns the new object.
67026
- * @example
67027
- *
67028
- * var object = { 'a': 1, 'b': '2', 'c': 3 };
67029
- *
67030
- * _.omit(object, ['a', 'c']);
67031
- * // => { 'b': '2' }
67032
- */
67033
- var omit = Object(_flatRest["a" /* default */])(function(object, paths) {
67034
- var result = {};
67035
- if (object == null) {
67036
- return result;
67037
- }
67038
- var isDeep = false;
67039
- paths = Object(_arrayMap["a" /* default */])(paths, function(path) {
67040
- path = Object(_castPath["a" /* default */])(path, object);
67041
- isDeep || (isDeep = path.length > 1);
67042
- return path;
67043
- });
67044
- Object(_copyObject["a" /* default */])(object, Object(_getAllKeysIn["a" /* default */])(object), result);
67045
- if (isDeep) {
67046
- result = Object(_baseClone["a" /* default */])(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, _customOmitClone);
67047
- }
67048
- var length = paths.length;
67049
- while (length--) {
67050
- _baseUnset(result, paths[length]);
67051
- }
67052
- return result;
67053
- });
67054
-
67055
- /* harmony default export */ var lodash_es_omit = __webpack_exports__["a"] = (omit);
67056
-
67057
-
67058
66881
  /***/ }),
67059
66882
 
67060
66883
  /***/ "7a01":
@@ -80074,8 +79897,8 @@ var index_umd = __webpack_require__("75e1");
80074
79897
  // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/libs/common/dist/index.js + 23 modules
80075
79898
  var dist = __webpack_require__("f6d7");
80076
79899
 
80077
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/cloneDeep.js
80078
- var cloneDeep = __webpack_require__("bbb7");
79900
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
79901
+ var omit = __webpack_require__("797e");
80079
79902
 
80080
79903
  // 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
80081
79904
  var utils = __webpack_require__("b2c2");
@@ -80498,7 +80321,7 @@ const bookingApiClientConfigMixin = () => {
80498
80321
  // CONCATENATED MODULE: ./src/plugins/revolugo-config.ts
80499
80322
  function cov_wqxd4hn8r() {
80500
80323
  var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/plugins/revolugo-config.ts";
80501
- var hash = "c6317c4c333fb78c69502c4151152eeb621bdd85";
80324
+ var hash = "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca";
80502
80325
  var global = new Function("return this")();
80503
80326
  var gcv = "__coverage__";
80504
80327
  var coverageData = {
@@ -80510,7 +80333,7 @@ function cov_wqxd4hn8r() {
80510
80333
  column: 0
80511
80334
  },
80512
80335
  end: {
80513
- line: 55,
80336
+ line: 32,
80514
80337
  column: 1
80515
80338
  }
80516
80339
  },
@@ -80540,7 +80363,7 @@ function cov_wqxd4hn8r() {
80540
80363
  column: 4
80541
80364
  },
80542
80365
  end: {
80543
- line: 44,
80366
+ line: 21,
80544
80367
  column: 7
80545
80368
  }
80546
80369
  },
@@ -80557,360 +80380,310 @@ function cov_wqxd4hn8r() {
80557
80380
  "5": {
80558
80381
  start: {
80559
80382
  line: 19,
80560
- column: 35
80383
+ column: 12
80561
80384
  },
80562
80385
  end: {
80563
80386
  line: 19,
80564
- column: 76
80387
+ column: 42
80565
80388
  }
80566
80389
  },
80567
80390
  "6": {
80568
80391
  start: {
80569
- line: 20,
80570
- column: 12
80392
+ line: 22,
80393
+ column: 4
80571
80394
  },
80572
80395
  end: {
80573
- line: 20,
80574
- column: 42
80396
+ line: 27,
80397
+ column: 7
80575
80398
  }
80576
80399
  },
80577
80400
  "7": {
80578
80401
  start: {
80579
- line: 21,
80580
- column: 12
80402
+ line: 23,
80403
+ column: 19
80581
80404
  },
80582
80405
  end: {
80583
- line: 42,
80584
- column: 13
80406
+ line: 23,
80407
+ column: 49
80585
80408
  }
80586
80409
  },
80587
80410
  "8": {
80588
80411
  start: {
80589
- line: 26,
80590
- column: 40
80412
+ line: 25,
80413
+ column: 12
80591
80414
  },
80592
80415
  end: {
80593
- line: 30,
80594
- column: 17
80416
+ line: 25,
80417
+ column: 62
80595
80418
  }
80596
80419
  },
80597
80420
  "9": {
80598
80421
  start: {
80599
80422
  line: 31,
80600
- column: 16
80423
+ column: 4
80601
80424
  },
80602
80425
  end: {
80603
- line: 36,
80604
- column: 17
80426
+ line: 31,
80427
+ column: 58
80605
80428
  }
80606
80429
  },
80607
80430
  "10": {
80608
80431
  start: {
80609
80432
  line: 33,
80610
- column: 20
80433
+ column: 35
80611
80434
  },
80612
80435
  end: {
80613
- line: 35,
80614
- column: 22
80436
+ line: 106,
80437
+ column: 2
80615
80438
  }
80616
80439
  },
80617
80440
  "11": {
80618
80441
  start: {
80619
- line: 37,
80442
+ line: 38,
80620
80443
  column: 16
80621
80444
  },
80622
80445
  end: {
80623
- line: 37,
80624
- column: 80
80446
+ line: 38,
80447
+ column: 35
80625
80448
  }
80626
80449
  },
80627
80450
  "12": {
80628
80451
  start: {
80629
80452
  line: 39,
80630
- column: 17
80453
+ column: 16
80631
80454
  },
80632
80455
  end: {
80633
- line: 42,
80634
- column: 13
80456
+ line: 48,
80457
+ column: 17
80635
80458
  }
80636
80459
  },
80637
80460
  "13": {
80638
80461
  start: {
80639
- line: 40,
80640
- column: 16
80462
+ line: 47,
80463
+ column: 20
80641
80464
  },
80642
80465
  end: {
80643
- line: 41,
80644
- column: 30
80466
+ line: 47,
80467
+ column: 47
80645
80468
  }
80646
80469
  },
80647
80470
  "14": {
80648
- start: {
80649
- line: 45,
80650
- column: 4
80651
- },
80652
- end: {
80653
- line: 50,
80654
- column: 7
80655
- }
80656
- },
80657
- "15": {
80658
- start: {
80659
- line: 46,
80660
- column: 19
80661
- },
80662
- end: {
80663
- line: 46,
80664
- column: 49
80665
- }
80666
- },
80667
- "16": {
80668
- start: {
80669
- line: 48,
80670
- column: 12
80671
- },
80672
- end: {
80673
- line: 48,
80674
- column: 62
80675
- }
80676
- },
80677
- "17": {
80678
80471
  start: {
80679
80472
  line: 54,
80680
- column: 4
80681
- },
80682
- end: {
80683
- line: 54,
80684
- column: 58
80685
- }
80686
- },
80687
- "18": {
80688
- start: {
80689
- line: 56,
80690
- column: 35
80473
+ column: 12
80691
80474
  },
80692
80475
  end: {
80693
- line: 122,
80694
- column: 2
80476
+ line: 58,
80477
+ column: 13
80695
80478
  }
80696
80479
  },
80697
- "19": {
80480
+ "15": {
80698
80481
  start: {
80699
- line: 61,
80482
+ line: 55,
80700
80483
  column: 16
80701
80484
  },
80702
80485
  end: {
80703
- line: 61,
80704
- column: 35
80486
+ line: 56,
80487
+ column: 30
80705
80488
  }
80706
80489
  },
80707
- "20": {
80490
+ "16": {
80708
80491
  start: {
80709
- line: 62,
80492
+ line: 57,
80710
80493
  column: 16
80711
80494
  },
80712
80495
  end: {
80713
- line: 71,
80714
- column: 17
80715
- }
80716
- },
80717
- "21": {
80718
- start: {
80719
- line: 70,
80720
- column: 20
80721
- },
80722
- end: {
80723
- line: 70,
80724
- column: 47
80496
+ line: 57,
80497
+ column: 23
80725
80498
  }
80726
80499
  },
80727
- "22": {
80500
+ "17": {
80728
80501
  start: {
80729
- line: 77,
80502
+ line: 59,
80730
80503
  column: 36
80731
80504
  },
80732
80505
  end: {
80733
- line: 81,
80506
+ line: 63,
80734
80507
  column: 13
80735
80508
  }
80736
80509
  },
80737
- "23": {
80510
+ "18": {
80738
80511
  start: {
80739
- line: 82,
80512
+ line: 64,
80740
80513
  column: 36
80741
80514
  },
80742
80515
  end: {
80743
- line: 82,
80516
+ line: 64,
80744
80517
  column: 38
80745
80518
  }
80746
80519
  },
80747
- "24": {
80520
+ "19": {
80748
80521
  start: {
80749
- line: 83,
80522
+ line: 65,
80750
80523
  column: 12
80751
80524
  },
80752
80525
  end: {
80753
- line: 85,
80526
+ line: 67,
80754
80527
  column: 13
80755
80528
  }
80756
80529
  },
80757
- "25": {
80530
+ "20": {
80758
80531
  start: {
80759
- line: 84,
80532
+ line: 66,
80760
80533
  column: 16
80761
80534
  },
80762
80535
  end: {
80763
- line: 84,
80536
+ line: 66,
80764
80537
  column: 86
80765
80538
  }
80766
80539
  },
80767
- "26": {
80540
+ "21": {
80768
80541
  start: {
80769
- line: 86,
80542
+ line: 68,
80770
80543
  column: 12
80771
80544
  },
80772
80545
  end: {
80773
- line: 86,
80774
- column: 106
80546
+ line: 70,
80547
+ column: 77
80775
80548
  }
80776
80549
  },
80777
- "27": {
80550
+ "22": {
80778
80551
  start: {
80779
- line: 87,
80552
+ line: 71,
80780
80553
  column: 12
80781
80554
  },
80782
80555
  end: {
80783
- line: 87,
80556
+ line: 71,
80784
80557
  column: 86
80785
80558
  }
80786
80559
  },
80787
- "28": {
80560
+ "23": {
80788
80561
  start: {
80789
- line: 92,
80562
+ line: 76,
80790
80563
  column: 12
80791
80564
  },
80792
80565
  end: {
80793
- line: 92,
80566
+ line: 76,
80794
80567
  column: 49
80795
80568
  }
80796
80569
  },
80797
- "29": {
80570
+ "24": {
80798
80571
  start: {
80799
- line: 94,
80572
+ line: 78,
80800
80573
  column: 35
80801
80574
  },
80802
80575
  end: {
80803
- line: 94,
80576
+ line: 78,
80804
80577
  column: 54
80805
80578
  }
80806
80579
  },
80807
- "30": {
80580
+ "25": {
80808
80581
  start: {
80809
- line: 96,
80582
+ line: 80,
80810
80583
  column: 12
80811
80584
  },
80812
80585
  end: {
80813
- line: 119,
80586
+ line: 103,
80814
80587
  column: 15
80815
80588
  }
80816
80589
  },
80817
- "31": {
80590
+ "26": {
80818
80591
  start: {
80819
- line: 97,
80592
+ line: 81,
80820
80593
  column: 30
80821
80594
  },
80822
80595
  end: {
80823
- line: 97,
80596
+ line: 81,
80824
80597
  column: 89
80825
80598
  }
80826
80599
  },
80827
- "32": {
80600
+ "27": {
80828
80601
  start: {
80829
- line: 99,
80602
+ line: 83,
80830
80603
  column: 16
80831
80604
  },
80832
80605
  end: {
80833
- line: 118,
80606
+ line: 102,
80834
80607
  column: 17
80835
80608
  }
80836
80609
  },
80837
- "33": {
80610
+ "28": {
80838
80611
  start: {
80839
- line: 100,
80612
+ line: 84,
80840
80613
  column: 20
80841
80614
  },
80842
80615
  end: {
80843
- line: 117,
80616
+ line: 101,
80844
80617
  column: 21
80845
80618
  }
80846
80619
  },
80847
- "34": {
80620
+ "29": {
80848
80621
  start: {
80849
- line: 101,
80622
+ line: 85,
80850
80623
  column: 43
80851
80624
  },
80852
80625
  end: {
80853
- line: 101,
80626
+ line: 85,
80854
80627
  column: 85
80855
80628
  }
80856
80629
  },
80857
- "35": {
80630
+ "30": {
80858
80631
  start: {
80859
- line: 102,
80632
+ line: 86,
80860
80633
  column: 24
80861
80634
  },
80862
80635
  end: {
80863
- line: 112,
80636
+ line: 96,
80864
80637
  column: 25
80865
80638
  }
80866
80639
  },
80867
- "36": {
80640
+ "31": {
80868
80641
  start: {
80869
- line: 104,
80642
+ line: 88,
80870
80643
  column: 28
80871
80644
  },
80872
80645
  end: {
80873
- line: 111,
80646
+ line: 95,
80874
80647
  column: 29
80875
80648
  }
80876
80649
  },
80877
- "37": {
80650
+ "32": {
80878
80651
  start: {
80879
- line: 105,
80652
+ line: 89,
80880
80653
  column: 32
80881
80654
  },
80882
80655
  end: {
80883
- line: 107,
80656
+ line: 91,
80884
80657
  column: 105
80885
80658
  }
80886
80659
  },
80887
- "38": {
80660
+ "33": {
80888
80661
  start: {
80889
- line: 110,
80662
+ line: 94,
80890
80663
  column: 32
80891
80664
  },
80892
80665
  end: {
80893
- line: 110,
80666
+ line: 94,
80894
80667
  column: 125
80895
80668
  }
80896
80669
  },
80897
- "39": {
80670
+ "34": {
80898
80671
  start: {
80899
- line: 116,
80672
+ line: 100,
80900
80673
  column: 24
80901
80674
  },
80902
80675
  end: {
80903
- line: 116,
80676
+ line: 100,
80904
80677
  column: 89
80905
80678
  }
80906
80679
  },
80907
- "40": {
80680
+ "35": {
80908
80681
  start: {
80909
- line: 125,
80682
+ line: 109,
80910
80683
  column: 8
80911
80684
  },
80912
80685
  end: {
80913
- line: 125,
80686
+ line: 109,
80914
80687
  column: 47
80915
80688
  }
80916
80689
  }
@@ -80958,7 +80731,7 @@ function cov_wqxd4hn8r() {
80958
80731
  column: 23
80959
80732
  },
80960
80733
  end: {
80961
- line: 43,
80734
+ line: 20,
80962
80735
  column: 9
80963
80736
  }
80964
80737
  },
@@ -80968,169 +80741,169 @@ function cov_wqxd4hn8r() {
80968
80741
  name: "(anonymous_2)",
80969
80742
  decl: {
80970
80743
  start: {
80971
- line: 46,
80744
+ line: 23,
80972
80745
  column: 13
80973
80746
  },
80974
80747
  end: {
80975
- line: 46,
80748
+ line: 23,
80976
80749
  column: 14
80977
80750
  }
80978
80751
  },
80979
80752
  loc: {
80980
80753
  start: {
80981
- line: 46,
80754
+ line: 23,
80982
80755
  column: 19
80983
80756
  },
80984
80757
  end: {
80985
- line: 46,
80758
+ line: 23,
80986
80759
  column: 49
80987
80760
  }
80988
80761
  },
80989
- line: 46
80762
+ line: 23
80990
80763
  },
80991
80764
  "3": {
80992
80765
  name: "(anonymous_3)",
80993
80766
  decl: {
80994
80767
  start: {
80995
- line: 47,
80768
+ line: 24,
80996
80769
  column: 13
80997
80770
  },
80998
80771
  end: {
80999
- line: 47,
80772
+ line: 24,
81000
80773
  column: 14
81001
80774
  }
81002
80775
  },
81003
80776
  loc: {
81004
80777
  start: {
81005
- line: 47,
80778
+ line: 24,
81006
80779
  column: 33
81007
80780
  },
81008
80781
  end: {
81009
- line: 49,
80782
+ line: 26,
81010
80783
  column: 9
81011
80784
  }
81012
80785
  },
81013
- line: 47
80786
+ line: 24
81014
80787
  },
81015
80788
  "4": {
81016
80789
  name: "(anonymous_4)",
81017
80790
  decl: {
81018
80791
  start: {
81019
- line: 60,
80792
+ line: 37,
81020
80793
  column: 12
81021
80794
  },
81022
80795
  end: {
81023
- line: 60,
80796
+ line: 37,
81024
80797
  column: 13
81025
80798
  }
81026
80799
  },
81027
80800
  loc: {
81028
80801
  start: {
81029
- line: 60,
80802
+ line: 37,
81030
80803
  column: 33
81031
80804
  },
81032
80805
  end: {
81033
- line: 72,
80806
+ line: 49,
81034
80807
  column: 13
81035
80808
  }
81036
80809
  },
81037
- line: 60
80810
+ line: 37
81038
80811
  },
81039
80812
  "5": {
81040
80813
  name: "(anonymous_5)",
81041
80814
  decl: {
81042
80815
  start: {
81043
- line: 76,
80816
+ line: 53,
81044
80817
  column: 8
81045
80818
  },
81046
80819
  end: {
81047
- line: 76,
80820
+ line: 53,
81048
80821
  column: 9
81049
80822
  }
81050
80823
  },
81051
80824
  loc: {
81052
80825
  start: {
81053
- line: 76,
80826
+ line: 53,
81054
80827
  column: 30
81055
80828
  },
81056
80829
  end: {
81057
- line: 88,
80830
+ line: 72,
81058
80831
  column: 9
81059
80832
  }
81060
80833
  },
81061
- line: 76
80834
+ line: 53
81062
80835
  },
81063
80836
  "6": {
81064
80837
  name: "(anonymous_6)",
81065
80838
  decl: {
81066
80839
  start: {
81067
- line: 89,
80840
+ line: 73,
81068
80841
  column: 8
81069
80842
  },
81070
80843
  end: {
81071
- line: 89,
80844
+ line: 73,
81072
80845
  column: 9
81073
80846
  }
81074
80847
  },
81075
80848
  loc: {
81076
80849
  start: {
81077
- line: 89,
80850
+ line: 73,
81078
80851
  column: 22
81079
80852
  },
81080
80853
  end: {
81081
- line: 120,
80854
+ line: 104,
81082
80855
  column: 9
81083
80856
  }
81084
80857
  },
81085
- line: 89
80858
+ line: 73
81086
80859
  },
81087
80860
  "7": {
81088
80861
  name: "(anonymous_7)",
81089
80862
  decl: {
81090
80863
  start: {
81091
- line: 96,
80864
+ line: 80,
81092
80865
  column: 27
81093
80866
  },
81094
80867
  end: {
81095
- line: 96,
80868
+ line: 80,
81096
80869
  column: 28
81097
80870
  }
81098
80871
  },
81099
80872
  loc: {
81100
80873
  start: {
81101
- line: 96,
80874
+ line: 80,
81102
80875
  column: 33
81103
80876
  },
81104
80877
  end: {
81105
- line: 119,
80878
+ line: 103,
81106
80879
  column: 13
81107
80880
  }
81108
80881
  },
81109
- line: 96
80882
+ line: 80
81110
80883
  },
81111
80884
  "8": {
81112
80885
  name: "(anonymous_8)",
81113
80886
  decl: {
81114
80887
  start: {
81115
- line: 124,
80888
+ line: 108,
81116
80889
  column: 4
81117
80890
  },
81118
80891
  end: {
81119
- line: 124,
80892
+ line: 108,
81120
80893
  column: 5
81121
80894
  }
81122
80895
  },
81123
80896
  loc: {
81124
80897
  start: {
81125
- line: 124,
80898
+ line: 108,
81126
80899
  column: 15
81127
80900
  },
81128
80901
  end: {
81129
- line: 126,
80902
+ line: 110,
81130
80903
  column: 5
81131
80904
  }
81132
80905
  },
81133
- line: 124
80906
+ line: 108
81134
80907
  }
81135
80908
  },
81136
80909
  branchMap: {
@@ -81169,240 +80942,24 @@ function cov_wqxd4hn8r() {
81169
80942
  },
81170
80943
  "1": {
81171
80944
  loc: {
81172
- start: {
81173
- line: 21,
81174
- column: 12
81175
- },
81176
- end: {
81177
- line: 42,
81178
- column: 13
81179
- }
81180
- },
81181
- type: "if",
81182
- locations: [{
81183
- start: {
81184
- line: 21,
81185
- column: 12
81186
- },
81187
- end: {
81188
- line: 42,
81189
- column: 13
81190
- }
81191
- }, {
81192
80945
  start: {
81193
80946
  line: 39,
81194
- column: 17
81195
- },
81196
- end: {
81197
- line: 42,
81198
- column: 13
81199
- }
81200
- }],
81201
- line: 21
81202
- },
81203
- "2": {
81204
- loc: {
81205
- start: {
81206
- line: 21,
81207
- column: 16
81208
- },
81209
- end: {
81210
- line: 24,
81211
- column: 76
81212
- }
81213
- },
81214
- type: "binary-expr",
81215
- locations: [{
81216
- start: {
81217
- line: 21,
81218
- column: 16
81219
- },
81220
- end: {
81221
- line: 21,
81222
- column: 29
81223
- }
81224
- }, {
81225
- start: {
81226
- line: 22,
81227
80947
  column: 16
81228
80948
  },
81229
80949
  end: {
81230
- line: 22,
81231
- column: 37
81232
- }
81233
- }, {
81234
- start: {
81235
- line: 23,
81236
- column: 17
81237
- },
81238
- end: {
81239
- line: 23,
81240
- column: 122
81241
- }
81242
- }, {
81243
- start: {
81244
- line: 24,
81245
- column: 20
81246
- },
81247
- end: {
81248
- line: 24,
81249
- column: 75
81250
- }
81251
- }],
81252
- line: 21
81253
- },
81254
- "3": {
81255
- loc: {
81256
- start: {
81257
- line: 23,
81258
- column: 36
81259
- },
81260
- end: {
81261
- line: 23,
81262
- column: 121
81263
- }
81264
- },
81265
- type: "cond-expr",
81266
- locations: [{
81267
- start: {
81268
- line: 23,
81269
- column: 91
81270
- },
81271
- end: {
81272
- line: 23,
81273
- column: 97
81274
- }
81275
- }, {
81276
- start: {
81277
- line: 23,
81278
- column: 100
81279
- },
81280
- end: {
81281
- line: 23,
81282
- column: 121
81283
- }
81284
- }],
81285
- line: 23
81286
- },
81287
- "4": {
81288
- loc: {
81289
- start: {
81290
- line: 23,
81291
- column: 36
81292
- },
81293
- end: {
81294
- line: 23,
81295
- column: 88
81296
- }
81297
- },
81298
- type: "binary-expr",
81299
- locations: [{
81300
- start: {
81301
- line: 23,
81302
- column: 36
81303
- },
81304
- end: {
81305
- line: 23,
81306
- column: 59
81307
- }
81308
- }, {
81309
- start: {
81310
- line: 23,
81311
- column: 63
81312
- },
81313
- end: {
81314
- line: 23,
81315
- column: 88
81316
- }
81317
- }],
81318
- line: 23
81319
- },
81320
- "5": {
81321
- loc: {
81322
- start: {
81323
- line: 31,
81324
- column: 16
81325
- },
81326
- end: {
81327
- line: 36,
80950
+ line: 48,
81328
80951
  column: 17
81329
80952
  }
81330
80953
  },
81331
80954
  type: "if",
81332
80955
  locations: [{
81333
- start: {
81334
- line: 31,
81335
- column: 16
81336
- },
81337
- end: {
81338
- line: 36,
81339
- column: 17
81340
- }
81341
- }, {
81342
- start: {
81343
- line: undefined,
81344
- column: undefined
81345
- },
81346
- end: {
81347
- line: undefined,
81348
- column: undefined
81349
- }
81350
- }],
81351
- line: 31
81352
- },
81353
- "6": {
81354
- loc: {
81355
- start: {
81356
- line: 31,
81357
- column: 20
81358
- },
81359
- end: {
81360
- line: 32,
81361
- column: 63
81362
- }
81363
- },
81364
- type: "binary-expr",
81365
- locations: [{
81366
- start: {
81367
- line: 31,
81368
- column: 20
81369
- },
81370
- end: {
81371
- line: 31,
81372
- column: 60
81373
- }
81374
- }, {
81375
- start: {
81376
- line: 32,
81377
- column: 20
81378
- },
81379
- end: {
81380
- line: 32,
81381
- column: 63
81382
- }
81383
- }],
81384
- line: 31
81385
- },
81386
- "7": {
81387
- loc: {
81388
80956
  start: {
81389
80957
  line: 39,
81390
- column: 17
80958
+ column: 16
81391
80959
  },
81392
80960
  end: {
81393
- line: 42,
81394
- column: 13
81395
- }
81396
- },
81397
- type: "if",
81398
- locations: [{
81399
- start: {
81400
- line: 39,
80961
+ line: 48,
81401
80962
  column: 17
81402
- },
81403
- end: {
81404
- line: 42,
81405
- column: 13
81406
80963
  }
81407
80964
  }, {
81408
80965
  start: {
@@ -81416,820 +80973,754 @@ function cov_wqxd4hn8r() {
81416
80973
  }],
81417
80974
  line: 39
81418
80975
  },
81419
- "8": {
80976
+ "2": {
81420
80977
  loc: {
81421
80978
  start: {
81422
80979
  line: 39,
81423
- column: 21
81424
- },
81425
- end: {
81426
- line: 39,
81427
- column: 61
81428
- }
81429
- },
81430
- type: "binary-expr",
81431
- locations: [{
81432
- start: {
81433
- line: 39,
81434
- column: 21
81435
- },
81436
- end: {
81437
- line: 39,
81438
- column: 35
81439
- }
81440
- }, {
81441
- start: {
81442
- line: 39,
81443
- column: 39
81444
- },
81445
- end: {
81446
- line: 39,
81447
- column: 61
81448
- }
81449
- }],
81450
- line: 39
81451
- },
81452
- "9": {
81453
- loc: {
81454
- start: {
81455
- line: 62,
81456
- column: 16
81457
- },
81458
- end: {
81459
- line: 71,
81460
- column: 17
81461
- }
81462
- },
81463
- type: "if",
81464
- locations: [{
81465
- start: {
81466
- line: 62,
81467
- column: 16
81468
- },
81469
- end: {
81470
- line: 71,
81471
- column: 17
81472
- }
81473
- }, {
81474
- start: {
81475
- line: undefined,
81476
- column: undefined
81477
- },
81478
- end: {
81479
- line: undefined,
81480
- column: undefined
81481
- }
81482
- }],
81483
- line: 62
81484
- },
81485
- "10": {
81486
- loc: {
81487
- start: {
81488
- line: 62,
81489
80980
  column: 20
81490
80981
  },
81491
80982
  end: {
81492
- line: 69,
80983
+ line: 46,
81493
80984
  column: 114
81494
80985
  }
81495
80986
  },
81496
80987
  type: "binary-expr",
81497
80988
  locations: [{
81498
80989
  start: {
81499
- line: 62,
80990
+ line: 39,
81500
80991
  column: 21
81501
80992
  },
81502
80993
  end: {
81503
- line: 62,
80994
+ line: 39,
81504
80995
  column: 73
81505
80996
  }
81506
80997
  }, {
81507
80998
  start: {
81508
- line: 63,
80999
+ line: 40,
81509
81000
  column: 21
81510
81001
  },
81511
81002
  end: {
81512
- line: 63,
81003
+ line: 40,
81513
81004
  column: 81
81514
81005
  }
81515
81006
  }, {
81516
81007
  start: {
81517
- line: 64,
81008
+ line: 41,
81518
81009
  column: 21
81519
81010
  },
81520
81011
  end: {
81521
- line: 64,
81012
+ line: 41,
81522
81013
  column: 143
81523
81014
  }
81524
81015
  }, {
81525
81016
  start: {
81526
- line: 65,
81017
+ line: 42,
81527
81018
  column: 24
81528
81019
  },
81529
81020
  end: {
81530
- line: 65,
81021
+ line: 42,
81531
81022
  column: 162
81532
81023
  }
81533
81024
  }, {
81534
81025
  start: {
81535
- line: 66,
81026
+ line: 43,
81536
81027
  column: 24
81537
81028
  },
81538
81029
  end: {
81539
- line: 67,
81030
+ line: 44,
81540
81031
  column: 114
81541
81032
  }
81542
81033
  }, {
81543
81034
  start: {
81544
- line: 68,
81035
+ line: 45,
81545
81036
  column: 24
81546
81037
  },
81547
81038
  end: {
81548
- line: 69,
81039
+ line: 46,
81549
81040
  column: 113
81550
81041
  }
81551
81042
  }],
81552
- line: 62
81043
+ line: 39
81553
81044
  },
81554
- "11": {
81045
+ "3": {
81555
81046
  loc: {
81556
81047
  start: {
81557
- line: 62,
81048
+ line: 39,
81558
81049
  column: 21
81559
81050
  },
81560
81051
  end: {
81561
- line: 62,
81052
+ line: 39,
81562
81053
  column: 73
81563
81054
  }
81564
81055
  },
81565
81056
  type: "cond-expr",
81566
81057
  locations: [{
81567
81058
  start: {
81568
- line: 62,
81059
+ line: 39,
81569
81060
  column: 54
81570
81061
  },
81571
81062
  end: {
81572
- line: 62,
81063
+ line: 39,
81573
81064
  column: 60
81574
81065
  }
81575
81066
  }, {
81576
81067
  start: {
81577
- line: 62,
81068
+ line: 39,
81578
81069
  column: 63
81579
81070
  },
81580
81071
  end: {
81581
- line: 62,
81072
+ line: 39,
81582
81073
  column: 73
81583
81074
  }
81584
81075
  }],
81585
- line: 62
81076
+ line: 39
81586
81077
  },
81587
- "12": {
81078
+ "4": {
81588
81079
  loc: {
81589
81080
  start: {
81590
- line: 62,
81081
+ line: 39,
81591
81082
  column: 21
81592
81083
  },
81593
81084
  end: {
81594
- line: 62,
81085
+ line: 39,
81595
81086
  column: 51
81596
81087
  }
81597
81088
  },
81598
81089
  type: "binary-expr",
81599
81090
  locations: [{
81600
81091
  start: {
81601
- line: 62,
81092
+ line: 39,
81602
81093
  column: 21
81603
81094
  },
81604
81095
  end: {
81605
- line: 62,
81096
+ line: 39,
81606
81097
  column: 33
81607
81098
  }
81608
81099
  }, {
81609
81100
  start: {
81610
- line: 62,
81101
+ line: 39,
81611
81102
  column: 37
81612
81103
  },
81613
81104
  end: {
81614
- line: 62,
81105
+ line: 39,
81615
81106
  column: 51
81616
81107
  }
81617
81108
  }],
81618
- line: 62
81109
+ line: 39
81619
81110
  },
81620
- "13": {
81111
+ "5": {
81621
81112
  loc: {
81622
81113
  start: {
81623
- line: 63,
81114
+ line: 40,
81624
81115
  column: 21
81625
81116
  },
81626
81117
  end: {
81627
- line: 63,
81118
+ line: 40,
81628
81119
  column: 81
81629
81120
  }
81630
81121
  },
81631
81122
  type: "cond-expr",
81632
81123
  locations: [{
81633
81124
  start: {
81634
- line: 63,
81125
+ line: 40,
81635
81126
  column: 54
81636
81127
  },
81637
81128
  end: {
81638
- line: 63,
81129
+ line: 40,
81639
81130
  column: 60
81640
81131
  }
81641
81132
  }, {
81642
81133
  start: {
81643
- line: 63,
81134
+ line: 40,
81644
81135
  column: 63
81645
81136
  },
81646
81137
  end: {
81647
- line: 63,
81138
+ line: 40,
81648
81139
  column: 81
81649
81140
  }
81650
81141
  }],
81651
- line: 63
81142
+ line: 40
81652
81143
  },
81653
- "14": {
81144
+ "6": {
81654
81145
  loc: {
81655
81146
  start: {
81656
- line: 63,
81147
+ line: 40,
81657
81148
  column: 21
81658
81149
  },
81659
81150
  end: {
81660
- line: 63,
81151
+ line: 40,
81661
81152
  column: 51
81662
81153
  }
81663
81154
  },
81664
81155
  type: "binary-expr",
81665
81156
  locations: [{
81666
81157
  start: {
81667
- line: 63,
81158
+ line: 40,
81668
81159
  column: 21
81669
81160
  },
81670
81161
  end: {
81671
- line: 63,
81162
+ line: 40,
81672
81163
  column: 33
81673
81164
  }
81674
81165
  }, {
81675
81166
  start: {
81676
- line: 63,
81167
+ line: 40,
81677
81168
  column: 37
81678
81169
  },
81679
81170
  end: {
81680
- line: 63,
81171
+ line: 40,
81681
81172
  column: 51
81682
81173
  }
81683
81174
  }],
81684
- line: 63
81175
+ line: 40
81685
81176
  },
81686
- "15": {
81177
+ "7": {
81687
81178
  loc: {
81688
81179
  start: {
81689
- line: 64,
81180
+ line: 41,
81690
81181
  column: 22
81691
81182
  },
81692
81183
  end: {
81693
- line: 64,
81184
+ line: 41,
81694
81185
  column: 74
81695
81186
  }
81696
81187
  },
81697
81188
  type: "cond-expr",
81698
81189
  locations: [{
81699
81190
  start: {
81700
- line: 64,
81191
+ line: 41,
81701
81192
  column: 55
81702
81193
  },
81703
81194
  end: {
81704
- line: 64,
81195
+ line: 41,
81705
81196
  column: 61
81706
81197
  }
81707
81198
  }, {
81708
81199
  start: {
81709
- line: 64,
81200
+ line: 41,
81710
81201
  column: 64
81711
81202
  },
81712
81203
  end: {
81713
- line: 64,
81204
+ line: 41,
81714
81205
  column: 74
81715
81206
  }
81716
81207
  }],
81717
- line: 64
81208
+ line: 41
81718
81209
  },
81719
- "16": {
81210
+ "8": {
81720
81211
  loc: {
81721
81212
  start: {
81722
- line: 64,
81213
+ line: 41,
81723
81214
  column: 22
81724
81215
  },
81725
81216
  end: {
81726
- line: 64,
81217
+ line: 41,
81727
81218
  column: 52
81728
81219
  }
81729
81220
  },
81730
81221
  type: "binary-expr",
81731
81222
  locations: [{
81732
81223
  start: {
81733
- line: 64,
81224
+ line: 41,
81734
81225
  column: 22
81735
81226
  },
81736
81227
  end: {
81737
- line: 64,
81228
+ line: 41,
81738
81229
  column: 34
81739
81230
  }
81740
81231
  }, {
81741
81232
  start: {
81742
- line: 64,
81233
+ line: 41,
81743
81234
  column: 38
81744
81235
  },
81745
81236
  end: {
81746
- line: 64,
81237
+ line: 41,
81747
81238
  column: 52
81748
81239
  }
81749
81240
  }],
81750
- line: 64
81241
+ line: 41
81751
81242
  },
81752
- "17": {
81243
+ "9": {
81753
81244
  loc: {
81754
81245
  start: {
81755
- line: 64,
81246
+ line: 41,
81756
81247
  column: 81
81757
81248
  },
81758
81249
  end: {
81759
- line: 64,
81250
+ line: 41,
81760
81251
  column: 142
81761
81252
  }
81762
81253
  },
81763
81254
  type: "cond-expr",
81764
81255
  locations: [{
81765
81256
  start: {
81766
- line: 64,
81257
+ line: 41,
81767
81258
  column: 120
81768
81259
  },
81769
81260
  end: {
81770
- line: 64,
81261
+ line: 41,
81771
81262
  column: 126
81772
81263
  }
81773
81264
  }, {
81774
81265
  start: {
81775
- line: 64,
81266
+ line: 41,
81776
81267
  column: 129
81777
81268
  },
81778
81269
  end: {
81779
- line: 64,
81270
+ line: 41,
81780
81271
  column: 142
81781
81272
  }
81782
81273
  }],
81783
- line: 64
81274
+ line: 41
81784
81275
  },
81785
- "18": {
81276
+ "10": {
81786
81277
  loc: {
81787
81278
  start: {
81788
- line: 64,
81279
+ line: 41,
81789
81280
  column: 81
81790
81281
  },
81791
81282
  end: {
81792
- line: 64,
81283
+ line: 41,
81793
81284
  column: 117
81794
81285
  }
81795
81286
  },
81796
81287
  type: "binary-expr",
81797
81288
  locations: [{
81798
81289
  start: {
81799
- line: 64,
81290
+ line: 41,
81800
81291
  column: 81
81801
81292
  },
81802
81293
  end: {
81803
- line: 64,
81294
+ line: 41,
81804
81295
  column: 96
81805
81296
  }
81806
81297
  }, {
81807
81298
  start: {
81808
- line: 64,
81299
+ line: 41,
81809
81300
  column: 100
81810
81301
  },
81811
81302
  end: {
81812
- line: 64,
81303
+ line: 41,
81813
81304
  column: 117
81814
81305
  }
81815
81306
  }],
81816
- line: 64
81307
+ line: 41
81817
81308
  },
81818
- "19": {
81309
+ "11": {
81819
81310
  loc: {
81820
81311
  start: {
81821
- line: 65,
81312
+ line: 42,
81822
81313
  column: 25
81823
81314
  },
81824
81315
  end: {
81825
- line: 65,
81316
+ line: 42,
81826
81317
  column: 85
81827
81318
  }
81828
81319
  },
81829
81320
  type: "cond-expr",
81830
81321
  locations: [{
81831
81322
  start: {
81832
- line: 65,
81323
+ line: 42,
81833
81324
  column: 58
81834
81325
  },
81835
81326
  end: {
81836
- line: 65,
81327
+ line: 42,
81837
81328
  column: 64
81838
81329
  }
81839
81330
  }, {
81840
81331
  start: {
81841
- line: 65,
81332
+ line: 42,
81842
81333
  column: 67
81843
81334
  },
81844
81335
  end: {
81845
- line: 65,
81336
+ line: 42,
81846
81337
  column: 85
81847
81338
  }
81848
81339
  }],
81849
- line: 65
81340
+ line: 42
81850
81341
  },
81851
- "20": {
81342
+ "12": {
81852
81343
  loc: {
81853
81344
  start: {
81854
- line: 65,
81345
+ line: 42,
81855
81346
  column: 25
81856
81347
  },
81857
81348
  end: {
81858
- line: 65,
81349
+ line: 42,
81859
81350
  column: 55
81860
81351
  }
81861
81352
  },
81862
81353
  type: "binary-expr",
81863
81354
  locations: [{
81864
81355
  start: {
81865
- line: 65,
81356
+ line: 42,
81866
81357
  column: 25
81867
81358
  },
81868
81359
  end: {
81869
- line: 65,
81360
+ line: 42,
81870
81361
  column: 37
81871
81362
  }
81872
81363
  }, {
81873
81364
  start: {
81874
- line: 65,
81365
+ line: 42,
81875
81366
  column: 41
81876
81367
  },
81877
81368
  end: {
81878
- line: 65,
81369
+ line: 42,
81879
81370
  column: 55
81880
81371
  }
81881
81372
  }],
81882
- line: 65
81373
+ line: 42
81883
81374
  },
81884
- "21": {
81375
+ "13": {
81885
81376
  loc: {
81886
81377
  start: {
81887
- line: 65,
81378
+ line: 42,
81888
81379
  column: 92
81889
81380
  },
81890
81381
  end: {
81891
- line: 65,
81382
+ line: 42,
81892
81383
  column: 161
81893
81384
  }
81894
81385
  },
81895
81386
  type: "cond-expr",
81896
81387
  locations: [{
81897
81388
  start: {
81898
- line: 65,
81389
+ line: 42,
81899
81390
  column: 131
81900
81391
  },
81901
81392
  end: {
81902
- line: 65,
81393
+ line: 42,
81903
81394
  column: 137
81904
81395
  }
81905
81396
  }, {
81906
81397
  start: {
81907
- line: 65,
81398
+ line: 42,
81908
81399
  column: 140
81909
81400
  },
81910
81401
  end: {
81911
- line: 65,
81402
+ line: 42,
81912
81403
  column: 161
81913
81404
  }
81914
81405
  }],
81915
- line: 65
81406
+ line: 42
81916
81407
  },
81917
- "22": {
81408
+ "14": {
81918
81409
  loc: {
81919
81410
  start: {
81920
- line: 65,
81411
+ line: 42,
81921
81412
  column: 92
81922
81413
  },
81923
81414
  end: {
81924
- line: 65,
81415
+ line: 42,
81925
81416
  column: 128
81926
81417
  }
81927
81418
  },
81928
81419
  type: "binary-expr",
81929
81420
  locations: [{
81930
81421
  start: {
81931
- line: 65,
81422
+ line: 42,
81932
81423
  column: 92
81933
81424
  },
81934
81425
  end: {
81935
- line: 65,
81426
+ line: 42,
81936
81427
  column: 107
81937
81428
  }
81938
81429
  }, {
81939
81430
  start: {
81940
- line: 65,
81431
+ line: 42,
81941
81432
  column: 111
81942
81433
  },
81943
81434
  end: {
81944
- line: 65,
81435
+ line: 42,
81945
81436
  column: 128
81946
81437
  }
81947
81438
  }],
81948
- line: 65
81439
+ line: 42
81949
81440
  },
81950
- "23": {
81441
+ "15": {
81951
81442
  loc: {
81952
81443
  start: {
81953
- line: 66,
81444
+ line: 43,
81954
81445
  column: 39
81955
81446
  },
81956
81447
  end: {
81957
- line: 66,
81448
+ line: 43,
81958
81449
  column: 100
81959
81450
  }
81960
81451
  },
81961
81452
  type: "cond-expr",
81962
81453
  locations: [{
81963
81454
  start: {
81964
- line: 66,
81455
+ line: 43,
81965
81456
  column: 72
81966
81457
  },
81967
81458
  end: {
81968
- line: 66,
81459
+ line: 43,
81969
81460
  column: 78
81970
81461
  }
81971
81462
  }, {
81972
81463
  start: {
81973
- line: 66,
81464
+ line: 43,
81974
81465
  column: 81
81975
81466
  },
81976
81467
  end: {
81977
- line: 66,
81468
+ line: 43,
81978
81469
  column: 100
81979
81470
  }
81980
81471
  }],
81981
- line: 66
81472
+ line: 43
81982
81473
  },
81983
- "24": {
81474
+ "16": {
81984
81475
  loc: {
81985
81476
  start: {
81986
- line: 66,
81477
+ line: 43,
81987
81478
  column: 39
81988
81479
  },
81989
81480
  end: {
81990
- line: 66,
81481
+ line: 43,
81991
81482
  column: 69
81992
81483
  }
81993
81484
  },
81994
81485
  type: "binary-expr",
81995
81486
  locations: [{
81996
81487
  start: {
81997
- line: 66,
81488
+ line: 43,
81998
81489
  column: 39
81999
81490
  },
82000
81491
  end: {
82001
- line: 66,
81492
+ line: 43,
82002
81493
  column: 51
82003
81494
  }
82004
81495
  }, {
82005
81496
  start: {
82006
- line: 66,
81497
+ line: 43,
82007
81498
  column: 55
82008
81499
  },
82009
81500
  end: {
82010
- line: 66,
81501
+ line: 43,
82011
81502
  column: 69
82012
81503
  }
82013
81504
  }],
82014
- line: 66
81505
+ line: 43
82015
81506
  },
82016
- "25": {
81507
+ "17": {
82017
81508
  loc: {
82018
81509
  start: {
82019
- line: 67,
81510
+ line: 44,
82020
81511
  column: 43
82021
81512
  },
82022
81513
  end: {
82023
- line: 67,
81514
+ line: 44,
82024
81515
  column: 113
82025
81516
  }
82026
81517
  },
82027
81518
  type: "cond-expr",
82028
81519
  locations: [{
82029
81520
  start: {
82030
- line: 67,
81521
+ line: 44,
82031
81522
  column: 82
82032
81523
  },
82033
81524
  end: {
82034
- line: 67,
81525
+ line: 44,
82035
81526
  column: 88
82036
81527
  }
82037
81528
  }, {
82038
81529
  start: {
82039
- line: 67,
81530
+ line: 44,
82040
81531
  column: 91
82041
81532
  },
82042
81533
  end: {
82043
- line: 67,
81534
+ line: 44,
82044
81535
  column: 113
82045
81536
  }
82046
81537
  }],
82047
- line: 67
81538
+ line: 44
82048
81539
  },
82049
- "26": {
81540
+ "18": {
82050
81541
  loc: {
82051
81542
  start: {
82052
- line: 67,
81543
+ line: 44,
82053
81544
  column: 43
82054
81545
  },
82055
81546
  end: {
82056
- line: 67,
81547
+ line: 44,
82057
81548
  column: 79
82058
81549
  }
82059
81550
  },
82060
81551
  type: "binary-expr",
82061
81552
  locations: [{
82062
81553
  start: {
82063
- line: 67,
81554
+ line: 44,
82064
81555
  column: 43
82065
81556
  },
82066
81557
  end: {
82067
- line: 67,
81558
+ line: 44,
82068
81559
  column: 58
82069
81560
  }
82070
81561
  }, {
82071
81562
  start: {
82072
- line: 67,
81563
+ line: 44,
82073
81564
  column: 62
82074
81565
  },
82075
81566
  end: {
82076
- line: 67,
81567
+ line: 44,
82077
81568
  column: 79
82078
81569
  }
82079
81570
  }],
82080
- line: 67
81571
+ line: 44
82081
81572
  },
82082
- "27": {
81573
+ "19": {
82083
81574
  loc: {
82084
81575
  start: {
82085
- line: 68,
81576
+ line: 45,
82086
81577
  column: 39
82087
81578
  },
82088
81579
  end: {
82089
- line: 68,
81580
+ line: 45,
82090
81581
  column: 99
82091
81582
  }
82092
81583
  },
82093
81584
  type: "cond-expr",
82094
81585
  locations: [{
82095
81586
  start: {
82096
- line: 68,
81587
+ line: 45,
82097
81588
  column: 72
82098
81589
  },
82099
81590
  end: {
82100
- line: 68,
81591
+ line: 45,
82101
81592
  column: 78
82102
81593
  }
82103
81594
  }, {
82104
81595
  start: {
82105
- line: 68,
81596
+ line: 45,
82106
81597
  column: 81
82107
81598
  },
82108
81599
  end: {
82109
- line: 68,
81600
+ line: 45,
82110
81601
  column: 99
82111
81602
  }
82112
81603
  }],
82113
- line: 68
81604
+ line: 45
82114
81605
  },
82115
- "28": {
81606
+ "20": {
82116
81607
  loc: {
82117
81608
  start: {
82118
- line: 68,
81609
+ line: 45,
82119
81610
  column: 39
82120
81611
  },
82121
81612
  end: {
82122
- line: 68,
81613
+ line: 45,
82123
81614
  column: 69
82124
81615
  }
82125
81616
  },
82126
81617
  type: "binary-expr",
82127
81618
  locations: [{
82128
81619
  start: {
82129
- line: 68,
81620
+ line: 45,
82130
81621
  column: 39
82131
81622
  },
82132
81623
  end: {
82133
- line: 68,
81624
+ line: 45,
82134
81625
  column: 51
82135
81626
  }
82136
81627
  }, {
82137
81628
  start: {
82138
- line: 68,
81629
+ line: 45,
82139
81630
  column: 55
82140
81631
  },
82141
81632
  end: {
82142
- line: 68,
81633
+ line: 45,
82143
81634
  column: 69
82144
81635
  }
82145
81636
  }],
82146
- line: 68
81637
+ line: 45
82147
81638
  },
82148
- "29": {
81639
+ "21": {
82149
81640
  loc: {
82150
81641
  start: {
82151
- line: 69,
81642
+ line: 46,
82152
81643
  column: 43
82153
81644
  },
82154
81645
  end: {
82155
- line: 69,
81646
+ line: 46,
82156
81647
  column: 112
82157
81648
  }
82158
81649
  },
82159
81650
  type: "cond-expr",
82160
81651
  locations: [{
82161
81652
  start: {
82162
- line: 69,
81653
+ line: 46,
82163
81654
  column: 82
82164
81655
  },
82165
81656
  end: {
82166
- line: 69,
81657
+ line: 46,
82167
81658
  column: 88
82168
81659
  }
82169
81660
  }, {
82170
81661
  start: {
82171
- line: 69,
81662
+ line: 46,
82172
81663
  column: 91
82173
81664
  },
82174
81665
  end: {
82175
- line: 69,
81666
+ line: 46,
82176
81667
  column: 112
82177
81668
  }
82178
81669
  }],
82179
- line: 69
81670
+ line: 46
82180
81671
  },
82181
- "30": {
81672
+ "22": {
82182
81673
  loc: {
82183
81674
  start: {
82184
- line: 69,
81675
+ line: 46,
82185
81676
  column: 43
82186
81677
  },
82187
81678
  end: {
82188
- line: 69,
81679
+ line: 46,
82189
81680
  column: 79
82190
81681
  }
82191
81682
  },
82192
81683
  type: "binary-expr",
82193
81684
  locations: [{
82194
81685
  start: {
82195
- line: 69,
81686
+ line: 46,
82196
81687
  column: 43
82197
81688
  },
82198
81689
  end: {
82199
- line: 69,
81690
+ line: 46,
82200
81691
  column: 58
82201
81692
  }
82202
81693
  }, {
82203
81694
  start: {
82204
- line: 69,
81695
+ line: 46,
82205
81696
  column: 62
82206
81697
  },
82207
81698
  end: {
82208
- line: 69,
81699
+ line: 46,
82209
81700
  column: 79
82210
81701
  }
82211
81702
  }],
82212
- line: 69
81703
+ line: 46
82213
81704
  },
82214
- "31": {
81705
+ "23": {
82215
81706
  loc: {
82216
81707
  start: {
82217
- line: 83,
81708
+ line: 54,
82218
81709
  column: 12
82219
81710
  },
82220
81711
  end: {
82221
- line: 85,
81712
+ line: 58,
82222
81713
  column: 13
82223
81714
  }
82224
81715
  },
82225
81716
  type: "if",
82226
81717
  locations: [{
82227
81718
  start: {
82228
- line: 83,
81719
+ line: 54,
82229
81720
  column: 12
82230
81721
  },
82231
81722
  end: {
82232
- line: 85,
81723
+ line: 58,
82233
81724
  column: 13
82234
81725
  }
82235
81726
  }, {
@@ -82242,40 +81733,139 @@ function cov_wqxd4hn8r() {
82242
81733
  column: undefined
82243
81734
  }
82244
81735
  }],
82245
- line: 83
81736
+ line: 54
82246
81737
  },
82247
- "32": {
81738
+ "24": {
82248
81739
  loc: {
82249
81740
  start: {
82250
- line: 104,
81741
+ line: 54,
81742
+ column: 16
81743
+ },
81744
+ end: {
81745
+ line: 54,
81746
+ column: 66
81747
+ }
81748
+ },
81749
+ type: "binary-expr",
81750
+ locations: [{
81751
+ start: {
81752
+ line: 54,
81753
+ column: 16
81754
+ },
81755
+ end: {
81756
+ line: 54,
81757
+ column: 35
81758
+ }
81759
+ }, {
81760
+ start: {
81761
+ line: 54,
81762
+ column: 39
81763
+ },
81764
+ end: {
81765
+ line: 54,
81766
+ column: 66
81767
+ }
81768
+ }],
81769
+ line: 54
81770
+ },
81771
+ "25": {
81772
+ loc: {
81773
+ start: {
81774
+ line: 65,
81775
+ column: 12
81776
+ },
81777
+ end: {
81778
+ line: 67,
81779
+ column: 13
81780
+ }
81781
+ },
81782
+ type: "if",
81783
+ locations: [{
81784
+ start: {
81785
+ line: 65,
81786
+ column: 12
81787
+ },
81788
+ end: {
81789
+ line: 67,
81790
+ column: 13
81791
+ }
81792
+ }, {
81793
+ start: {
81794
+ line: undefined,
81795
+ column: undefined
81796
+ },
81797
+ end: {
81798
+ line: undefined,
81799
+ column: undefined
81800
+ }
81801
+ }],
81802
+ line: 65
81803
+ },
81804
+ "26": {
81805
+ loc: {
81806
+ start: {
81807
+ line: 68,
81808
+ column: 77
81809
+ },
81810
+ end: {
81811
+ line: 70,
81812
+ column: 75
81813
+ }
81814
+ },
81815
+ type: "cond-expr",
81816
+ locations: [{
81817
+ start: {
81818
+ line: 69,
81819
+ column: 18
81820
+ },
81821
+ end: {
81822
+ line: 69,
81823
+ column: 45
81824
+ }
81825
+ }, {
81826
+ start: {
81827
+ line: 70,
81828
+ column: 18
81829
+ },
81830
+ end: {
81831
+ line: 70,
81832
+ column: 75
81833
+ }
81834
+ }],
81835
+ line: 68
81836
+ },
81837
+ "27": {
81838
+ loc: {
81839
+ start: {
81840
+ line: 88,
82251
81841
  column: 28
82252
81842
  },
82253
81843
  end: {
82254
- line: 111,
81844
+ line: 95,
82255
81845
  column: 29
82256
81846
  }
82257
81847
  },
82258
81848
  type: "if",
82259
81849
  locations: [{
82260
81850
  start: {
82261
- line: 104,
81851
+ line: 88,
82262
81852
  column: 28
82263
81853
  },
82264
81854
  end: {
82265
- line: 111,
81855
+ line: 95,
82266
81856
  column: 29
82267
81857
  }
82268
81858
  }, {
82269
81859
  start: {
82270
- line: 109,
81860
+ line: 93,
82271
81861
  column: 33
82272
81862
  },
82273
81863
  end: {
82274
- line: 111,
81864
+ line: 95,
82275
81865
  column: 29
82276
81866
  }
82277
81867
  }],
82278
- line: 104
81868
+ line: 88
82279
81869
  }
82280
81870
  },
82281
81871
  s: {
@@ -82314,12 +81904,7 @@ function cov_wqxd4hn8r() {
82314
81904
  "32": 0,
82315
81905
  "33": 0,
82316
81906
  "34": 0,
82317
- "35": 0,
82318
- "36": 0,
82319
- "37": 0,
82320
- "38": 0,
82321
- "39": 0,
82322
- "40": 0
81907
+ "35": 0
82323
81908
  },
82324
81909
  f: {
82325
81910
  "0": 0,
@@ -82335,7 +81920,7 @@ function cov_wqxd4hn8r() {
82335
81920
  b: {
82336
81921
  "0": [0, 0],
82337
81922
  "1": [0, 0],
82338
- "2": [0, 0, 0, 0],
81923
+ "2": [0, 0, 0, 0, 0, 0],
82339
81924
  "3": [0, 0],
82340
81925
  "4": [0, 0],
82341
81926
  "5": [0, 0],
@@ -82343,7 +81928,7 @@ function cov_wqxd4hn8r() {
82343
81928
  "7": [0, 0],
82344
81929
  "8": [0, 0],
82345
81930
  "9": [0, 0],
82346
- "10": [0, 0, 0, 0, 0, 0],
81931
+ "10": [0, 0],
82347
81932
  "11": [0, 0],
82348
81933
  "12": [0, 0],
82349
81934
  "13": [0, 0],
@@ -82360,15 +81945,10 @@ function cov_wqxd4hn8r() {
82360
81945
  "24": [0, 0],
82361
81946
  "25": [0, 0],
82362
81947
  "26": [0, 0],
82363
- "27": [0, 0],
82364
- "28": [0, 0],
82365
- "29": [0, 0],
82366
- "30": [0, 0],
82367
- "31": [0, 0],
82368
- "32": [0, 0]
81948
+ "27": [0, 0]
82369
81949
  },
82370
81950
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
82371
- hash: "c6317c4c333fb78c69502c4151152eeb621bdd85"
81951
+ hash: "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca"
82372
81952
  };
82373
81953
  var coverage = global[gcv] || (global[gcv] = {});
82374
81954
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -82410,76 +81990,43 @@ try {
82410
81990
  },
82411
81991
  set: config => {
82412
81992
  cov_wqxd4hn8r().f[1]++;
82413
- const previousConfig = (cov_wqxd4hn8r().s[5]++, Object(cloneDeep["a" /* default */])(window.RevolugoElements.config));
82414
- cov_wqxd4hn8r().s[6]++;
81993
+ cov_wqxd4hn8r().s[5]++;
82415
81994
  configMonitor.config = config;
82416
- cov_wqxd4hn8r().s[7]++;
82417
- 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))) {
82418
- cov_wqxd4hn8r().b[1][0]++;
82419
- // Update bookingApiClient
82420
- const apiClientConfig = (cov_wqxd4hn8r().s[8]++, {
82421
- apiKey: config.apiKey,
82422
- apiVersion: dist["a" /* ApiVersionEnum */].V1,
82423
- apiEnvironment: config.apiEnvironment
82424
- });
82425
- cov_wqxd4hn8r().s[9]++;
82426
- 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)) {
82427
- cov_wqxd4hn8r().b[5][0]++;
82428
- cov_wqxd4hn8r().s[10]++;
82429
- apiClientConfig.optionalHeaders = {
82430
- 'x-consumer-custom-id': Object({"NODE_ENV":"production","BASE_URL":"/"}).VUE_APP_X_CONSUMER_CUSTOM_ID
82431
- };
82432
- } else {
82433
- cov_wqxd4hn8r().b[5][1]++;
82434
- }
82435
- cov_wqxd4hn8r().s[11]++;
82436
- configMonitor.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
82437
- } else {
82438
- cov_wqxd4hn8r().b[1][1]++;
82439
- cov_wqxd4hn8r().s[12]++;
82440
- if ((cov_wqxd4hn8r().b[8][0]++, !config.apiKey) || (cov_wqxd4hn8r().b[8][1]++, !config.apiEnvironment)) {
82441
- cov_wqxd4hn8r().b[7][0]++;
82442
- cov_wqxd4hn8r().s[13]++;
82443
- configMonitor.bookingApiClient = undefined;
82444
- } else {
82445
- cov_wqxd4hn8r().b[7][1]++;
82446
- }
82447
- }
82448
81995
  }
82449
81996
  });
82450
- cov_wqxd4hn8r().s[14]++;
81997
+ cov_wqxd4hn8r().s[6]++;
82451
81998
  Object.defineProperty(window.RevolugoElements, 'bookingApiClient', {
82452
81999
  get: () => {
82453
82000
  cov_wqxd4hn8r().f[2]++;
82454
- cov_wqxd4hn8r().s[15]++;
82001
+ cov_wqxd4hn8r().s[7]++;
82455
82002
  return configMonitor.bookingApiClient;
82456
82003
  },
82457
82004
  set: bookingApiClient => {
82458
82005
  cov_wqxd4hn8r().f[3]++;
82459
- cov_wqxd4hn8r().s[16]++;
82006
+ cov_wqxd4hn8r().s[8]++;
82460
82007
  configMonitor.bookingApiClient = bookingApiClient;
82461
82008
  }
82462
82009
  });
82463
82010
  } catch (error) {
82464
- cov_wqxd4hn8r().s[17]++;
82011
+ cov_wqxd4hn8r().s[9]++;
82465
82012
  // eslint-disable-next-line no-console
82466
82013
  console.error('Error while setting up config', error);
82467
82014
  }
82468
- const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* default */].extend({
82015
+ const revolugoConfigMixin = (cov_wqxd4hn8r().s[10]++, vue_runtime_esm["a" /* default */].extend({
82469
82016
  watch: {
82470
82017
  config: {
82471
82018
  immediate: true,
82472
82019
  handler(val, oldVal) {
82473
82020
  cov_wqxd4hn8r().f[4]++;
82474
- cov_wqxd4hn8r().s[19]++;
82021
+ cov_wqxd4hn8r().s[11]++;
82475
82022
  this.applyConfig();
82476
- cov_wqxd4hn8r().s[20]++;
82477
- 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))))) {
82478
- cov_wqxd4hn8r().b[9][0]++;
82479
- cov_wqxd4hn8r().s[21]++;
82023
+ cov_wqxd4hn8r().s[12]++;
82024
+ 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))))) {
82025
+ cov_wqxd4hn8r().b[1][0]++;
82026
+ cov_wqxd4hn8r().s[13]++;
82480
82027
  this.updateBookingClient();
82481
82028
  } else {
82482
- cov_wqxd4hn8r().b[9][1]++;
82029
+ cov_wqxd4hn8r().b[1][1]++;
82483
82030
  }
82484
82031
  }
82485
82032
  }
@@ -82487,62 +82034,72 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
82487
82034
  methods: {
82488
82035
  updateBookingClient() {
82489
82036
  cov_wqxd4hn8r().f[5]++;
82490
- const apiClientConfig = (cov_wqxd4hn8r().s[22]++, {
82037
+ cov_wqxd4hn8r().s[14]++;
82038
+ if ((cov_wqxd4hn8r().b[24][0]++, !this.config.apiKey) || (cov_wqxd4hn8r().b[24][1]++, !this.config.apiEnvironment)) {
82039
+ cov_wqxd4hn8r().b[23][0]++;
82040
+ cov_wqxd4hn8r().s[15]++;
82041
+ window.RevolugoElements.bookingApiClient = undefined;
82042
+ cov_wqxd4hn8r().s[16]++;
82043
+ return;
82044
+ } else {
82045
+ cov_wqxd4hn8r().b[23][1]++;
82046
+ }
82047
+ const apiClientConfig = (cov_wqxd4hn8r().s[17]++, {
82491
82048
  apiEnvironment: this.config.apiEnvironment,
82492
82049
  apiKey: this.config.apiKey,
82493
82050
  apiVersion: dist["a" /* ApiVersionEnum */].V1
82494
82051
  });
82495
- const optionalHeaders = (cov_wqxd4hn8r().s[23]++, {});
82496
- cov_wqxd4hn8r().s[24]++;
82052
+ const optionalHeaders = (cov_wqxd4hn8r().s[18]++, {});
82053
+ cov_wqxd4hn8r().s[19]++;
82497
82054
  if (this.config.organizationId) {
82498
- cov_wqxd4hn8r().b[31][0]++;
82499
- cov_wqxd4hn8r().s[25]++;
82055
+ cov_wqxd4hn8r().b[25][0]++;
82056
+ cov_wqxd4hn8r().s[20]++;
82500
82057
  optionalHeaders['x-custom-organization'] = this.config.organizationId;
82501
82058
  } else {
82502
- cov_wqxd4hn8r().b[31][1]++;
82059
+ cov_wqxd4hn8r().b[25][1]++;
82503
82060
  }
82504
- cov_wqxd4hn8r().s[26]++;
82505
- apiClientConfig.optionalHeaders = Object.assign(optionalHeaders, this.config.optionalHeaders);
82506
- cov_wqxd4hn8r().s[27]++;
82061
+ cov_wqxd4hn8r().s[21]++;
82062
+ 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')));
82063
+ cov_wqxd4hn8r().s[22]++;
82507
82064
  window.RevolugoElements.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
82508
82065
  },
82509
82066
  applyConfig() {
82510
82067
  cov_wqxd4hn8r().f[6]++;
82511
- cov_wqxd4hn8r().s[28]++;
82068
+ cov_wqxd4hn8r().s[23]++;
82512
82069
  // Apply locale
82513
82070
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
82514
82071
  this.$i18n.locale = this.config.lang;
82515
82072
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
82516
82073
  const {
82517
82074
  shadowRoot
82518
- } = (cov_wqxd4hn8r().s[29]++, this.$root.$options);
82075
+ } = (cov_wqxd4hn8r().s[24]++, this.$root.$options);
82519
82076
  // Apply theme colors
82520
- cov_wqxd4hn8r().s[30]++;
82077
+ cov_wqxd4hn8r().s[25]++;
82521
82078
  this.$nextTick(() => {
82522
82079
  cov_wqxd4hn8r().f[7]++;
82523
- const theme = (cov_wqxd4hn8r().s[31]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
82080
+ const theme = (cov_wqxd4hn8r().s[26]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
82524
82081
  /* eslint-disable guard-for-in */
82525
- cov_wqxd4hn8r().s[32]++;
82082
+ cov_wqxd4hn8r().s[27]++;
82526
82083
  for (const key in theme) {
82527
- cov_wqxd4hn8r().s[33]++;
82084
+ cov_wqxd4hn8r().s[28]++;
82528
82085
  try {
82529
- const variations = (cov_wqxd4hn8r().s[34]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
82530
- cov_wqxd4hn8r().s[35]++;
82086
+ const variations = (cov_wqxd4hn8r().s[29]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
82087
+ cov_wqxd4hn8r().s[30]++;
82531
82088
  for (const variation in variations) {
82532
- cov_wqxd4hn8r().s[36]++;
82089
+ cov_wqxd4hn8r().s[31]++;
82533
82090
  /* eslint-disable max-depth */
82534
82091
  if (shadowRoot) {
82535
- cov_wqxd4hn8r().b[32][0]++;
82536
- cov_wqxd4hn8r().s[37]++;
82092
+ cov_wqxd4hn8r().b[27][0]++;
82093
+ cov_wqxd4hn8r().s[32]++;
82537
82094
  shadowRoot.querySelector('#app').style.setProperty(`--v-${key}-${variation}`, variations[variation]);
82538
82095
  } else {
82539
- cov_wqxd4hn8r().b[32][1]++;
82540
- cov_wqxd4hn8r().s[38]++;
82096
+ cov_wqxd4hn8r().b[27][1]++;
82097
+ cov_wqxd4hn8r().s[33]++;
82541
82098
  document.documentElement.style.setProperty(`--v-${key}-${variation}`, variations[variation]);
82542
82099
  }
82543
82100
  }
82544
82101
  } catch (error) {
82545
- cov_wqxd4hn8r().s[39]++;
82102
+ cov_wqxd4hn8r().s[34]++;
82546
82103
  // eslint-disable-next-line no-console
82547
82104
  console.error('cannot apply theme colors with name', key, error);
82548
82105
  }
@@ -82554,7 +82111,7 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
82554
82111
  /* harmony default export */ var revolugo_config = ({
82555
82112
  install(V) {
82556
82113
  cov_wqxd4hn8r().f[8]++;
82557
- cov_wqxd4hn8r().s[40]++;
82114
+ cov_wqxd4hn8r().s[35]++;
82558
82115
  V.mixin(bookingApiClientConfigMixin());
82559
82116
  }
82560
82117
  });