@atlassian/atlassian-connect-js 5.3.197 → 5.3.198
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.
- package/.envrc +4 -4
- package/.netrc +1 -1
- package/dist/connect-host.js +433 -490
- package/dist/iframe-fedramp.js +439 -496
- package/dist/iframe.js +439 -496
- package/package.json +2 -2
package/dist/connect-host.js
CHANGED
|
@@ -5,32 +5,23 @@
|
|
|
5
5
|
})(this, (function () { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _extends() {
|
|
8
|
-
_extends = Object.assign ? Object.assign.bind() : function (
|
|
9
|
-
for (var
|
|
10
|
-
var
|
|
11
|
-
for (var
|
|
12
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
13
|
-
target[key] = source[key];
|
|
14
|
-
}
|
|
15
|
-
}
|
|
8
|
+
return _extends = Object.assign ? Object.assign.bind() : function (n) {
|
|
9
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
10
|
+
var t = arguments[e];
|
|
11
|
+
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
|
16
12
|
}
|
|
17
|
-
return
|
|
18
|
-
};
|
|
19
|
-
return _extends.apply(this, arguments);
|
|
13
|
+
return n;
|
|
14
|
+
}, _extends.apply(null, arguments);
|
|
20
15
|
}
|
|
21
16
|
|
|
22
|
-
function _setPrototypeOf(
|
|
23
|
-
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
};
|
|
27
|
-
return _setPrototypeOf(o, p);
|
|
17
|
+
function _setPrototypeOf(t, e) {
|
|
18
|
+
return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
|
|
19
|
+
return t.__proto__ = e, t;
|
|
20
|
+
}, _setPrototypeOf(t, e);
|
|
28
21
|
}
|
|
29
22
|
|
|
30
|
-
function _inheritsLoose(
|
|
31
|
-
|
|
32
|
-
subClass.prototype.constructor = subClass;
|
|
33
|
-
_setPrototypeOf(subClass, superClass);
|
|
23
|
+
function _inheritsLoose(t, o) {
|
|
24
|
+
t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o);
|
|
34
25
|
}
|
|
35
26
|
|
|
36
27
|
var domain;
|
|
@@ -555,17 +546,14 @@
|
|
|
555
546
|
LoadingComponent._clearTimeout(data.extension.extension_id);
|
|
556
547
|
});
|
|
557
548
|
|
|
558
|
-
function _objectWithoutPropertiesLoose(
|
|
559
|
-
if (
|
|
560
|
-
var
|
|
561
|
-
var
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
key = sourceKeys[i];
|
|
565
|
-
if (excluded.indexOf(key) >= 0) continue;
|
|
566
|
-
target[key] = source[key];
|
|
549
|
+
function _objectWithoutPropertiesLoose(r, e) {
|
|
550
|
+
if (null == r) return {};
|
|
551
|
+
var t = {};
|
|
552
|
+
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
|
|
553
|
+
if (-1 !== e.indexOf(n)) continue;
|
|
554
|
+
t[n] = r[n];
|
|
567
555
|
}
|
|
568
|
-
return
|
|
556
|
+
return t;
|
|
569
557
|
}
|
|
570
558
|
|
|
571
559
|
// @ts-nocheck
|
|
@@ -764,31 +752,20 @@
|
|
|
764
752
|
}
|
|
765
753
|
|
|
766
754
|
function _isNativeReflectConstruct$1() {
|
|
767
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
768
|
-
if (Reflect.construct.sham) return false;
|
|
769
|
-
if (typeof Proxy === "function") return true;
|
|
770
755
|
try {
|
|
771
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
return
|
|
775
|
-
}
|
|
756
|
+
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
757
|
+
} catch (t) {}
|
|
758
|
+
return (_isNativeReflectConstruct$1 = function _isNativeReflectConstruct() {
|
|
759
|
+
return !!t;
|
|
760
|
+
})();
|
|
776
761
|
}
|
|
777
762
|
|
|
778
|
-
function _construct(
|
|
779
|
-
if (_isNativeReflectConstruct$1())
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
a.push.apply(a, args);
|
|
785
|
-
var Constructor = Function.bind.apply(Parent, a);
|
|
786
|
-
var instance = new Constructor();
|
|
787
|
-
if (Class) _setPrototypeOf(instance, Class.prototype);
|
|
788
|
-
return instance;
|
|
789
|
-
};
|
|
790
|
-
}
|
|
791
|
-
return _construct.apply(null, arguments);
|
|
763
|
+
function _construct(t, e, r) {
|
|
764
|
+
if (_isNativeReflectConstruct$1()) return Reflect.construct.apply(null, arguments);
|
|
765
|
+
var o = [null];
|
|
766
|
+
o.push.apply(o, e);
|
|
767
|
+
var p = new (t.bind.apply(t, o))();
|
|
768
|
+
return r && _setPrototypeOf(p, r.prototype), p;
|
|
792
769
|
}
|
|
793
770
|
|
|
794
771
|
// @ts-nocheck
|
|
@@ -3344,10 +3321,8 @@
|
|
|
3344
3321
|
}();
|
|
3345
3322
|
var ExtensionConfigurationOptionsStore$1 = new ExtensionConfigurationOptionsStore();
|
|
3346
3323
|
|
|
3347
|
-
function _classCallCheck(
|
|
3348
|
-
if (!(
|
|
3349
|
-
throw new TypeError("Cannot call a class as a function");
|
|
3350
|
-
}
|
|
3324
|
+
function _classCallCheck(a, n) {
|
|
3325
|
+
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
3351
3326
|
}
|
|
3352
3327
|
|
|
3353
3328
|
function _typeof$1(o) {
|
|
@@ -3360,57 +3335,45 @@
|
|
|
3360
3335
|
}, _typeof$1(o);
|
|
3361
3336
|
}
|
|
3362
3337
|
|
|
3363
|
-
function
|
|
3364
|
-
if (_typeof$1(
|
|
3365
|
-
var
|
|
3366
|
-
if (
|
|
3367
|
-
var
|
|
3368
|
-
if (_typeof$1(
|
|
3338
|
+
function toPrimitive(t, r) {
|
|
3339
|
+
if ("object" != _typeof$1(t) || !t) return t;
|
|
3340
|
+
var e = t[Symbol.toPrimitive];
|
|
3341
|
+
if (void 0 !== e) {
|
|
3342
|
+
var i = e.call(t, r || "default");
|
|
3343
|
+
if ("object" != _typeof$1(i)) return i;
|
|
3369
3344
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
3370
3345
|
}
|
|
3371
|
-
return (
|
|
3346
|
+
return ("string" === r ? String : Number)(t);
|
|
3372
3347
|
}
|
|
3373
3348
|
|
|
3374
|
-
function
|
|
3375
|
-
var
|
|
3376
|
-
return _typeof$1(
|
|
3349
|
+
function toPropertyKey(t) {
|
|
3350
|
+
var i = toPrimitive(t, "string");
|
|
3351
|
+
return "symbol" == _typeof$1(i) ? i : i + "";
|
|
3377
3352
|
}
|
|
3378
3353
|
|
|
3379
|
-
function _defineProperties(
|
|
3380
|
-
for (var
|
|
3381
|
-
var
|
|
3382
|
-
|
|
3383
|
-
descriptor.configurable = true;
|
|
3384
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
3385
|
-
Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
|
|
3354
|
+
function _defineProperties(e, r) {
|
|
3355
|
+
for (var t = 0; t < r.length; t++) {
|
|
3356
|
+
var o = r[t];
|
|
3357
|
+
o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o);
|
|
3386
3358
|
}
|
|
3387
3359
|
}
|
|
3388
|
-
function _createClass(
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
writable: false
|
|
3393
|
-
});
|
|
3394
|
-
return Constructor;
|
|
3360
|
+
function _createClass(e, r, t) {
|
|
3361
|
+
return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
|
|
3362
|
+
writable: !1
|
|
3363
|
+
}), e;
|
|
3395
3364
|
}
|
|
3396
3365
|
|
|
3397
|
-
function _defineProperty(
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
writable: true
|
|
3405
|
-
});
|
|
3406
|
-
} else {
|
|
3407
|
-
obj[key] = value;
|
|
3408
|
-
}
|
|
3409
|
-
return obj;
|
|
3366
|
+
function _defineProperty(e, r, t) {
|
|
3367
|
+
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
3368
|
+
value: t,
|
|
3369
|
+
enumerable: !0,
|
|
3370
|
+
configurable: !0,
|
|
3371
|
+
writable: !0
|
|
3372
|
+
}) : e[r] = t, e;
|
|
3410
3373
|
}
|
|
3411
3374
|
|
|
3412
|
-
function _arrayWithHoles(
|
|
3413
|
-
if (Array.isArray(
|
|
3375
|
+
function _arrayWithHoles(r) {
|
|
3376
|
+
if (Array.isArray(r)) return r;
|
|
3414
3377
|
}
|
|
3415
3378
|
|
|
3416
3379
|
function _iterableToArrayLimit(r, l) {
|
|
@@ -3441,381 +3404,379 @@
|
|
|
3441
3404
|
}
|
|
3442
3405
|
}
|
|
3443
3406
|
|
|
3444
|
-
function _arrayLikeToArray$1(
|
|
3445
|
-
|
|
3446
|
-
for (var
|
|
3447
|
-
return
|
|
3407
|
+
function _arrayLikeToArray$1(r, a) {
|
|
3408
|
+
(null == a || a > r.length) && (a = r.length);
|
|
3409
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
3410
|
+
return n;
|
|
3448
3411
|
}
|
|
3449
3412
|
|
|
3450
|
-
function _unsupportedIterableToArray$1(
|
|
3451
|
-
if (
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen);
|
|
3413
|
+
function _unsupportedIterableToArray$1(r, a) {
|
|
3414
|
+
if (r) {
|
|
3415
|
+
if ("string" == typeof r) return _arrayLikeToArray$1(r, a);
|
|
3416
|
+
var t = {}.toString.call(r).slice(8, -1);
|
|
3417
|
+
return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray$1(r, a) : void 0;
|
|
3418
|
+
}
|
|
3457
3419
|
}
|
|
3458
3420
|
|
|
3459
3421
|
function _nonIterableRest() {
|
|
3460
3422
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
3461
3423
|
}
|
|
3462
3424
|
|
|
3463
|
-
function _slicedToArray(
|
|
3464
|
-
return _arrayWithHoles(
|
|
3425
|
+
function _slicedToArray(r, e) {
|
|
3426
|
+
return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray$1(r, e) || _nonIterableRest();
|
|
3465
3427
|
}
|
|
3466
3428
|
|
|
3467
|
-
function asyncGeneratorStep(
|
|
3429
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) {
|
|
3468
3430
|
try {
|
|
3469
|
-
var
|
|
3470
|
-
|
|
3471
|
-
} catch (
|
|
3472
|
-
|
|
3473
|
-
return;
|
|
3474
|
-
}
|
|
3475
|
-
if (info.done) {
|
|
3476
|
-
resolve(value);
|
|
3477
|
-
} else {
|
|
3478
|
-
Promise.resolve(value).then(_next, _throw);
|
|
3431
|
+
var i = n[a](c),
|
|
3432
|
+
u = i.value;
|
|
3433
|
+
} catch (n) {
|
|
3434
|
+
return void e(n);
|
|
3479
3435
|
}
|
|
3436
|
+
i.done ? t(u) : Promise.resolve(u).then(r, o);
|
|
3480
3437
|
}
|
|
3481
|
-
function _asyncToGenerator(
|
|
3438
|
+
function _asyncToGenerator(n) {
|
|
3482
3439
|
return function () {
|
|
3483
|
-
var
|
|
3484
|
-
|
|
3485
|
-
return new Promise(function (
|
|
3486
|
-
var
|
|
3487
|
-
function _next(
|
|
3488
|
-
asyncGeneratorStep(
|
|
3440
|
+
var t = this,
|
|
3441
|
+
e = arguments;
|
|
3442
|
+
return new Promise(function (r, o) {
|
|
3443
|
+
var a = n.apply(t, e);
|
|
3444
|
+
function _next(n) {
|
|
3445
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
|
|
3489
3446
|
}
|
|
3490
|
-
function _throw(
|
|
3491
|
-
asyncGeneratorStep(
|
|
3447
|
+
function _throw(n) {
|
|
3448
|
+
asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
|
|
3492
3449
|
}
|
|
3493
|
-
_next(
|
|
3450
|
+
_next(void 0);
|
|
3494
3451
|
});
|
|
3495
3452
|
};
|
|
3496
3453
|
}
|
|
3497
3454
|
|
|
3498
3455
|
var regeneratorRuntime$1 = {exports: {}};
|
|
3499
3456
|
|
|
3500
|
-
var
|
|
3457
|
+
var OverloadYield = {exports: {}};
|
|
3501
3458
|
|
|
3502
3459
|
(function (module) {
|
|
3503
|
-
function
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
3507
|
-
return typeof o;
|
|
3508
|
-
} : function (o) {
|
|
3509
|
-
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
3510
|
-
}, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o);
|
|
3460
|
+
function _OverloadYield(e, d) {
|
|
3461
|
+
this.v = e, this.k = d;
|
|
3511
3462
|
}
|
|
3512
|
-
module.exports =
|
|
3513
|
-
}(
|
|
3463
|
+
module.exports = _OverloadYield, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3464
|
+
}(OverloadYield));
|
|
3514
3465
|
|
|
3515
|
-
|
|
3516
|
-
var _typeof$1 = _typeof.exports["default"];
|
|
3517
|
-
function _regeneratorRuntime() {
|
|
3466
|
+
var regenerator$1 = {exports: {}};
|
|
3518
3467
|
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
var
|
|
3524
|
-
e = {},
|
|
3525
|
-
r = Object.prototype,
|
|
3526
|
-
n = r.hasOwnProperty,
|
|
3527
|
-
o = Object.defineProperty || function (t, e, r) {
|
|
3528
|
-
t[e] = r.value;
|
|
3529
|
-
},
|
|
3530
|
-
i = "function" == typeof Symbol ? Symbol : {},
|
|
3531
|
-
a = i.iterator || "@@iterator",
|
|
3532
|
-
c = i.asyncIterator || "@@asyncIterator",
|
|
3533
|
-
u = i.toStringTag || "@@toStringTag";
|
|
3534
|
-
function define(t, e, r) {
|
|
3535
|
-
return Object.defineProperty(t, e, {
|
|
3536
|
-
value: r,
|
|
3537
|
-
enumerable: !0,
|
|
3538
|
-
configurable: !0,
|
|
3539
|
-
writable: !0
|
|
3540
|
-
}), t[e];
|
|
3541
|
-
}
|
|
3468
|
+
var regeneratorDefine = {exports: {}};
|
|
3469
|
+
|
|
3470
|
+
(function (module) {
|
|
3471
|
+
function _regeneratorDefine(e, r, n, t) {
|
|
3472
|
+
var i = Object.defineProperty;
|
|
3542
3473
|
try {
|
|
3543
|
-
|
|
3544
|
-
} catch (
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
try {
|
|
3559
|
-
return {
|
|
3560
|
-
type: "normal",
|
|
3561
|
-
arg: t.call(e, r)
|
|
3562
|
-
};
|
|
3563
|
-
} catch (t) {
|
|
3564
|
-
return {
|
|
3565
|
-
type: "throw",
|
|
3566
|
-
arg: t
|
|
3474
|
+
i({}, "", {});
|
|
3475
|
+
} catch (e) {
|
|
3476
|
+
i = 0;
|
|
3477
|
+
}
|
|
3478
|
+
module.exports = _regeneratorDefine = function regeneratorDefine(e, r, n, t) {
|
|
3479
|
+
if (r) i ? i(e, r, {
|
|
3480
|
+
value: n,
|
|
3481
|
+
enumerable: !t,
|
|
3482
|
+
configurable: !t,
|
|
3483
|
+
writable: !t
|
|
3484
|
+
}) : e[r] = n;else {
|
|
3485
|
+
var o = function o(r, n) {
|
|
3486
|
+
_regeneratorDefine(e, r, function (e) {
|
|
3487
|
+
return this._invoke(r, n, e);
|
|
3488
|
+
});
|
|
3567
3489
|
};
|
|
3490
|
+
o("next", 0), o("throw", 1), o("return", 2);
|
|
3568
3491
|
}
|
|
3492
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports, _regeneratorDefine(e, r, n, t);
|
|
3493
|
+
}
|
|
3494
|
+
module.exports = _regeneratorDefine, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3495
|
+
}(regeneratorDefine));
|
|
3496
|
+
|
|
3497
|
+
(function (module) {
|
|
3498
|
+
var regeneratorDefine$1 = regeneratorDefine.exports;
|
|
3499
|
+
function _regenerator() {
|
|
3500
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
3501
|
+
var e,
|
|
3502
|
+
t,
|
|
3503
|
+
r = "function" == typeof Symbol ? Symbol : {},
|
|
3504
|
+
n = r.iterator || "@@iterator",
|
|
3505
|
+
o = r.toStringTag || "@@toStringTag";
|
|
3506
|
+
function i(r, n, o, i) {
|
|
3507
|
+
var c = n && n.prototype instanceof Generator ? n : Generator,
|
|
3508
|
+
u = Object.create(c.prototype);
|
|
3509
|
+
return regeneratorDefine$1(u, "_invoke", function (r, n, o) {
|
|
3510
|
+
var i,
|
|
3511
|
+
c,
|
|
3512
|
+
u,
|
|
3513
|
+
f = 0,
|
|
3514
|
+
p = o || [],
|
|
3515
|
+
y = !1,
|
|
3516
|
+
G = {
|
|
3517
|
+
p: 0,
|
|
3518
|
+
n: 0,
|
|
3519
|
+
v: e,
|
|
3520
|
+
a: d,
|
|
3521
|
+
f: d.bind(e, 4),
|
|
3522
|
+
d: function d(t, r) {
|
|
3523
|
+
return i = t, c = 0, u = e, G.n = r, a;
|
|
3524
|
+
}
|
|
3525
|
+
};
|
|
3526
|
+
function d(r, n) {
|
|
3527
|
+
for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) {
|
|
3528
|
+
var o,
|
|
3529
|
+
i = p[t],
|
|
3530
|
+
d = G.p,
|
|
3531
|
+
l = i[2];
|
|
3532
|
+
r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0));
|
|
3533
|
+
}
|
|
3534
|
+
if (o || r > 1) return a;
|
|
3535
|
+
throw y = !0, n;
|
|
3536
|
+
}
|
|
3537
|
+
return function (o, p, l) {
|
|
3538
|
+
if (f > 1) throw TypeError("Generator is already running");
|
|
3539
|
+
for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) {
|
|
3540
|
+
i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u);
|
|
3541
|
+
try {
|
|
3542
|
+
if (f = 2, i) {
|
|
3543
|
+
if (c || (o = "next"), t = i[o]) {
|
|
3544
|
+
if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object");
|
|
3545
|
+
if (!t.done) return t;
|
|
3546
|
+
u = t.value, c < 2 && (c = 0);
|
|
3547
|
+
} else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1);
|
|
3548
|
+
i = e;
|
|
3549
|
+
} else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break;
|
|
3550
|
+
} catch (t) {
|
|
3551
|
+
i = e, c = 1, u = t;
|
|
3552
|
+
} finally {
|
|
3553
|
+
f = 1;
|
|
3554
|
+
}
|
|
3555
|
+
}
|
|
3556
|
+
return {
|
|
3557
|
+
value: t,
|
|
3558
|
+
done: y
|
|
3559
|
+
};
|
|
3560
|
+
};
|
|
3561
|
+
}(r, o, i), !0), u;
|
|
3569
3562
|
}
|
|
3570
|
-
|
|
3571
|
-
var h = "suspendedStart",
|
|
3572
|
-
l = "suspendedYield",
|
|
3573
|
-
f = "executing",
|
|
3574
|
-
s = "completed",
|
|
3575
|
-
y = {};
|
|
3563
|
+
var a = {};
|
|
3576
3564
|
function Generator() {}
|
|
3577
3565
|
function GeneratorFunction() {}
|
|
3578
3566
|
function GeneratorFunctionPrototype() {}
|
|
3579
|
-
|
|
3580
|
-
|
|
3567
|
+
t = Object.getPrototypeOf;
|
|
3568
|
+
var c = [][n] ? t(t([][n]())) : (regeneratorDefine$1(t = {}, n, function () {
|
|
3569
|
+
return this;
|
|
3570
|
+
}), t),
|
|
3571
|
+
u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c);
|
|
3572
|
+
function f(e) {
|
|
3573
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, regeneratorDefine$1(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e;
|
|
3574
|
+
}
|
|
3575
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, regeneratorDefine$1(u, "constructor", GeneratorFunctionPrototype), regeneratorDefine$1(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", regeneratorDefine$1(GeneratorFunctionPrototype, o, "GeneratorFunction"), regeneratorDefine$1(u), regeneratorDefine$1(u, o, "Generator"), regeneratorDefine$1(u, n, function () {
|
|
3581
3576
|
return this;
|
|
3582
|
-
})
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3577
|
+
}), regeneratorDefine$1(u, "toString", function () {
|
|
3578
|
+
return "[object Generator]";
|
|
3579
|
+
}), (module.exports = _regenerator = function _regenerator() {
|
|
3580
|
+
return {
|
|
3581
|
+
w: i,
|
|
3582
|
+
m: f
|
|
3583
|
+
};
|
|
3584
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports)();
|
|
3585
|
+
}
|
|
3586
|
+
module.exports = _regenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3587
|
+
}(regenerator$1));
|
|
3588
|
+
|
|
3589
|
+
var regeneratorAsync = {exports: {}};
|
|
3590
|
+
|
|
3591
|
+
var regeneratorAsyncGen = {exports: {}};
|
|
3592
|
+
|
|
3593
|
+
var regeneratorAsyncIterator = {exports: {}};
|
|
3594
|
+
|
|
3595
|
+
(function (module) {
|
|
3596
|
+
var OverloadYield$1 = OverloadYield.exports;
|
|
3597
|
+
var regeneratorDefine$1 = regeneratorDefine.exports;
|
|
3598
|
+
function AsyncIterator(t, e) {
|
|
3599
|
+
function n(r, o, i, f) {
|
|
3600
|
+
try {
|
|
3601
|
+
var c = t[r](o),
|
|
3602
|
+
u = c.value;
|
|
3603
|
+
return u instanceof OverloadYield$1 ? e.resolve(u.v).then(function (t) {
|
|
3604
|
+
n("next", t, i, f);
|
|
3605
|
+
}, function (t) {
|
|
3606
|
+
n("throw", t, i, f);
|
|
3607
|
+
}) : e.resolve(u).then(function (t) {
|
|
3608
|
+
c.value = t, i(c);
|
|
3609
|
+
}, function (t) {
|
|
3610
|
+
return n("throw", t, i, f);
|
|
3591
3611
|
});
|
|
3592
|
-
})
|
|
3593
|
-
|
|
3594
|
-
function AsyncIterator(t, e) {
|
|
3595
|
-
function invoke(r, o, i, a) {
|
|
3596
|
-
var c = tryCatch(t[r], t, o);
|
|
3597
|
-
if ("throw" !== c.type) {
|
|
3598
|
-
var u = c.arg,
|
|
3599
|
-
h = u.value;
|
|
3600
|
-
return h && "object" == _typeof$1(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
|
3601
|
-
invoke("next", t, i, a);
|
|
3602
|
-
}, function (t) {
|
|
3603
|
-
invoke("throw", t, i, a);
|
|
3604
|
-
}) : e.resolve(h).then(function (t) {
|
|
3605
|
-
u.value = t, i(u);
|
|
3606
|
-
}, function (t) {
|
|
3607
|
-
return invoke("throw", t, i, a);
|
|
3608
|
-
});
|
|
3609
|
-
}
|
|
3610
|
-
a(c.arg);
|
|
3612
|
+
} catch (t) {
|
|
3613
|
+
f(t);
|
|
3611
3614
|
}
|
|
3612
|
-
var r;
|
|
3613
|
-
o(this, "_invoke", {
|
|
3614
|
-
value: function value(t, n) {
|
|
3615
|
-
function callInvokeWithMethodAndArg() {
|
|
3616
|
-
return new e(function (e, r) {
|
|
3617
|
-
invoke(t, n, e, r);
|
|
3618
|
-
});
|
|
3619
|
-
}
|
|
3620
|
-
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
3621
|
-
}
|
|
3622
|
-
});
|
|
3623
3615
|
}
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
return
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3616
|
+
var r;
|
|
3617
|
+
this.next || (regeneratorDefine$1(AsyncIterator.prototype), regeneratorDefine$1(AsyncIterator.prototype, "function" == typeof Symbol && Symbol.asyncIterator || "@asyncIterator", function () {
|
|
3618
|
+
return this;
|
|
3619
|
+
})), regeneratorDefine$1(this, "_invoke", function (t, o, i) {
|
|
3620
|
+
function f() {
|
|
3621
|
+
return new e(function (e, r) {
|
|
3622
|
+
n(t, i, e, r);
|
|
3623
|
+
});
|
|
3624
|
+
}
|
|
3625
|
+
return r = r ? r.then(f, f) : f();
|
|
3626
|
+
}, !0);
|
|
3627
|
+
}
|
|
3628
|
+
module.exports = AsyncIterator, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3629
|
+
}(regeneratorAsyncIterator));
|
|
3630
|
+
|
|
3631
|
+
(function (module) {
|
|
3632
|
+
var regenerator = regenerator$1.exports;
|
|
3633
|
+
var regeneratorAsyncIterator$1 = regeneratorAsyncIterator.exports;
|
|
3634
|
+
function _regeneratorAsyncGen(r, e, t, o, n) {
|
|
3635
|
+
return new regeneratorAsyncIterator$1(regenerator().w(r, e, t, o), n || Promise);
|
|
3636
|
+
}
|
|
3637
|
+
module.exports = _regeneratorAsyncGen, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3638
|
+
}(regeneratorAsyncGen));
|
|
3639
|
+
|
|
3640
|
+
(function (module) {
|
|
3641
|
+
var regeneratorAsyncGen$1 = regeneratorAsyncGen.exports;
|
|
3642
|
+
function _regeneratorAsync(n, e, r, t, o) {
|
|
3643
|
+
var a = regeneratorAsyncGen$1(n, e, r, t, o);
|
|
3644
|
+
return a.next().then(function (n) {
|
|
3645
|
+
return n.done ? n.value : a.next();
|
|
3646
|
+
});
|
|
3647
|
+
}
|
|
3648
|
+
module.exports = _regeneratorAsync, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3649
|
+
}(regeneratorAsync));
|
|
3650
|
+
|
|
3651
|
+
var regeneratorKeys = {exports: {}};
|
|
3652
|
+
|
|
3653
|
+
(function (module) {
|
|
3654
|
+
function _regeneratorKeys(e) {
|
|
3655
|
+
var n = Object(e),
|
|
3656
|
+
r = [];
|
|
3657
|
+
for (var t in n) r.unshift(t);
|
|
3658
|
+
return function e() {
|
|
3659
|
+
for (; r.length;) if ((t = r.pop()) in n) return e.value = t, e.done = !1, e;
|
|
3660
|
+
return e.done = !0, e;
|
|
3661
|
+
};
|
|
3662
|
+
}
|
|
3663
|
+
module.exports = _regeneratorKeys, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3664
|
+
}(regeneratorKeys));
|
|
3665
|
+
|
|
3666
|
+
var regeneratorValues = {exports: {}};
|
|
3667
|
+
|
|
3668
|
+
var _typeof = {exports: {}};
|
|
3669
|
+
|
|
3670
|
+
(function (module) {
|
|
3671
|
+
function _typeof(o) {
|
|
3672
|
+
"@babel/helpers - typeof";
|
|
3673
|
+
|
|
3674
|
+
return module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
3675
|
+
return typeof o;
|
|
3676
|
+
} : function (o) {
|
|
3677
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
3678
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o);
|
|
3679
|
+
}
|
|
3680
|
+
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3681
|
+
}(_typeof));
|
|
3682
|
+
|
|
3683
|
+
(function (module) {
|
|
3684
|
+
var _typeof$1 = _typeof.exports["default"];
|
|
3685
|
+
function _regeneratorValues(e) {
|
|
3686
|
+
if (null != e) {
|
|
3687
|
+
var t = e["function" == typeof Symbol && Symbol.iterator || "@@iterator"],
|
|
3688
|
+
r = 0;
|
|
3689
|
+
if (t) return t.call(e);
|
|
3690
|
+
if ("function" == typeof e.next) return e;
|
|
3691
|
+
if (!isNaN(e.length)) return {
|
|
3692
|
+
next: function next() {
|
|
3693
|
+
return e && r >= e.length && (e = void 0), {
|
|
3694
|
+
value: e && e[r++],
|
|
3695
|
+
done: !e
|
|
3633
3696
|
};
|
|
3634
3697
|
}
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3698
|
+
};
|
|
3699
|
+
}
|
|
3700
|
+
throw new TypeError(_typeof$1(e) + " is not iterable");
|
|
3701
|
+
}
|
|
3702
|
+
module.exports = _regeneratorValues, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3703
|
+
}(regeneratorValues));
|
|
3704
|
+
|
|
3705
|
+
(function (module) {
|
|
3706
|
+
var OverloadYield$1 = OverloadYield.exports;
|
|
3707
|
+
var regenerator = regenerator$1.exports;
|
|
3708
|
+
var regeneratorAsync$1 = regeneratorAsync.exports;
|
|
3709
|
+
var regeneratorAsyncGen$1 = regeneratorAsyncGen.exports;
|
|
3710
|
+
var regeneratorAsyncIterator$1 = regeneratorAsyncIterator.exports;
|
|
3711
|
+
var regeneratorKeys$1 = regeneratorKeys.exports;
|
|
3712
|
+
var regeneratorValues$1 = regeneratorValues.exports;
|
|
3713
|
+
function _regeneratorRuntime() {
|
|
3714
|
+
|
|
3715
|
+
var r = regenerator(),
|
|
3716
|
+
e = r.m(_regeneratorRuntime),
|
|
3717
|
+
t = (Object.getPrototypeOf ? Object.getPrototypeOf(e) : e.__proto__).constructor;
|
|
3718
|
+
function n(r) {
|
|
3719
|
+
var e = "function" == typeof r && r.constructor;
|
|
3720
|
+
return !!e && (e === t || "GeneratorFunction" === (e.displayName || e.name));
|
|
3721
|
+
}
|
|
3722
|
+
var o = {
|
|
3723
|
+
"throw": 1,
|
|
3724
|
+
"return": 2,
|
|
3725
|
+
"break": 3,
|
|
3726
|
+
"continue": 3
|
|
3727
|
+
};
|
|
3728
|
+
function a(r) {
|
|
3729
|
+
var e, t;
|
|
3730
|
+
return function (n) {
|
|
3731
|
+
e || (e = {
|
|
3732
|
+
stop: function stop() {
|
|
3733
|
+
return t(n.a, 2);
|
|
3734
|
+
},
|
|
3735
|
+
"catch": function _catch() {
|
|
3736
|
+
return n.v;
|
|
3737
|
+
},
|
|
3738
|
+
abrupt: function abrupt(r, e) {
|
|
3739
|
+
return t(n.a, o[r], e);
|
|
3740
|
+
},
|
|
3741
|
+
delegateYield: function delegateYield(r, o, a) {
|
|
3742
|
+
return e.resultName = o, t(n.d, regeneratorValues$1(r), a);
|
|
3743
|
+
},
|
|
3744
|
+
finish: function finish(r) {
|
|
3745
|
+
return t(n.f, r);
|
|
3643
3746
|
}
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
if ("normal" === p.type) {
|
|
3651
|
-
if (o = n.done ? s : l, p.arg === y) continue;
|
|
3652
|
-
return {
|
|
3653
|
-
value: p.arg,
|
|
3654
|
-
done: n.done
|
|
3655
|
-
};
|
|
3747
|
+
}, t = function t(r, _t, o) {
|
|
3748
|
+
n.p = e.prev, n.n = e.next;
|
|
3749
|
+
try {
|
|
3750
|
+
return r(_t, o);
|
|
3751
|
+
} finally {
|
|
3752
|
+
e.next = n.n;
|
|
3656
3753
|
}
|
|
3657
|
-
|
|
3754
|
+
}), e.resultName && (e[e.resultName] = n.v, e.resultName = void 0), e.sent = n.v, e.next = n.n;
|
|
3755
|
+
try {
|
|
3756
|
+
return r.call(this, e);
|
|
3757
|
+
} finally {
|
|
3758
|
+
n.p = e.prev, n.n = e.next;
|
|
3658
3759
|
}
|
|
3659
3760
|
};
|
|
3660
3761
|
}
|
|
3661
|
-
function
|
|
3662
|
-
var n = r.method,
|
|
3663
|
-
o = e.iterator[n];
|
|
3664
|
-
if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
|
3665
|
-
var i = tryCatch(o, e.iterator, r.arg);
|
|
3666
|
-
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
|
3667
|
-
var a = i.arg;
|
|
3668
|
-
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
|
3669
|
-
}
|
|
3670
|
-
function pushTryEntry(t) {
|
|
3671
|
-
var e = {
|
|
3672
|
-
tryLoc: t[0]
|
|
3673
|
-
};
|
|
3674
|
-
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
|
3675
|
-
}
|
|
3676
|
-
function resetTryEntry(t) {
|
|
3677
|
-
var e = t.completion || {};
|
|
3678
|
-
e.type = "normal", delete e.arg, t.completion = e;
|
|
3679
|
-
}
|
|
3680
|
-
function Context(t) {
|
|
3681
|
-
this.tryEntries = [{
|
|
3682
|
-
tryLoc: "root"
|
|
3683
|
-
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
|
3684
|
-
}
|
|
3685
|
-
function values(e) {
|
|
3686
|
-
if (e || "" === e) {
|
|
3687
|
-
var r = e[a];
|
|
3688
|
-
if (r) return r.call(e);
|
|
3689
|
-
if ("function" == typeof e.next) return e;
|
|
3690
|
-
if (!isNaN(e.length)) {
|
|
3691
|
-
var o = -1,
|
|
3692
|
-
i = function next() {
|
|
3693
|
-
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
|
3694
|
-
return next.value = t, next.done = !0, next;
|
|
3695
|
-
};
|
|
3696
|
-
return i.next = i;
|
|
3697
|
-
}
|
|
3698
|
-
}
|
|
3699
|
-
throw new TypeError(_typeof$1(e) + " is not iterable");
|
|
3700
|
-
}
|
|
3701
|
-
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
|
3702
|
-
value: GeneratorFunctionPrototype,
|
|
3703
|
-
configurable: !0
|
|
3704
|
-
}), o(GeneratorFunctionPrototype, "constructor", {
|
|
3705
|
-
value: GeneratorFunction,
|
|
3706
|
-
configurable: !0
|
|
3707
|
-
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
|
3708
|
-
var e = "function" == typeof t && t.constructor;
|
|
3709
|
-
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
|
3710
|
-
}, e.mark = function (t) {
|
|
3711
|
-
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
|
3712
|
-
}, e.awrap = function (t) {
|
|
3762
|
+
return (module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
|
|
3713
3763
|
return {
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
}), e.keys = function (t) {
|
|
3729
|
-
var e = Object(t),
|
|
3730
|
-
r = [];
|
|
3731
|
-
for (var n in e) r.push(n);
|
|
3732
|
-
return r.reverse(), function next() {
|
|
3733
|
-
for (; r.length;) {
|
|
3734
|
-
var t = r.pop();
|
|
3735
|
-
if (t in e) return next.value = t, next.done = !1, next;
|
|
3736
|
-
}
|
|
3737
|
-
return next.done = !0, next;
|
|
3764
|
+
wrap: function wrap(e, t, n, o) {
|
|
3765
|
+
return r.w(a(e), t, n, o && o.reverse());
|
|
3766
|
+
},
|
|
3767
|
+
isGeneratorFunction: n,
|
|
3768
|
+
mark: r.m,
|
|
3769
|
+
awrap: function awrap(r, e) {
|
|
3770
|
+
return new OverloadYield$1(r, e);
|
|
3771
|
+
},
|
|
3772
|
+
AsyncIterator: regeneratorAsyncIterator$1,
|
|
3773
|
+
async: function async(r, e, t, o, u) {
|
|
3774
|
+
return (n(e) ? regeneratorAsyncGen$1 : regeneratorAsync$1)(a(r), e, t, o, u);
|
|
3775
|
+
},
|
|
3776
|
+
keys: regeneratorKeys$1,
|
|
3777
|
+
values: regeneratorValues$1
|
|
3738
3778
|
};
|
|
3739
|
-
},
|
|
3740
|
-
constructor: Context,
|
|
3741
|
-
reset: function reset(e) {
|
|
3742
|
-
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
|
3743
|
-
},
|
|
3744
|
-
stop: function stop() {
|
|
3745
|
-
this.done = !0;
|
|
3746
|
-
var t = this.tryEntries[0].completion;
|
|
3747
|
-
if ("throw" === t.type) throw t.arg;
|
|
3748
|
-
return this.rval;
|
|
3749
|
-
},
|
|
3750
|
-
dispatchException: function dispatchException(e) {
|
|
3751
|
-
if (this.done) throw e;
|
|
3752
|
-
var r = this;
|
|
3753
|
-
function handle(n, o) {
|
|
3754
|
-
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
|
3755
|
-
}
|
|
3756
|
-
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
|
3757
|
-
var i = this.tryEntries[o],
|
|
3758
|
-
a = i.completion;
|
|
3759
|
-
if ("root" === i.tryLoc) return handle("end");
|
|
3760
|
-
if (i.tryLoc <= this.prev) {
|
|
3761
|
-
var c = n.call(i, "catchLoc"),
|
|
3762
|
-
u = n.call(i, "finallyLoc");
|
|
3763
|
-
if (c && u) {
|
|
3764
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
3765
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
3766
|
-
} else if (c) {
|
|
3767
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
3768
|
-
} else {
|
|
3769
|
-
if (!u) throw new Error("try statement without catch or finally");
|
|
3770
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
3771
|
-
}
|
|
3772
|
-
}
|
|
3773
|
-
}
|
|
3774
|
-
},
|
|
3775
|
-
abrupt: function abrupt(t, e) {
|
|
3776
|
-
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
|
3777
|
-
var o = this.tryEntries[r];
|
|
3778
|
-
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
|
3779
|
-
var i = o;
|
|
3780
|
-
break;
|
|
3781
|
-
}
|
|
3782
|
-
}
|
|
3783
|
-
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
|
3784
|
-
var a = i ? i.completion : {};
|
|
3785
|
-
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
|
3786
|
-
},
|
|
3787
|
-
complete: function complete(t, e) {
|
|
3788
|
-
if ("throw" === t.type) throw t.arg;
|
|
3789
|
-
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
|
3790
|
-
},
|
|
3791
|
-
finish: function finish(t) {
|
|
3792
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
3793
|
-
var r = this.tryEntries[e];
|
|
3794
|
-
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
|
3795
|
-
}
|
|
3796
|
-
},
|
|
3797
|
-
"catch": function _catch(t) {
|
|
3798
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
3799
|
-
var r = this.tryEntries[e];
|
|
3800
|
-
if (r.tryLoc === t) {
|
|
3801
|
-
var n = r.completion;
|
|
3802
|
-
if ("throw" === n.type) {
|
|
3803
|
-
var o = n.arg;
|
|
3804
|
-
resetTryEntry(r);
|
|
3805
|
-
}
|
|
3806
|
-
return o;
|
|
3807
|
-
}
|
|
3808
|
-
}
|
|
3809
|
-
throw new Error("illegal catch attempt");
|
|
3810
|
-
},
|
|
3811
|
-
delegateYield: function delegateYield(e, r, n) {
|
|
3812
|
-
return this.delegate = {
|
|
3813
|
-
iterator: values(e),
|
|
3814
|
-
resultName: r,
|
|
3815
|
-
nextLoc: n
|
|
3816
|
-
}, "next" === this.method && (this.arg = t), y;
|
|
3817
|
-
}
|
|
3818
|
-
}, e;
|
|
3779
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports)();
|
|
3819
3780
|
}
|
|
3820
3781
|
module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
3821
3782
|
}(regeneratorRuntime$1));
|
|
@@ -7895,79 +7856,65 @@
|
|
|
7895
7856
|
/// <reference types="node" />
|
|
7896
7857
|
var CLIENT_VERSION = "4.23.4";
|
|
7897
7858
|
|
|
7898
|
-
function _assertThisInitialized(
|
|
7899
|
-
if (
|
|
7900
|
-
|
|
7901
|
-
}
|
|
7902
|
-
return self;
|
|
7859
|
+
function _assertThisInitialized(e) {
|
|
7860
|
+
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
7861
|
+
return e;
|
|
7903
7862
|
}
|
|
7904
7863
|
|
|
7905
|
-
function _possibleConstructorReturn(
|
|
7906
|
-
if (
|
|
7907
|
-
|
|
7908
|
-
|
|
7909
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
7910
|
-
}
|
|
7911
|
-
return _assertThisInitialized(self);
|
|
7864
|
+
function _possibleConstructorReturn(t, e) {
|
|
7865
|
+
if (e && ("object" == _typeof$1(e) || "function" == typeof e)) return e;
|
|
7866
|
+
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
|
7867
|
+
return _assertThisInitialized(t);
|
|
7912
7868
|
}
|
|
7913
7869
|
|
|
7914
|
-
function _getPrototypeOf(
|
|
7915
|
-
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function
|
|
7916
|
-
return
|
|
7917
|
-
};
|
|
7918
|
-
return _getPrototypeOf(o);
|
|
7870
|
+
function _getPrototypeOf(t) {
|
|
7871
|
+
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
|
|
7872
|
+
return t.__proto__ || Object.getPrototypeOf(t);
|
|
7873
|
+
}, _getPrototypeOf(t);
|
|
7919
7874
|
}
|
|
7920
7875
|
|
|
7921
|
-
function _inherits(
|
|
7922
|
-
if (typeof
|
|
7923
|
-
|
|
7924
|
-
}
|
|
7925
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
7876
|
+
function _inherits(t, e) {
|
|
7877
|
+
if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
|
|
7878
|
+
t.prototype = Object.create(e && e.prototype, {
|
|
7926
7879
|
constructor: {
|
|
7927
|
-
value:
|
|
7928
|
-
writable:
|
|
7929
|
-
configurable:
|
|
7880
|
+
value: t,
|
|
7881
|
+
writable: !0,
|
|
7882
|
+
configurable: !0
|
|
7930
7883
|
}
|
|
7931
|
-
})
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
});
|
|
7935
|
-
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
7884
|
+
}), Object.defineProperty(t, "prototype", {
|
|
7885
|
+
writable: !1
|
|
7886
|
+
}), e && _setPrototypeOf(t, e);
|
|
7936
7887
|
}
|
|
7937
7888
|
|
|
7938
|
-
function _isNativeFunction(
|
|
7889
|
+
function _isNativeFunction(t) {
|
|
7939
7890
|
try {
|
|
7940
|
-
return Function.toString.call(
|
|
7941
|
-
} catch (
|
|
7942
|
-
return
|
|
7891
|
+
return -1 !== Function.toString.call(t).indexOf("[native code]");
|
|
7892
|
+
} catch (n) {
|
|
7893
|
+
return "function" == typeof t;
|
|
7943
7894
|
}
|
|
7944
7895
|
}
|
|
7945
7896
|
|
|
7946
|
-
function _wrapNativeSuper(
|
|
7947
|
-
var
|
|
7948
|
-
_wrapNativeSuper = function _wrapNativeSuper(
|
|
7949
|
-
if (
|
|
7950
|
-
if (typeof
|
|
7951
|
-
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
if (_cache.has(Class)) return _cache.get(Class);
|
|
7955
|
-
_cache.set(Class, Wrapper);
|
|
7897
|
+
function _wrapNativeSuper(t) {
|
|
7898
|
+
var r = "function" == typeof Map ? new Map() : void 0;
|
|
7899
|
+
return _wrapNativeSuper = function _wrapNativeSuper(t) {
|
|
7900
|
+
if (null === t || !_isNativeFunction(t)) return t;
|
|
7901
|
+
if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function");
|
|
7902
|
+
if (void 0 !== r) {
|
|
7903
|
+
if (r.has(t)) return r.get(t);
|
|
7904
|
+
r.set(t, Wrapper);
|
|
7956
7905
|
}
|
|
7957
7906
|
function Wrapper() {
|
|
7958
|
-
return _construct(
|
|
7907
|
+
return _construct(t, arguments, _getPrototypeOf(this).constructor);
|
|
7959
7908
|
}
|
|
7960
|
-
Wrapper.prototype = Object.create(
|
|
7909
|
+
return Wrapper.prototype = Object.create(t.prototype, {
|
|
7961
7910
|
constructor: {
|
|
7962
7911
|
value: Wrapper,
|
|
7963
|
-
enumerable:
|
|
7964
|
-
writable:
|
|
7965
|
-
configurable:
|
|
7912
|
+
enumerable: !1,
|
|
7913
|
+
writable: !0,
|
|
7914
|
+
configurable: !0
|
|
7966
7915
|
}
|
|
7967
|
-
});
|
|
7968
|
-
|
|
7969
|
-
};
|
|
7970
|
-
return _wrapNativeSuper(Class);
|
|
7916
|
+
}), _setPrototypeOf(Wrapper, t);
|
|
7917
|
+
}, _wrapNativeSuper(t);
|
|
7971
7918
|
}
|
|
7972
7919
|
|
|
7973
7920
|
function _callSuper(t, o, e) {
|
|
@@ -8240,20 +8187,16 @@
|
|
|
8240
8187
|
}]);
|
|
8241
8188
|
}();
|
|
8242
8189
|
|
|
8243
|
-
function _objectWithoutProperties(
|
|
8244
|
-
if (
|
|
8245
|
-
var
|
|
8246
|
-
|
|
8190
|
+
function _objectWithoutProperties(e, t) {
|
|
8191
|
+
if (null == e) return {};
|
|
8192
|
+
var o,
|
|
8193
|
+
r,
|
|
8194
|
+
i = _objectWithoutPropertiesLoose(e, t);
|
|
8247
8195
|
if (Object.getOwnPropertySymbols) {
|
|
8248
|
-
var
|
|
8249
|
-
for (
|
|
8250
|
-
key = sourceSymbolKeys[i];
|
|
8251
|
-
if (excluded.indexOf(key) >= 0) continue;
|
|
8252
|
-
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
8253
|
-
target[key] = source[key];
|
|
8254
|
-
}
|
|
8196
|
+
var n = Object.getOwnPropertySymbols(e);
|
|
8197
|
+
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
|
|
8255
8198
|
}
|
|
8256
|
-
return
|
|
8199
|
+
return i;
|
|
8257
8200
|
}
|
|
8258
8201
|
|
|
8259
8202
|
var FEDRAMP_MODERATE = 'fedramp-moderate';
|
|
@@ -13919,7 +13862,7 @@
|
|
|
13919
13862
|
* Add version
|
|
13920
13863
|
*/
|
|
13921
13864
|
if (!window._AP.version) {
|
|
13922
|
-
window._AP.version = '5.3.
|
|
13865
|
+
window._AP.version = '5.3.198';
|
|
13923
13866
|
}
|
|
13924
13867
|
simpleXDM.defineModule('messages', messages);
|
|
13925
13868
|
simpleXDM.defineModule('flag', flag);
|