@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.
@@ -55042,183 +55042,6 @@ __webpack_require__("e3cd");
55042
55042
 
55043
55043
  // extracted by mini-css-extract-plugin
55044
55044
 
55045
- /***/ }),
55046
-
55047
- /***/ "797e":
55048
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
55049
-
55050
- "use strict";
55051
-
55052
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_arrayMap.js
55053
- var _arrayMap = __webpack_require__("8db3");
55054
-
55055
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseClone.js + 14 modules
55056
- var _baseClone = __webpack_require__("8143");
55057
-
55058
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_castPath.js + 3 modules
55059
- var _castPath = __webpack_require__("05a1");
55060
-
55061
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/last.js
55062
- /**
55063
- * Gets the last element of `array`.
55064
- *
55065
- * @static
55066
- * @memberOf _
55067
- * @since 0.1.0
55068
- * @category Array
55069
- * @param {Array} array The array to query.
55070
- * @returns {*} Returns the last element of `array`.
55071
- * @example
55072
- *
55073
- * _.last([1, 2, 3]);
55074
- * // => 3
55075
- */
55076
- function last(array) {
55077
- var length = array == null ? 0 : array.length;
55078
- return length ? array[length - 1] : undefined;
55079
- }
55080
-
55081
- /* harmony default export */ var lodash_es_last = (last);
55082
-
55083
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseGet.js
55084
- var _baseGet = __webpack_require__("fdab");
55085
-
55086
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseSlice.js
55087
- var _baseSlice = __webpack_require__("4982");
55088
-
55089
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_parent.js
55090
-
55091
-
55092
-
55093
- /**
55094
- * Gets the parent value at `path` of `object`.
55095
- *
55096
- * @private
55097
- * @param {Object} object The object to query.
55098
- * @param {Array} path The path to get the parent value of.
55099
- * @returns {*} Returns the parent value.
55100
- */
55101
- function _parent_parent(object, path) {
55102
- return path.length < 2 ? object : Object(_baseGet["a" /* default */])(object, Object(_baseSlice["a" /* default */])(path, 0, -1));
55103
- }
55104
-
55105
- /* harmony default export */ var _parent = (_parent_parent);
55106
-
55107
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_toKey.js
55108
- var _toKey = __webpack_require__("73f5");
55109
-
55110
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_baseUnset.js
55111
-
55112
-
55113
-
55114
-
55115
-
55116
- /**
55117
- * The base implementation of `_.unset`.
55118
- *
55119
- * @private
55120
- * @param {Object} object The object to modify.
55121
- * @param {Array|string} path The property path to unset.
55122
- * @returns {boolean} Returns `true` if the property is deleted, else `false`.
55123
- */
55124
- function baseUnset(object, path) {
55125
- path = Object(_castPath["a" /* default */])(path, object);
55126
- object = _parent(object, path);
55127
- return object == null || delete object[Object(_toKey["a" /* default */])(lodash_es_last(path))];
55128
- }
55129
-
55130
- /* harmony default export */ var _baseUnset = (baseUnset);
55131
-
55132
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_copyObject.js
55133
- var _copyObject = __webpack_require__("a93e");
55134
-
55135
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/isPlainObject.js
55136
- var isPlainObject = __webpack_require__("8a1f");
55137
-
55138
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_customOmitClone.js
55139
-
55140
-
55141
- /**
55142
- * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
55143
- * objects.
55144
- *
55145
- * @private
55146
- * @param {*} value The value to inspect.
55147
- * @param {string} key The key of the property to inspect.
55148
- * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
55149
- */
55150
- function customOmitClone(value) {
55151
- return Object(isPlainObject["a" /* default */])(value) ? undefined : value;
55152
- }
55153
-
55154
- /* harmony default export */ var _customOmitClone = (customOmitClone);
55155
-
55156
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_flatRest.js + 1 modules
55157
- var _flatRest = __webpack_require__("b751");
55158
-
55159
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/_getAllKeysIn.js
55160
- var _getAllKeysIn = __webpack_require__("5e38");
55161
-
55162
- // CONCATENATED MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js
55163
-
55164
-
55165
-
55166
-
55167
-
55168
-
55169
-
55170
-
55171
-
55172
- /** Used to compose bitmasks for cloning. */
55173
- var CLONE_DEEP_FLAG = 1,
55174
- CLONE_FLAT_FLAG = 2,
55175
- CLONE_SYMBOLS_FLAG = 4;
55176
-
55177
- /**
55178
- * The opposite of `_.pick`; this method creates an object composed of the
55179
- * own and inherited enumerable property paths of `object` that are not omitted.
55180
- *
55181
- * **Note:** This method is considerably slower than `_.pick`.
55182
- *
55183
- * @static
55184
- * @since 0.1.0
55185
- * @memberOf _
55186
- * @category Object
55187
- * @param {Object} object The source object.
55188
- * @param {...(string|string[])} [paths] The property paths to omit.
55189
- * @returns {Object} Returns the new object.
55190
- * @example
55191
- *
55192
- * var object = { 'a': 1, 'b': '2', 'c': 3 };
55193
- *
55194
- * _.omit(object, ['a', 'c']);
55195
- * // => { 'b': '2' }
55196
- */
55197
- var omit = Object(_flatRest["a" /* default */])(function(object, paths) {
55198
- var result = {};
55199
- if (object == null) {
55200
- return result;
55201
- }
55202
- var isDeep = false;
55203
- paths = Object(_arrayMap["a" /* default */])(paths, function(path) {
55204
- path = Object(_castPath["a" /* default */])(path, object);
55205
- isDeep || (isDeep = path.length > 1);
55206
- return path;
55207
- });
55208
- Object(_copyObject["a" /* default */])(object, Object(_getAllKeysIn["a" /* default */])(object), result);
55209
- if (isDeep) {
55210
- result = Object(_baseClone["a" /* default */])(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, _customOmitClone);
55211
- }
55212
- var length = paths.length;
55213
- while (length--) {
55214
- _baseUnset(result, paths[length]);
55215
- }
55216
- return result;
55217
- });
55218
-
55219
- /* harmony default export */ var lodash_es_omit = __webpack_exports__["a"] = (omit);
55220
-
55221
-
55222
55045
  /***/ }),
55223
55046
 
55224
55047
  /***/ "7a01":
@@ -75148,7 +74971,7 @@ var constants = __webpack_require__("946e");
75148
74971
  var leaflet_src = __webpack_require__("7cd9");
75149
74972
  var leaflet_src_default = /*#__PURE__*/__webpack_require__.n(leaflet_src);
75150
74973
 
75151
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 4 modules
74974
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
75152
74975
  var omit = __webpack_require__("797e");
75153
74976
 
75154
74977
  // 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
@@ -89223,8 +89046,8 @@ var index_umd = __webpack_require__("75e1");
89223
89046
  // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/libs/common/dist/index.js + 23 modules
89224
89047
  var dist = __webpack_require__("f6d7");
89225
89048
 
89226
- // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/cloneDeep.js
89227
- var cloneDeep = __webpack_require__("bbb7");
89049
+ // EXTERNAL MODULE: /opt/atlassian/pipelines/agent/build/node_modules/.pnpm/lodash-es@4.17.21/node_modules/lodash-es/omit.js + 19 modules
89050
+ var omit = __webpack_require__("797e");
89228
89051
 
89229
89052
  // 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
89230
89053
  var utils = __webpack_require__("b2c2");
@@ -89647,7 +89470,7 @@ const bookingApiClientConfigMixin = () => {
89647
89470
  // CONCATENATED MODULE: ./src/plugins/revolugo-config.ts
89648
89471
  function cov_wqxd4hn8r() {
89649
89472
  var path = "/opt/atlassian/pipelines/agent/build/libs/elements/core/src/plugins/revolugo-config.ts";
89650
- var hash = "c6317c4c333fb78c69502c4151152eeb621bdd85";
89473
+ var hash = "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca";
89651
89474
  var global = new Function("return this")();
89652
89475
  var gcv = "__coverage__";
89653
89476
  var coverageData = {
@@ -89659,7 +89482,7 @@ function cov_wqxd4hn8r() {
89659
89482
  column: 0
89660
89483
  },
89661
89484
  end: {
89662
- line: 55,
89485
+ line: 32,
89663
89486
  column: 1
89664
89487
  }
89665
89488
  },
@@ -89689,7 +89512,7 @@ function cov_wqxd4hn8r() {
89689
89512
  column: 4
89690
89513
  },
89691
89514
  end: {
89692
- line: 44,
89515
+ line: 21,
89693
89516
  column: 7
89694
89517
  }
89695
89518
  },
@@ -89706,360 +89529,310 @@ function cov_wqxd4hn8r() {
89706
89529
  "5": {
89707
89530
  start: {
89708
89531
  line: 19,
89709
- column: 35
89532
+ column: 12
89710
89533
  },
89711
89534
  end: {
89712
89535
  line: 19,
89713
- column: 76
89536
+ column: 42
89714
89537
  }
89715
89538
  },
89716
89539
  "6": {
89717
89540
  start: {
89718
- line: 20,
89719
- column: 12
89541
+ line: 22,
89542
+ column: 4
89720
89543
  },
89721
89544
  end: {
89722
- line: 20,
89723
- column: 42
89545
+ line: 27,
89546
+ column: 7
89724
89547
  }
89725
89548
  },
89726
89549
  "7": {
89727
89550
  start: {
89728
- line: 21,
89729
- column: 12
89551
+ line: 23,
89552
+ column: 19
89730
89553
  },
89731
89554
  end: {
89732
- line: 42,
89733
- column: 13
89555
+ line: 23,
89556
+ column: 49
89734
89557
  }
89735
89558
  },
89736
89559
  "8": {
89737
89560
  start: {
89738
- line: 26,
89739
- column: 40
89561
+ line: 25,
89562
+ column: 12
89740
89563
  },
89741
89564
  end: {
89742
- line: 30,
89743
- column: 17
89565
+ line: 25,
89566
+ column: 62
89744
89567
  }
89745
89568
  },
89746
89569
  "9": {
89747
89570
  start: {
89748
89571
  line: 31,
89749
- column: 16
89572
+ column: 4
89750
89573
  },
89751
89574
  end: {
89752
- line: 36,
89753
- column: 17
89575
+ line: 31,
89576
+ column: 58
89754
89577
  }
89755
89578
  },
89756
89579
  "10": {
89757
89580
  start: {
89758
89581
  line: 33,
89759
- column: 20
89582
+ column: 35
89760
89583
  },
89761
89584
  end: {
89762
- line: 35,
89763
- column: 22
89585
+ line: 106,
89586
+ column: 2
89764
89587
  }
89765
89588
  },
89766
89589
  "11": {
89767
89590
  start: {
89768
- line: 37,
89591
+ line: 38,
89769
89592
  column: 16
89770
89593
  },
89771
89594
  end: {
89772
- line: 37,
89773
- column: 80
89595
+ line: 38,
89596
+ column: 35
89774
89597
  }
89775
89598
  },
89776
89599
  "12": {
89777
89600
  start: {
89778
89601
  line: 39,
89779
- column: 17
89602
+ column: 16
89780
89603
  },
89781
89604
  end: {
89782
- line: 42,
89783
- column: 13
89605
+ line: 48,
89606
+ column: 17
89784
89607
  }
89785
89608
  },
89786
89609
  "13": {
89787
89610
  start: {
89788
- line: 40,
89789
- column: 16
89611
+ line: 47,
89612
+ column: 20
89790
89613
  },
89791
89614
  end: {
89792
- line: 41,
89793
- column: 30
89615
+ line: 47,
89616
+ column: 47
89794
89617
  }
89795
89618
  },
89796
89619
  "14": {
89797
- start: {
89798
- line: 45,
89799
- column: 4
89800
- },
89801
- end: {
89802
- line: 50,
89803
- column: 7
89804
- }
89805
- },
89806
- "15": {
89807
- start: {
89808
- line: 46,
89809
- column: 19
89810
- },
89811
- end: {
89812
- line: 46,
89813
- column: 49
89814
- }
89815
- },
89816
- "16": {
89817
- start: {
89818
- line: 48,
89819
- column: 12
89820
- },
89821
- end: {
89822
- line: 48,
89823
- column: 62
89824
- }
89825
- },
89826
- "17": {
89827
89620
  start: {
89828
89621
  line: 54,
89829
- column: 4
89830
- },
89831
- end: {
89832
- line: 54,
89833
- column: 58
89834
- }
89835
- },
89836
- "18": {
89837
- start: {
89838
- line: 56,
89839
- column: 35
89622
+ column: 12
89840
89623
  },
89841
89624
  end: {
89842
- line: 122,
89843
- column: 2
89625
+ line: 58,
89626
+ column: 13
89844
89627
  }
89845
89628
  },
89846
- "19": {
89629
+ "15": {
89847
89630
  start: {
89848
- line: 61,
89631
+ line: 55,
89849
89632
  column: 16
89850
89633
  },
89851
89634
  end: {
89852
- line: 61,
89853
- column: 35
89635
+ line: 56,
89636
+ column: 30
89854
89637
  }
89855
89638
  },
89856
- "20": {
89639
+ "16": {
89857
89640
  start: {
89858
- line: 62,
89641
+ line: 57,
89859
89642
  column: 16
89860
89643
  },
89861
89644
  end: {
89862
- line: 71,
89863
- column: 17
89864
- }
89865
- },
89866
- "21": {
89867
- start: {
89868
- line: 70,
89869
- column: 20
89870
- },
89871
- end: {
89872
- line: 70,
89873
- column: 47
89645
+ line: 57,
89646
+ column: 23
89874
89647
  }
89875
89648
  },
89876
- "22": {
89649
+ "17": {
89877
89650
  start: {
89878
- line: 77,
89651
+ line: 59,
89879
89652
  column: 36
89880
89653
  },
89881
89654
  end: {
89882
- line: 81,
89655
+ line: 63,
89883
89656
  column: 13
89884
89657
  }
89885
89658
  },
89886
- "23": {
89659
+ "18": {
89887
89660
  start: {
89888
- line: 82,
89661
+ line: 64,
89889
89662
  column: 36
89890
89663
  },
89891
89664
  end: {
89892
- line: 82,
89665
+ line: 64,
89893
89666
  column: 38
89894
89667
  }
89895
89668
  },
89896
- "24": {
89669
+ "19": {
89897
89670
  start: {
89898
- line: 83,
89671
+ line: 65,
89899
89672
  column: 12
89900
89673
  },
89901
89674
  end: {
89902
- line: 85,
89675
+ line: 67,
89903
89676
  column: 13
89904
89677
  }
89905
89678
  },
89906
- "25": {
89679
+ "20": {
89907
89680
  start: {
89908
- line: 84,
89681
+ line: 66,
89909
89682
  column: 16
89910
89683
  },
89911
89684
  end: {
89912
- line: 84,
89685
+ line: 66,
89913
89686
  column: 86
89914
89687
  }
89915
89688
  },
89916
- "26": {
89689
+ "21": {
89917
89690
  start: {
89918
- line: 86,
89691
+ line: 68,
89919
89692
  column: 12
89920
89693
  },
89921
89694
  end: {
89922
- line: 86,
89923
- column: 106
89695
+ line: 70,
89696
+ column: 77
89924
89697
  }
89925
89698
  },
89926
- "27": {
89699
+ "22": {
89927
89700
  start: {
89928
- line: 87,
89701
+ line: 71,
89929
89702
  column: 12
89930
89703
  },
89931
89704
  end: {
89932
- line: 87,
89705
+ line: 71,
89933
89706
  column: 86
89934
89707
  }
89935
89708
  },
89936
- "28": {
89709
+ "23": {
89937
89710
  start: {
89938
- line: 92,
89711
+ line: 76,
89939
89712
  column: 12
89940
89713
  },
89941
89714
  end: {
89942
- line: 92,
89715
+ line: 76,
89943
89716
  column: 49
89944
89717
  }
89945
89718
  },
89946
- "29": {
89719
+ "24": {
89947
89720
  start: {
89948
- line: 94,
89721
+ line: 78,
89949
89722
  column: 35
89950
89723
  },
89951
89724
  end: {
89952
- line: 94,
89725
+ line: 78,
89953
89726
  column: 54
89954
89727
  }
89955
89728
  },
89956
- "30": {
89729
+ "25": {
89957
89730
  start: {
89958
- line: 96,
89731
+ line: 80,
89959
89732
  column: 12
89960
89733
  },
89961
89734
  end: {
89962
- line: 119,
89735
+ line: 103,
89963
89736
  column: 15
89964
89737
  }
89965
89738
  },
89966
- "31": {
89739
+ "26": {
89967
89740
  start: {
89968
- line: 97,
89741
+ line: 81,
89969
89742
  column: 30
89970
89743
  },
89971
89744
  end: {
89972
- line: 97,
89745
+ line: 81,
89973
89746
  column: 89
89974
89747
  }
89975
89748
  },
89976
- "32": {
89749
+ "27": {
89977
89750
  start: {
89978
- line: 99,
89751
+ line: 83,
89979
89752
  column: 16
89980
89753
  },
89981
89754
  end: {
89982
- line: 118,
89755
+ line: 102,
89983
89756
  column: 17
89984
89757
  }
89985
89758
  },
89986
- "33": {
89759
+ "28": {
89987
89760
  start: {
89988
- line: 100,
89761
+ line: 84,
89989
89762
  column: 20
89990
89763
  },
89991
89764
  end: {
89992
- line: 117,
89765
+ line: 101,
89993
89766
  column: 21
89994
89767
  }
89995
89768
  },
89996
- "34": {
89769
+ "29": {
89997
89770
  start: {
89998
- line: 101,
89771
+ line: 85,
89999
89772
  column: 43
90000
89773
  },
90001
89774
  end: {
90002
- line: 101,
89775
+ line: 85,
90003
89776
  column: 85
90004
89777
  }
90005
89778
  },
90006
- "35": {
89779
+ "30": {
90007
89780
  start: {
90008
- line: 102,
89781
+ line: 86,
90009
89782
  column: 24
90010
89783
  },
90011
89784
  end: {
90012
- line: 112,
89785
+ line: 96,
90013
89786
  column: 25
90014
89787
  }
90015
89788
  },
90016
- "36": {
89789
+ "31": {
90017
89790
  start: {
90018
- line: 104,
89791
+ line: 88,
90019
89792
  column: 28
90020
89793
  },
90021
89794
  end: {
90022
- line: 111,
89795
+ line: 95,
90023
89796
  column: 29
90024
89797
  }
90025
89798
  },
90026
- "37": {
89799
+ "32": {
90027
89800
  start: {
90028
- line: 105,
89801
+ line: 89,
90029
89802
  column: 32
90030
89803
  },
90031
89804
  end: {
90032
- line: 107,
89805
+ line: 91,
90033
89806
  column: 105
90034
89807
  }
90035
89808
  },
90036
- "38": {
89809
+ "33": {
90037
89810
  start: {
90038
- line: 110,
89811
+ line: 94,
90039
89812
  column: 32
90040
89813
  },
90041
89814
  end: {
90042
- line: 110,
89815
+ line: 94,
90043
89816
  column: 125
90044
89817
  }
90045
89818
  },
90046
- "39": {
89819
+ "34": {
90047
89820
  start: {
90048
- line: 116,
89821
+ line: 100,
90049
89822
  column: 24
90050
89823
  },
90051
89824
  end: {
90052
- line: 116,
89825
+ line: 100,
90053
89826
  column: 89
90054
89827
  }
90055
89828
  },
90056
- "40": {
89829
+ "35": {
90057
89830
  start: {
90058
- line: 125,
89831
+ line: 109,
90059
89832
  column: 8
90060
89833
  },
90061
89834
  end: {
90062
- line: 125,
89835
+ line: 109,
90063
89836
  column: 47
90064
89837
  }
90065
89838
  }
@@ -90107,7 +89880,7 @@ function cov_wqxd4hn8r() {
90107
89880
  column: 23
90108
89881
  },
90109
89882
  end: {
90110
- line: 43,
89883
+ line: 20,
90111
89884
  column: 9
90112
89885
  }
90113
89886
  },
@@ -90117,169 +89890,169 @@ function cov_wqxd4hn8r() {
90117
89890
  name: "(anonymous_2)",
90118
89891
  decl: {
90119
89892
  start: {
90120
- line: 46,
89893
+ line: 23,
90121
89894
  column: 13
90122
89895
  },
90123
89896
  end: {
90124
- line: 46,
89897
+ line: 23,
90125
89898
  column: 14
90126
89899
  }
90127
89900
  },
90128
89901
  loc: {
90129
89902
  start: {
90130
- line: 46,
89903
+ line: 23,
90131
89904
  column: 19
90132
89905
  },
90133
89906
  end: {
90134
- line: 46,
89907
+ line: 23,
90135
89908
  column: 49
90136
89909
  }
90137
89910
  },
90138
- line: 46
89911
+ line: 23
90139
89912
  },
90140
89913
  "3": {
90141
89914
  name: "(anonymous_3)",
90142
89915
  decl: {
90143
89916
  start: {
90144
- line: 47,
89917
+ line: 24,
90145
89918
  column: 13
90146
89919
  },
90147
89920
  end: {
90148
- line: 47,
89921
+ line: 24,
90149
89922
  column: 14
90150
89923
  }
90151
89924
  },
90152
89925
  loc: {
90153
89926
  start: {
90154
- line: 47,
89927
+ line: 24,
90155
89928
  column: 33
90156
89929
  },
90157
89930
  end: {
90158
- line: 49,
89931
+ line: 26,
90159
89932
  column: 9
90160
89933
  }
90161
89934
  },
90162
- line: 47
89935
+ line: 24
90163
89936
  },
90164
89937
  "4": {
90165
89938
  name: "(anonymous_4)",
90166
89939
  decl: {
90167
89940
  start: {
90168
- line: 60,
89941
+ line: 37,
90169
89942
  column: 12
90170
89943
  },
90171
89944
  end: {
90172
- line: 60,
89945
+ line: 37,
90173
89946
  column: 13
90174
89947
  }
90175
89948
  },
90176
89949
  loc: {
90177
89950
  start: {
90178
- line: 60,
89951
+ line: 37,
90179
89952
  column: 33
90180
89953
  },
90181
89954
  end: {
90182
- line: 72,
89955
+ line: 49,
90183
89956
  column: 13
90184
89957
  }
90185
89958
  },
90186
- line: 60
89959
+ line: 37
90187
89960
  },
90188
89961
  "5": {
90189
89962
  name: "(anonymous_5)",
90190
89963
  decl: {
90191
89964
  start: {
90192
- line: 76,
89965
+ line: 53,
90193
89966
  column: 8
90194
89967
  },
90195
89968
  end: {
90196
- line: 76,
89969
+ line: 53,
90197
89970
  column: 9
90198
89971
  }
90199
89972
  },
90200
89973
  loc: {
90201
89974
  start: {
90202
- line: 76,
89975
+ line: 53,
90203
89976
  column: 30
90204
89977
  },
90205
89978
  end: {
90206
- line: 88,
89979
+ line: 72,
90207
89980
  column: 9
90208
89981
  }
90209
89982
  },
90210
- line: 76
89983
+ line: 53
90211
89984
  },
90212
89985
  "6": {
90213
89986
  name: "(anonymous_6)",
90214
89987
  decl: {
90215
89988
  start: {
90216
- line: 89,
89989
+ line: 73,
90217
89990
  column: 8
90218
89991
  },
90219
89992
  end: {
90220
- line: 89,
89993
+ line: 73,
90221
89994
  column: 9
90222
89995
  }
90223
89996
  },
90224
89997
  loc: {
90225
89998
  start: {
90226
- line: 89,
89999
+ line: 73,
90227
90000
  column: 22
90228
90001
  },
90229
90002
  end: {
90230
- line: 120,
90003
+ line: 104,
90231
90004
  column: 9
90232
90005
  }
90233
90006
  },
90234
- line: 89
90007
+ line: 73
90235
90008
  },
90236
90009
  "7": {
90237
90010
  name: "(anonymous_7)",
90238
90011
  decl: {
90239
90012
  start: {
90240
- line: 96,
90013
+ line: 80,
90241
90014
  column: 27
90242
90015
  },
90243
90016
  end: {
90244
- line: 96,
90017
+ line: 80,
90245
90018
  column: 28
90246
90019
  }
90247
90020
  },
90248
90021
  loc: {
90249
90022
  start: {
90250
- line: 96,
90023
+ line: 80,
90251
90024
  column: 33
90252
90025
  },
90253
90026
  end: {
90254
- line: 119,
90027
+ line: 103,
90255
90028
  column: 13
90256
90029
  }
90257
90030
  },
90258
- line: 96
90031
+ line: 80
90259
90032
  },
90260
90033
  "8": {
90261
90034
  name: "(anonymous_8)",
90262
90035
  decl: {
90263
90036
  start: {
90264
- line: 124,
90037
+ line: 108,
90265
90038
  column: 4
90266
90039
  },
90267
90040
  end: {
90268
- line: 124,
90041
+ line: 108,
90269
90042
  column: 5
90270
90043
  }
90271
90044
  },
90272
90045
  loc: {
90273
90046
  start: {
90274
- line: 124,
90047
+ line: 108,
90275
90048
  column: 15
90276
90049
  },
90277
90050
  end: {
90278
- line: 126,
90051
+ line: 110,
90279
90052
  column: 5
90280
90053
  }
90281
90054
  },
90282
- line: 124
90055
+ line: 108
90283
90056
  }
90284
90057
  },
90285
90058
  branchMap: {
@@ -90318,240 +90091,24 @@ function cov_wqxd4hn8r() {
90318
90091
  },
90319
90092
  "1": {
90320
90093
  loc: {
90321
- start: {
90322
- line: 21,
90323
- column: 12
90324
- },
90325
- end: {
90326
- line: 42,
90327
- column: 13
90328
- }
90329
- },
90330
- type: "if",
90331
- locations: [{
90332
- start: {
90333
- line: 21,
90334
- column: 12
90335
- },
90336
- end: {
90337
- line: 42,
90338
- column: 13
90339
- }
90340
- }, {
90341
90094
  start: {
90342
90095
  line: 39,
90343
- column: 17
90344
- },
90345
- end: {
90346
- line: 42,
90347
- column: 13
90348
- }
90349
- }],
90350
- line: 21
90351
- },
90352
- "2": {
90353
- loc: {
90354
- start: {
90355
- line: 21,
90356
- column: 16
90357
- },
90358
- end: {
90359
- line: 24,
90360
- column: 76
90361
- }
90362
- },
90363
- type: "binary-expr",
90364
- locations: [{
90365
- start: {
90366
- line: 21,
90367
- column: 16
90368
- },
90369
- end: {
90370
- line: 21,
90371
- column: 29
90372
- }
90373
- }, {
90374
- start: {
90375
- line: 22,
90376
90096
  column: 16
90377
90097
  },
90378
90098
  end: {
90379
- line: 22,
90380
- column: 37
90381
- }
90382
- }, {
90383
- start: {
90384
- line: 23,
90385
- column: 17
90386
- },
90387
- end: {
90388
- line: 23,
90389
- column: 122
90390
- }
90391
- }, {
90392
- start: {
90393
- line: 24,
90394
- column: 20
90395
- },
90396
- end: {
90397
- line: 24,
90398
- column: 75
90399
- }
90400
- }],
90401
- line: 21
90402
- },
90403
- "3": {
90404
- loc: {
90405
- start: {
90406
- line: 23,
90407
- column: 36
90408
- },
90409
- end: {
90410
- line: 23,
90411
- column: 121
90412
- }
90413
- },
90414
- type: "cond-expr",
90415
- locations: [{
90416
- start: {
90417
- line: 23,
90418
- column: 91
90419
- },
90420
- end: {
90421
- line: 23,
90422
- column: 97
90423
- }
90424
- }, {
90425
- start: {
90426
- line: 23,
90427
- column: 100
90428
- },
90429
- end: {
90430
- line: 23,
90431
- column: 121
90432
- }
90433
- }],
90434
- line: 23
90435
- },
90436
- "4": {
90437
- loc: {
90438
- start: {
90439
- line: 23,
90440
- column: 36
90441
- },
90442
- end: {
90443
- line: 23,
90444
- column: 88
90445
- }
90446
- },
90447
- type: "binary-expr",
90448
- locations: [{
90449
- start: {
90450
- line: 23,
90451
- column: 36
90452
- },
90453
- end: {
90454
- line: 23,
90455
- column: 59
90456
- }
90457
- }, {
90458
- start: {
90459
- line: 23,
90460
- column: 63
90461
- },
90462
- end: {
90463
- line: 23,
90464
- column: 88
90465
- }
90466
- }],
90467
- line: 23
90468
- },
90469
- "5": {
90470
- loc: {
90471
- start: {
90472
- line: 31,
90473
- column: 16
90474
- },
90475
- end: {
90476
- line: 36,
90099
+ line: 48,
90477
90100
  column: 17
90478
90101
  }
90479
90102
  },
90480
90103
  type: "if",
90481
90104
  locations: [{
90482
- start: {
90483
- line: 31,
90484
- column: 16
90485
- },
90486
- end: {
90487
- line: 36,
90488
- column: 17
90489
- }
90490
- }, {
90491
- start: {
90492
- line: undefined,
90493
- column: undefined
90494
- },
90495
- end: {
90496
- line: undefined,
90497
- column: undefined
90498
- }
90499
- }],
90500
- line: 31
90501
- },
90502
- "6": {
90503
- loc: {
90504
- start: {
90505
- line: 31,
90506
- column: 20
90507
- },
90508
- end: {
90509
- line: 32,
90510
- column: 63
90511
- }
90512
- },
90513
- type: "binary-expr",
90514
- locations: [{
90515
- start: {
90516
- line: 31,
90517
- column: 20
90518
- },
90519
- end: {
90520
- line: 31,
90521
- column: 60
90522
- }
90523
- }, {
90524
- start: {
90525
- line: 32,
90526
- column: 20
90527
- },
90528
- end: {
90529
- line: 32,
90530
- column: 63
90531
- }
90532
- }],
90533
- line: 31
90534
- },
90535
- "7": {
90536
- loc: {
90537
90105
  start: {
90538
90106
  line: 39,
90539
- column: 17
90107
+ column: 16
90540
90108
  },
90541
90109
  end: {
90542
- line: 42,
90543
- column: 13
90544
- }
90545
- },
90546
- type: "if",
90547
- locations: [{
90548
- start: {
90549
- line: 39,
90110
+ line: 48,
90550
90111
  column: 17
90551
- },
90552
- end: {
90553
- line: 42,
90554
- column: 13
90555
90112
  }
90556
90113
  }, {
90557
90114
  start: {
@@ -90565,820 +90122,754 @@ function cov_wqxd4hn8r() {
90565
90122
  }],
90566
90123
  line: 39
90567
90124
  },
90568
- "8": {
90125
+ "2": {
90569
90126
  loc: {
90570
90127
  start: {
90571
90128
  line: 39,
90572
- column: 21
90573
- },
90574
- end: {
90575
- line: 39,
90576
- column: 61
90577
- }
90578
- },
90579
- type: "binary-expr",
90580
- locations: [{
90581
- start: {
90582
- line: 39,
90583
- column: 21
90584
- },
90585
- end: {
90586
- line: 39,
90587
- column: 35
90588
- }
90589
- }, {
90590
- start: {
90591
- line: 39,
90592
- column: 39
90593
- },
90594
- end: {
90595
- line: 39,
90596
- column: 61
90597
- }
90598
- }],
90599
- line: 39
90600
- },
90601
- "9": {
90602
- loc: {
90603
- start: {
90604
- line: 62,
90605
- column: 16
90606
- },
90607
- end: {
90608
- line: 71,
90609
- column: 17
90610
- }
90611
- },
90612
- type: "if",
90613
- locations: [{
90614
- start: {
90615
- line: 62,
90616
- column: 16
90617
- },
90618
- end: {
90619
- line: 71,
90620
- column: 17
90621
- }
90622
- }, {
90623
- start: {
90624
- line: undefined,
90625
- column: undefined
90626
- },
90627
- end: {
90628
- line: undefined,
90629
- column: undefined
90630
- }
90631
- }],
90632
- line: 62
90633
- },
90634
- "10": {
90635
- loc: {
90636
- start: {
90637
- line: 62,
90638
90129
  column: 20
90639
90130
  },
90640
90131
  end: {
90641
- line: 69,
90132
+ line: 46,
90642
90133
  column: 114
90643
90134
  }
90644
90135
  },
90645
90136
  type: "binary-expr",
90646
90137
  locations: [{
90647
90138
  start: {
90648
- line: 62,
90139
+ line: 39,
90649
90140
  column: 21
90650
90141
  },
90651
90142
  end: {
90652
- line: 62,
90143
+ line: 39,
90653
90144
  column: 73
90654
90145
  }
90655
90146
  }, {
90656
90147
  start: {
90657
- line: 63,
90148
+ line: 40,
90658
90149
  column: 21
90659
90150
  },
90660
90151
  end: {
90661
- line: 63,
90152
+ line: 40,
90662
90153
  column: 81
90663
90154
  }
90664
90155
  }, {
90665
90156
  start: {
90666
- line: 64,
90157
+ line: 41,
90667
90158
  column: 21
90668
90159
  },
90669
90160
  end: {
90670
- line: 64,
90161
+ line: 41,
90671
90162
  column: 143
90672
90163
  }
90673
90164
  }, {
90674
90165
  start: {
90675
- line: 65,
90166
+ line: 42,
90676
90167
  column: 24
90677
90168
  },
90678
90169
  end: {
90679
- line: 65,
90170
+ line: 42,
90680
90171
  column: 162
90681
90172
  }
90682
90173
  }, {
90683
90174
  start: {
90684
- line: 66,
90175
+ line: 43,
90685
90176
  column: 24
90686
90177
  },
90687
90178
  end: {
90688
- line: 67,
90179
+ line: 44,
90689
90180
  column: 114
90690
90181
  }
90691
90182
  }, {
90692
90183
  start: {
90693
- line: 68,
90184
+ line: 45,
90694
90185
  column: 24
90695
90186
  },
90696
90187
  end: {
90697
- line: 69,
90188
+ line: 46,
90698
90189
  column: 113
90699
90190
  }
90700
90191
  }],
90701
- line: 62
90192
+ line: 39
90702
90193
  },
90703
- "11": {
90194
+ "3": {
90704
90195
  loc: {
90705
90196
  start: {
90706
- line: 62,
90197
+ line: 39,
90707
90198
  column: 21
90708
90199
  },
90709
90200
  end: {
90710
- line: 62,
90201
+ line: 39,
90711
90202
  column: 73
90712
90203
  }
90713
90204
  },
90714
90205
  type: "cond-expr",
90715
90206
  locations: [{
90716
90207
  start: {
90717
- line: 62,
90208
+ line: 39,
90718
90209
  column: 54
90719
90210
  },
90720
90211
  end: {
90721
- line: 62,
90212
+ line: 39,
90722
90213
  column: 60
90723
90214
  }
90724
90215
  }, {
90725
90216
  start: {
90726
- line: 62,
90217
+ line: 39,
90727
90218
  column: 63
90728
90219
  },
90729
90220
  end: {
90730
- line: 62,
90221
+ line: 39,
90731
90222
  column: 73
90732
90223
  }
90733
90224
  }],
90734
- line: 62
90225
+ line: 39
90735
90226
  },
90736
- "12": {
90227
+ "4": {
90737
90228
  loc: {
90738
90229
  start: {
90739
- line: 62,
90230
+ line: 39,
90740
90231
  column: 21
90741
90232
  },
90742
90233
  end: {
90743
- line: 62,
90234
+ line: 39,
90744
90235
  column: 51
90745
90236
  }
90746
90237
  },
90747
90238
  type: "binary-expr",
90748
90239
  locations: [{
90749
90240
  start: {
90750
- line: 62,
90241
+ line: 39,
90751
90242
  column: 21
90752
90243
  },
90753
90244
  end: {
90754
- line: 62,
90245
+ line: 39,
90755
90246
  column: 33
90756
90247
  }
90757
90248
  }, {
90758
90249
  start: {
90759
- line: 62,
90250
+ line: 39,
90760
90251
  column: 37
90761
90252
  },
90762
90253
  end: {
90763
- line: 62,
90254
+ line: 39,
90764
90255
  column: 51
90765
90256
  }
90766
90257
  }],
90767
- line: 62
90258
+ line: 39
90768
90259
  },
90769
- "13": {
90260
+ "5": {
90770
90261
  loc: {
90771
90262
  start: {
90772
- line: 63,
90263
+ line: 40,
90773
90264
  column: 21
90774
90265
  },
90775
90266
  end: {
90776
- line: 63,
90267
+ line: 40,
90777
90268
  column: 81
90778
90269
  }
90779
90270
  },
90780
90271
  type: "cond-expr",
90781
90272
  locations: [{
90782
90273
  start: {
90783
- line: 63,
90274
+ line: 40,
90784
90275
  column: 54
90785
90276
  },
90786
90277
  end: {
90787
- line: 63,
90278
+ line: 40,
90788
90279
  column: 60
90789
90280
  }
90790
90281
  }, {
90791
90282
  start: {
90792
- line: 63,
90283
+ line: 40,
90793
90284
  column: 63
90794
90285
  },
90795
90286
  end: {
90796
- line: 63,
90287
+ line: 40,
90797
90288
  column: 81
90798
90289
  }
90799
90290
  }],
90800
- line: 63
90291
+ line: 40
90801
90292
  },
90802
- "14": {
90293
+ "6": {
90803
90294
  loc: {
90804
90295
  start: {
90805
- line: 63,
90296
+ line: 40,
90806
90297
  column: 21
90807
90298
  },
90808
90299
  end: {
90809
- line: 63,
90300
+ line: 40,
90810
90301
  column: 51
90811
90302
  }
90812
90303
  },
90813
90304
  type: "binary-expr",
90814
90305
  locations: [{
90815
90306
  start: {
90816
- line: 63,
90307
+ line: 40,
90817
90308
  column: 21
90818
90309
  },
90819
90310
  end: {
90820
- line: 63,
90311
+ line: 40,
90821
90312
  column: 33
90822
90313
  }
90823
90314
  }, {
90824
90315
  start: {
90825
- line: 63,
90316
+ line: 40,
90826
90317
  column: 37
90827
90318
  },
90828
90319
  end: {
90829
- line: 63,
90320
+ line: 40,
90830
90321
  column: 51
90831
90322
  }
90832
90323
  }],
90833
- line: 63
90324
+ line: 40
90834
90325
  },
90835
- "15": {
90326
+ "7": {
90836
90327
  loc: {
90837
90328
  start: {
90838
- line: 64,
90329
+ line: 41,
90839
90330
  column: 22
90840
90331
  },
90841
90332
  end: {
90842
- line: 64,
90333
+ line: 41,
90843
90334
  column: 74
90844
90335
  }
90845
90336
  },
90846
90337
  type: "cond-expr",
90847
90338
  locations: [{
90848
90339
  start: {
90849
- line: 64,
90340
+ line: 41,
90850
90341
  column: 55
90851
90342
  },
90852
90343
  end: {
90853
- line: 64,
90344
+ line: 41,
90854
90345
  column: 61
90855
90346
  }
90856
90347
  }, {
90857
90348
  start: {
90858
- line: 64,
90349
+ line: 41,
90859
90350
  column: 64
90860
90351
  },
90861
90352
  end: {
90862
- line: 64,
90353
+ line: 41,
90863
90354
  column: 74
90864
90355
  }
90865
90356
  }],
90866
- line: 64
90357
+ line: 41
90867
90358
  },
90868
- "16": {
90359
+ "8": {
90869
90360
  loc: {
90870
90361
  start: {
90871
- line: 64,
90362
+ line: 41,
90872
90363
  column: 22
90873
90364
  },
90874
90365
  end: {
90875
- line: 64,
90366
+ line: 41,
90876
90367
  column: 52
90877
90368
  }
90878
90369
  },
90879
90370
  type: "binary-expr",
90880
90371
  locations: [{
90881
90372
  start: {
90882
- line: 64,
90373
+ line: 41,
90883
90374
  column: 22
90884
90375
  },
90885
90376
  end: {
90886
- line: 64,
90377
+ line: 41,
90887
90378
  column: 34
90888
90379
  }
90889
90380
  }, {
90890
90381
  start: {
90891
- line: 64,
90382
+ line: 41,
90892
90383
  column: 38
90893
90384
  },
90894
90385
  end: {
90895
- line: 64,
90386
+ line: 41,
90896
90387
  column: 52
90897
90388
  }
90898
90389
  }],
90899
- line: 64
90390
+ line: 41
90900
90391
  },
90901
- "17": {
90392
+ "9": {
90902
90393
  loc: {
90903
90394
  start: {
90904
- line: 64,
90395
+ line: 41,
90905
90396
  column: 81
90906
90397
  },
90907
90398
  end: {
90908
- line: 64,
90399
+ line: 41,
90909
90400
  column: 142
90910
90401
  }
90911
90402
  },
90912
90403
  type: "cond-expr",
90913
90404
  locations: [{
90914
90405
  start: {
90915
- line: 64,
90406
+ line: 41,
90916
90407
  column: 120
90917
90408
  },
90918
90409
  end: {
90919
- line: 64,
90410
+ line: 41,
90920
90411
  column: 126
90921
90412
  }
90922
90413
  }, {
90923
90414
  start: {
90924
- line: 64,
90415
+ line: 41,
90925
90416
  column: 129
90926
90417
  },
90927
90418
  end: {
90928
- line: 64,
90419
+ line: 41,
90929
90420
  column: 142
90930
90421
  }
90931
90422
  }],
90932
- line: 64
90423
+ line: 41
90933
90424
  },
90934
- "18": {
90425
+ "10": {
90935
90426
  loc: {
90936
90427
  start: {
90937
- line: 64,
90428
+ line: 41,
90938
90429
  column: 81
90939
90430
  },
90940
90431
  end: {
90941
- line: 64,
90432
+ line: 41,
90942
90433
  column: 117
90943
90434
  }
90944
90435
  },
90945
90436
  type: "binary-expr",
90946
90437
  locations: [{
90947
90438
  start: {
90948
- line: 64,
90439
+ line: 41,
90949
90440
  column: 81
90950
90441
  },
90951
90442
  end: {
90952
- line: 64,
90443
+ line: 41,
90953
90444
  column: 96
90954
90445
  }
90955
90446
  }, {
90956
90447
  start: {
90957
- line: 64,
90448
+ line: 41,
90958
90449
  column: 100
90959
90450
  },
90960
90451
  end: {
90961
- line: 64,
90452
+ line: 41,
90962
90453
  column: 117
90963
90454
  }
90964
90455
  }],
90965
- line: 64
90456
+ line: 41
90966
90457
  },
90967
- "19": {
90458
+ "11": {
90968
90459
  loc: {
90969
90460
  start: {
90970
- line: 65,
90461
+ line: 42,
90971
90462
  column: 25
90972
90463
  },
90973
90464
  end: {
90974
- line: 65,
90465
+ line: 42,
90975
90466
  column: 85
90976
90467
  }
90977
90468
  },
90978
90469
  type: "cond-expr",
90979
90470
  locations: [{
90980
90471
  start: {
90981
- line: 65,
90472
+ line: 42,
90982
90473
  column: 58
90983
90474
  },
90984
90475
  end: {
90985
- line: 65,
90476
+ line: 42,
90986
90477
  column: 64
90987
90478
  }
90988
90479
  }, {
90989
90480
  start: {
90990
- line: 65,
90481
+ line: 42,
90991
90482
  column: 67
90992
90483
  },
90993
90484
  end: {
90994
- line: 65,
90485
+ line: 42,
90995
90486
  column: 85
90996
90487
  }
90997
90488
  }],
90998
- line: 65
90489
+ line: 42
90999
90490
  },
91000
- "20": {
90491
+ "12": {
91001
90492
  loc: {
91002
90493
  start: {
91003
- line: 65,
90494
+ line: 42,
91004
90495
  column: 25
91005
90496
  },
91006
90497
  end: {
91007
- line: 65,
90498
+ line: 42,
91008
90499
  column: 55
91009
90500
  }
91010
90501
  },
91011
90502
  type: "binary-expr",
91012
90503
  locations: [{
91013
90504
  start: {
91014
- line: 65,
90505
+ line: 42,
91015
90506
  column: 25
91016
90507
  },
91017
90508
  end: {
91018
- line: 65,
90509
+ line: 42,
91019
90510
  column: 37
91020
90511
  }
91021
90512
  }, {
91022
90513
  start: {
91023
- line: 65,
90514
+ line: 42,
91024
90515
  column: 41
91025
90516
  },
91026
90517
  end: {
91027
- line: 65,
90518
+ line: 42,
91028
90519
  column: 55
91029
90520
  }
91030
90521
  }],
91031
- line: 65
90522
+ line: 42
91032
90523
  },
91033
- "21": {
90524
+ "13": {
91034
90525
  loc: {
91035
90526
  start: {
91036
- line: 65,
90527
+ line: 42,
91037
90528
  column: 92
91038
90529
  },
91039
90530
  end: {
91040
- line: 65,
90531
+ line: 42,
91041
90532
  column: 161
91042
90533
  }
91043
90534
  },
91044
90535
  type: "cond-expr",
91045
90536
  locations: [{
91046
90537
  start: {
91047
- line: 65,
90538
+ line: 42,
91048
90539
  column: 131
91049
90540
  },
91050
90541
  end: {
91051
- line: 65,
90542
+ line: 42,
91052
90543
  column: 137
91053
90544
  }
91054
90545
  }, {
91055
90546
  start: {
91056
- line: 65,
90547
+ line: 42,
91057
90548
  column: 140
91058
90549
  },
91059
90550
  end: {
91060
- line: 65,
90551
+ line: 42,
91061
90552
  column: 161
91062
90553
  }
91063
90554
  }],
91064
- line: 65
90555
+ line: 42
91065
90556
  },
91066
- "22": {
90557
+ "14": {
91067
90558
  loc: {
91068
90559
  start: {
91069
- line: 65,
90560
+ line: 42,
91070
90561
  column: 92
91071
90562
  },
91072
90563
  end: {
91073
- line: 65,
90564
+ line: 42,
91074
90565
  column: 128
91075
90566
  }
91076
90567
  },
91077
90568
  type: "binary-expr",
91078
90569
  locations: [{
91079
90570
  start: {
91080
- line: 65,
90571
+ line: 42,
91081
90572
  column: 92
91082
90573
  },
91083
90574
  end: {
91084
- line: 65,
90575
+ line: 42,
91085
90576
  column: 107
91086
90577
  }
91087
90578
  }, {
91088
90579
  start: {
91089
- line: 65,
90580
+ line: 42,
91090
90581
  column: 111
91091
90582
  },
91092
90583
  end: {
91093
- line: 65,
90584
+ line: 42,
91094
90585
  column: 128
91095
90586
  }
91096
90587
  }],
91097
- line: 65
90588
+ line: 42
91098
90589
  },
91099
- "23": {
90590
+ "15": {
91100
90591
  loc: {
91101
90592
  start: {
91102
- line: 66,
90593
+ line: 43,
91103
90594
  column: 39
91104
90595
  },
91105
90596
  end: {
91106
- line: 66,
90597
+ line: 43,
91107
90598
  column: 100
91108
90599
  }
91109
90600
  },
91110
90601
  type: "cond-expr",
91111
90602
  locations: [{
91112
90603
  start: {
91113
- line: 66,
90604
+ line: 43,
91114
90605
  column: 72
91115
90606
  },
91116
90607
  end: {
91117
- line: 66,
90608
+ line: 43,
91118
90609
  column: 78
91119
90610
  }
91120
90611
  }, {
91121
90612
  start: {
91122
- line: 66,
90613
+ line: 43,
91123
90614
  column: 81
91124
90615
  },
91125
90616
  end: {
91126
- line: 66,
90617
+ line: 43,
91127
90618
  column: 100
91128
90619
  }
91129
90620
  }],
91130
- line: 66
90621
+ line: 43
91131
90622
  },
91132
- "24": {
90623
+ "16": {
91133
90624
  loc: {
91134
90625
  start: {
91135
- line: 66,
90626
+ line: 43,
91136
90627
  column: 39
91137
90628
  },
91138
90629
  end: {
91139
- line: 66,
90630
+ line: 43,
91140
90631
  column: 69
91141
90632
  }
91142
90633
  },
91143
90634
  type: "binary-expr",
91144
90635
  locations: [{
91145
90636
  start: {
91146
- line: 66,
90637
+ line: 43,
91147
90638
  column: 39
91148
90639
  },
91149
90640
  end: {
91150
- line: 66,
90641
+ line: 43,
91151
90642
  column: 51
91152
90643
  }
91153
90644
  }, {
91154
90645
  start: {
91155
- line: 66,
90646
+ line: 43,
91156
90647
  column: 55
91157
90648
  },
91158
90649
  end: {
91159
- line: 66,
90650
+ line: 43,
91160
90651
  column: 69
91161
90652
  }
91162
90653
  }],
91163
- line: 66
90654
+ line: 43
91164
90655
  },
91165
- "25": {
90656
+ "17": {
91166
90657
  loc: {
91167
90658
  start: {
91168
- line: 67,
90659
+ line: 44,
91169
90660
  column: 43
91170
90661
  },
91171
90662
  end: {
91172
- line: 67,
90663
+ line: 44,
91173
90664
  column: 113
91174
90665
  }
91175
90666
  },
91176
90667
  type: "cond-expr",
91177
90668
  locations: [{
91178
90669
  start: {
91179
- line: 67,
90670
+ line: 44,
91180
90671
  column: 82
91181
90672
  },
91182
90673
  end: {
91183
- line: 67,
90674
+ line: 44,
91184
90675
  column: 88
91185
90676
  }
91186
90677
  }, {
91187
90678
  start: {
91188
- line: 67,
90679
+ line: 44,
91189
90680
  column: 91
91190
90681
  },
91191
90682
  end: {
91192
- line: 67,
90683
+ line: 44,
91193
90684
  column: 113
91194
90685
  }
91195
90686
  }],
91196
- line: 67
90687
+ line: 44
91197
90688
  },
91198
- "26": {
90689
+ "18": {
91199
90690
  loc: {
91200
90691
  start: {
91201
- line: 67,
90692
+ line: 44,
91202
90693
  column: 43
91203
90694
  },
91204
90695
  end: {
91205
- line: 67,
90696
+ line: 44,
91206
90697
  column: 79
91207
90698
  }
91208
90699
  },
91209
90700
  type: "binary-expr",
91210
90701
  locations: [{
91211
90702
  start: {
91212
- line: 67,
90703
+ line: 44,
91213
90704
  column: 43
91214
90705
  },
91215
90706
  end: {
91216
- line: 67,
90707
+ line: 44,
91217
90708
  column: 58
91218
90709
  }
91219
90710
  }, {
91220
90711
  start: {
91221
- line: 67,
90712
+ line: 44,
91222
90713
  column: 62
91223
90714
  },
91224
90715
  end: {
91225
- line: 67,
90716
+ line: 44,
91226
90717
  column: 79
91227
90718
  }
91228
90719
  }],
91229
- line: 67
90720
+ line: 44
91230
90721
  },
91231
- "27": {
90722
+ "19": {
91232
90723
  loc: {
91233
90724
  start: {
91234
- line: 68,
90725
+ line: 45,
91235
90726
  column: 39
91236
90727
  },
91237
90728
  end: {
91238
- line: 68,
90729
+ line: 45,
91239
90730
  column: 99
91240
90731
  }
91241
90732
  },
91242
90733
  type: "cond-expr",
91243
90734
  locations: [{
91244
90735
  start: {
91245
- line: 68,
90736
+ line: 45,
91246
90737
  column: 72
91247
90738
  },
91248
90739
  end: {
91249
- line: 68,
90740
+ line: 45,
91250
90741
  column: 78
91251
90742
  }
91252
90743
  }, {
91253
90744
  start: {
91254
- line: 68,
90745
+ line: 45,
91255
90746
  column: 81
91256
90747
  },
91257
90748
  end: {
91258
- line: 68,
90749
+ line: 45,
91259
90750
  column: 99
91260
90751
  }
91261
90752
  }],
91262
- line: 68
90753
+ line: 45
91263
90754
  },
91264
- "28": {
90755
+ "20": {
91265
90756
  loc: {
91266
90757
  start: {
91267
- line: 68,
90758
+ line: 45,
91268
90759
  column: 39
91269
90760
  },
91270
90761
  end: {
91271
- line: 68,
90762
+ line: 45,
91272
90763
  column: 69
91273
90764
  }
91274
90765
  },
91275
90766
  type: "binary-expr",
91276
90767
  locations: [{
91277
90768
  start: {
91278
- line: 68,
90769
+ line: 45,
91279
90770
  column: 39
91280
90771
  },
91281
90772
  end: {
91282
- line: 68,
90773
+ line: 45,
91283
90774
  column: 51
91284
90775
  }
91285
90776
  }, {
91286
90777
  start: {
91287
- line: 68,
90778
+ line: 45,
91288
90779
  column: 55
91289
90780
  },
91290
90781
  end: {
91291
- line: 68,
90782
+ line: 45,
91292
90783
  column: 69
91293
90784
  }
91294
90785
  }],
91295
- line: 68
90786
+ line: 45
91296
90787
  },
91297
- "29": {
90788
+ "21": {
91298
90789
  loc: {
91299
90790
  start: {
91300
- line: 69,
90791
+ line: 46,
91301
90792
  column: 43
91302
90793
  },
91303
90794
  end: {
91304
- line: 69,
90795
+ line: 46,
91305
90796
  column: 112
91306
90797
  }
91307
90798
  },
91308
90799
  type: "cond-expr",
91309
90800
  locations: [{
91310
90801
  start: {
91311
- line: 69,
90802
+ line: 46,
91312
90803
  column: 82
91313
90804
  },
91314
90805
  end: {
91315
- line: 69,
90806
+ line: 46,
91316
90807
  column: 88
91317
90808
  }
91318
90809
  }, {
91319
90810
  start: {
91320
- line: 69,
90811
+ line: 46,
91321
90812
  column: 91
91322
90813
  },
91323
90814
  end: {
91324
- line: 69,
90815
+ line: 46,
91325
90816
  column: 112
91326
90817
  }
91327
90818
  }],
91328
- line: 69
90819
+ line: 46
91329
90820
  },
91330
- "30": {
90821
+ "22": {
91331
90822
  loc: {
91332
90823
  start: {
91333
- line: 69,
90824
+ line: 46,
91334
90825
  column: 43
91335
90826
  },
91336
90827
  end: {
91337
- line: 69,
90828
+ line: 46,
91338
90829
  column: 79
91339
90830
  }
91340
90831
  },
91341
90832
  type: "binary-expr",
91342
90833
  locations: [{
91343
90834
  start: {
91344
- line: 69,
90835
+ line: 46,
91345
90836
  column: 43
91346
90837
  },
91347
90838
  end: {
91348
- line: 69,
90839
+ line: 46,
91349
90840
  column: 58
91350
90841
  }
91351
90842
  }, {
91352
90843
  start: {
91353
- line: 69,
90844
+ line: 46,
91354
90845
  column: 62
91355
90846
  },
91356
90847
  end: {
91357
- line: 69,
90848
+ line: 46,
91358
90849
  column: 79
91359
90850
  }
91360
90851
  }],
91361
- line: 69
90852
+ line: 46
91362
90853
  },
91363
- "31": {
90854
+ "23": {
91364
90855
  loc: {
91365
90856
  start: {
91366
- line: 83,
90857
+ line: 54,
91367
90858
  column: 12
91368
90859
  },
91369
90860
  end: {
91370
- line: 85,
90861
+ line: 58,
91371
90862
  column: 13
91372
90863
  }
91373
90864
  },
91374
90865
  type: "if",
91375
90866
  locations: [{
91376
90867
  start: {
91377
- line: 83,
90868
+ line: 54,
91378
90869
  column: 12
91379
90870
  },
91380
90871
  end: {
91381
- line: 85,
90872
+ line: 58,
91382
90873
  column: 13
91383
90874
  }
91384
90875
  }, {
@@ -91391,40 +90882,139 @@ function cov_wqxd4hn8r() {
91391
90882
  column: undefined
91392
90883
  }
91393
90884
  }],
91394
- line: 83
90885
+ line: 54
91395
90886
  },
91396
- "32": {
90887
+ "24": {
91397
90888
  loc: {
91398
90889
  start: {
91399
- line: 104,
90890
+ line: 54,
90891
+ column: 16
90892
+ },
90893
+ end: {
90894
+ line: 54,
90895
+ column: 66
90896
+ }
90897
+ },
90898
+ type: "binary-expr",
90899
+ locations: [{
90900
+ start: {
90901
+ line: 54,
90902
+ column: 16
90903
+ },
90904
+ end: {
90905
+ line: 54,
90906
+ column: 35
90907
+ }
90908
+ }, {
90909
+ start: {
90910
+ line: 54,
90911
+ column: 39
90912
+ },
90913
+ end: {
90914
+ line: 54,
90915
+ column: 66
90916
+ }
90917
+ }],
90918
+ line: 54
90919
+ },
90920
+ "25": {
90921
+ loc: {
90922
+ start: {
90923
+ line: 65,
90924
+ column: 12
90925
+ },
90926
+ end: {
90927
+ line: 67,
90928
+ column: 13
90929
+ }
90930
+ },
90931
+ type: "if",
90932
+ locations: [{
90933
+ start: {
90934
+ line: 65,
90935
+ column: 12
90936
+ },
90937
+ end: {
90938
+ line: 67,
90939
+ column: 13
90940
+ }
90941
+ }, {
90942
+ start: {
90943
+ line: undefined,
90944
+ column: undefined
90945
+ },
90946
+ end: {
90947
+ line: undefined,
90948
+ column: undefined
90949
+ }
90950
+ }],
90951
+ line: 65
90952
+ },
90953
+ "26": {
90954
+ loc: {
90955
+ start: {
90956
+ line: 68,
90957
+ column: 77
90958
+ },
90959
+ end: {
90960
+ line: 70,
90961
+ column: 75
90962
+ }
90963
+ },
90964
+ type: "cond-expr",
90965
+ locations: [{
90966
+ start: {
90967
+ line: 69,
90968
+ column: 18
90969
+ },
90970
+ end: {
90971
+ line: 69,
90972
+ column: 45
90973
+ }
90974
+ }, {
90975
+ start: {
90976
+ line: 70,
90977
+ column: 18
90978
+ },
90979
+ end: {
90980
+ line: 70,
90981
+ column: 75
90982
+ }
90983
+ }],
90984
+ line: 68
90985
+ },
90986
+ "27": {
90987
+ loc: {
90988
+ start: {
90989
+ line: 88,
91400
90990
  column: 28
91401
90991
  },
91402
90992
  end: {
91403
- line: 111,
90993
+ line: 95,
91404
90994
  column: 29
91405
90995
  }
91406
90996
  },
91407
90997
  type: "if",
91408
90998
  locations: [{
91409
90999
  start: {
91410
- line: 104,
91000
+ line: 88,
91411
91001
  column: 28
91412
91002
  },
91413
91003
  end: {
91414
- line: 111,
91004
+ line: 95,
91415
91005
  column: 29
91416
91006
  }
91417
91007
  }, {
91418
91008
  start: {
91419
- line: 109,
91009
+ line: 93,
91420
91010
  column: 33
91421
91011
  },
91422
91012
  end: {
91423
- line: 111,
91013
+ line: 95,
91424
91014
  column: 29
91425
91015
  }
91426
91016
  }],
91427
- line: 104
91017
+ line: 88
91428
91018
  }
91429
91019
  },
91430
91020
  s: {
@@ -91463,12 +91053,7 @@ function cov_wqxd4hn8r() {
91463
91053
  "32": 0,
91464
91054
  "33": 0,
91465
91055
  "34": 0,
91466
- "35": 0,
91467
- "36": 0,
91468
- "37": 0,
91469
- "38": 0,
91470
- "39": 0,
91471
- "40": 0
91056
+ "35": 0
91472
91057
  },
91473
91058
  f: {
91474
91059
  "0": 0,
@@ -91484,7 +91069,7 @@ function cov_wqxd4hn8r() {
91484
91069
  b: {
91485
91070
  "0": [0, 0],
91486
91071
  "1": [0, 0],
91487
- "2": [0, 0, 0, 0],
91072
+ "2": [0, 0, 0, 0, 0, 0],
91488
91073
  "3": [0, 0],
91489
91074
  "4": [0, 0],
91490
91075
  "5": [0, 0],
@@ -91492,7 +91077,7 @@ function cov_wqxd4hn8r() {
91492
91077
  "7": [0, 0],
91493
91078
  "8": [0, 0],
91494
91079
  "9": [0, 0],
91495
- "10": [0, 0, 0, 0, 0, 0],
91080
+ "10": [0, 0],
91496
91081
  "11": [0, 0],
91497
91082
  "12": [0, 0],
91498
91083
  "13": [0, 0],
@@ -91509,15 +91094,10 @@ function cov_wqxd4hn8r() {
91509
91094
  "24": [0, 0],
91510
91095
  "25": [0, 0],
91511
91096
  "26": [0, 0],
91512
- "27": [0, 0],
91513
- "28": [0, 0],
91514
- "29": [0, 0],
91515
- "30": [0, 0],
91516
- "31": [0, 0],
91517
- "32": [0, 0]
91097
+ "27": [0, 0]
91518
91098
  },
91519
91099
  _coverageSchema: "1a1c01bbd47fc00a2c39e90264f33305004495a9",
91520
- hash: "c6317c4c333fb78c69502c4151152eeb621bdd85"
91100
+ hash: "df6e9fa1fa577fac2e7ebe940ac416f1e89c66ca"
91521
91101
  };
91522
91102
  var coverage = global[gcv] || (global[gcv] = {});
91523
91103
  if (!coverage[path] || coverage[path].hash !== hash) {
@@ -91559,76 +91139,43 @@ try {
91559
91139
  },
91560
91140
  set: config => {
91561
91141
  cov_wqxd4hn8r().f[1]++;
91562
- const previousConfig = (cov_wqxd4hn8r().s[5]++, Object(cloneDeep["a" /* default */])(window.RevolugoElements.config));
91563
- cov_wqxd4hn8r().s[6]++;
91142
+ cov_wqxd4hn8r().s[5]++;
91564
91143
  configMonitor.config = config;
91565
- cov_wqxd4hn8r().s[7]++;
91566
- 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))) {
91567
- cov_wqxd4hn8r().b[1][0]++;
91568
- // Update bookingApiClient
91569
- const apiClientConfig = (cov_wqxd4hn8r().s[8]++, {
91570
- apiKey: config.apiKey,
91571
- apiVersion: dist["a" /* ApiVersionEnum */].V1,
91572
- apiEnvironment: config.apiEnvironment
91573
- });
91574
- cov_wqxd4hn8r().s[9]++;
91575
- 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)) {
91576
- cov_wqxd4hn8r().b[5][0]++;
91577
- cov_wqxd4hn8r().s[10]++;
91578
- apiClientConfig.optionalHeaders = {
91579
- 'x-consumer-custom-id': Object({"NODE_ENV":"production","BASE_URL":"/"}).VUE_APP_X_CONSUMER_CUSTOM_ID
91580
- };
91581
- } else {
91582
- cov_wqxd4hn8r().b[5][1]++;
91583
- }
91584
- cov_wqxd4hn8r().s[11]++;
91585
- configMonitor.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
91586
- } else {
91587
- cov_wqxd4hn8r().b[1][1]++;
91588
- cov_wqxd4hn8r().s[12]++;
91589
- if ((cov_wqxd4hn8r().b[8][0]++, !config.apiKey) || (cov_wqxd4hn8r().b[8][1]++, !config.apiEnvironment)) {
91590
- cov_wqxd4hn8r().b[7][0]++;
91591
- cov_wqxd4hn8r().s[13]++;
91592
- configMonitor.bookingApiClient = undefined;
91593
- } else {
91594
- cov_wqxd4hn8r().b[7][1]++;
91595
- }
91596
- }
91597
91144
  }
91598
91145
  });
91599
- cov_wqxd4hn8r().s[14]++;
91146
+ cov_wqxd4hn8r().s[6]++;
91600
91147
  Object.defineProperty(window.RevolugoElements, 'bookingApiClient', {
91601
91148
  get: () => {
91602
91149
  cov_wqxd4hn8r().f[2]++;
91603
- cov_wqxd4hn8r().s[15]++;
91150
+ cov_wqxd4hn8r().s[7]++;
91604
91151
  return configMonitor.bookingApiClient;
91605
91152
  },
91606
91153
  set: bookingApiClient => {
91607
91154
  cov_wqxd4hn8r().f[3]++;
91608
- cov_wqxd4hn8r().s[16]++;
91155
+ cov_wqxd4hn8r().s[8]++;
91609
91156
  configMonitor.bookingApiClient = bookingApiClient;
91610
91157
  }
91611
91158
  });
91612
91159
  } catch (error) {
91613
- cov_wqxd4hn8r().s[17]++;
91160
+ cov_wqxd4hn8r().s[9]++;
91614
91161
  // eslint-disable-next-line no-console
91615
91162
  console.error('Error while setting up config', error);
91616
91163
  }
91617
- const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* default */].extend({
91164
+ const revolugoConfigMixin = (cov_wqxd4hn8r().s[10]++, vue_runtime_esm["a" /* default */].extend({
91618
91165
  watch: {
91619
91166
  config: {
91620
91167
  immediate: true,
91621
91168
  handler(val, oldVal) {
91622
91169
  cov_wqxd4hn8r().f[4]++;
91623
- cov_wqxd4hn8r().s[19]++;
91170
+ cov_wqxd4hn8r().s[11]++;
91624
91171
  this.applyConfig();
91625
- cov_wqxd4hn8r().s[20]++;
91626
- 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))))) {
91627
- cov_wqxd4hn8r().b[9][0]++;
91628
- cov_wqxd4hn8r().s[21]++;
91172
+ cov_wqxd4hn8r().s[12]++;
91173
+ 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))))) {
91174
+ cov_wqxd4hn8r().b[1][0]++;
91175
+ cov_wqxd4hn8r().s[13]++;
91629
91176
  this.updateBookingClient();
91630
91177
  } else {
91631
- cov_wqxd4hn8r().b[9][1]++;
91178
+ cov_wqxd4hn8r().b[1][1]++;
91632
91179
  }
91633
91180
  }
91634
91181
  }
@@ -91636,62 +91183,72 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
91636
91183
  methods: {
91637
91184
  updateBookingClient() {
91638
91185
  cov_wqxd4hn8r().f[5]++;
91639
- const apiClientConfig = (cov_wqxd4hn8r().s[22]++, {
91186
+ cov_wqxd4hn8r().s[14]++;
91187
+ if ((cov_wqxd4hn8r().b[24][0]++, !this.config.apiKey) || (cov_wqxd4hn8r().b[24][1]++, !this.config.apiEnvironment)) {
91188
+ cov_wqxd4hn8r().b[23][0]++;
91189
+ cov_wqxd4hn8r().s[15]++;
91190
+ window.RevolugoElements.bookingApiClient = undefined;
91191
+ cov_wqxd4hn8r().s[16]++;
91192
+ return;
91193
+ } else {
91194
+ cov_wqxd4hn8r().b[23][1]++;
91195
+ }
91196
+ const apiClientConfig = (cov_wqxd4hn8r().s[17]++, {
91640
91197
  apiEnvironment: this.config.apiEnvironment,
91641
91198
  apiKey: this.config.apiKey,
91642
91199
  apiVersion: dist["a" /* ApiVersionEnum */].V1
91643
91200
  });
91644
- const optionalHeaders = (cov_wqxd4hn8r().s[23]++, {});
91645
- cov_wqxd4hn8r().s[24]++;
91201
+ const optionalHeaders = (cov_wqxd4hn8r().s[18]++, {});
91202
+ cov_wqxd4hn8r().s[19]++;
91646
91203
  if (this.config.organizationId) {
91647
- cov_wqxd4hn8r().b[31][0]++;
91648
- cov_wqxd4hn8r().s[25]++;
91204
+ cov_wqxd4hn8r().b[25][0]++;
91205
+ cov_wqxd4hn8r().s[20]++;
91649
91206
  optionalHeaders['x-custom-organization'] = this.config.organizationId;
91650
91207
  } else {
91651
- cov_wqxd4hn8r().b[31][1]++;
91208
+ cov_wqxd4hn8r().b[25][1]++;
91652
91209
  }
91653
- cov_wqxd4hn8r().s[26]++;
91654
- apiClientConfig.optionalHeaders = Object.assign(optionalHeaders, this.config.optionalHeaders);
91655
- cov_wqxd4hn8r().s[27]++;
91210
+ cov_wqxd4hn8r().s[21]++;
91211
+ 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')));
91212
+ cov_wqxd4hn8r().s[22]++;
91656
91213
  window.RevolugoElements.bookingApiClient = new index_umd["ApiClient"](apiClientConfig);
91657
91214
  },
91658
91215
  applyConfig() {
91659
91216
  cov_wqxd4hn8r().f[6]++;
91660
- cov_wqxd4hn8r().s[28]++;
91217
+ cov_wqxd4hn8r().s[23]++;
91661
91218
  // Apply locale
91662
91219
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
91663
91220
  this.$i18n.locale = this.config.lang;
91664
91221
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
91665
91222
  const {
91666
91223
  shadowRoot
91667
- } = (cov_wqxd4hn8r().s[29]++, this.$root.$options);
91224
+ } = (cov_wqxd4hn8r().s[24]++, this.$root.$options);
91668
91225
  // Apply theme colors
91669
- cov_wqxd4hn8r().s[30]++;
91226
+ cov_wqxd4hn8r().s[25]++;
91670
91227
  this.$nextTick(() => {
91671
91228
  cov_wqxd4hn8r().f[7]++;
91672
- const theme = (cov_wqxd4hn8r().s[31]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
91229
+ const theme = (cov_wqxd4hn8r().s[26]++, Object.assign(presets_default["a" /* preset */].theme.themes.light, this.config.theme));
91673
91230
  /* eslint-disable guard-for-in */
91674
- cov_wqxd4hn8r().s[32]++;
91231
+ cov_wqxd4hn8r().s[27]++;
91675
91232
  for (const key in theme) {
91676
- cov_wqxd4hn8r().s[33]++;
91233
+ cov_wqxd4hn8r().s[28]++;
91677
91234
  try {
91678
- const variations = (cov_wqxd4hn8r().s[34]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
91679
- cov_wqxd4hn8r().s[35]++;
91235
+ const variations = (cov_wqxd4hn8r().s[29]++, Object(utils["b" /* genVariations */])(key, Object(colorUtils["b" /* colorToInt */])(theme[key])));
91236
+ cov_wqxd4hn8r().s[30]++;
91680
91237
  for (const variation in variations) {
91681
- cov_wqxd4hn8r().s[36]++;
91238
+ cov_wqxd4hn8r().s[31]++;
91682
91239
  /* eslint-disable max-depth */
91683
91240
  if (shadowRoot) {
91684
- cov_wqxd4hn8r().b[32][0]++;
91685
- cov_wqxd4hn8r().s[37]++;
91241
+ cov_wqxd4hn8r().b[27][0]++;
91242
+ cov_wqxd4hn8r().s[32]++;
91686
91243
  shadowRoot.querySelector('#app').style.setProperty(`--v-${key}-${variation}`, variations[variation]);
91687
91244
  } else {
91688
- cov_wqxd4hn8r().b[32][1]++;
91689
- cov_wqxd4hn8r().s[38]++;
91245
+ cov_wqxd4hn8r().b[27][1]++;
91246
+ cov_wqxd4hn8r().s[33]++;
91690
91247
  document.documentElement.style.setProperty(`--v-${key}-${variation}`, variations[variation]);
91691
91248
  }
91692
91249
  }
91693
91250
  } catch (error) {
91694
- cov_wqxd4hn8r().s[39]++;
91251
+ cov_wqxd4hn8r().s[34]++;
91695
91252
  // eslint-disable-next-line no-console
91696
91253
  console.error('cannot apply theme colors with name', key, error);
91697
91254
  }
@@ -91703,7 +91260,7 @@ const revolugoConfigMixin = (cov_wqxd4hn8r().s[18]++, vue_runtime_esm["a" /* def
91703
91260
  /* harmony default export */ var revolugo_config = ({
91704
91261
  install(V) {
91705
91262
  cov_wqxd4hn8r().f[8]++;
91706
- cov_wqxd4hn8r().s[40]++;
91263
+ cov_wqxd4hn8r().s[35]++;
91707
91264
  V.mixin(bookingApiClientConfigMixin());
91708
91265
  }
91709
91266
  });