@plattar/plattar-ar-adapter 1.123.1 → 1.123.2

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.
@@ -32,12 +32,6 @@ function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _c
32
32
 
33
33
  function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
34
34
 
35
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
36
-
37
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
38
-
39
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
40
-
41
35
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
42
36
 
43
37
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
@@ -52,6 +46,12 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
52
46
 
53
47
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
54
48
 
49
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
50
+
51
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
52
+
53
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
54
+
55
55
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
56
56
 
57
57
  (function (f) {
@@ -115,64 +115,38 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
115
115
  Object.defineProperty(exports, "__esModule", {
116
116
  value: true
117
117
  });
118
- exports.ConfiguratorAR = void 0;
119
-
120
- var launcher_ar_1 = require("./launcher-ar");
121
- /**
122
- * Performs AR related to Plattar Configurator functionalities
123
- */
124
-
125
-
126
- var ConfiguratorAR = /*#__PURE__*/function (_launcher_ar_1$Launch) {
127
- _inherits(ConfiguratorAR, _launcher_ar_1$Launch);
128
-
129
- var _super = _createSuper(ConfiguratorAR);
130
-
131
- function ConfiguratorAR() {
132
- _classCallCheck(this, ConfiguratorAR);
118
+ exports.LauncherAR = void 0;
133
119
 
134
- return _super.apply(this, arguments);
120
+ var LauncherAR = /*#__PURE__*/function () {
121
+ function LauncherAR() {
122
+ _classCallCheck(this, LauncherAR);
135
123
  }
124
+ /**
125
+ * Initialise and launch with a single function call. this is mostly for convenience.
126
+ * Use .init() and .start() separately for fine-grained control
127
+ */
136
128
 
137
- _createClass(ConfiguratorAR, [{
138
- key: "init",
139
- value: function init() {
140
- throw new Error("Method not implemented.");
141
- }
142
- }, {
129
+
130
+ _createClass(LauncherAR, [{
143
131
  key: "launch",
144
132
  value: function launch() {
145
- throw new Error("Method not implemented.");
146
- }
147
- }, {
148
- key: "start",
149
- value: function start() {
150
- throw new Error("Method not implemented.");
133
+ var _this = this;
134
+
135
+ return new Promise(function (accept, reject) {
136
+ _this.init().then(function (value) {
137
+ value.start();
138
+ return accept();
139
+ })["catch"](reject);
140
+ });
151
141
  }
152
142
  }]);
153
143
 
154
- return ConfiguratorAR;
155
- }(launcher_ar_1.LauncherAR);
156
-
157
- exports.ConfiguratorAR = ConfiguratorAR;
158
- }, {
159
- "./launcher-ar": 2
160
- }],
161
- 2: [function (require, module, exports) {
162
- "use strict";
163
-
164
- Object.defineProperty(exports, "__esModule", {
165
- value: true
166
- });
167
- exports.LauncherAR = void 0;
168
-
169
- var LauncherAR = /*#__PURE__*/_createClass(function LauncherAR() {
170
- _classCallCheck(this, LauncherAR);
171
- });
144
+ return LauncherAR;
145
+ }();
172
146
 
173
147
  exports.LauncherAR = LauncherAR;
174
148
  }, {}],
175
- 3: [function (require, module, exports) {
149
+ 2: [function (require, module, exports) {
176
150
  "use strict";
177
151
 
178
152
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -204,29 +178,29 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
204
178
  */
205
179
 
206
180
 
207
- var ModelAR = /*#__PURE__*/function (_launcher_ar_1$Launch2) {
208
- _inherits(ModelAR, _launcher_ar_1$Launch2);
181
+ var ModelAR = /*#__PURE__*/function (_launcher_ar_1$Launch) {
182
+ _inherits(ModelAR, _launcher_ar_1$Launch);
209
183
 
210
- var _super2 = _createSuper(ModelAR);
184
+ var _super = _createSuper(ModelAR);
211
185
 
212
186
  function ModelAR() {
213
- var _this;
187
+ var _this2;
214
188
 
215
189
  var modelID = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
216
190
 
217
191
  _classCallCheck(this, ModelAR);
218
192
 
219
- _this = _super2.call(this); // analytics instance
193
+ _this2 = _super.call(this); // analytics instance
220
194
 
221
- _this._analytics = null;
195
+ _this2._analytics = null;
222
196
 
223
197
  if (!modelID) {
224
198
  throw new Error("ModelAR.constructor(modelID) - modelID must be defined");
225
199
  }
226
200
 
227
- _this._modelID = modelID;
228
- _this._ar = null;
229
- return _this;
201
+ _this2._modelID = modelID;
202
+ _this2._ar = null;
203
+ return _this2;
230
204
  }
231
205
 
232
206
  _createClass(ModelAR, [{
@@ -243,6 +217,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
243
217
  if (project) {
244
218
  analytics = new plattar_analytics_1.Analytics(project.id);
245
219
  analytics.origin = plattar_api_1.Server.location().type;
220
+ analytics.data.push("type", "model-ar");
246
221
  analytics.data.push("applicationId", project.id);
247
222
  analytics.data.push("applicationTitle", project.attributes.title);
248
223
  analytics.data.push("modelId", model.id);
@@ -261,18 +236,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
261
236
  }, {
262
237
  key: "init",
263
238
  value: function init() {
264
- var _this2 = this;
239
+ var _this3 = this;
265
240
 
266
241
  return new Promise(function (accept, reject) {
267
242
  if (!util_1.Util.canAugment()) {
268
243
  return reject(new Error("ModelAR.init() - cannot proceed as AR not available in context"));
269
244
  }
270
245
 
271
- var model = new plattar_api_1.FileModel(_this2.modelID);
246
+ var model = new plattar_api_1.FileModel(_this3.modelID);
272
247
  model.include(plattar_api_1.Project);
273
248
  model.get().then(function (model) {
274
249
  // setup the analytics data
275
- _this2._SetupAnalytics(model); // we need to define our AR module here
250
+ _this3._SetupAnalytics(model); // we need to define our AR module here
276
251
  // we are in Safari/Quicklook mode here
277
252
 
278
253
 
@@ -280,16 +255,16 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
280
255
  // model needs to have either USDZ or REALITY files defined
281
256
  // we load REALITY stuff first if available
282
257
  if (model.attributes.reality_filename && util_1.Util.canRealityViewer()) {
283
- _this2._ar = new reality_viewer_1["default"]();
284
- _this2._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.reality_filename;
285
- return accept(_this2);
258
+ _this3._ar = new reality_viewer_1["default"]();
259
+ _this3._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.reality_filename;
260
+ return accept(_this3);
286
261
  } // otherwise, load the USDZ stuff second if available
287
262
 
288
263
 
289
264
  if (model.attributes.usdz_filename && util_1.Util.canQuicklook()) {
290
- _this2._ar = new quicklook_viewer_1["default"]();
291
- _this2._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.usdz_filename;
292
- return accept(_this2);
265
+ _this3._ar = new quicklook_viewer_1["default"]();
266
+ _this3._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.usdz_filename;
267
+ return accept(_this3);
293
268
  }
294
269
 
295
270
  return reject(new Error("ModelAR.init() - cannot proceed as ModelFile does not have a defined .usdz or .reality file"));
@@ -297,9 +272,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
297
272
 
298
273
 
299
274
  if (util_1.Util.canSceneViewer()) {
300
- _this2._ar = new scene_viewer_1["default"]();
301
- _this2._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.original_filename;
302
- return accept(_this2);
275
+ _this3._ar = new scene_viewer_1["default"]();
276
+ _this3._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.original_filename;
277
+ return accept(_this3);
303
278
  } // otherwise, we didn't have AR available - it should never really reach this stage as this should be caught
304
279
  // earlier in the process
305
280
 
@@ -308,23 +283,6 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
308
283
  })["catch"](reject);
309
284
  });
310
285
  }
311
- /**
312
- * Initialise and launch with a single function call. this is mostly for convenience.
313
- * Use .init() and .start() separately for fine-grained control
314
- */
315
-
316
- }, {
317
- key: "launch",
318
- value: function launch() {
319
- var _this3 = this;
320
-
321
- return new Promise(function (accept, reject) {
322
- _this3.init().then(function (value) {
323
- value.start();
324
- return accept();
325
- })["catch"](reject);
326
- });
327
- }
328
286
  /**
329
287
  * Launches the internal AR instance using an appropriate version of AR Viewers
330
288
  */
@@ -371,15 +329,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
371
329
 
372
330
  exports.ModelAR = ModelAR;
373
331
  }, {
374
- "../util/util": 13,
375
- "../viewers/quicklook-viewer": 16,
376
- "../viewers/reality-viewer": 17,
377
- "../viewers/scene-viewer": 18,
378
- "./launcher-ar": 2,
379
- "@plattar/plattar-analytics": 36,
380
- "@plattar/plattar-api": 40
332
+ "../util/util": 12,
333
+ "../viewers/quicklook-viewer": 15,
334
+ "../viewers/reality-viewer": 16,
335
+ "../viewers/scene-viewer": 17,
336
+ "./launcher-ar": 1,
337
+ "@plattar/plattar-analytics": 35,
338
+ "@plattar/plattar-api": 39
381
339
  }],
382
- 4: [function (require, module, exports) {
340
+ 3: [function (require, module, exports) {
383
341
  "use strict";
384
342
 
385
343
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -411,10 +369,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
411
369
  */
412
370
 
413
371
 
414
- var ProductAR = /*#__PURE__*/function (_launcher_ar_1$Launch3) {
415
- _inherits(ProductAR, _launcher_ar_1$Launch3);
372
+ var ProductAR = /*#__PURE__*/function (_launcher_ar_1$Launch2) {
373
+ _inherits(ProductAR, _launcher_ar_1$Launch2);
416
374
 
417
- var _super3 = _createSuper(ProductAR);
375
+ var _super2 = _createSuper(ProductAR);
418
376
 
419
377
  function ProductAR() {
420
378
  var _this4;
@@ -424,7 +382,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
424
382
 
425
383
  _classCallCheck(this, ProductAR);
426
384
 
427
- _this4 = _super3.call(this); // analytics instance
385
+ _this4 = _super2.call(this); // analytics instance
428
386
 
429
387
  _this4._analytics = null;
430
388
 
@@ -449,8 +407,8 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
449
407
  return this._variationID;
450
408
  }
451
409
  }, {
452
- key: "_setupAnalytics",
453
- value: function _setupAnalytics(product, variation) {
410
+ key: "_SetupAnalytics",
411
+ value: function _SetupAnalytics(product, variation) {
454
412
  var analytics = null;
455
413
  var scene = product.relationships.find(plattar_api_1.Scene); // setup scene stuff (if any)
456
414
 
@@ -458,6 +416,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
458
416
  analytics = new plattar_analytics_1.Analytics(scene.attributes.application_id);
459
417
  analytics.origin = plattar_api_1.Server.location().type;
460
418
  this._analytics = analytics;
419
+ analytics.data.push("type", "product-ar");
461
420
  analytics.data.push("sceneId", scene.id);
462
421
  analytics.data.push("sceneTitle", scene.attributes.title);
463
422
  var application = scene.relationships.find(plattar_api_1.Project); // setup application stuff (if any)
@@ -532,7 +491,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
532
491
  return reject(new Error("ProductAR.init() - cannot proceed as ModelFile for selected variation is corrupt"));
533
492
  }
534
493
 
535
- _this5._setupAnalytics(product, variation); // we need to define our AR module here
494
+ _this5._SetupAnalytics(product, variation); // we need to define our AR module here
536
495
  // we are in Safari/Quicklook mode here
537
496
 
538
497
 
@@ -568,23 +527,6 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
568
527
  })["catch"](reject);
569
528
  });
570
529
  }
571
- /**
572
- * Initialise and launch with a single function call. this is mostly for convenience.
573
- * Use .init() and .start() separately for fine-grained control
574
- */
575
-
576
- }, {
577
- key: "launch",
578
- value: function launch() {
579
- var _this6 = this;
580
-
581
- return new Promise(function (accept, reject) {
582
- _this6.init().then(function (value) {
583
- value.start();
584
- return accept();
585
- })["catch"](reject);
586
- });
587
- }
588
530
  /**
589
531
  * Launches the internal AR instance using an appropriate version of AR Viewers
590
532
  */
@@ -631,15 +573,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
631
573
 
632
574
  exports.ProductAR = ProductAR;
633
575
  }, {
634
- "../util/util": 13,
635
- "../viewers/quicklook-viewer": 16,
636
- "../viewers/reality-viewer": 17,
637
- "../viewers/scene-viewer": 18,
638
- "./launcher-ar": 2,
639
- "@plattar/plattar-analytics": 36,
640
- "@plattar/plattar-api": 40
576
+ "../util/util": 12,
577
+ "../viewers/quicklook-viewer": 15,
578
+ "../viewers/reality-viewer": 16,
579
+ "../viewers/scene-viewer": 17,
580
+ "./launcher-ar": 1,
581
+ "@plattar/plattar-analytics": 35,
582
+ "@plattar/plattar-api": 39
641
583
  }],
642
- 5: [function (require, module, exports) {
584
+ 4: [function (require, module, exports) {
643
585
  "use strict";
644
586
 
645
587
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -667,19 +609,19 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
667
609
  */
668
610
 
669
611
 
670
- var RawAR = /*#__PURE__*/function (_launcher_ar_1$Launch4) {
671
- _inherits(RawAR, _launcher_ar_1$Launch4);
612
+ var RawAR = /*#__PURE__*/function (_launcher_ar_1$Launch3) {
613
+ _inherits(RawAR, _launcher_ar_1$Launch3);
672
614
 
673
- var _super4 = _createSuper(RawAR);
615
+ var _super3 = _createSuper(RawAR);
674
616
 
675
617
  function RawAR() {
676
- var _this7;
618
+ var _this6;
677
619
 
678
620
  var modelLocation = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
679
621
 
680
622
  _classCallCheck(this, RawAR);
681
623
 
682
- _this7 = _super4.call(this);
624
+ _this6 = _super3.call(this);
683
625
 
684
626
  if (!modelLocation) {
685
627
  throw new Error("RawAR.constructor(modelLocation) - modelLocation must be defined");
@@ -688,13 +630,13 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
688
630
  var lowerLoc = modelLocation.toLowerCase();
689
631
 
690
632
  if (lowerLoc.endsWith("usdz") || lowerLoc.endsWith("glb") || lowerLoc.endsWith("gltf") || lowerLoc.endsWith("reality")) {
691
- _this7._modelLocation = modelLocation;
692
- _this7._ar = null;
633
+ _this6._modelLocation = modelLocation;
634
+ _this6._ar = null;
693
635
  } else {
694
636
  throw new Error("RawAR.constructor(modelLocation) - modelLocation must be one of gltf, glb, usdz or reality");
695
637
  }
696
638
 
697
- return _this7;
639
+ return _this6;
698
640
  }
699
641
 
700
642
  _createClass(RawAR, [{
@@ -713,30 +655,30 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
713
655
  }, {
714
656
  key: "init",
715
657
  value: function init() {
716
- var _this8 = this;
658
+ var _this7 = this;
717
659
 
718
660
  return new Promise(function (accept, reject) {
719
661
  if (!util_1.Util.canAugment()) {
720
662
  return reject(new Error("RawAR.init() - cannot proceed as AR not available in context"));
721
663
  }
722
664
 
723
- var modelLocation = _this8._modelLocation;
665
+ var modelLocation = _this7._modelLocation;
724
666
  var lowerLoc = modelLocation.toLowerCase(); // we need to define our AR module here
725
667
  // we are in Safari/Quicklook mode here
726
668
 
727
669
  if (util_1.Util.isSafari() || util_1.Util.isChromeOnIOS()) {
728
670
  // load the reality experience if dealing with reality file
729
671
  if (lowerLoc.endsWith("reality") && util_1.Util.canRealityViewer()) {
730
- _this8._ar = new reality_viewer_1["default"]();
731
- _this8._ar.modelUrl = modelLocation;
732
- return accept(_this8);
672
+ _this7._ar = new reality_viewer_1["default"]();
673
+ _this7._ar.modelUrl = modelLocation;
674
+ return accept(_this7);
733
675
  } // load the usdz experience if dealing with usdz file
734
676
 
735
677
 
736
678
  if (lowerLoc.endsWith("usdz") && util_1.Util.canQuicklook()) {
737
- _this8._ar = new quicklook_viewer_1["default"]();
738
- _this8._ar.modelUrl = modelLocation;
739
- return accept(_this8);
679
+ _this7._ar = new quicklook_viewer_1["default"]();
680
+ _this7._ar.modelUrl = modelLocation;
681
+ return accept(_this7);
740
682
  }
741
683
 
742
684
  return reject(new Error("RawAR.init() - cannot proceed as model is not a .usdz or .reality file"));
@@ -745,9 +687,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
745
687
 
746
688
  if (util_1.Util.canSceneViewer()) {
747
689
  if (lowerLoc.endsWith("glb") || lowerLoc.endsWith("gltf")) {
748
- _this8._ar = new scene_viewer_1["default"]();
749
- _this8._ar.modelUrl = modelLocation;
750
- return accept(_this8);
690
+ _this7._ar = new scene_viewer_1["default"]();
691
+ _this7._ar.modelUrl = modelLocation;
692
+ return accept(_this7);
751
693
  }
752
694
 
753
695
  return reject(new Error("RawAR.init() - cannot proceed as model is not a .glb or .gltf file"));
@@ -758,23 +700,6 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
758
700
  return reject(new Error("RawAR.init() - could not initialise AR correctly, check values"));
759
701
  });
760
702
  }
761
- /**
762
- * Initialise and launch with a single function call. this is mostly for convenience.
763
- * Use .init() and .start() separately for fine-grained control
764
- */
765
-
766
- }, {
767
- key: "launch",
768
- value: function launch() {
769
- var _this9 = this;
770
-
771
- return new Promise(function (accept, reject) {
772
- _this9.init().then(function (value) {
773
- value.start();
774
- return accept();
775
- })["catch"](reject);
776
- });
777
- }
778
703
  /**
779
704
  * Launches the internal AR instance using an appropriate version of AR Viewers
780
705
  */
@@ -811,51 +736,232 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
811
736
 
812
737
  exports.RawAR = RawAR;
813
738
  }, {
814
- "../util/util": 13,
815
- "../viewers/quicklook-viewer": 16,
816
- "../viewers/reality-viewer": 17,
817
- "../viewers/scene-viewer": 18,
818
- "./launcher-ar": 2
739
+ "../util/util": 12,
740
+ "../viewers/quicklook-viewer": 15,
741
+ "../viewers/reality-viewer": 16,
742
+ "../viewers/scene-viewer": 17,
743
+ "./launcher-ar": 1
819
744
  }],
820
- 6: [function (require, module, exports) {
745
+ 5: [function (require, module, exports) {
821
746
  "use strict";
822
747
 
748
+ var __importDefault = this && this.__importDefault || function (mod) {
749
+ return mod && mod.__esModule ? mod : {
750
+ "default": mod
751
+ };
752
+ };
753
+
823
754
  Object.defineProperty(exports, "__esModule", {
824
755
  value: true
825
756
  });
826
757
  exports.SceneAR = void 0;
827
758
 
759
+ var plattar_analytics_1 = require("@plattar/plattar-analytics");
760
+
761
+ var plattar_api_1 = require("@plattar/plattar-api");
762
+
763
+ var plattar_services_1 = require("@plattar/plattar-services");
764
+
765
+ var util_1 = require("../util/util");
766
+
767
+ var quicklook_viewer_1 = __importDefault(require("../viewers/quicklook-viewer"));
768
+
769
+ var reality_viewer_1 = __importDefault(require("../viewers/reality-viewer"));
770
+
771
+ var scene_viewer_1 = __importDefault(require("../viewers/scene-viewer"));
772
+
828
773
  var launcher_ar_1 = require("./launcher-ar");
829
774
  /**
830
775
  * Performs AR functionality related to Plattar Scenes
831
776
  */
832
777
 
833
778
 
834
- var SceneAR = /*#__PURE__*/function (_launcher_ar_1$Launch5) {
835
- _inherits(SceneAR, _launcher_ar_1$Launch5);
779
+ var SceneAR = /*#__PURE__*/function (_launcher_ar_1$Launch4) {
780
+ _inherits(SceneAR, _launcher_ar_1$Launch4);
836
781
 
837
- var _super5 = _createSuper(SceneAR);
782
+ var _super4 = _createSuper(SceneAR);
838
783
 
839
784
  function SceneAR() {
785
+ var _this8;
786
+
787
+ var sceneID = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
788
+
840
789
  _classCallCheck(this, SceneAR);
841
790
 
842
- return _super5.apply(this, arguments);
791
+ _this8 = _super4.call(this); // analytics instance
792
+
793
+ _this8._analytics = null;
794
+
795
+ if (!sceneID) {
796
+ throw new Error("SceneAR.constructor(sceneID) - sceneID must be defined");
797
+ }
798
+
799
+ _this8._sceneID = sceneID;
800
+ _this8._ar = null;
801
+ return _this8;
843
802
  }
844
803
 
845
804
  _createClass(SceneAR, [{
846
- key: "init",
847
- value: function init() {
848
- throw new Error("Method not implemented.");
805
+ key: "sceneID",
806
+ get: function get() {
807
+ return this._sceneID;
849
808
  }
850
809
  }, {
851
- key: "launch",
852
- value: function launch() {
853
- throw new Error("Method not implemented.");
810
+ key: "_SetupAnalytics",
811
+ value: function _SetupAnalytics(scene) {
812
+ var analytics = null; // setup scene stuff (if any)
813
+
814
+ if (scene) {
815
+ analytics = new plattar_analytics_1.Analytics(scene.attributes.application_id);
816
+ analytics.origin = plattar_api_1.Server.location().type;
817
+ this._analytics = analytics;
818
+ analytics.data.push("type", "scene-ar");
819
+ analytics.data.push("sceneId", scene.id);
820
+ analytics.data.push("sceneTitle", scene.attributes.title);
821
+ var application = scene.relationships.find(plattar_api_1.Project); // setup application stuff (if any)
822
+
823
+ if (application) {
824
+ analytics.data.push("applicationId", application.id);
825
+ analytics.data.push("applicationTitle", application.attributes.title);
826
+ }
827
+ }
828
+ }
829
+ /**
830
+ * Composes a Scene into an AR Model (remote operation) that can be used to launch
831
+ * an AR File
832
+ */
833
+
834
+ }, {
835
+ key: "_ComposeScene",
836
+ value: function _ComposeScene(scene, output) {
837
+ return new Promise(function (accept, reject) {
838
+ var sceneProducts = scene.relationships.filter(plattar_api_1.SceneProduct); // nothing to do if no AR components can be found
839
+
840
+ if (sceneProducts.length <= 0) {
841
+ return reject(new Error("SceneAR.ComposeScene() - cannot proceed as scene does not contain AR components"));
842
+ } // define our configurator
843
+
844
+
845
+ var configurator = new plattar_services_1.Configurator();
846
+ configurator.server = plattar_api_1.Server.location().type;
847
+ configurator.output = output; // add out scene models
848
+
849
+ sceneProducts.forEach(function (sceneProduct) {
850
+ var product = sceneProduct.relationships.find(plattar_api_1.Product);
851
+
852
+ if (product && product.attributes.product_variation_id) {
853
+ configurator.addSceneProduct(sceneProduct.id, product.attributes.product_variation_id);
854
+ }
855
+ });
856
+ return configurator.get().then(function (result) {
857
+ accept(result.filename);
858
+ })["catch"](reject);
859
+ });
860
+ }
861
+ /**
862
+ * Initialise the SceneAR instance. This returns a Promise that resolves
863
+ * successfully if initialisation is successful, otherwise it will fail.
864
+ *
865
+ * filure can occur for a number of reasons but it generally means that AR
866
+ * cannot be performed.
867
+ */
868
+
869
+ }, {
870
+ key: "init",
871
+ value: function init() {
872
+ var _this9 = this;
873
+
874
+ return new Promise(function (accept, reject) {
875
+ if (!util_1.Util.canAugment()) {
876
+ return reject(new Error("SceneAR.init() - cannot proceed as AR not available in context"));
877
+ }
878
+
879
+ var scene = new plattar_api_1.Scene(_this9.sceneID);
880
+ scene.include(plattar_api_1.Project);
881
+ scene.include(plattar_api_1.SceneProduct);
882
+ scene.include(plattar_api_1.SceneProduct.include(plattar_api_1.Product));
883
+ scene.get().then(function (scene) {
884
+ _this9._SetupAnalytics(scene);
885
+
886
+ var sceneOpt = scene.attributes.custom_json || {}; // we need to define our AR module here
887
+ // we are in Safari/Quicklook mode here
888
+
889
+ if (util_1.Util.isSafari() || util_1.Util.isChromeOnIOS()) {
890
+ // we need to launch a VTO experience here
891
+ // VTO requires Reality Support
892
+ if (sceneOpt.anchor === "face") {
893
+ if (util_1.Util.canRealityViewer()) {
894
+ return _this9._ComposeScene(scene, "vto").then(function (modelUrl) {
895
+ _this9._ar = new reality_viewer_1["default"]();
896
+ _this9._ar.modelUrl = modelUrl;
897
+ return accept(_this9);
898
+ })["catch"](reject);
899
+ } else {
900
+ return reject(new Error("SceneAR.init() - cannot proceed as VTO AR requires Reality Viewer support"));
901
+ }
902
+ } // otherwise, load the USDZ stuff second if available
903
+
904
+
905
+ if (util_1.Util.canQuicklook()) {
906
+ return _this9._ComposeScene(scene, "usdz").then(function (modelUrl) {
907
+ _this9._ar = new quicklook_viewer_1["default"]();
908
+ _this9._ar.modelUrl = modelUrl;
909
+ return accept(_this9);
910
+ })["catch"](reject);
911
+ }
912
+
913
+ return reject(new Error("SceneAR.init() - cannot proceed as IOS device does not support AR Mode"));
914
+ } // check android
915
+
916
+
917
+ if (util_1.Util.canSceneViewer()) {
918
+ return _this9._ComposeScene(scene, "glb").then(function (modelUrl) {
919
+ _this9._ar = new scene_viewer_1["default"]();
920
+ _this9._ar.modelUrl = modelUrl;
921
+ return accept(_this9);
922
+ })["catch"](reject);
923
+ } // otherwise, we didn't have AR available - it should never really reach this stage as this should be caught
924
+ // earlier in the process
925
+
926
+
927
+ return reject(new Error("SceneAR.init() - could not initialise AR correctly, check values"));
928
+ })["catch"](reject);
929
+ });
854
930
  }
855
931
  }, {
856
932
  key: "start",
857
933
  value: function start() {
858
- throw new Error("Method not implemented.");
934
+ if (!this._ar) {
935
+ throw new Error("SceneAR.start() - cannot proceed as AR instance is null");
936
+ }
937
+
938
+ var analytics = this._analytics;
939
+
940
+ if (analytics) {
941
+ analytics.data.push("device", this._ar.device);
942
+ analytics.data.push("eventCategory", this._ar.nodeType);
943
+ analytics.data.push("eventAction", "Start Scene Augment");
944
+ analytics.write();
945
+ analytics.startRecordEngagement();
946
+ } // this was initialised via the init() function
947
+
948
+
949
+ this._ar.start();
950
+ }
951
+ }, {
952
+ key: "canQuicklook",
953
+ value: function canQuicklook() {
954
+ return this._ar && this._ar.nodeType === "Quick Look" ? true : false;
955
+ }
956
+ }, {
957
+ key: "canRealityViewer",
958
+ value: function canRealityViewer() {
959
+ return this._ar && this._ar.nodeType === "Reality Viewer" ? true : false;
960
+ }
961
+ }, {
962
+ key: "canSceneViewer",
963
+ value: function canSceneViewer() {
964
+ return this._ar && this._ar.nodeType === "Scene Viewer" ? true : false;
859
965
  }
860
966
  }]);
861
967
 
@@ -864,9 +970,16 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
864
970
 
865
971
  exports.SceneAR = SceneAR;
866
972
  }, {
867
- "./launcher-ar": 2
973
+ "../util/util": 12,
974
+ "../viewers/quicklook-viewer": 15,
975
+ "../viewers/reality-viewer": 16,
976
+ "../viewers/scene-viewer": 17,
977
+ "./launcher-ar": 1,
978
+ "@plattar/plattar-analytics": 35,
979
+ "@plattar/plattar-api": 39,
980
+ "@plattar/plattar-services": 110
868
981
  }],
869
- 7: [function (require, module, exports) {
982
+ 6: [function (require, module, exports) {
870
983
  "use strict";
871
984
 
872
985
  Object.defineProperty(exports, "__esModule", {
@@ -891,14 +1004,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
891
1004
  var ConfiguratorController = /*#__PURE__*/function (_plattar_controller_) {
892
1005
  _inherits(ConfiguratorController, _plattar_controller_);
893
1006
 
894
- var _super6 = _createSuper(ConfiguratorController);
1007
+ var _super5 = _createSuper(ConfiguratorController);
895
1008
 
896
1009
  function ConfiguratorController(parent) {
897
1010
  var _this10;
898
1011
 
899
1012
  _classCallCheck(this, ConfiguratorController);
900
1013
 
901
- _this10 = _super6.call(this, parent);
1014
+ _this10 = _super5.call(this, parent);
902
1015
  _this10._state = plattar_controller_1.ControllerState.None;
903
1016
  _this10._element = null;
904
1017
  _this10._prevQROpt = null;
@@ -1139,13 +1252,13 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1139
1252
 
1140
1253
  exports.ConfiguratorController = ConfiguratorController;
1141
1254
  }, {
1142
- "../../ar/raw-ar": 5,
1143
- "../../util/util": 13,
1144
- "./plattar-controller": 8,
1145
- "@plattar/plattar-api": 40,
1146
- "@plattar/plattar-services": 111
1255
+ "../../ar/raw-ar": 4,
1256
+ "../../util/util": 12,
1257
+ "./plattar-controller": 7,
1258
+ "@plattar/plattar-api": 39,
1259
+ "@plattar/plattar-services": 110
1147
1260
  }],
1148
- 8: [function (require, module, exports) {
1261
+ 7: [function (require, module, exports) {
1149
1262
  "use strict";
1150
1263
 
1151
1264
  Object.defineProperty(exports, "__esModule", {
@@ -1224,7 +1337,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1224
1337
 
1225
1338
  exports.PlattarController = PlattarController;
1226
1339
  }, {}],
1227
- 9: [function (require, module, exports) {
1340
+ 8: [function (require, module, exports) {
1228
1341
  "use strict";
1229
1342
 
1230
1343
  Object.defineProperty(exports, "__esModule", {
@@ -1247,14 +1360,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1247
1360
  var ProductController = /*#__PURE__*/function (_plattar_controller_2) {
1248
1361
  _inherits(ProductController, _plattar_controller_2);
1249
1362
 
1250
- var _super7 = _createSuper(ProductController);
1363
+ var _super6 = _createSuper(ProductController);
1251
1364
 
1252
1365
  function ProductController(parent) {
1253
1366
  var _this15;
1254
1367
 
1255
1368
  _classCallCheck(this, ProductController);
1256
1369
 
1257
- _this15 = _super7.call(this, parent);
1370
+ _this15 = _super6.call(this, parent);
1258
1371
  _this15._state = plattar_controller_1.ControllerState.None;
1259
1372
  _this15._element = null;
1260
1373
  _this15._prevQROpt = null;
@@ -1441,12 +1554,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1441
1554
 
1442
1555
  exports.ProductController = ProductController;
1443
1556
  }, {
1444
- "../../ar/product-ar": 4,
1445
- "../../util/util": 13,
1446
- "./plattar-controller": 8,
1447
- "@plattar/plattar-api": 40
1557
+ "../../ar/product-ar": 3,
1558
+ "../../util/util": 12,
1559
+ "./plattar-controller": 7,
1560
+ "@plattar/plattar-api": 39
1448
1561
  }],
1449
- 10: [function (require, module, exports) {
1562
+ 9: [function (require, module, exports) {
1450
1563
  "use strict";
1451
1564
 
1452
1565
  Object.defineProperty(exports, "__esModule", {
@@ -1469,14 +1582,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1469
1582
  var ViewerController = /*#__PURE__*/function (_plattar_controller_3) {
1470
1583
  _inherits(ViewerController, _plattar_controller_3);
1471
1584
 
1472
- var _super8 = _createSuper(ViewerController);
1585
+ var _super7 = _createSuper(ViewerController);
1473
1586
 
1474
1587
  function ViewerController(parent) {
1475
1588
  var _this20;
1476
1589
 
1477
1590
  _classCallCheck(this, ViewerController);
1478
1591
 
1479
- _this20 = _super8.call(this, parent);
1592
+ _this20 = _super7.call(this, parent);
1480
1593
  _this20._state = plattar_controller_1.ControllerState.None;
1481
1594
  _this20._element = null;
1482
1595
  _this20._prevQROpt = null;
@@ -1682,12 +1795,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1682
1795
 
1683
1796
  exports.ViewerController = ViewerController;
1684
1797
  }, {
1685
- "../../ar/product-ar": 4,
1686
- "../../util/util": 13,
1687
- "./plattar-controller": 8,
1688
- "@plattar/plattar-api": 40
1798
+ "../../ar/product-ar": 3,
1799
+ "../../util/util": 12,
1800
+ "./plattar-controller": 7,
1801
+ "@plattar/plattar-api": 39
1689
1802
  }],
1690
- 11: [function (require, module, exports) {
1803
+ 10: [function (require, module, exports) {
1691
1804
  "use strict";
1692
1805
 
1693
1806
  Object.defineProperty(exports, "__esModule", {
@@ -1721,14 +1834,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1721
1834
  var PlattarEmbed = /*#__PURE__*/function (_HTMLElement) {
1722
1835
  _inherits(PlattarEmbed, _HTMLElement);
1723
1836
 
1724
- var _super9 = _createSuper(PlattarEmbed);
1837
+ var _super8 = _createSuper(PlattarEmbed);
1725
1838
 
1726
1839
  function PlattarEmbed() {
1727
1840
  var _this25;
1728
1841
 
1729
1842
  _classCallCheck(this, PlattarEmbed);
1730
1843
 
1731
- _this25 = _super9.call(this); // this is the current embed type, viewer by default
1844
+ _this25 = _super8.call(this); // this is the current embed type, viewer by default
1732
1845
 
1733
1846
  _this25._currentType = EmbedType.Viewer;
1734
1847
  _this25._controller = null;
@@ -1880,12 +1993,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1880
1993
 
1881
1994
  exports["default"] = PlattarEmbed;
1882
1995
  }, {
1883
- "./controllers/configurator-controller": 7,
1884
- "./controllers/product-controller": 9,
1885
- "./controllers/viewer-controller": 10,
1886
- "@plattar/plattar-api": 40
1996
+ "./controllers/configurator-controller": 6,
1997
+ "./controllers/product-controller": 8,
1998
+ "./controllers/viewer-controller": 9,
1999
+ "@plattar/plattar-api": 39
1887
2000
  }],
1888
- 12: [function (require, module, exports) {
2001
+ 11: [function (require, module, exports) {
1889
2002
  "use strict";
1890
2003
 
1891
2004
  var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
@@ -1931,20 +2044,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
1931
2044
  Object.defineProperty(exports, "__esModule", {
1932
2045
  value: true
1933
2046
  });
1934
- exports.Util = exports.RawAR = exports.ModelAR = exports.SceneAR = exports.ProductAR = exports.ConfiguratorAR = exports.version = exports.PlattarQRCode = exports.PlattarWeb = void 0;
2047
+ exports.Util = exports.RawAR = exports.ModelAR = exports.SceneAR = exports.ProductAR = exports.version = exports.PlattarQRCode = exports.PlattarWeb = void 0;
1935
2048
  exports.PlattarWeb = __importStar(require("@plattar/plattar-web"));
1936
2049
  exports.PlattarQRCode = __importStar(require("@plattar/plattar-qrcode"));
1937
2050
  exports.version = __importStar(require("./version"));
1938
2051
 
1939
- var configurator_ar_1 = require("./ar/configurator-ar");
1940
-
1941
- Object.defineProperty(exports, "ConfiguratorAR", {
1942
- enumerable: true,
1943
- get: function get() {
1944
- return configurator_ar_1.ConfiguratorAR;
1945
- }
1946
- });
1947
-
1948
2052
  var product_ar_1 = require("./ar/product-ar");
1949
2053
 
1950
2054
  Object.defineProperty(exports, "ProductAR", {
@@ -2002,18 +2106,17 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2002
2106
 
2003
2107
  console.log("using @plattar/plattar-ar-adapter v" + version_1["default"]);
2004
2108
  }, {
2005
- "./ar/configurator-ar": 1,
2006
- "./ar/model-ar": 3,
2007
- "./ar/product-ar": 4,
2008
- "./ar/raw-ar": 5,
2009
- "./ar/scene-ar": 6,
2010
- "./embed/plattar-embed": 11,
2011
- "./util/util": 13,
2012
- "./version": 14,
2013
- "@plattar/plattar-qrcode": 106,
2014
- "@plattar/plattar-web": 125
2109
+ "./ar/model-ar": 2,
2110
+ "./ar/product-ar": 3,
2111
+ "./ar/raw-ar": 4,
2112
+ "./ar/scene-ar": 5,
2113
+ "./embed/plattar-embed": 10,
2114
+ "./util/util": 12,
2115
+ "./version": 13,
2116
+ "@plattar/plattar-qrcode": 105,
2117
+ "@plattar/plattar-web": 124
2015
2118
  }],
2016
- 13: [function (require, module, exports) {
2119
+ 12: [function (require, module, exports) {
2017
2120
  "use strict";
2018
2121
 
2019
2122
  Object.defineProperty(exports, "__esModule", {
@@ -2137,15 +2240,15 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2137
2240
 
2138
2241
  exports.Util = Util;
2139
2242
  }, {}],
2140
- 14: [function (require, module, exports) {
2243
+ 13: [function (require, module, exports) {
2141
2244
  "use strict";
2142
2245
 
2143
2246
  Object.defineProperty(exports, "__esModule", {
2144
2247
  value: true
2145
2248
  });
2146
- exports["default"] = "1.123.1";
2249
+ exports["default"] = "1.123.2";
2147
2250
  }, {}],
2148
- 15: [function (require, module, exports) {
2251
+ 14: [function (require, module, exports) {
2149
2252
  "use strict";
2150
2253
 
2151
2254
  Object.defineProperty(exports, "__esModule", {
@@ -2161,7 +2264,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2161
2264
 
2162
2265
  exports["default"] = ARViewer;
2163
2266
  }, {}],
2164
- 16: [function (require, module, exports) {
2267
+ 15: [function (require, module, exports) {
2165
2268
  "use strict";
2166
2269
 
2167
2270
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -2179,14 +2282,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2179
2282
  var QuicklookViewer = /*#__PURE__*/function (_ar_viewer_1$default) {
2180
2283
  _inherits(QuicklookViewer, _ar_viewer_1$default);
2181
2284
 
2182
- var _super10 = _createSuper(QuicklookViewer);
2285
+ var _super9 = _createSuper(QuicklookViewer);
2183
2286
 
2184
2287
  function QuicklookViewer() {
2185
2288
  var _this31;
2186
2289
 
2187
2290
  _classCallCheck(this, QuicklookViewer);
2188
2291
 
2189
- _this31 = _super10.call(this);
2292
+ _this31 = _super9.call(this);
2190
2293
  _this31.araction = null;
2191
2294
  _this31.titleHTML = "&checkoutTitle=" + document.title + "&checkoutSubtitle=" + document.title;
2192
2295
 
@@ -2249,9 +2352,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2249
2352
 
2250
2353
  exports["default"] = QuicklookViewer;
2251
2354
  }, {
2252
- "./ar-viewer": 15
2355
+ "./ar-viewer": 14
2253
2356
  }],
2254
- 17: [function (require, module, exports) {
2357
+ 16: [function (require, module, exports) {
2255
2358
  "use strict";
2256
2359
 
2257
2360
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -2269,12 +2372,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2269
2372
  var RealityViewer = /*#__PURE__*/function (_ar_viewer_1$default2) {
2270
2373
  _inherits(RealityViewer, _ar_viewer_1$default2);
2271
2374
 
2272
- var _super11 = _createSuper(RealityViewer);
2375
+ var _super10 = _createSuper(RealityViewer);
2273
2376
 
2274
2377
  function RealityViewer() {
2275
2378
  _classCallCheck(this, RealityViewer);
2276
2379
 
2277
- return _super11.call(this);
2380
+ return _super10.call(this);
2278
2381
  }
2279
2382
 
2280
2383
  _createClass(RealityViewer, [{
@@ -2307,9 +2410,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2307
2410
 
2308
2411
  exports["default"] = RealityViewer;
2309
2412
  }, {
2310
- "./ar-viewer": 15
2413
+ "./ar-viewer": 14
2311
2414
  }],
2312
- 18: [function (require, module, exports) {
2415
+ 17: [function (require, module, exports) {
2313
2416
  "use strict";
2314
2417
 
2315
2418
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -2327,14 +2430,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2327
2430
  var SceneViewer = /*#__PURE__*/function (_ar_viewer_1$default3) {
2328
2431
  _inherits(SceneViewer, _ar_viewer_1$default3);
2329
2432
 
2330
- var _super12 = _createSuper(SceneViewer);
2433
+ var _super11 = _createSuper(SceneViewer);
2331
2434
 
2332
2435
  function SceneViewer() {
2333
2436
  var _this33;
2334
2437
 
2335
2438
  _classCallCheck(this, SceneViewer);
2336
2439
 
2337
- _this33 = _super12.call(this);
2440
+ _this33 = _super11.call(this);
2338
2441
  _this33.araction = null;
2339
2442
  _this33.isVertical = false;
2340
2443
  _this33.titleHTML = "<b>" + document.title;
@@ -2396,9 +2499,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2396
2499
 
2397
2500
  exports["default"] = SceneViewer;
2398
2501
  }, {
2399
- "./ar-viewer": 15
2502
+ "./ar-viewer": 14
2400
2503
  }],
2401
- 19: [function (require, module, exports) {
2504
+ 18: [function (require, module, exports) {
2402
2505
  "use strict";
2403
2506
 
2404
2507
  var Messenger = require("./messenger/messenger.js");
@@ -2434,12 +2537,12 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2434
2537
  version: Version
2435
2538
  };
2436
2539
  }, {
2437
- "./memory/memory.js": 20,
2438
- "./messenger/global-event-handler.js": 27,
2439
- "./messenger/messenger.js": 28,
2440
- "./version": 33
2540
+ "./memory/memory.js": 19,
2541
+ "./messenger/global-event-handler.js": 26,
2542
+ "./messenger/messenger.js": 27,
2543
+ "./version": 32
2441
2544
  }],
2442
- 20: [function (require, module, exports) {
2545
+ 19: [function (require, module, exports) {
2443
2546
  var PermanentMemory = require("./permanent-memory");
2444
2547
 
2445
2548
  var TemporaryMemory = require("./temporary-memory");
@@ -2485,10 +2588,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2485
2588
 
2486
2589
  module.exports = Memory;
2487
2590
  }, {
2488
- "./permanent-memory": 21,
2489
- "./temporary-memory": 22
2591
+ "./permanent-memory": 20,
2592
+ "./temporary-memory": 21
2490
2593
  }],
2491
- 21: [function (require, module, exports) {
2594
+ 20: [function (require, module, exports) {
2492
2595
  var WrappedValue = require("./wrapped-value");
2493
2596
 
2494
2597
  var PermanentMemory = /*#__PURE__*/_createClass(function PermanentMemory(messengerInstance) {
@@ -2586,9 +2689,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2586
2689
 
2587
2690
  module.exports = PermanentMemory;
2588
2691
  }, {
2589
- "./wrapped-value": 23
2692
+ "./wrapped-value": 22
2590
2693
  }],
2591
- 22: [function (require, module, exports) {
2694
+ 21: [function (require, module, exports) {
2592
2695
  var WrappedValue = require("./wrapped-value");
2593
2696
 
2594
2697
  var TemporaryMemory = /*#__PURE__*/_createClass(function TemporaryMemory(messengerInstance) {
@@ -2665,9 +2768,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2665
2768
 
2666
2769
  module.exports = TemporaryMemory;
2667
2770
  }, {
2668
- "./wrapped-value": 23
2771
+ "./wrapped-value": 22
2669
2772
  }],
2670
- 23: [function (require, module, exports) {
2773
+ 22: [function (require, module, exports) {
2671
2774
  /**
2672
2775
  * WrappedValue represents a generic value type with a callback function
2673
2776
  * for when the value has changed
@@ -2785,7 +2888,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2785
2888
 
2786
2889
  module.exports = WrappedValue;
2787
2890
  }, {}],
2788
- 24: [function (require, module, exports) {
2891
+ 23: [function (require, module, exports) {
2789
2892
  /**
2790
2893
  * Broadcaster is used to call functions in multiple contexts at the
2791
2894
  * same time. This can be useful without having to handle complex logic
@@ -2852,7 +2955,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2852
2955
 
2853
2956
  module.exports = Broadcaster;
2854
2957
  }, {}],
2855
- 25: [function (require, module, exports) {
2958
+ 24: [function (require, module, exports) {
2856
2959
  var WrappedFunction = require("./wrapped-local-function");
2857
2960
 
2858
2961
  var CurrentFunctionList = /*#__PURE__*/_createClass(function CurrentFunctionList() {
@@ -2915,9 +3018,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
2915
3018
 
2916
3019
  module.exports = CurrentFunctionList;
2917
3020
  }, {
2918
- "./wrapped-local-function": 26
3021
+ "./wrapped-local-function": 25
2919
3022
  }],
2920
- 26: [function (require, module, exports) {
3023
+ 25: [function (require, module, exports) {
2921
3024
  var Util = require("../util/util.js");
2922
3025
  /**
2923
3026
  * WrappedLocalFunction represents a container that holds and maintains a specific function
@@ -3027,9 +3130,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3027
3130
 
3028
3131
  module.exports = WrappedLocalFunction;
3029
3132
  }, {
3030
- "../util/util.js": 32
3133
+ "../util/util.js": 31
3031
3134
  }],
3032
- 27: [function (require, module, exports) {
3135
+ 26: [function (require, module, exports) {
3033
3136
  var RemoteInterface = require("./remote-interface.js");
3034
3137
  /**
3035
3138
  * This is a singleton class that handles events on a global basis. Allows
@@ -3121,9 +3224,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3121
3224
 
3122
3225
  module.exports = GlobalEventHandler;
3123
3226
  }, {
3124
- "./remote-interface.js": 29
3227
+ "./remote-interface.js": 28
3125
3228
  }],
3126
- 28: [function (require, module, exports) {
3229
+ 27: [function (require, module, exports) {
3127
3230
  var CurrentFunctionList = require("./current/current-function-list");
3128
3231
 
3129
3232
  var RemoteInterface = require("./remote-interface");
@@ -3452,14 +3555,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3452
3555
 
3453
3556
  module.exports = Messenger;
3454
3557
  }, {
3455
- "./broadcaster.js": 24,
3456
- "./current/current-function-list": 25,
3457
- "./global-event-handler.js": 27,
3458
- "./remote-interface": 29,
3459
- "./remote/remote-function-list": 30,
3460
- "./util/util.js": 32
3558
+ "./broadcaster.js": 23,
3559
+ "./current/current-function-list": 24,
3560
+ "./global-event-handler.js": 26,
3561
+ "./remote-interface": 28,
3562
+ "./remote/remote-function-list": 29,
3563
+ "./util/util.js": 31
3461
3564
  }],
3462
- 29: [function (require, module, exports) {
3565
+ 28: [function (require, module, exports) {
3463
3566
  /**
3464
3567
  * Provides a single useful interface for performing remote function calls
3465
3568
  */
@@ -3531,7 +3634,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3531
3634
 
3532
3635
  module.exports = RemoteInterface;
3533
3636
  }, {}],
3534
- 30: [function (require, module, exports) {
3637
+ 29: [function (require, module, exports) {
3535
3638
  var WrappedFunction = require("./wrapped-remote-function");
3536
3639
 
3537
3640
  var RemoteFunctionList = /*#__PURE__*/function () {
@@ -3619,9 +3722,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3619
3722
 
3620
3723
  module.exports = RemoteFunctionList;
3621
3724
  }, {
3622
- "./wrapped-remote-function": 31
3725
+ "./wrapped-remote-function": 30
3623
3726
  }],
3624
- 31: [function (require, module, exports) {
3727
+ 30: [function (require, module, exports) {
3625
3728
  var Util = require("../util/util.js");
3626
3729
 
3627
3730
  var GlobalEventHandler = require("../global-event-handler.js");
@@ -3713,10 +3816,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3713
3816
 
3714
3817
  module.exports = WrappedRemoteFunction;
3715
3818
  }, {
3716
- "../global-event-handler.js": 27,
3717
- "../util/util.js": 32
3819
+ "../global-event-handler.js": 26,
3820
+ "../util/util.js": 31
3718
3821
  }],
3719
- 32: [function (require, module, exports) {
3822
+ 31: [function (require, module, exports) {
3720
3823
  var Util = /*#__PURE__*/function () {
3721
3824
  function Util() {
3722
3825
  _classCallCheck(this, Util);
@@ -3756,10 +3859,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3756
3859
 
3757
3860
  module.exports = Util;
3758
3861
  }, {}],
3759
- 33: [function (require, module, exports) {
3862
+ 32: [function (require, module, exports) {
3760
3863
  module.exports = "1.113.6";
3761
3864
  }, {}],
3762
- 34: [function (require, module, exports) {
3865
+ 33: [function (require, module, exports) {
3763
3866
  "use strict";
3764
3867
 
3765
3868
  Object.defineProperty(exports, "__esModule", {
@@ -3828,9 +3931,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3828
3931
 
3829
3932
  exports.AnalyticsData = AnalyticsData;
3830
3933
  }, {
3831
- "../util/util": 38
3934
+ "../util/util": 37
3832
3935
  }],
3833
- 35: [function (require, module, exports) {
3936
+ 34: [function (require, module, exports) {
3834
3937
  "use strict";
3835
3938
 
3836
3939
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -3955,10 +4058,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
3955
4058
 
3956
4059
  exports.Analytics = Analytics;
3957
4060
  }, {
3958
- "../util/basic-http": 37,
3959
- "./analytics-data": 34
4061
+ "../util/basic-http": 36,
4062
+ "./analytics-data": 33
3960
4063
  }],
3961
- 36: [function (require, module, exports) {
4064
+ 35: [function (require, module, exports) {
3962
4065
  "use strict";
3963
4066
 
3964
4067
  var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
@@ -4020,10 +4123,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4020
4123
 
4021
4124
  console.log("using @plattar/plattar-analytics v" + version_1["default"]);
4022
4125
  }, {
4023
- "./analytics/analytics": 35,
4024
- "./version": 39
4126
+ "./analytics/analytics": 34,
4127
+ "./version": 38
4025
4128
  }],
4026
- 37: [function (require, module, exports) {
4129
+ 36: [function (require, module, exports) {
4027
4130
  "use strict";
4028
4131
 
4029
4132
  Object.defineProperty(exports, "__esModule", {
@@ -4109,7 +4212,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4109
4212
 
4110
4213
  exports["default"] = BasicHTTP;
4111
4214
  }, {}],
4112
- 38: [function (require, module, exports) {
4215
+ 37: [function (require, module, exports) {
4113
4216
  "use strict";
4114
4217
 
4115
4218
  Object.defineProperty(exports, "__esModule", {
@@ -4148,7 +4251,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4148
4251
 
4149
4252
  exports.Util = Util;
4150
4253
  }, {}],
4151
- 39: [function (require, module, exports) {
4254
+ 38: [function (require, module, exports) {
4152
4255
  "use strict";
4153
4256
 
4154
4257
  Object.defineProperty(exports, "__esModule", {
@@ -4156,7 +4259,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4156
4259
  });
4157
4260
  exports["default"] = "1.117.2";
4158
4261
  }, {}],
4159
- 40: [function (require, module, exports) {
4262
+ 39: [function (require, module, exports) {
4160
4263
  "use strict";
4161
4264
 
4162
4265
  var Server = require("./server/plattar-server.js");
@@ -4359,67 +4462,67 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4359
4462
  version: Version
4360
4463
  };
4361
4464
  }, {
4362
- "./server/plattar-server.js": 42,
4363
- "./types/application.js": 43,
4364
- "./types/content-pipeline/brief.js": 44,
4365
- "./types/content-pipeline/comment-brief.js": 45,
4366
- "./types/content-pipeline/comment-quote.js": 46,
4367
- "./types/content-pipeline/comment-solution.js": 47,
4368
- "./types/content-pipeline/folder.js": 48,
4369
- "./types/content-pipeline/pipeline-user.js": 49,
4370
- "./types/content-pipeline/quote.js": 50,
4371
- "./types/content-pipeline/rating.js": 51,
4372
- "./types/content-pipeline/solution.js": 52,
4373
- "./types/file/file-audio.js": 53,
4374
- "./types/file/file-base.js": 54,
4375
- "./types/file/file-image.js": 55,
4376
- "./types/file/file-model.js": 56,
4377
- "./types/file/file-script.js": 57,
4378
- "./types/file/file-video.js": 58,
4379
- "./types/misc/application-build.js": 62,
4380
- "./types/misc/asset-library.js": 63,
4381
- "./types/misc/async-job.js": 64,
4382
- "./types/misc/script-event.js": 65,
4383
- "./types/misc/tag.js": 66,
4384
- "./types/page/card-base.js": 67,
4385
- "./types/page/card-button.js": 68,
4386
- "./types/page/card-html.js": 69,
4387
- "./types/page/card-iframe.js": 70,
4388
- "./types/page/card-image.js": 71,
4389
- "./types/page/card-map.js": 72,
4390
- "./types/page/card-paragraph.js": 73,
4391
- "./types/page/card-row.js": 74,
4392
- "./types/page/card-slider.js": 75,
4393
- "./types/page/card-title.js": 76,
4394
- "./types/page/card-video.js": 77,
4395
- "./types/page/card-youtube.js": 78,
4396
- "./types/page/page.js": 79,
4397
- "./types/product/product-annotation.js": 80,
4398
- "./types/product/product-base.js": 81,
4399
- "./types/product/product-variation.js": 82,
4400
- "./types/product/product.js": 83,
4401
- "./types/scene/scene-annotation.js": 84,
4402
- "./types/scene/scene-audio.js": 85,
4403
- "./types/scene/scene-base.js": 86,
4404
- "./types/scene/scene-button.js": 87,
4405
- "./types/scene/scene-camera.js": 88,
4406
- "./types/scene/scene-carousel.js": 89,
4407
- "./types/scene/scene-image.js": 90,
4408
- "./types/scene/scene-model.js": 91,
4409
- "./types/scene/scene-panorama.js": 92,
4410
- "./types/scene/scene-poller.js": 93,
4411
- "./types/scene/scene-product.js": 94,
4412
- "./types/scene/scene-script.js": 95,
4413
- "./types/scene/scene-shadow.js": 96,
4414
- "./types/scene/scene-video.js": 97,
4415
- "./types/scene/scene-volumetric.js": 98,
4416
- "./types/scene/scene-youtube.js": 99,
4417
- "./types/scene/scene.js": 100,
4418
- "./types/trigger/trigger-image.js": 101,
4419
- "./util/plattar-util.js": 102,
4420
- "./version": 103
4465
+ "./server/plattar-server.js": 41,
4466
+ "./types/application.js": 42,
4467
+ "./types/content-pipeline/brief.js": 43,
4468
+ "./types/content-pipeline/comment-brief.js": 44,
4469
+ "./types/content-pipeline/comment-quote.js": 45,
4470
+ "./types/content-pipeline/comment-solution.js": 46,
4471
+ "./types/content-pipeline/folder.js": 47,
4472
+ "./types/content-pipeline/pipeline-user.js": 48,
4473
+ "./types/content-pipeline/quote.js": 49,
4474
+ "./types/content-pipeline/rating.js": 50,
4475
+ "./types/content-pipeline/solution.js": 51,
4476
+ "./types/file/file-audio.js": 52,
4477
+ "./types/file/file-base.js": 53,
4478
+ "./types/file/file-image.js": 54,
4479
+ "./types/file/file-model.js": 55,
4480
+ "./types/file/file-script.js": 56,
4481
+ "./types/file/file-video.js": 57,
4482
+ "./types/misc/application-build.js": 61,
4483
+ "./types/misc/asset-library.js": 62,
4484
+ "./types/misc/async-job.js": 63,
4485
+ "./types/misc/script-event.js": 64,
4486
+ "./types/misc/tag.js": 65,
4487
+ "./types/page/card-base.js": 66,
4488
+ "./types/page/card-button.js": 67,
4489
+ "./types/page/card-html.js": 68,
4490
+ "./types/page/card-iframe.js": 69,
4491
+ "./types/page/card-image.js": 70,
4492
+ "./types/page/card-map.js": 71,
4493
+ "./types/page/card-paragraph.js": 72,
4494
+ "./types/page/card-row.js": 73,
4495
+ "./types/page/card-slider.js": 74,
4496
+ "./types/page/card-title.js": 75,
4497
+ "./types/page/card-video.js": 76,
4498
+ "./types/page/card-youtube.js": 77,
4499
+ "./types/page/page.js": 78,
4500
+ "./types/product/product-annotation.js": 79,
4501
+ "./types/product/product-base.js": 80,
4502
+ "./types/product/product-variation.js": 81,
4503
+ "./types/product/product.js": 82,
4504
+ "./types/scene/scene-annotation.js": 83,
4505
+ "./types/scene/scene-audio.js": 84,
4506
+ "./types/scene/scene-base.js": 85,
4507
+ "./types/scene/scene-button.js": 86,
4508
+ "./types/scene/scene-camera.js": 87,
4509
+ "./types/scene/scene-carousel.js": 88,
4510
+ "./types/scene/scene-image.js": 89,
4511
+ "./types/scene/scene-model.js": 90,
4512
+ "./types/scene/scene-panorama.js": 91,
4513
+ "./types/scene/scene-poller.js": 92,
4514
+ "./types/scene/scene-product.js": 93,
4515
+ "./types/scene/scene-script.js": 94,
4516
+ "./types/scene/scene-shadow.js": 95,
4517
+ "./types/scene/scene-video.js": 96,
4518
+ "./types/scene/scene-volumetric.js": 97,
4519
+ "./types/scene/scene-youtube.js": 98,
4520
+ "./types/scene/scene.js": 99,
4521
+ "./types/trigger/trigger-image.js": 100,
4522
+ "./util/plattar-util.js": 101,
4523
+ "./version": 102
4421
4524
  }],
4422
- 41: [function (require, module, exports) {
4525
+ 40: [function (require, module, exports) {
4423
4526
  var fetch = require("node-fetch");
4424
4527
 
4425
4528
  var PlattarQuery = /*#__PURE__*/function () {
@@ -4903,10 +5006,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
4903
5006
 
4904
5007
  module.exports = PlattarQuery;
4905
5008
  }, {
4906
- "../util/plattar-util.js": 102,
4907
- "node-fetch": 128
5009
+ "../util/plattar-util.js": 101,
5010
+ "node-fetch": 127
4908
5011
  }],
4909
- 42: [function (require, module, exports) {
5012
+ 41: [function (require, module, exports) {
4910
5013
  (function (process) {
4911
5014
  (function () {
4912
5015
  var fetch = require("node-fetch");
@@ -5128,21 +5231,21 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5128
5231
  }).call(this);
5129
5232
  }).call(this, require('_process'));
5130
5233
  }, {
5131
- "_process": 130,
5132
- "node-fetch": 128
5234
+ "_process": 129,
5235
+ "node-fetch": 127
5133
5236
  }],
5134
- 43: [function (require, module, exports) {
5237
+ 42: [function (require, module, exports) {
5135
5238
  var PlattarBase = require("./interfaces/plattar-base.js");
5136
5239
 
5137
5240
  var Application = /*#__PURE__*/function (_PlattarBase) {
5138
5241
  _inherits(Application, _PlattarBase);
5139
5242
 
5140
- var _super13 = _createSuper(Application);
5243
+ var _super12 = _createSuper(Application);
5141
5244
 
5142
5245
  function Application() {
5143
5246
  _classCallCheck(this, Application);
5144
5247
 
5145
- return _super13.apply(this, arguments);
5248
+ return _super12.apply(this, arguments);
5146
5249
  }
5147
5250
 
5148
5251
  _createClass(Application, null, [{
@@ -5157,20 +5260,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5157
5260
 
5158
5261
  module.exports = Application;
5159
5262
  }, {
5160
- "./interfaces/plattar-base.js": 59
5263
+ "./interfaces/plattar-base.js": 58
5161
5264
  }],
5162
- 44: [function (require, module, exports) {
5265
+ 43: [function (require, module, exports) {
5163
5266
  var PlattarBase = require("../interfaces/plattar-base");
5164
5267
 
5165
5268
  var Brief = /*#__PURE__*/function (_PlattarBase2) {
5166
5269
  _inherits(Brief, _PlattarBase2);
5167
5270
 
5168
- var _super14 = _createSuper(Brief);
5271
+ var _super13 = _createSuper(Brief);
5169
5272
 
5170
5273
  function Brief() {
5171
5274
  _classCallCheck(this, Brief);
5172
5275
 
5173
- return _super14.apply(this, arguments);
5276
+ return _super13.apply(this, arguments);
5174
5277
  }
5175
5278
 
5176
5279
  _createClass(Brief, null, [{
@@ -5185,20 +5288,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5185
5288
 
5186
5289
  module.exports = Brief;
5187
5290
  }, {
5188
- "../interfaces/plattar-base": 59
5291
+ "../interfaces/plattar-base": 58
5189
5292
  }],
5190
- 45: [function (require, module, exports) {
5293
+ 44: [function (require, module, exports) {
5191
5294
  var PlattarBase = require("../interfaces/plattar-base");
5192
5295
 
5193
5296
  var CommentBrief = /*#__PURE__*/function (_PlattarBase3) {
5194
5297
  _inherits(CommentBrief, _PlattarBase3);
5195
5298
 
5196
- var _super15 = _createSuper(CommentBrief);
5299
+ var _super14 = _createSuper(CommentBrief);
5197
5300
 
5198
5301
  function CommentBrief() {
5199
5302
  _classCallCheck(this, CommentBrief);
5200
5303
 
5201
- return _super15.apply(this, arguments);
5304
+ return _super14.apply(this, arguments);
5202
5305
  }
5203
5306
 
5204
5307
  _createClass(CommentBrief, null, [{
@@ -5213,20 +5316,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5213
5316
 
5214
5317
  module.exports = CommentBrief;
5215
5318
  }, {
5216
- "../interfaces/plattar-base": 59
5319
+ "../interfaces/plattar-base": 58
5217
5320
  }],
5218
- 46: [function (require, module, exports) {
5321
+ 45: [function (require, module, exports) {
5219
5322
  var PlattarBase = require("../interfaces/plattar-base");
5220
5323
 
5221
5324
  var CommentQuote = /*#__PURE__*/function (_PlattarBase4) {
5222
5325
  _inherits(CommentQuote, _PlattarBase4);
5223
5326
 
5224
- var _super16 = _createSuper(CommentQuote);
5327
+ var _super15 = _createSuper(CommentQuote);
5225
5328
 
5226
5329
  function CommentQuote() {
5227
5330
  _classCallCheck(this, CommentQuote);
5228
5331
 
5229
- return _super16.apply(this, arguments);
5332
+ return _super15.apply(this, arguments);
5230
5333
  }
5231
5334
 
5232
5335
  _createClass(CommentQuote, null, [{
@@ -5241,20 +5344,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5241
5344
 
5242
5345
  module.exports = CommentQuote;
5243
5346
  }, {
5244
- "../interfaces/plattar-base": 59
5347
+ "../interfaces/plattar-base": 58
5245
5348
  }],
5246
- 47: [function (require, module, exports) {
5349
+ 46: [function (require, module, exports) {
5247
5350
  var PlattarBase = require("../interfaces/plattar-base");
5248
5351
 
5249
5352
  var CommentSolution = /*#__PURE__*/function (_PlattarBase5) {
5250
5353
  _inherits(CommentSolution, _PlattarBase5);
5251
5354
 
5252
- var _super17 = _createSuper(CommentSolution);
5355
+ var _super16 = _createSuper(CommentSolution);
5253
5356
 
5254
5357
  function CommentSolution() {
5255
5358
  _classCallCheck(this, CommentSolution);
5256
5359
 
5257
- return _super17.apply(this, arguments);
5360
+ return _super16.apply(this, arguments);
5258
5361
  }
5259
5362
 
5260
5363
  _createClass(CommentSolution, null, [{
@@ -5269,20 +5372,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5269
5372
 
5270
5373
  module.exports = CommentSolution;
5271
5374
  }, {
5272
- "../interfaces/plattar-base": 59
5375
+ "../interfaces/plattar-base": 58
5273
5376
  }],
5274
- 48: [function (require, module, exports) {
5377
+ 47: [function (require, module, exports) {
5275
5378
  var PlattarBase = require("../interfaces/plattar-base");
5276
5379
 
5277
5380
  var Folder = /*#__PURE__*/function (_PlattarBase6) {
5278
5381
  _inherits(Folder, _PlattarBase6);
5279
5382
 
5280
- var _super18 = _createSuper(Folder);
5383
+ var _super17 = _createSuper(Folder);
5281
5384
 
5282
5385
  function Folder() {
5283
5386
  _classCallCheck(this, Folder);
5284
5387
 
5285
- return _super18.apply(this, arguments);
5388
+ return _super17.apply(this, arguments);
5286
5389
  }
5287
5390
 
5288
5391
  _createClass(Folder, null, [{
@@ -5297,20 +5400,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5297
5400
 
5298
5401
  module.exports = Folder;
5299
5402
  }, {
5300
- "../interfaces/plattar-base": 59
5403
+ "../interfaces/plattar-base": 58
5301
5404
  }],
5302
- 49: [function (require, module, exports) {
5405
+ 48: [function (require, module, exports) {
5303
5406
  var PlattarBase = require("../interfaces/plattar-base");
5304
5407
 
5305
5408
  var PipelineUser = /*#__PURE__*/function (_PlattarBase7) {
5306
5409
  _inherits(PipelineUser, _PlattarBase7);
5307
5410
 
5308
- var _super19 = _createSuper(PipelineUser);
5411
+ var _super18 = _createSuper(PipelineUser);
5309
5412
 
5310
5413
  function PipelineUser() {
5311
5414
  _classCallCheck(this, PipelineUser);
5312
5415
 
5313
- return _super19.apply(this, arguments);
5416
+ return _super18.apply(this, arguments);
5314
5417
  }
5315
5418
 
5316
5419
  _createClass(PipelineUser, null, [{
@@ -5325,20 +5428,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5325
5428
 
5326
5429
  module.exports = PipelineUser;
5327
5430
  }, {
5328
- "../interfaces/plattar-base": 59
5431
+ "../interfaces/plattar-base": 58
5329
5432
  }],
5330
- 50: [function (require, module, exports) {
5433
+ 49: [function (require, module, exports) {
5331
5434
  var PlattarBase = require("../interfaces/plattar-base");
5332
5435
 
5333
5436
  var Quote = /*#__PURE__*/function (_PlattarBase8) {
5334
5437
  _inherits(Quote, _PlattarBase8);
5335
5438
 
5336
- var _super20 = _createSuper(Quote);
5439
+ var _super19 = _createSuper(Quote);
5337
5440
 
5338
5441
  function Quote() {
5339
5442
  _classCallCheck(this, Quote);
5340
5443
 
5341
- return _super20.apply(this, arguments);
5444
+ return _super19.apply(this, arguments);
5342
5445
  }
5343
5446
 
5344
5447
  _createClass(Quote, null, [{
@@ -5353,20 +5456,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5353
5456
 
5354
5457
  module.exports = Quote;
5355
5458
  }, {
5356
- "../interfaces/plattar-base": 59
5459
+ "../interfaces/plattar-base": 58
5357
5460
  }],
5358
- 51: [function (require, module, exports) {
5461
+ 50: [function (require, module, exports) {
5359
5462
  var PlattarBase = require("../interfaces/plattar-base");
5360
5463
 
5361
5464
  var Rating = /*#__PURE__*/function (_PlattarBase9) {
5362
5465
  _inherits(Rating, _PlattarBase9);
5363
5466
 
5364
- var _super21 = _createSuper(Rating);
5467
+ var _super20 = _createSuper(Rating);
5365
5468
 
5366
5469
  function Rating() {
5367
5470
  _classCallCheck(this, Rating);
5368
5471
 
5369
- return _super21.apply(this, arguments);
5472
+ return _super20.apply(this, arguments);
5370
5473
  }
5371
5474
 
5372
5475
  _createClass(Rating, null, [{
@@ -5381,20 +5484,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5381
5484
 
5382
5485
  module.exports = Rating;
5383
5486
  }, {
5384
- "../interfaces/plattar-base": 59
5487
+ "../interfaces/plattar-base": 58
5385
5488
  }],
5386
- 52: [function (require, module, exports) {
5489
+ 51: [function (require, module, exports) {
5387
5490
  var PlattarBase = require("../interfaces/plattar-base");
5388
5491
 
5389
5492
  var Solution = /*#__PURE__*/function (_PlattarBase10) {
5390
5493
  _inherits(Solution, _PlattarBase10);
5391
5494
 
5392
- var _super22 = _createSuper(Solution);
5495
+ var _super21 = _createSuper(Solution);
5393
5496
 
5394
5497
  function Solution() {
5395
5498
  _classCallCheck(this, Solution);
5396
5499
 
5397
- return _super22.apply(this, arguments);
5500
+ return _super21.apply(this, arguments);
5398
5501
  }
5399
5502
 
5400
5503
  _createClass(Solution, null, [{
@@ -5409,20 +5512,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5409
5512
 
5410
5513
  module.exports = Solution;
5411
5514
  }, {
5412
- "../interfaces/plattar-base": 59
5515
+ "../interfaces/plattar-base": 58
5413
5516
  }],
5414
- 53: [function (require, module, exports) {
5517
+ 52: [function (require, module, exports) {
5415
5518
  var FileBase = require("./file-base.js");
5416
5519
 
5417
5520
  var FileAudio = /*#__PURE__*/function (_FileBase) {
5418
5521
  _inherits(FileAudio, _FileBase);
5419
5522
 
5420
- var _super23 = _createSuper(FileAudio);
5523
+ var _super22 = _createSuper(FileAudio);
5421
5524
 
5422
5525
  function FileAudio() {
5423
5526
  _classCallCheck(this, FileAudio);
5424
5527
 
5425
- return _super23.apply(this, arguments);
5528
+ return _super22.apply(this, arguments);
5426
5529
  }
5427
5530
 
5428
5531
  _createClass(FileAudio, null, [{
@@ -5437,9 +5540,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5437
5540
 
5438
5541
  module.exports = FileAudio;
5439
5542
  }, {
5440
- "./file-base.js": 54
5543
+ "./file-base.js": 53
5441
5544
  }],
5442
- 54: [function (require, module, exports) {
5545
+ 53: [function (require, module, exports) {
5443
5546
  var PlattarBase = require("../interfaces/plattar-base.js");
5444
5547
 
5445
5548
  var Server = require("../../server/plattar-server.js");
@@ -5447,14 +5550,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5447
5550
  var FileBase = /*#__PURE__*/function (_PlattarBase11) {
5448
5551
  _inherits(FileBase, _PlattarBase11);
5449
5552
 
5450
- var _super24 = _createSuper(FileBase);
5553
+ var _super23 = _createSuper(FileBase);
5451
5554
 
5452
5555
  function FileBase(id, server) {
5453
5556
  var _this50;
5454
5557
 
5455
5558
  _classCallCheck(this, FileBase);
5456
5559
 
5457
- _this50 = _super24.call(this, id, server || Server["default"]());
5560
+ _this50 = _super23.call(this, id, server || Server["default"]());
5458
5561
 
5459
5562
  if (_this50.constructor === FileBase) {
5460
5563
  throw new Error("FileBase is abstract and cannot be created");
@@ -5525,25 +5628,25 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5525
5628
 
5526
5629
  module.exports = FileBase;
5527
5630
  }, {
5528
- "../../server/plattar-server.js": 42,
5529
- "../interfaces/plattar-base.js": 59,
5530
- "./file-audio.js": 53,
5531
- "./file-image.js": 55,
5532
- "./file-model.js": 56,
5533
- "./file-video.js": 58
5631
+ "../../server/plattar-server.js": 41,
5632
+ "../interfaces/plattar-base.js": 58,
5633
+ "./file-audio.js": 52,
5634
+ "./file-image.js": 54,
5635
+ "./file-model.js": 55,
5636
+ "./file-video.js": 57
5534
5637
  }],
5535
- 55: [function (require, module, exports) {
5638
+ 54: [function (require, module, exports) {
5536
5639
  var FileBase = require("./file-base.js");
5537
5640
 
5538
5641
  var FileImage = /*#__PURE__*/function (_FileBase2) {
5539
5642
  _inherits(FileImage, _FileBase2);
5540
5643
 
5541
- var _super25 = _createSuper(FileImage);
5644
+ var _super24 = _createSuper(FileImage);
5542
5645
 
5543
5646
  function FileImage() {
5544
5647
  _classCallCheck(this, FileImage);
5545
5648
 
5546
- return _super25.apply(this, arguments);
5649
+ return _super24.apply(this, arguments);
5547
5650
  }
5548
5651
 
5549
5652
  _createClass(FileImage, null, [{
@@ -5558,20 +5661,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5558
5661
 
5559
5662
  module.exports = FileImage;
5560
5663
  }, {
5561
- "./file-base.js": 54
5664
+ "./file-base.js": 53
5562
5665
  }],
5563
- 56: [function (require, module, exports) {
5666
+ 55: [function (require, module, exports) {
5564
5667
  var FileBase = require("./file-base.js");
5565
5668
 
5566
5669
  var FileModel = /*#__PURE__*/function (_FileBase3) {
5567
5670
  _inherits(FileModel, _FileBase3);
5568
5671
 
5569
- var _super26 = _createSuper(FileModel);
5672
+ var _super25 = _createSuper(FileModel);
5570
5673
 
5571
5674
  function FileModel() {
5572
5675
  _classCallCheck(this, FileModel);
5573
5676
 
5574
- return _super26.apply(this, arguments);
5677
+ return _super25.apply(this, arguments);
5575
5678
  }
5576
5679
 
5577
5680
  _createClass(FileModel, null, [{
@@ -5586,20 +5689,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5586
5689
 
5587
5690
  module.exports = FileModel;
5588
5691
  }, {
5589
- "./file-base.js": 54
5692
+ "./file-base.js": 53
5590
5693
  }],
5591
- 57: [function (require, module, exports) {
5694
+ 56: [function (require, module, exports) {
5592
5695
  var FileBase = require("./file-base.js");
5593
5696
 
5594
5697
  var FileScript = /*#__PURE__*/function (_FileBase4) {
5595
5698
  _inherits(FileScript, _FileBase4);
5596
5699
 
5597
- var _super27 = _createSuper(FileScript);
5700
+ var _super26 = _createSuper(FileScript);
5598
5701
 
5599
5702
  function FileScript() {
5600
5703
  _classCallCheck(this, FileScript);
5601
5704
 
5602
- return _super27.apply(this, arguments);
5705
+ return _super26.apply(this, arguments);
5603
5706
  }
5604
5707
 
5605
5708
  _createClass(FileScript, null, [{
@@ -5614,20 +5717,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5614
5717
 
5615
5718
  module.exports = FileScript;
5616
5719
  }, {
5617
- "./file-base.js": 54
5720
+ "./file-base.js": 53
5618
5721
  }],
5619
- 58: [function (require, module, exports) {
5722
+ 57: [function (require, module, exports) {
5620
5723
  var FileBase = require("./file-base.js");
5621
5724
 
5622
5725
  var FileVideo = /*#__PURE__*/function (_FileBase5) {
5623
5726
  _inherits(FileVideo, _FileBase5);
5624
5727
 
5625
- var _super28 = _createSuper(FileVideo);
5728
+ var _super27 = _createSuper(FileVideo);
5626
5729
 
5627
5730
  function FileVideo() {
5628
5731
  _classCallCheck(this, FileVideo);
5629
5732
 
5630
- return _super28.apply(this, arguments);
5733
+ return _super27.apply(this, arguments);
5631
5734
  }
5632
5735
 
5633
5736
  _createClass(FileVideo, null, [{
@@ -5642,9 +5745,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5642
5745
 
5643
5746
  module.exports = FileVideo;
5644
5747
  }, {
5645
- "./file-base.js": 54
5748
+ "./file-base.js": 53
5646
5749
  }],
5647
- 59: [function (require, module, exports) {
5750
+ 58: [function (require, module, exports) {
5648
5751
  var PlattarObject = require("./plattar-object.js");
5649
5752
 
5650
5753
  var Server = require("../../server/plattar-server.js");
@@ -5652,14 +5755,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5652
5755
  var PlattarBase = /*#__PURE__*/function (_PlattarObject) {
5653
5756
  _inherits(PlattarBase, _PlattarObject);
5654
5757
 
5655
- var _super29 = _createSuper(PlattarBase);
5758
+ var _super28 = _createSuper(PlattarBase);
5656
5759
 
5657
5760
  function PlattarBase(id, server) {
5658
5761
  var _this51;
5659
5762
 
5660
5763
  _classCallCheck(this, PlattarBase);
5661
5764
 
5662
- _this51 = _super29.call(this, id, server || Server["default"]());
5765
+ _this51 = _super28.call(this, id, server || Server["default"]());
5663
5766
 
5664
5767
  if (_this51.constructor === PlattarBase) {
5665
5768
  throw new Error("PlattarBase is abstract and cannot be created");
@@ -5673,10 +5776,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5673
5776
 
5674
5777
  module.exports = PlattarBase;
5675
5778
  }, {
5676
- "../../server/plattar-server.js": 42,
5677
- "./plattar-object.js": 61
5779
+ "../../server/plattar-server.js": 41,
5780
+ "./plattar-object.js": 60
5678
5781
  }],
5679
- 60: [function (require, module, exports) {
5782
+ 59: [function (require, module, exports) {
5680
5783
  /**
5681
5784
  * Handles the list of relationships for the provided object
5682
5785
  */
@@ -5812,9 +5915,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5812
5915
 
5813
5916
  module.exports = PlattarObjectRelations;
5814
5917
  }, {
5815
- "../../util/plattar-util.js": 102
5918
+ "../../util/plattar-util.js": 101
5816
5919
  }],
5817
- 61: [function (require, module, exports) {
5920
+ 60: [function (require, module, exports) {
5818
5921
  var PlattarQuery = require("../../server/plattar-query.js");
5819
5922
 
5820
5923
  var PlattarObjectRelations = require("./plattar-object-relations.js");
@@ -5994,21 +6097,21 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5994
6097
 
5995
6098
  module.exports = PlattarObject;
5996
6099
  }, {
5997
- "../../server/plattar-query.js": 41,
5998
- "./plattar-object-relations.js": 60
6100
+ "../../server/plattar-query.js": 40,
6101
+ "./plattar-object-relations.js": 59
5999
6102
  }],
6000
- 62: [function (require, module, exports) {
6103
+ 61: [function (require, module, exports) {
6001
6104
  var PlattarBase = require("../interfaces/plattar-base.js");
6002
6105
 
6003
6106
  var ApplicationBuild = /*#__PURE__*/function (_PlattarBase12) {
6004
6107
  _inherits(ApplicationBuild, _PlattarBase12);
6005
6108
 
6006
- var _super30 = _createSuper(ApplicationBuild);
6109
+ var _super29 = _createSuper(ApplicationBuild);
6007
6110
 
6008
6111
  function ApplicationBuild() {
6009
6112
  _classCallCheck(this, ApplicationBuild);
6010
6113
 
6011
- return _super30.apply(this, arguments);
6114
+ return _super29.apply(this, arguments);
6012
6115
  }
6013
6116
 
6014
6117
  _createClass(ApplicationBuild, null, [{
@@ -6023,20 +6126,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6023
6126
 
6024
6127
  module.exports = ApplicationBuild;
6025
6128
  }, {
6026
- "../interfaces/plattar-base.js": 59
6129
+ "../interfaces/plattar-base.js": 58
6027
6130
  }],
6028
- 63: [function (require, module, exports) {
6131
+ 62: [function (require, module, exports) {
6029
6132
  var PlattarBase = require("../interfaces/plattar-base.js");
6030
6133
 
6031
6134
  var AssetLibrary = /*#__PURE__*/function (_PlattarBase13) {
6032
6135
  _inherits(AssetLibrary, _PlattarBase13);
6033
6136
 
6034
- var _super31 = _createSuper(AssetLibrary);
6137
+ var _super30 = _createSuper(AssetLibrary);
6035
6138
 
6036
6139
  function AssetLibrary() {
6037
6140
  _classCallCheck(this, AssetLibrary);
6038
6141
 
6039
- return _super31.apply(this, arguments);
6142
+ return _super30.apply(this, arguments);
6040
6143
  }
6041
6144
 
6042
6145
  _createClass(AssetLibrary, null, [{
@@ -6051,20 +6154,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6051
6154
 
6052
6155
  module.exports = AssetLibrary;
6053
6156
  }, {
6054
- "../interfaces/plattar-base.js": 59
6157
+ "../interfaces/plattar-base.js": 58
6055
6158
  }],
6056
- 64: [function (require, module, exports) {
6159
+ 63: [function (require, module, exports) {
6057
6160
  var PlattarBase = require("../interfaces/plattar-base.js");
6058
6161
 
6059
6162
  var AsyncJob = /*#__PURE__*/function (_PlattarBase14) {
6060
6163
  _inherits(AsyncJob, _PlattarBase14);
6061
6164
 
6062
- var _super32 = _createSuper(AsyncJob);
6165
+ var _super31 = _createSuper(AsyncJob);
6063
6166
 
6064
6167
  function AsyncJob() {
6065
6168
  _classCallCheck(this, AsyncJob);
6066
6169
 
6067
- return _super32.apply(this, arguments);
6170
+ return _super31.apply(this, arguments);
6068
6171
  }
6069
6172
 
6070
6173
  _createClass(AsyncJob, [{
@@ -6084,20 +6187,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6084
6187
 
6085
6188
  module.exports = AsyncJob;
6086
6189
  }, {
6087
- "../interfaces/plattar-base.js": 59
6190
+ "../interfaces/plattar-base.js": 58
6088
6191
  }],
6089
- 65: [function (require, module, exports) {
6192
+ 64: [function (require, module, exports) {
6090
6193
  var PlattarBase = require("../interfaces/plattar-base.js");
6091
6194
 
6092
6195
  var ScriptEvent = /*#__PURE__*/function (_PlattarBase15) {
6093
6196
  _inherits(ScriptEvent, _PlattarBase15);
6094
6197
 
6095
- var _super33 = _createSuper(ScriptEvent);
6198
+ var _super32 = _createSuper(ScriptEvent);
6096
6199
 
6097
6200
  function ScriptEvent() {
6098
6201
  _classCallCheck(this, ScriptEvent);
6099
6202
 
6100
- return _super33.apply(this, arguments);
6203
+ return _super32.apply(this, arguments);
6101
6204
  }
6102
6205
 
6103
6206
  _createClass(ScriptEvent, null, [{
@@ -6112,20 +6215,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6112
6215
 
6113
6216
  module.exports = ScriptEvent;
6114
6217
  }, {
6115
- "../interfaces/plattar-base.js": 59
6218
+ "../interfaces/plattar-base.js": 58
6116
6219
  }],
6117
- 66: [function (require, module, exports) {
6220
+ 65: [function (require, module, exports) {
6118
6221
  var PlattarBase = require("../interfaces/plattar-base.js");
6119
6222
 
6120
6223
  var Tag = /*#__PURE__*/function (_PlattarBase16) {
6121
6224
  _inherits(Tag, _PlattarBase16);
6122
6225
 
6123
- var _super34 = _createSuper(Tag);
6226
+ var _super33 = _createSuper(Tag);
6124
6227
 
6125
6228
  function Tag() {
6126
6229
  _classCallCheck(this, Tag);
6127
6230
 
6128
- return _super34.apply(this, arguments);
6231
+ return _super33.apply(this, arguments);
6129
6232
  }
6130
6233
 
6131
6234
  _createClass(Tag, null, [{
@@ -6140,9 +6243,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6140
6243
 
6141
6244
  module.exports = Tag;
6142
6245
  }, {
6143
- "../interfaces/plattar-base.js": 59
6246
+ "../interfaces/plattar-base.js": 58
6144
6247
  }],
6145
- 67: [function (require, module, exports) {
6248
+ 66: [function (require, module, exports) {
6146
6249
  var PlattarBase = require("../interfaces/plattar-base.js");
6147
6250
 
6148
6251
  var Server = require("../../server/plattar-server.js");
@@ -6150,14 +6253,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6150
6253
  var CardBase = /*#__PURE__*/function (_PlattarBase17) {
6151
6254
  _inherits(CardBase, _PlattarBase17);
6152
6255
 
6153
- var _super35 = _createSuper(CardBase);
6256
+ var _super34 = _createSuper(CardBase);
6154
6257
 
6155
6258
  function CardBase(id, server) {
6156
6259
  var _this54;
6157
6260
 
6158
6261
  _classCallCheck(this, CardBase);
6159
6262
 
6160
- _this54 = _super35.call(this, id, server || Server["default"]());
6263
+ _this54 = _super34.call(this, id, server || Server["default"]());
6161
6264
 
6162
6265
  if (_this54.constructor === CardBase) {
6163
6266
  throw new Error("CardBase is abstract and cannot be created");
@@ -6200,32 +6303,32 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6200
6303
 
6201
6304
  module.exports = CardBase;
6202
6305
  }, {
6203
- "../../server/plattar-server.js": 42,
6204
- "../interfaces/plattar-base.js": 59,
6205
- "./card-button.js": 68,
6206
- "./card-html.js": 69,
6207
- "./card-iframe.js": 70,
6208
- "./card-image.js": 71,
6209
- "./card-map.js": 72,
6210
- "./card-paragraph.js": 73,
6211
- "./card-row.js": 74,
6212
- "./card-slider.js": 75,
6213
- "./card-title.js": 76,
6214
- "./card-video.js": 77,
6215
- "./card-youtube.js": 78
6306
+ "../../server/plattar-server.js": 41,
6307
+ "../interfaces/plattar-base.js": 58,
6308
+ "./card-button.js": 67,
6309
+ "./card-html.js": 68,
6310
+ "./card-iframe.js": 69,
6311
+ "./card-image.js": 70,
6312
+ "./card-map.js": 71,
6313
+ "./card-paragraph.js": 72,
6314
+ "./card-row.js": 73,
6315
+ "./card-slider.js": 74,
6316
+ "./card-title.js": 75,
6317
+ "./card-video.js": 76,
6318
+ "./card-youtube.js": 77
6216
6319
  }],
6217
- 68: [function (require, module, exports) {
6320
+ 67: [function (require, module, exports) {
6218
6321
  var CardBase = require("./card-base.js");
6219
6322
 
6220
6323
  var CardButton = /*#__PURE__*/function (_CardBase) {
6221
6324
  _inherits(CardButton, _CardBase);
6222
6325
 
6223
- var _super36 = _createSuper(CardButton);
6326
+ var _super35 = _createSuper(CardButton);
6224
6327
 
6225
6328
  function CardButton() {
6226
6329
  _classCallCheck(this, CardButton);
6227
6330
 
6228
- return _super36.apply(this, arguments);
6331
+ return _super35.apply(this, arguments);
6229
6332
  }
6230
6333
 
6231
6334
  _createClass(CardButton, null, [{
@@ -6240,20 +6343,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6240
6343
 
6241
6344
  module.exports = CardButton;
6242
6345
  }, {
6243
- "./card-base.js": 67
6346
+ "./card-base.js": 66
6244
6347
  }],
6245
- 69: [function (require, module, exports) {
6348
+ 68: [function (require, module, exports) {
6246
6349
  var CardBase = require("./card-base.js");
6247
6350
 
6248
6351
  var CardHTML = /*#__PURE__*/function (_CardBase2) {
6249
6352
  _inherits(CardHTML, _CardBase2);
6250
6353
 
6251
- var _super37 = _createSuper(CardHTML);
6354
+ var _super36 = _createSuper(CardHTML);
6252
6355
 
6253
6356
  function CardHTML() {
6254
6357
  _classCallCheck(this, CardHTML);
6255
6358
 
6256
- return _super37.apply(this, arguments);
6359
+ return _super36.apply(this, arguments);
6257
6360
  }
6258
6361
 
6259
6362
  _createClass(CardHTML, null, [{
@@ -6268,20 +6371,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6268
6371
 
6269
6372
  module.exports = CardHTML;
6270
6373
  }, {
6271
- "./card-base.js": 67
6374
+ "./card-base.js": 66
6272
6375
  }],
6273
- 70: [function (require, module, exports) {
6376
+ 69: [function (require, module, exports) {
6274
6377
  var CardBase = require("./card-base.js");
6275
6378
 
6276
6379
  var CardIFrame = /*#__PURE__*/function (_CardBase3) {
6277
6380
  _inherits(CardIFrame, _CardBase3);
6278
6381
 
6279
- var _super38 = _createSuper(CardIFrame);
6382
+ var _super37 = _createSuper(CardIFrame);
6280
6383
 
6281
6384
  function CardIFrame() {
6282
6385
  _classCallCheck(this, CardIFrame);
6283
6386
 
6284
- return _super38.apply(this, arguments);
6387
+ return _super37.apply(this, arguments);
6285
6388
  }
6286
6389
 
6287
6390
  _createClass(CardIFrame, null, [{
@@ -6296,20 +6399,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6296
6399
 
6297
6400
  module.exports = CardIFrame;
6298
6401
  }, {
6299
- "./card-base.js": 67
6402
+ "./card-base.js": 66
6300
6403
  }],
6301
- 71: [function (require, module, exports) {
6404
+ 70: [function (require, module, exports) {
6302
6405
  var CardBase = require("./card-base.js");
6303
6406
 
6304
6407
  var CardImage = /*#__PURE__*/function (_CardBase4) {
6305
6408
  _inherits(CardImage, _CardBase4);
6306
6409
 
6307
- var _super39 = _createSuper(CardImage);
6410
+ var _super38 = _createSuper(CardImage);
6308
6411
 
6309
6412
  function CardImage() {
6310
6413
  _classCallCheck(this, CardImage);
6311
6414
 
6312
- return _super39.apply(this, arguments);
6415
+ return _super38.apply(this, arguments);
6313
6416
  }
6314
6417
 
6315
6418
  _createClass(CardImage, null, [{
@@ -6324,20 +6427,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6324
6427
 
6325
6428
  module.exports = CardImage;
6326
6429
  }, {
6327
- "./card-base.js": 67
6430
+ "./card-base.js": 66
6328
6431
  }],
6329
- 72: [function (require, module, exports) {
6432
+ 71: [function (require, module, exports) {
6330
6433
  var CardBase = require("./card-base.js");
6331
6434
 
6332
6435
  var CardMap = /*#__PURE__*/function (_CardBase5) {
6333
6436
  _inherits(CardMap, _CardBase5);
6334
6437
 
6335
- var _super40 = _createSuper(CardMap);
6438
+ var _super39 = _createSuper(CardMap);
6336
6439
 
6337
6440
  function CardMap() {
6338
6441
  _classCallCheck(this, CardMap);
6339
6442
 
6340
- return _super40.apply(this, arguments);
6443
+ return _super39.apply(this, arguments);
6341
6444
  }
6342
6445
 
6343
6446
  _createClass(CardMap, null, [{
@@ -6352,20 +6455,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6352
6455
 
6353
6456
  module.exports = CardMap;
6354
6457
  }, {
6355
- "./card-base.js": 67
6458
+ "./card-base.js": 66
6356
6459
  }],
6357
- 73: [function (require, module, exports) {
6460
+ 72: [function (require, module, exports) {
6358
6461
  var CardBase = require("./card-base.js");
6359
6462
 
6360
6463
  var CardParagraph = /*#__PURE__*/function (_CardBase6) {
6361
6464
  _inherits(CardParagraph, _CardBase6);
6362
6465
 
6363
- var _super41 = _createSuper(CardParagraph);
6466
+ var _super40 = _createSuper(CardParagraph);
6364
6467
 
6365
6468
  function CardParagraph() {
6366
6469
  _classCallCheck(this, CardParagraph);
6367
6470
 
6368
- return _super41.apply(this, arguments);
6471
+ return _super40.apply(this, arguments);
6369
6472
  }
6370
6473
 
6371
6474
  _createClass(CardParagraph, null, [{
@@ -6380,20 +6483,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6380
6483
 
6381
6484
  module.exports = CardParagraph;
6382
6485
  }, {
6383
- "./card-base.js": 67
6486
+ "./card-base.js": 66
6384
6487
  }],
6385
- 74: [function (require, module, exports) {
6488
+ 73: [function (require, module, exports) {
6386
6489
  var CardBase = require("./card-base.js");
6387
6490
 
6388
6491
  var CardRow = /*#__PURE__*/function (_CardBase7) {
6389
6492
  _inherits(CardRow, _CardBase7);
6390
6493
 
6391
- var _super42 = _createSuper(CardRow);
6494
+ var _super41 = _createSuper(CardRow);
6392
6495
 
6393
6496
  function CardRow() {
6394
6497
  _classCallCheck(this, CardRow);
6395
6498
 
6396
- return _super42.apply(this, arguments);
6499
+ return _super41.apply(this, arguments);
6397
6500
  }
6398
6501
 
6399
6502
  _createClass(CardRow, null, [{
@@ -6408,20 +6511,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6408
6511
 
6409
6512
  module.exports = CardRow;
6410
6513
  }, {
6411
- "./card-base.js": 67
6514
+ "./card-base.js": 66
6412
6515
  }],
6413
- 75: [function (require, module, exports) {
6516
+ 74: [function (require, module, exports) {
6414
6517
  var CardBase = require("./card-base.js");
6415
6518
 
6416
6519
  var CardSlider = /*#__PURE__*/function (_CardBase8) {
6417
6520
  _inherits(CardSlider, _CardBase8);
6418
6521
 
6419
- var _super43 = _createSuper(CardSlider);
6522
+ var _super42 = _createSuper(CardSlider);
6420
6523
 
6421
6524
  function CardSlider() {
6422
6525
  _classCallCheck(this, CardSlider);
6423
6526
 
6424
- return _super43.apply(this, arguments);
6527
+ return _super42.apply(this, arguments);
6425
6528
  }
6426
6529
 
6427
6530
  _createClass(CardSlider, null, [{
@@ -6436,20 +6539,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6436
6539
 
6437
6540
  module.exports = CardSlider;
6438
6541
  }, {
6439
- "./card-base.js": 67
6542
+ "./card-base.js": 66
6440
6543
  }],
6441
- 76: [function (require, module, exports) {
6544
+ 75: [function (require, module, exports) {
6442
6545
  var CardBase = require("./card-base.js");
6443
6546
 
6444
6547
  var CardTitle = /*#__PURE__*/function (_CardBase9) {
6445
6548
  _inherits(CardTitle, _CardBase9);
6446
6549
 
6447
- var _super44 = _createSuper(CardTitle);
6550
+ var _super43 = _createSuper(CardTitle);
6448
6551
 
6449
6552
  function CardTitle() {
6450
6553
  _classCallCheck(this, CardTitle);
6451
6554
 
6452
- return _super44.apply(this, arguments);
6555
+ return _super43.apply(this, arguments);
6453
6556
  }
6454
6557
 
6455
6558
  _createClass(CardTitle, null, [{
@@ -6464,20 +6567,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6464
6567
 
6465
6568
  module.exports = CardTitle;
6466
6569
  }, {
6467
- "./card-base.js": 67
6570
+ "./card-base.js": 66
6468
6571
  }],
6469
- 77: [function (require, module, exports) {
6572
+ 76: [function (require, module, exports) {
6470
6573
  var CardBase = require("./card-base.js");
6471
6574
 
6472
6575
  var CardVideo = /*#__PURE__*/function (_CardBase10) {
6473
6576
  _inherits(CardVideo, _CardBase10);
6474
6577
 
6475
- var _super45 = _createSuper(CardVideo);
6578
+ var _super44 = _createSuper(CardVideo);
6476
6579
 
6477
6580
  function CardVideo() {
6478
6581
  _classCallCheck(this, CardVideo);
6479
6582
 
6480
- return _super45.apply(this, arguments);
6583
+ return _super44.apply(this, arguments);
6481
6584
  }
6482
6585
 
6483
6586
  _createClass(CardVideo, null, [{
@@ -6492,20 +6595,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6492
6595
 
6493
6596
  module.exports = CardVideo;
6494
6597
  }, {
6495
- "./card-base.js": 67
6598
+ "./card-base.js": 66
6496
6599
  }],
6497
- 78: [function (require, module, exports) {
6600
+ 77: [function (require, module, exports) {
6498
6601
  var CardBase = require("./card-base.js");
6499
6602
 
6500
6603
  var CardYoutube = /*#__PURE__*/function (_CardBase11) {
6501
6604
  _inherits(CardYoutube, _CardBase11);
6502
6605
 
6503
- var _super46 = _createSuper(CardYoutube);
6606
+ var _super45 = _createSuper(CardYoutube);
6504
6607
 
6505
6608
  function CardYoutube() {
6506
6609
  _classCallCheck(this, CardYoutube);
6507
6610
 
6508
- return _super46.apply(this, arguments);
6611
+ return _super45.apply(this, arguments);
6509
6612
  }
6510
6613
 
6511
6614
  _createClass(CardYoutube, null, [{
@@ -6520,20 +6623,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6520
6623
 
6521
6624
  module.exports = CardYoutube;
6522
6625
  }, {
6523
- "./card-base.js": 67
6626
+ "./card-base.js": 66
6524
6627
  }],
6525
- 79: [function (require, module, exports) {
6628
+ 78: [function (require, module, exports) {
6526
6629
  var PlattarBase = require("../interfaces/plattar-base.js");
6527
6630
 
6528
6631
  var Page = /*#__PURE__*/function (_PlattarBase18) {
6529
6632
  _inherits(Page, _PlattarBase18);
6530
6633
 
6531
- var _super47 = _createSuper(Page);
6634
+ var _super46 = _createSuper(Page);
6532
6635
 
6533
6636
  function Page() {
6534
6637
  _classCallCheck(this, Page);
6535
6638
 
6536
- return _super47.apply(this, arguments);
6639
+ return _super46.apply(this, arguments);
6537
6640
  }
6538
6641
 
6539
6642
  _createClass(Page, null, [{
@@ -6548,20 +6651,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6548
6651
 
6549
6652
  module.exports = Page;
6550
6653
  }, {
6551
- "../interfaces/plattar-base.js": 59
6654
+ "../interfaces/plattar-base.js": 58
6552
6655
  }],
6553
- 80: [function (require, module, exports) {
6656
+ 79: [function (require, module, exports) {
6554
6657
  var ProductBase = require("./product-base.js");
6555
6658
 
6556
6659
  var ProductAnnotation = /*#__PURE__*/function (_ProductBase) {
6557
6660
  _inherits(ProductAnnotation, _ProductBase);
6558
6661
 
6559
- var _super48 = _createSuper(ProductAnnotation);
6662
+ var _super47 = _createSuper(ProductAnnotation);
6560
6663
 
6561
6664
  function ProductAnnotation() {
6562
6665
  _classCallCheck(this, ProductAnnotation);
6563
6666
 
6564
- return _super48.apply(this, arguments);
6667
+ return _super47.apply(this, arguments);
6565
6668
  }
6566
6669
 
6567
6670
  _createClass(ProductAnnotation, null, [{
@@ -6576,9 +6679,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6576
6679
 
6577
6680
  module.exports = ProductAnnotation;
6578
6681
  }, {
6579
- "./product-base.js": 81
6682
+ "./product-base.js": 80
6580
6683
  }],
6581
- 81: [function (require, module, exports) {
6684
+ 80: [function (require, module, exports) {
6582
6685
  var PlattarBase = require("../interfaces/plattar-base.js");
6583
6686
 
6584
6687
  var Server = require("../../server/plattar-server.js");
@@ -6586,14 +6689,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6586
6689
  var ProductBase = /*#__PURE__*/function (_PlattarBase19) {
6587
6690
  _inherits(ProductBase, _PlattarBase19);
6588
6691
 
6589
- var _super49 = _createSuper(ProductBase);
6692
+ var _super48 = _createSuper(ProductBase);
6590
6693
 
6591
6694
  function ProductBase(id, server) {
6592
6695
  var _this55;
6593
6696
 
6594
6697
  _classCallCheck(this, ProductBase);
6595
6698
 
6596
- _this55 = _super49.call(this, id, server || Server["default"]());
6699
+ _this55 = _super48.call(this, id, server || Server["default"]());
6597
6700
 
6598
6701
  if (_this55.constructor === ProductBase) {
6599
6702
  throw new Error("ProductBase is abstract and cannot be created");
@@ -6618,23 +6721,23 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6618
6721
 
6619
6722
  module.exports = ProductBase;
6620
6723
  }, {
6621
- "../../server/plattar-server.js": 42,
6622
- "../interfaces/plattar-base.js": 59,
6623
- "./product-annotation.js": 80,
6624
- "./product-variation.js": 82
6724
+ "../../server/plattar-server.js": 41,
6725
+ "../interfaces/plattar-base.js": 58,
6726
+ "./product-annotation.js": 79,
6727
+ "./product-variation.js": 81
6625
6728
  }],
6626
- 82: [function (require, module, exports) {
6729
+ 81: [function (require, module, exports) {
6627
6730
  var ProductBase = require("./product-base.js");
6628
6731
 
6629
6732
  var ProductVariation = /*#__PURE__*/function (_ProductBase2) {
6630
6733
  _inherits(ProductVariation, _ProductBase2);
6631
6734
 
6632
- var _super50 = _createSuper(ProductVariation);
6735
+ var _super49 = _createSuper(ProductVariation);
6633
6736
 
6634
6737
  function ProductVariation() {
6635
6738
  _classCallCheck(this, ProductVariation);
6636
6739
 
6637
- return _super50.apply(this, arguments);
6740
+ return _super49.apply(this, arguments);
6638
6741
  }
6639
6742
 
6640
6743
  _createClass(ProductVariation, null, [{
@@ -6649,20 +6752,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6649
6752
 
6650
6753
  module.exports = ProductVariation;
6651
6754
  }, {
6652
- "./product-base.js": 81
6755
+ "./product-base.js": 80
6653
6756
  }],
6654
- 83: [function (require, module, exports) {
6757
+ 82: [function (require, module, exports) {
6655
6758
  var PlattarBase = require("../interfaces/plattar-base.js");
6656
6759
 
6657
6760
  var Product = /*#__PURE__*/function (_PlattarBase20) {
6658
6761
  _inherits(Product, _PlattarBase20);
6659
6762
 
6660
- var _super51 = _createSuper(Product);
6763
+ var _super50 = _createSuper(Product);
6661
6764
 
6662
6765
  function Product() {
6663
6766
  _classCallCheck(this, Product);
6664
6767
 
6665
- return _super51.apply(this, arguments);
6768
+ return _super50.apply(this, arguments);
6666
6769
  }
6667
6770
 
6668
6771
  _createClass(Product, null, [{
@@ -6677,20 +6780,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6677
6780
 
6678
6781
  module.exports = Product;
6679
6782
  }, {
6680
- "../interfaces/plattar-base.js": 59
6783
+ "../interfaces/plattar-base.js": 58
6681
6784
  }],
6682
- 84: [function (require, module, exports) {
6785
+ 83: [function (require, module, exports) {
6683
6786
  var SceneBase = require("./scene-base.js");
6684
6787
 
6685
6788
  var SceneAnnotation = /*#__PURE__*/function (_SceneBase) {
6686
6789
  _inherits(SceneAnnotation, _SceneBase);
6687
6790
 
6688
- var _super52 = _createSuper(SceneAnnotation);
6791
+ var _super51 = _createSuper(SceneAnnotation);
6689
6792
 
6690
6793
  function SceneAnnotation() {
6691
6794
  _classCallCheck(this, SceneAnnotation);
6692
6795
 
6693
- return _super52.apply(this, arguments);
6796
+ return _super51.apply(this, arguments);
6694
6797
  }
6695
6798
 
6696
6799
  _createClass(SceneAnnotation, null, [{
@@ -6705,20 +6808,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6705
6808
 
6706
6809
  module.exports = SceneAnnotation;
6707
6810
  }, {
6708
- "./scene-base.js": 86
6811
+ "./scene-base.js": 85
6709
6812
  }],
6710
- 85: [function (require, module, exports) {
6813
+ 84: [function (require, module, exports) {
6711
6814
  var SceneBase = require("./scene-base.js");
6712
6815
 
6713
6816
  var SceneAudio = /*#__PURE__*/function (_SceneBase2) {
6714
6817
  _inherits(SceneAudio, _SceneBase2);
6715
6818
 
6716
- var _super53 = _createSuper(SceneAudio);
6819
+ var _super52 = _createSuper(SceneAudio);
6717
6820
 
6718
6821
  function SceneAudio() {
6719
6822
  _classCallCheck(this, SceneAudio);
6720
6823
 
6721
- return _super53.apply(this, arguments);
6824
+ return _super52.apply(this, arguments);
6722
6825
  }
6723
6826
 
6724
6827
  _createClass(SceneAudio, null, [{
@@ -6733,9 +6836,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6733
6836
 
6734
6837
  module.exports = SceneAudio;
6735
6838
  }, {
6736
- "./scene-base.js": 86
6839
+ "./scene-base.js": 85
6737
6840
  }],
6738
- 86: [function (require, module, exports) {
6841
+ 85: [function (require, module, exports) {
6739
6842
  var PlattarBase = require("../interfaces/plattar-base.js");
6740
6843
 
6741
6844
  var Server = require("../../server/plattar-server.js");
@@ -6743,14 +6846,14 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6743
6846
  var SceneBase = /*#__PURE__*/function (_PlattarBase21) {
6744
6847
  _inherits(SceneBase, _PlattarBase21);
6745
6848
 
6746
- var _super54 = _createSuper(SceneBase);
6849
+ var _super53 = _createSuper(SceneBase);
6747
6850
 
6748
6851
  function SceneBase(id, server) {
6749
6852
  var _this56;
6750
6853
 
6751
6854
  _classCallCheck(this, SceneBase);
6752
6855
 
6753
- _this56 = _super54.call(this, id, server || Server["default"]());
6856
+ _this56 = _super53.call(this, id, server || Server["default"]());
6754
6857
 
6755
6858
  if (_this56.constructor === SceneBase) {
6756
6859
  throw new Error("SceneBase is abstract and cannot be created");
@@ -6799,35 +6902,35 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6799
6902
 
6800
6903
  module.exports = SceneBase;
6801
6904
  }, {
6802
- "../../server/plattar-server.js": 42,
6803
- "../interfaces/plattar-base.js": 59,
6804
- "./scene-annotation.js": 84,
6805
- "./scene-audio.js": 85,
6806
- "./scene-button.js": 87,
6807
- "./scene-camera.js": 88,
6808
- "./scene-carousel.js": 89,
6809
- "./scene-image.js": 90,
6810
- "./scene-model.js": 91,
6811
- "./scene-panorama.js": 92,
6812
- "./scene-poller.js": 93,
6813
- "./scene-product.js": 94,
6814
- "./scene-shadow.js": 96,
6815
- "./scene-video.js": 97,
6816
- "./scene-volumetric.js": 98,
6817
- "./scene-youtube.js": 99
6905
+ "../../server/plattar-server.js": 41,
6906
+ "../interfaces/plattar-base.js": 58,
6907
+ "./scene-annotation.js": 83,
6908
+ "./scene-audio.js": 84,
6909
+ "./scene-button.js": 86,
6910
+ "./scene-camera.js": 87,
6911
+ "./scene-carousel.js": 88,
6912
+ "./scene-image.js": 89,
6913
+ "./scene-model.js": 90,
6914
+ "./scene-panorama.js": 91,
6915
+ "./scene-poller.js": 92,
6916
+ "./scene-product.js": 93,
6917
+ "./scene-shadow.js": 95,
6918
+ "./scene-video.js": 96,
6919
+ "./scene-volumetric.js": 97,
6920
+ "./scene-youtube.js": 98
6818
6921
  }],
6819
- 87: [function (require, module, exports) {
6922
+ 86: [function (require, module, exports) {
6820
6923
  var SceneBase = require("./scene-base.js");
6821
6924
 
6822
6925
  var SceneButton = /*#__PURE__*/function (_SceneBase3) {
6823
6926
  _inherits(SceneButton, _SceneBase3);
6824
6927
 
6825
- var _super55 = _createSuper(SceneButton);
6928
+ var _super54 = _createSuper(SceneButton);
6826
6929
 
6827
6930
  function SceneButton() {
6828
6931
  _classCallCheck(this, SceneButton);
6829
6932
 
6830
- return _super55.apply(this, arguments);
6933
+ return _super54.apply(this, arguments);
6831
6934
  }
6832
6935
 
6833
6936
  _createClass(SceneButton, null, [{
@@ -6842,20 +6945,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6842
6945
 
6843
6946
  module.exports = SceneButton;
6844
6947
  }, {
6845
- "./scene-base.js": 86
6948
+ "./scene-base.js": 85
6846
6949
  }],
6847
- 88: [function (require, module, exports) {
6950
+ 87: [function (require, module, exports) {
6848
6951
  var SceneBase = require("./scene-base.js");
6849
6952
 
6850
6953
  var SceneCamera = /*#__PURE__*/function (_SceneBase4) {
6851
6954
  _inherits(SceneCamera, _SceneBase4);
6852
6955
 
6853
- var _super56 = _createSuper(SceneCamera);
6956
+ var _super55 = _createSuper(SceneCamera);
6854
6957
 
6855
6958
  function SceneCamera() {
6856
6959
  _classCallCheck(this, SceneCamera);
6857
6960
 
6858
- return _super56.apply(this, arguments);
6961
+ return _super55.apply(this, arguments);
6859
6962
  }
6860
6963
 
6861
6964
  _createClass(SceneCamera, null, [{
@@ -6870,20 +6973,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6870
6973
 
6871
6974
  module.exports = SceneCamera;
6872
6975
  }, {
6873
- "./scene-base.js": 86
6976
+ "./scene-base.js": 85
6874
6977
  }],
6875
- 89: [function (require, module, exports) {
6978
+ 88: [function (require, module, exports) {
6876
6979
  var SceneBase = require("./scene-base.js");
6877
6980
 
6878
6981
  var SceneCarousel = /*#__PURE__*/function (_SceneBase5) {
6879
6982
  _inherits(SceneCarousel, _SceneBase5);
6880
6983
 
6881
- var _super57 = _createSuper(SceneCarousel);
6984
+ var _super56 = _createSuper(SceneCarousel);
6882
6985
 
6883
6986
  function SceneCarousel() {
6884
6987
  _classCallCheck(this, SceneCarousel);
6885
6988
 
6886
- return _super57.apply(this, arguments);
6989
+ return _super56.apply(this, arguments);
6887
6990
  }
6888
6991
 
6889
6992
  _createClass(SceneCarousel, null, [{
@@ -6898,20 +7001,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6898
7001
 
6899
7002
  module.exports = SceneCarousel;
6900
7003
  }, {
6901
- "./scene-base.js": 86
7004
+ "./scene-base.js": 85
6902
7005
  }],
6903
- 90: [function (require, module, exports) {
7006
+ 89: [function (require, module, exports) {
6904
7007
  var SceneBase = require("./scene-base.js");
6905
7008
 
6906
7009
  var SceneImage = /*#__PURE__*/function (_SceneBase6) {
6907
7010
  _inherits(SceneImage, _SceneBase6);
6908
7011
 
6909
- var _super58 = _createSuper(SceneImage);
7012
+ var _super57 = _createSuper(SceneImage);
6910
7013
 
6911
7014
  function SceneImage() {
6912
7015
  _classCallCheck(this, SceneImage);
6913
7016
 
6914
- return _super58.apply(this, arguments);
7017
+ return _super57.apply(this, arguments);
6915
7018
  }
6916
7019
 
6917
7020
  _createClass(SceneImage, null, [{
@@ -6926,20 +7029,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6926
7029
 
6927
7030
  module.exports = SceneImage;
6928
7031
  }, {
6929
- "./scene-base.js": 86
7032
+ "./scene-base.js": 85
6930
7033
  }],
6931
- 91: [function (require, module, exports) {
7034
+ 90: [function (require, module, exports) {
6932
7035
  var SceneBase = require("./scene-base.js");
6933
7036
 
6934
7037
  var SceneModel = /*#__PURE__*/function (_SceneBase7) {
6935
7038
  _inherits(SceneModel, _SceneBase7);
6936
7039
 
6937
- var _super59 = _createSuper(SceneModel);
7040
+ var _super58 = _createSuper(SceneModel);
6938
7041
 
6939
7042
  function SceneModel() {
6940
7043
  _classCallCheck(this, SceneModel);
6941
7044
 
6942
- return _super59.apply(this, arguments);
7045
+ return _super58.apply(this, arguments);
6943
7046
  }
6944
7047
 
6945
7048
  _createClass(SceneModel, null, [{
@@ -6954,20 +7057,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6954
7057
 
6955
7058
  module.exports = SceneModel;
6956
7059
  }, {
6957
- "./scene-base.js": 86
7060
+ "./scene-base.js": 85
6958
7061
  }],
6959
- 92: [function (require, module, exports) {
7062
+ 91: [function (require, module, exports) {
6960
7063
  var SceneBase = require("./scene-base.js");
6961
7064
 
6962
7065
  var ScenePanorama = /*#__PURE__*/function (_SceneBase8) {
6963
7066
  _inherits(ScenePanorama, _SceneBase8);
6964
7067
 
6965
- var _super60 = _createSuper(ScenePanorama);
7068
+ var _super59 = _createSuper(ScenePanorama);
6966
7069
 
6967
7070
  function ScenePanorama() {
6968
7071
  _classCallCheck(this, ScenePanorama);
6969
7072
 
6970
- return _super60.apply(this, arguments);
7073
+ return _super59.apply(this, arguments);
6971
7074
  }
6972
7075
 
6973
7076
  _createClass(ScenePanorama, null, [{
@@ -6982,20 +7085,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
6982
7085
 
6983
7086
  module.exports = ScenePanorama;
6984
7087
  }, {
6985
- "./scene-base.js": 86
7088
+ "./scene-base.js": 85
6986
7089
  }],
6987
- 93: [function (require, module, exports) {
7090
+ 92: [function (require, module, exports) {
6988
7091
  var SceneBase = require("./scene-base.js");
6989
7092
 
6990
7093
  var ScenePoller = /*#__PURE__*/function (_SceneBase9) {
6991
7094
  _inherits(ScenePoller, _SceneBase9);
6992
7095
 
6993
- var _super61 = _createSuper(ScenePoller);
7096
+ var _super60 = _createSuper(ScenePoller);
6994
7097
 
6995
7098
  function ScenePoller() {
6996
7099
  _classCallCheck(this, ScenePoller);
6997
7100
 
6998
- return _super61.apply(this, arguments);
7101
+ return _super60.apply(this, arguments);
6999
7102
  }
7000
7103
 
7001
7104
  _createClass(ScenePoller, null, [{
@@ -7010,20 +7113,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7010
7113
 
7011
7114
  module.exports = ScenePoller;
7012
7115
  }, {
7013
- "./scene-base.js": 86
7116
+ "./scene-base.js": 85
7014
7117
  }],
7015
- 94: [function (require, module, exports) {
7118
+ 93: [function (require, module, exports) {
7016
7119
  var SceneBase = require("./scene-base.js");
7017
7120
 
7018
7121
  var SceneProduct = /*#__PURE__*/function (_SceneBase10) {
7019
7122
  _inherits(SceneProduct, _SceneBase10);
7020
7123
 
7021
- var _super62 = _createSuper(SceneProduct);
7124
+ var _super61 = _createSuper(SceneProduct);
7022
7125
 
7023
7126
  function SceneProduct() {
7024
7127
  _classCallCheck(this, SceneProduct);
7025
7128
 
7026
- return _super62.apply(this, arguments);
7129
+ return _super61.apply(this, arguments);
7027
7130
  }
7028
7131
 
7029
7132
  _createClass(SceneProduct, null, [{
@@ -7038,20 +7141,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7038
7141
 
7039
7142
  module.exports = SceneProduct;
7040
7143
  }, {
7041
- "./scene-base.js": 86
7144
+ "./scene-base.js": 85
7042
7145
  }],
7043
- 95: [function (require, module, exports) {
7146
+ 94: [function (require, module, exports) {
7044
7147
  var SceneBase = require("./scene-base.js");
7045
7148
 
7046
7149
  var SceneScript = /*#__PURE__*/function (_SceneBase11) {
7047
7150
  _inherits(SceneScript, _SceneBase11);
7048
7151
 
7049
- var _super63 = _createSuper(SceneScript);
7152
+ var _super62 = _createSuper(SceneScript);
7050
7153
 
7051
7154
  function SceneScript() {
7052
7155
  _classCallCheck(this, SceneScript);
7053
7156
 
7054
- return _super63.apply(this, arguments);
7157
+ return _super62.apply(this, arguments);
7055
7158
  }
7056
7159
 
7057
7160
  _createClass(SceneScript, null, [{
@@ -7066,20 +7169,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7066
7169
 
7067
7170
  module.exports = SceneScript;
7068
7171
  }, {
7069
- "./scene-base.js": 86
7172
+ "./scene-base.js": 85
7070
7173
  }],
7071
- 96: [function (require, module, exports) {
7174
+ 95: [function (require, module, exports) {
7072
7175
  var SceneBase = require("./scene-base.js");
7073
7176
 
7074
7177
  var SceneShadow = /*#__PURE__*/function (_SceneBase12) {
7075
7178
  _inherits(SceneShadow, _SceneBase12);
7076
7179
 
7077
- var _super64 = _createSuper(SceneShadow);
7180
+ var _super63 = _createSuper(SceneShadow);
7078
7181
 
7079
7182
  function SceneShadow() {
7080
7183
  _classCallCheck(this, SceneShadow);
7081
7184
 
7082
- return _super64.apply(this, arguments);
7185
+ return _super63.apply(this, arguments);
7083
7186
  }
7084
7187
 
7085
7188
  _createClass(SceneShadow, null, [{
@@ -7094,20 +7197,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7094
7197
 
7095
7198
  module.exports = SceneShadow;
7096
7199
  }, {
7097
- "./scene-base.js": 86
7200
+ "./scene-base.js": 85
7098
7201
  }],
7099
- 97: [function (require, module, exports) {
7202
+ 96: [function (require, module, exports) {
7100
7203
  var SceneBase = require("./scene-base.js");
7101
7204
 
7102
7205
  var SceneVideo = /*#__PURE__*/function (_SceneBase13) {
7103
7206
  _inherits(SceneVideo, _SceneBase13);
7104
7207
 
7105
- var _super65 = _createSuper(SceneVideo);
7208
+ var _super64 = _createSuper(SceneVideo);
7106
7209
 
7107
7210
  function SceneVideo() {
7108
7211
  _classCallCheck(this, SceneVideo);
7109
7212
 
7110
- return _super65.apply(this, arguments);
7213
+ return _super64.apply(this, arguments);
7111
7214
  }
7112
7215
 
7113
7216
  _createClass(SceneVideo, null, [{
@@ -7122,20 +7225,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7122
7225
 
7123
7226
  module.exports = SceneVideo;
7124
7227
  }, {
7125
- "./scene-base.js": 86
7228
+ "./scene-base.js": 85
7126
7229
  }],
7127
- 98: [function (require, module, exports) {
7230
+ 97: [function (require, module, exports) {
7128
7231
  var SceneBase = require("./scene-base.js");
7129
7232
 
7130
7233
  var SceneVolumetric = /*#__PURE__*/function (_SceneBase14) {
7131
7234
  _inherits(SceneVolumetric, _SceneBase14);
7132
7235
 
7133
- var _super66 = _createSuper(SceneVolumetric);
7236
+ var _super65 = _createSuper(SceneVolumetric);
7134
7237
 
7135
7238
  function SceneVolumetric() {
7136
7239
  _classCallCheck(this, SceneVolumetric);
7137
7240
 
7138
- return _super66.apply(this, arguments);
7241
+ return _super65.apply(this, arguments);
7139
7242
  }
7140
7243
 
7141
7244
  _createClass(SceneVolumetric, null, [{
@@ -7150,20 +7253,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7150
7253
 
7151
7254
  module.exports = SceneVolumetric;
7152
7255
  }, {
7153
- "./scene-base.js": 86
7256
+ "./scene-base.js": 85
7154
7257
  }],
7155
- 99: [function (require, module, exports) {
7258
+ 98: [function (require, module, exports) {
7156
7259
  var SceneBase = require("./scene-base.js");
7157
7260
 
7158
7261
  var SceneYoutube = /*#__PURE__*/function (_SceneBase15) {
7159
7262
  _inherits(SceneYoutube, _SceneBase15);
7160
7263
 
7161
- var _super67 = _createSuper(SceneYoutube);
7264
+ var _super66 = _createSuper(SceneYoutube);
7162
7265
 
7163
7266
  function SceneYoutube() {
7164
7267
  _classCallCheck(this, SceneYoutube);
7165
7268
 
7166
- return _super67.apply(this, arguments);
7269
+ return _super66.apply(this, arguments);
7167
7270
  }
7168
7271
 
7169
7272
  _createClass(SceneYoutube, null, [{
@@ -7178,20 +7281,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7178
7281
 
7179
7282
  module.exports = SceneYoutube;
7180
7283
  }, {
7181
- "./scene-base.js": 86
7284
+ "./scene-base.js": 85
7182
7285
  }],
7183
- 100: [function (require, module, exports) {
7286
+ 99: [function (require, module, exports) {
7184
7287
  var PlattarBase = require("../interfaces/plattar-base.js");
7185
7288
 
7186
7289
  var Scene = /*#__PURE__*/function (_PlattarBase22) {
7187
7290
  _inherits(Scene, _PlattarBase22);
7188
7291
 
7189
- var _super68 = _createSuper(Scene);
7292
+ var _super67 = _createSuper(Scene);
7190
7293
 
7191
7294
  function Scene() {
7192
7295
  _classCallCheck(this, Scene);
7193
7296
 
7194
- return _super68.apply(this, arguments);
7297
+ return _super67.apply(this, arguments);
7195
7298
  }
7196
7299
 
7197
7300
  _createClass(Scene, null, [{
@@ -7206,20 +7309,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7206
7309
 
7207
7310
  module.exports = Scene;
7208
7311
  }, {
7209
- "../interfaces/plattar-base.js": 59
7312
+ "../interfaces/plattar-base.js": 58
7210
7313
  }],
7211
- 101: [function (require, module, exports) {
7314
+ 100: [function (require, module, exports) {
7212
7315
  var PlattarBase = require("../interfaces/plattar-base.js");
7213
7316
 
7214
7317
  var TriggerImage = /*#__PURE__*/function (_PlattarBase23) {
7215
7318
  _inherits(TriggerImage, _PlattarBase23);
7216
7319
 
7217
- var _super69 = _createSuper(TriggerImage);
7320
+ var _super68 = _createSuper(TriggerImage);
7218
7321
 
7219
7322
  function TriggerImage() {
7220
7323
  _classCallCheck(this, TriggerImage);
7221
7324
 
7222
- return _super69.apply(this, arguments);
7325
+ return _super68.apply(this, arguments);
7223
7326
  }
7224
7327
 
7225
7328
  _createClass(TriggerImage, null, [{
@@ -7234,9 +7337,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7234
7337
 
7235
7338
  module.exports = TriggerImage;
7236
7339
  }, {
7237
- "../interfaces/plattar-base.js": 59
7340
+ "../interfaces/plattar-base.js": 58
7238
7341
  }],
7239
- 102: [function (require, module, exports) {
7342
+ 101: [function (require, module, exports) {
7240
7343
  var Application = require("../types/application.js"); // import Scene types and its children
7241
7344
 
7242
7345
 
@@ -7623,75 +7726,75 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7623
7726
 
7624
7727
  module.exports = PlattarUtil;
7625
7728
  }, {
7626
- "../types/application.js": 43,
7627
- "../types/content-pipeline/brief.js": 44,
7628
- "../types/content-pipeline/comment-brief.js": 45,
7629
- "../types/content-pipeline/comment-quote.js": 46,
7630
- "../types/content-pipeline/comment-solution.js": 47,
7631
- "../types/content-pipeline/folder.js": 48,
7632
- "../types/content-pipeline/pipeline-user.js": 49,
7633
- "../types/content-pipeline/quote.js": 50,
7634
- "../types/content-pipeline/rating.js": 51,
7635
- "../types/content-pipeline/solution.js": 52,
7636
- "../types/file/file-audio.js": 53,
7637
- "../types/file/file-image.js": 55,
7638
- "../types/file/file-model.js": 56,
7639
- "../types/file/file-script.js": 57,
7640
- "../types/file/file-video.js": 58,
7641
- "../types/interfaces/plattar-object.js": 61,
7642
- "../types/misc/application-build.js": 62,
7643
- "../types/misc/asset-library": 63,
7644
- "../types/misc/async-job.js": 64,
7645
- "../types/misc/script-event.js": 65,
7646
- "../types/misc/tag.js": 66,
7647
- "../types/page/card-button.js": 68,
7648
- "../types/page/card-html.js": 69,
7649
- "../types/page/card-iframe.js": 70,
7650
- "../types/page/card-image.js": 71,
7651
- "../types/page/card-map.js": 72,
7652
- "../types/page/card-paragraph.js": 73,
7653
- "../types/page/card-row.js": 74,
7654
- "../types/page/card-slider.js": 75,
7655
- "../types/page/card-title.js": 76,
7656
- "../types/page/card-video.js": 77,
7657
- "../types/page/card-youtube.js": 78,
7658
- "../types/page/page.js": 79,
7659
- "../types/product/product-annotation.js": 80,
7660
- "../types/product/product-variation.js": 82,
7661
- "../types/product/product.js": 83,
7662
- "../types/scene/scene-annotation.js": 84,
7663
- "../types/scene/scene-audio.js": 85,
7664
- "../types/scene/scene-button.js": 87,
7665
- "../types/scene/scene-camera.js": 88,
7666
- "../types/scene/scene-carousel.js": 89,
7667
- "../types/scene/scene-image.js": 90,
7668
- "../types/scene/scene-model.js": 91,
7669
- "../types/scene/scene-panorama.js": 92,
7670
- "../types/scene/scene-poller.js": 93,
7671
- "../types/scene/scene-product.js": 94,
7672
- "../types/scene/scene-script.js": 95,
7673
- "../types/scene/scene-shadow.js": 96,
7674
- "../types/scene/scene-video.js": 97,
7675
- "../types/scene/scene-volumetric.js": 98,
7676
- "../types/scene/scene-youtube.js": 99,
7677
- "../types/scene/scene.js": 100,
7678
- "../types/trigger/trigger-image.js": 101
7729
+ "../types/application.js": 42,
7730
+ "../types/content-pipeline/brief.js": 43,
7731
+ "../types/content-pipeline/comment-brief.js": 44,
7732
+ "../types/content-pipeline/comment-quote.js": 45,
7733
+ "../types/content-pipeline/comment-solution.js": 46,
7734
+ "../types/content-pipeline/folder.js": 47,
7735
+ "../types/content-pipeline/pipeline-user.js": 48,
7736
+ "../types/content-pipeline/quote.js": 49,
7737
+ "../types/content-pipeline/rating.js": 50,
7738
+ "../types/content-pipeline/solution.js": 51,
7739
+ "../types/file/file-audio.js": 52,
7740
+ "../types/file/file-image.js": 54,
7741
+ "../types/file/file-model.js": 55,
7742
+ "../types/file/file-script.js": 56,
7743
+ "../types/file/file-video.js": 57,
7744
+ "../types/interfaces/plattar-object.js": 60,
7745
+ "../types/misc/application-build.js": 61,
7746
+ "../types/misc/asset-library": 62,
7747
+ "../types/misc/async-job.js": 63,
7748
+ "../types/misc/script-event.js": 64,
7749
+ "../types/misc/tag.js": 65,
7750
+ "../types/page/card-button.js": 67,
7751
+ "../types/page/card-html.js": 68,
7752
+ "../types/page/card-iframe.js": 69,
7753
+ "../types/page/card-image.js": 70,
7754
+ "../types/page/card-map.js": 71,
7755
+ "../types/page/card-paragraph.js": 72,
7756
+ "../types/page/card-row.js": 73,
7757
+ "../types/page/card-slider.js": 74,
7758
+ "../types/page/card-title.js": 75,
7759
+ "../types/page/card-video.js": 76,
7760
+ "../types/page/card-youtube.js": 77,
7761
+ "../types/page/page.js": 78,
7762
+ "../types/product/product-annotation.js": 79,
7763
+ "../types/product/product-variation.js": 81,
7764
+ "../types/product/product.js": 82,
7765
+ "../types/scene/scene-annotation.js": 83,
7766
+ "../types/scene/scene-audio.js": 84,
7767
+ "../types/scene/scene-button.js": 86,
7768
+ "../types/scene/scene-camera.js": 87,
7769
+ "../types/scene/scene-carousel.js": 88,
7770
+ "../types/scene/scene-image.js": 89,
7771
+ "../types/scene/scene-model.js": 90,
7772
+ "../types/scene/scene-panorama.js": 91,
7773
+ "../types/scene/scene-poller.js": 92,
7774
+ "../types/scene/scene-product.js": 93,
7775
+ "../types/scene/scene-script.js": 94,
7776
+ "../types/scene/scene-shadow.js": 95,
7777
+ "../types/scene/scene-video.js": 96,
7778
+ "../types/scene/scene-volumetric.js": 97,
7779
+ "../types/scene/scene-youtube.js": 98,
7780
+ "../types/scene/scene.js": 99,
7781
+ "../types/trigger/trigger-image.js": 100
7679
7782
  }],
7680
- 103: [function (require, module, exports) {
7783
+ 102: [function (require, module, exports) {
7681
7784
  module.exports = "1.120.1";
7682
7785
  }, {}],
7683
- 104: [function (require, module, exports) {
7786
+ 103: [function (require, module, exports) {
7684
7787
  var QRCodeStyling = require("qr-code-styling");
7685
7788
 
7686
7789
  var BaseElement = /*#__PURE__*/function (_HTMLElement2) {
7687
7790
  _inherits(BaseElement, _HTMLElement2);
7688
7791
 
7689
- var _super70 = _createSuper(BaseElement);
7792
+ var _super69 = _createSuper(BaseElement);
7690
7793
 
7691
7794
  function BaseElement() {
7692
7795
  _classCallCheck(this, BaseElement);
7693
7796
 
7694
- return _super70.call(this);
7797
+ return _super69.call(this);
7695
7798
  }
7696
7799
 
7697
7800
  _createClass(BaseElement, [{
@@ -7938,20 +8041,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7938
8041
 
7939
8042
  module.exports = BaseElement;
7940
8043
  }, {
7941
- "qr-code-styling": 131
8044
+ "qr-code-styling": 130
7942
8045
  }],
7943
- 105: [function (require, module, exports) {
8046
+ 104: [function (require, module, exports) {
7944
8047
  var BaseElement = require("./base/base-element.js");
7945
8048
 
7946
8049
  var QRCodeElement = /*#__PURE__*/function (_BaseElement) {
7947
8050
  _inherits(QRCodeElement, _BaseElement);
7948
8051
 
7949
- var _super71 = _createSuper(QRCodeElement);
8052
+ var _super70 = _createSuper(QRCodeElement);
7950
8053
 
7951
8054
  function QRCodeElement() {
7952
8055
  _classCallCheck(this, QRCodeElement);
7953
8056
 
7954
- return _super71.call(this);
8057
+ return _super70.call(this);
7955
8058
  }
7956
8059
 
7957
8060
  return _createClass(QRCodeElement);
@@ -7959,9 +8062,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7959
8062
 
7960
8063
  module.exports = QRCodeElement;
7961
8064
  }, {
7962
- "./base/base-element.js": 104
8065
+ "./base/base-element.js": 103
7963
8066
  }],
7964
- 106: [function (require, module, exports) {
8067
+ 105: [function (require, module, exports) {
7965
8068
  "use strict";
7966
8069
 
7967
8070
  var QRCodeElement = require("./elements/qrcode-element.js");
@@ -7979,13 +8082,13 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
7979
8082
  version: Version
7980
8083
  };
7981
8084
  }, {
7982
- "./elements/qrcode-element.js": 105,
7983
- "./version": 107
8085
+ "./elements/qrcode-element.js": 104,
8086
+ "./version": 106
7984
8087
  }],
7985
- 107: [function (require, module, exports) {
8088
+ 106: [function (require, module, exports) {
7986
8089
  module.exports = "1.122.1";
7987
8090
  }, {}],
7988
- 108: [function (require, module, exports) {
8091
+ 107: [function (require, module, exports) {
7989
8092
  "use strict";
7990
8093
 
7991
8094
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -8219,11 +8322,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8219
8322
 
8220
8323
  exports.Configurator = Configurator;
8221
8324
  }, {
8222
- "./remote-request": 110,
8223
- "@plattar/plattar-api": 40,
8224
- "object-hash": 129
8325
+ "./remote-request": 109,
8326
+ "@plattar/plattar-api": 39,
8327
+ "object-hash": 128
8225
8328
  }],
8226
- 109: [function (require, module, exports) {
8329
+ 108: [function (require, module, exports) {
8227
8330
  "use strict";
8228
8331
 
8229
8332
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -8318,11 +8421,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8318
8421
 
8319
8422
  exports.ModelConverter = ModelConverter;
8320
8423
  }, {
8321
- "./remote-request": 110,
8322
- "@plattar/plattar-api": 40,
8323
- "object-hash": 129
8424
+ "./remote-request": 109,
8425
+ "@plattar/plattar-api": 39,
8426
+ "object-hash": 128
8324
8427
  }],
8325
- 110: [function (require, module, exports) {
8428
+ 109: [function (require, module, exports) {
8326
8429
  "use strict";
8327
8430
 
8328
8431
  var __importDefault = this && this.__importDefault || function (mod) {
@@ -8410,9 +8513,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8410
8513
 
8411
8514
  exports.RemoteRequest = RemoteRequest;
8412
8515
  }, {
8413
- "node-fetch": 128
8516
+ "node-fetch": 127
8414
8517
  }],
8415
- 111: [function (require, module, exports) {
8518
+ 110: [function (require, module, exports) {
8416
8519
  "use strict";
8417
8520
 
8418
8521
  var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
@@ -8483,11 +8586,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8483
8586
 
8484
8587
  console.log("using @plattar/plattar-services v" + version_1["default"]);
8485
8588
  }, {
8486
- "./core/configurator": 108,
8487
- "./core/model-converter": 109,
8488
- "./version": 112
8589
+ "./core/configurator": 107,
8590
+ "./core/model-converter": 108,
8591
+ "./version": 111
8489
8592
  }],
8490
- 112: [function (require, module, exports) {
8593
+ 111: [function (require, module, exports) {
8491
8594
  "use strict";
8492
8595
 
8493
8596
  Object.defineProperty(exports, "__esModule", {
@@ -8495,18 +8598,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8495
8598
  });
8496
8599
  exports["default"] = "1.120.1";
8497
8600
  }, {}],
8498
- 113: [function (require, module, exports) {
8601
+ 112: [function (require, module, exports) {
8499
8602
  var ElementController = require("../controllers/element-controller");
8500
8603
 
8501
8604
  var BaseElement = /*#__PURE__*/function (_HTMLElement3) {
8502
8605
  _inherits(BaseElement, _HTMLElement3);
8503
8606
 
8504
- var _super72 = _createSuper(BaseElement);
8607
+ var _super71 = _createSuper(BaseElement);
8505
8608
 
8506
8609
  function BaseElement() {
8507
8610
  _classCallCheck(this, BaseElement);
8508
8611
 
8509
- return _super72.call(this);
8612
+ return _super71.call(this);
8510
8613
  }
8511
8614
 
8512
8615
  _createClass(BaseElement, [{
@@ -8662,20 +8765,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8662
8765
 
8663
8766
  module.exports = BaseElement;
8664
8767
  }, {
8665
- "../controllers/element-controller": 115
8768
+ "../controllers/element-controller": 114
8666
8769
  }],
8667
- 114: [function (require, module, exports) {
8770
+ 113: [function (require, module, exports) {
8668
8771
  var BaseElement = require("./base/base-element.js");
8669
8772
 
8670
8773
  var ConfiguratorElement = /*#__PURE__*/function (_BaseElement2) {
8671
8774
  _inherits(ConfiguratorElement, _BaseElement2);
8672
8775
 
8673
- var _super73 = _createSuper(ConfiguratorElement);
8776
+ var _super72 = _createSuper(ConfiguratorElement);
8674
8777
 
8675
8778
  function ConfiguratorElement() {
8676
8779
  _classCallCheck(this, ConfiguratorElement);
8677
8780
 
8678
- return _super73.call(this);
8781
+ return _super72.call(this);
8679
8782
  }
8680
8783
 
8681
8784
  _createClass(ConfiguratorElement, [{
@@ -8706,9 +8809,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8706
8809
 
8707
8810
  module.exports = ConfiguratorElement;
8708
8811
  }, {
8709
- "./base/base-element.js": 113
8812
+ "./base/base-element.js": 112
8710
8813
  }],
8711
- 115: [function (require, module, exports) {
8814
+ 114: [function (require, module, exports) {
8712
8815
  var Util = require("../../util/util.js");
8713
8816
 
8714
8817
  var _require = require("@plattar/context-messenger"),
@@ -8825,11 +8928,11 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8825
8928
 
8826
8929
  module.exports = ElementController;
8827
8930
  }, {
8828
- "../../util/util.js": 126,
8829
- "./iframe-controller.js": 116,
8830
- "@plattar/context-messenger": 19
8931
+ "../../util/util.js": 125,
8932
+ "./iframe-controller.js": 115,
8933
+ "@plattar/context-messenger": 18
8831
8934
  }],
8832
- 116: [function (require, module, exports) {
8935
+ 115: [function (require, module, exports) {
8833
8936
  var Util = require("../../util/util.js");
8834
8937
 
8835
8938
  var IFrameController = /*#__PURE__*/function () {
@@ -8943,20 +9046,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8943
9046
 
8944
9047
  module.exports = IFrameController;
8945
9048
  }, {
8946
- "../../util/util.js": 126
9049
+ "../../util/util.js": 125
8947
9050
  }],
8948
- 117: [function (require, module, exports) {
9051
+ 116: [function (require, module, exports) {
8949
9052
  var BaseElement = require("./base/base-element.js");
8950
9053
 
8951
9054
  var EditorElement = /*#__PURE__*/function (_BaseElement3) {
8952
9055
  _inherits(EditorElement, _BaseElement3);
8953
9056
 
8954
- var _super74 = _createSuper(EditorElement);
9057
+ var _super73 = _createSuper(EditorElement);
8955
9058
 
8956
9059
  function EditorElement() {
8957
9060
  _classCallCheck(this, EditorElement);
8958
9061
 
8959
- return _super74.call(this);
9062
+ return _super73.call(this);
8960
9063
  }
8961
9064
 
8962
9065
  _createClass(EditorElement, [{
@@ -8976,22 +9079,22 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
8976
9079
 
8977
9080
  module.exports = EditorElement;
8978
9081
  }, {
8979
- "./base/base-element.js": 113
9082
+ "./base/base-element.js": 112
8980
9083
  }],
8981
- 118: [function (require, module, exports) {
9084
+ 117: [function (require, module, exports) {
8982
9085
  var BaseElement = require("./base/base-element.js");
8983
9086
 
8984
9087
  var EWallElement = /*#__PURE__*/function (_BaseElement4) {
8985
9088
  _inherits(EWallElement, _BaseElement4);
8986
9089
 
8987
- var _super75 = _createSuper(EWallElement);
9090
+ var _super74 = _createSuper(EWallElement);
8988
9091
 
8989
9092
  function EWallElement() {
8990
9093
  var _this66;
8991
9094
 
8992
9095
  _classCallCheck(this, EWallElement);
8993
9096
 
8994
- _this66 = _super75.call(this);
9097
+ _this66 = _super74.call(this);
8995
9098
  var tag = document.createElement("script");
8996
9099
  tag.src = "https://cdn.8thwall.com/web/iframe/iframe.js";
8997
9100
  tag.defer = true;
@@ -9031,20 +9134,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9031
9134
 
9032
9135
  module.exports = EWallElement;
9033
9136
  }, {
9034
- "./base/base-element.js": 113
9137
+ "./base/base-element.js": 112
9035
9138
  }],
9036
- 119: [function (require, module, exports) {
9139
+ 118: [function (require, module, exports) {
9037
9140
  var BaseElement = require("./base/base-element.js");
9038
9141
 
9039
9142
  var FaceARElement = /*#__PURE__*/function (_BaseElement5) {
9040
9143
  _inherits(FaceARElement, _BaseElement5);
9041
9144
 
9042
- var _super76 = _createSuper(FaceARElement);
9145
+ var _super75 = _createSuper(FaceARElement);
9043
9146
 
9044
9147
  function FaceARElement() {
9045
9148
  _classCallCheck(this, FaceARElement);
9046
9149
 
9047
- return _super76.call(this);
9150
+ return _super75.call(this);
9048
9151
  }
9049
9152
 
9050
9153
  _createClass(FaceARElement, [{
@@ -9075,20 +9178,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9075
9178
 
9076
9179
  module.exports = FaceARElement;
9077
9180
  }, {
9078
- "./base/base-element.js": 113
9181
+ "./base/base-element.js": 112
9079
9182
  }],
9080
- 120: [function (require, module, exports) {
9183
+ 119: [function (require, module, exports) {
9081
9184
  var BaseElement = require("./base/base-element.js");
9082
9185
 
9083
9186
  var ModelElement = /*#__PURE__*/function (_BaseElement6) {
9084
9187
  _inherits(ModelElement, _BaseElement6);
9085
9188
 
9086
- var _super77 = _createSuper(ModelElement);
9189
+ var _super76 = _createSuper(ModelElement);
9087
9190
 
9088
9191
  function ModelElement() {
9089
9192
  _classCallCheck(this, ModelElement);
9090
9193
 
9091
- return _super77.call(this);
9194
+ return _super76.call(this);
9092
9195
  }
9093
9196
 
9094
9197
  _createClass(ModelElement, [{
@@ -9116,20 +9219,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9116
9219
 
9117
9220
  module.exports = ModelElement;
9118
9221
  }, {
9119
- "./base/base-element.js": 113
9222
+ "./base/base-element.js": 112
9120
9223
  }],
9121
- 121: [function (require, module, exports) {
9224
+ 120: [function (require, module, exports) {
9122
9225
  var BaseElement = require("./base/base-element.js");
9123
9226
 
9124
9227
  var ProductElement = /*#__PURE__*/function (_BaseElement7) {
9125
9228
  _inherits(ProductElement, _BaseElement7);
9126
9229
 
9127
- var _super78 = _createSuper(ProductElement);
9230
+ var _super77 = _createSuper(ProductElement);
9128
9231
 
9129
9232
  function ProductElement() {
9130
9233
  _classCallCheck(this, ProductElement);
9131
9234
 
9132
- return _super78.call(this);
9235
+ return _super77.call(this);
9133
9236
  }
9134
9237
 
9135
9238
  _createClass(ProductElement, [{
@@ -9165,20 +9268,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9165
9268
 
9166
9269
  module.exports = ProductElement;
9167
9270
  }, {
9168
- "./base/base-element.js": 113
9271
+ "./base/base-element.js": 112
9169
9272
  }],
9170
- 122: [function (require, module, exports) {
9273
+ 121: [function (require, module, exports) {
9171
9274
  var BaseElement = require("./base/base-element.js");
9172
9275
 
9173
9276
  var StudioElement = /*#__PURE__*/function (_BaseElement8) {
9174
9277
  _inherits(StudioElement, _BaseElement8);
9175
9278
 
9176
- var _super79 = _createSuper(StudioElement);
9279
+ var _super78 = _createSuper(StudioElement);
9177
9280
 
9178
9281
  function StudioElement() {
9179
9282
  _classCallCheck(this, StudioElement);
9180
9283
 
9181
- return _super79.call(this);
9284
+ return _super78.call(this);
9182
9285
  }
9183
9286
 
9184
9287
  _createClass(StudioElement, [{
@@ -9198,20 +9301,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9198
9301
 
9199
9302
  module.exports = StudioElement;
9200
9303
  }, {
9201
- "./base/base-element.js": 113
9304
+ "./base/base-element.js": 112
9202
9305
  }],
9203
- 123: [function (require, module, exports) {
9306
+ 122: [function (require, module, exports) {
9204
9307
  var BaseElement = require("./base/base-element.js");
9205
9308
 
9206
9309
  var ViewerElement = /*#__PURE__*/function (_BaseElement9) {
9207
9310
  _inherits(ViewerElement, _BaseElement9);
9208
9311
 
9209
- var _super80 = _createSuper(ViewerElement);
9312
+ var _super79 = _createSuper(ViewerElement);
9210
9313
 
9211
9314
  function ViewerElement() {
9212
9315
  _classCallCheck(this, ViewerElement);
9213
9316
 
9214
- return _super80.call(this);
9317
+ return _super79.call(this);
9215
9318
  }
9216
9319
 
9217
9320
  _createClass(ViewerElement, [{
@@ -9242,20 +9345,20 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9242
9345
 
9243
9346
  module.exports = ViewerElement;
9244
9347
  }, {
9245
- "./base/base-element.js": 113
9348
+ "./base/base-element.js": 112
9246
9349
  }],
9247
- 124: [function (require, module, exports) {
9350
+ 123: [function (require, module, exports) {
9248
9351
  var BaseElement = require("./base/base-element.js");
9249
9352
 
9250
9353
  var WebXRElement = /*#__PURE__*/function (_BaseElement10) {
9251
9354
  _inherits(WebXRElement, _BaseElement10);
9252
9355
 
9253
- var _super81 = _createSuper(WebXRElement);
9356
+ var _super80 = _createSuper(WebXRElement);
9254
9357
 
9255
9358
  function WebXRElement() {
9256
9359
  _classCallCheck(this, WebXRElement);
9257
9360
 
9258
- return _super81.call(this);
9361
+ return _super80.call(this);
9259
9362
  }
9260
9363
 
9261
9364
  _createClass(WebXRElement, [{
@@ -9275,9 +9378,9 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9275
9378
 
9276
9379
  module.exports = WebXRElement;
9277
9380
  }, {
9278
- "./base/base-element.js": 113
9381
+ "./base/base-element.js": 112
9279
9382
  }],
9280
- 125: [function (require, module, exports) {
9383
+ 124: [function (require, module, exports) {
9281
9384
  "use strict";
9282
9385
 
9283
9386
  var WebXRElement = require("./elements/webxr-element.js");
@@ -9341,18 +9444,18 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9341
9444
  version: Version
9342
9445
  };
9343
9446
  }, {
9344
- "./elements/configurator-element.js": 114,
9345
- "./elements/editor-element.js": 117,
9346
- "./elements/ewall-element.js": 118,
9347
- "./elements/facear-element.js": 119,
9348
- "./elements/model-element.js": 120,
9349
- "./elements/product-element.js": 121,
9350
- "./elements/studio-element.js": 122,
9351
- "./elements/viewer-element.js": 123,
9352
- "./elements/webxr-element.js": 124,
9353
- "./version": 127
9447
+ "./elements/configurator-element.js": 113,
9448
+ "./elements/editor-element.js": 116,
9449
+ "./elements/ewall-element.js": 117,
9450
+ "./elements/facear-element.js": 118,
9451
+ "./elements/model-element.js": 119,
9452
+ "./elements/product-element.js": 120,
9453
+ "./elements/studio-element.js": 121,
9454
+ "./elements/viewer-element.js": 122,
9455
+ "./elements/webxr-element.js": 123,
9456
+ "./version": 126
9354
9457
  }],
9355
- 126: [function (require, module, exports) {
9458
+ 125: [function (require, module, exports) {
9356
9459
  var Util = /*#__PURE__*/function () {
9357
9460
  function Util() {
9358
9461
  _classCallCheck(this, Util);
@@ -9450,10 +9553,10 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9450
9553
 
9451
9554
  module.exports = Util;
9452
9555
  }, {}],
9453
- 127: [function (require, module, exports) {
9556
+ 126: [function (require, module, exports) {
9454
9557
  module.exports = "1.122.3";
9455
9558
  }, {}],
9456
- 128: [function (require, module, exports) {
9559
+ 127: [function (require, module, exports) {
9457
9560
  (function (global) {
9458
9561
  (function () {
9459
9562
  "use strict"; // ref: https://github.com/tc39/proposal-global
@@ -9490,7 +9593,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
9490
9593
  }).call(this);
9491
9594
  }).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
9492
9595
  }, {}],
9493
- 129: [function (require, module, exports) {
9596
+ 128: [function (require, module, exports) {
9494
9597
  (function (global) {
9495
9598
  (function () {
9496
9599
  !function (e) {
@@ -10762,7 +10865,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
10762
10865
  }).call(this);
10763
10866
  }).call(this, typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {});
10764
10867
  }, {}],
10765
- 130: [function (require, module, exports) {
10868
+ 129: [function (require, module, exports) {
10766
10869
  // shim for using process in browser
10767
10870
  var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it
10768
10871
  // don't break things. But we need to wrap it in a try catch in case it is
@@ -10972,7 +11075,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
10972
11075
  return 0;
10973
11076
  };
10974
11077
  }, {}],
10975
- 131: [function (require, module, exports) {
11078
+ 130: [function (require, module, exports) {
10976
11079
  !function (t, e) {
10977
11080
  "object" == _typeof(exports) && "object" == _typeof(module) ? module.exports = e() : "function" == typeof define && define.amd ? define([], e) : "object" == _typeof(exports) ? exports.QRCodeStyling = e() : t.QRCodeStyling = e();
10978
11081
  }(self, function () {
@@ -13604,6 +13707,6 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
13604
13707
  }()["default"];
13605
13708
  });
13606
13709
  }, {}]
13607
- }, {}, [12])(12);
13710
+ }, {}, [11])(11);
13608
13711
  });
13609
13712