@stellar/stellar-sdk 11.1.0 → 11.2.0
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/CHANGELOG.md +11 -0
- package/README.md +154 -123
- package/dist/stellar-sdk.js +110 -123
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/errors.js +9 -14
- package/lib/horizon/account_call_builder.js +5 -6
- package/lib/horizon/assets_call_builder.js +5 -6
- package/lib/horizon/claimable_balances_call_builder.js +5 -6
- package/lib/horizon/effect_call_builder.js +5 -6
- package/lib/horizon/friendbot_builder.js +5 -6
- package/lib/horizon/ledger_call_builder.js +5 -6
- package/lib/horizon/liquidity_pool_call_builder.js +5 -6
- package/lib/horizon/offer_call_builder.js +5 -6
- package/lib/horizon/operation_call_builder.js +5 -6
- package/lib/horizon/orderbook_call_builder.js +5 -6
- package/lib/horizon/path_call_builder.js +5 -6
- package/lib/horizon/payment_call_builder.js +5 -6
- package/lib/horizon/strict_receive_path_call_builder.js +5 -6
- package/lib/horizon/strict_send_path_call_builder.js +5 -6
- package/lib/horizon/trade_aggregation_call_builder.js +5 -6
- package/lib/horizon/trades_call_builder.js +5 -6
- package/lib/horizon/transaction_call_builder.js +5 -6
- package/lib/soroban/api.d.ts +8 -1
- package/lib/soroban/parsers.js +10 -4
- package/lib/webauth/errors.js +5 -6
- package/package.json +11 -11
package/dist/stellar-sdk.js
CHANGED
|
@@ -21645,24 +21645,23 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
21645
21645
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
21646
21646
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
21647
21647
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
21648
|
-
function
|
|
21649
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
21648
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
21650
21649
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
21651
21650
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
21651
|
+
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); }
|
|
21652
21652
|
function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
|
|
21653
|
-
function _construct(
|
|
21654
|
-
function _isNativeReflectConstruct() {
|
|
21653
|
+
function _construct(t, e, r) { if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments); var o = [null]; o.push.apply(o, e); var p = new (t.bind.apply(t, o))(); return r && _setPrototypeOf(p, r.prototype), p; }
|
|
21654
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
21655
21655
|
function _isNativeFunction(fn) { try { return Function.toString.call(fn).indexOf("[native code]") !== -1; } catch (e) { return typeof fn === "function"; } }
|
|
21656
21656
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
21657
21657
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
21658
21658
|
var NetworkError = function (_Error) {
|
|
21659
21659
|
_inherits(NetworkError, _Error);
|
|
21660
|
-
var _super = _createSuper(NetworkError);
|
|
21661
21660
|
function NetworkError(message, response) {
|
|
21662
21661
|
var _this;
|
|
21663
21662
|
_classCallCheck(this, NetworkError);
|
|
21664
21663
|
var trueProto = (this instanceof NetworkError ? this.constructor : void 0).prototype;
|
|
21665
|
-
_this =
|
|
21664
|
+
_this = _callSuper(this, NetworkError, [message]);
|
|
21666
21665
|
_this.__proto__ = trueProto;
|
|
21667
21666
|
_this.constructor = NetworkError;
|
|
21668
21667
|
_this.response = response;
|
|
@@ -21678,12 +21677,11 @@ var NetworkError = function (_Error) {
|
|
|
21678
21677
|
}(_wrapNativeSuper(Error));
|
|
21679
21678
|
var NotFoundError = function (_NetworkError) {
|
|
21680
21679
|
_inherits(NotFoundError, _NetworkError);
|
|
21681
|
-
var _super2 = _createSuper(NotFoundError);
|
|
21682
21680
|
function NotFoundError(message, response) {
|
|
21683
21681
|
var _this2;
|
|
21684
21682
|
_classCallCheck(this, NotFoundError);
|
|
21685
21683
|
var trueProto = (this instanceof NotFoundError ? this.constructor : void 0).prototype;
|
|
21686
|
-
_this2 =
|
|
21684
|
+
_this2 = _callSuper(this, NotFoundError, [message, response]);
|
|
21687
21685
|
_this2.__proto__ = trueProto;
|
|
21688
21686
|
_this2.constructor = NotFoundError;
|
|
21689
21687
|
_this2.name = "NotFoundError";
|
|
@@ -21693,12 +21691,11 @@ var NotFoundError = function (_NetworkError) {
|
|
|
21693
21691
|
}(NetworkError);
|
|
21694
21692
|
var BadRequestError = function (_NetworkError2) {
|
|
21695
21693
|
_inherits(BadRequestError, _NetworkError2);
|
|
21696
|
-
var _super3 = _createSuper(BadRequestError);
|
|
21697
21694
|
function BadRequestError(message, response) {
|
|
21698
21695
|
var _this3;
|
|
21699
21696
|
_classCallCheck(this, BadRequestError);
|
|
21700
21697
|
var trueProto = (this instanceof BadRequestError ? this.constructor : void 0).prototype;
|
|
21701
|
-
_this3 =
|
|
21698
|
+
_this3 = _callSuper(this, BadRequestError, [message, response]);
|
|
21702
21699
|
_this3.__proto__ = trueProto;
|
|
21703
21700
|
_this3.constructor = BadRequestError;
|
|
21704
21701
|
_this3.name = "BadRequestError";
|
|
@@ -21708,12 +21705,11 @@ var BadRequestError = function (_NetworkError2) {
|
|
|
21708
21705
|
}(NetworkError);
|
|
21709
21706
|
var BadResponseError = function (_NetworkError3) {
|
|
21710
21707
|
_inherits(BadResponseError, _NetworkError3);
|
|
21711
|
-
var _super4 = _createSuper(BadResponseError);
|
|
21712
21708
|
function BadResponseError(message, response) {
|
|
21713
21709
|
var _this4;
|
|
21714
21710
|
_classCallCheck(this, BadResponseError);
|
|
21715
21711
|
var trueProto = (this instanceof BadResponseError ? this.constructor : void 0).prototype;
|
|
21716
|
-
_this4 =
|
|
21712
|
+
_this4 = _callSuper(this, BadResponseError, [message, response]);
|
|
21717
21713
|
_this4.__proto__ = trueProto;
|
|
21718
21714
|
_this4.constructor = BadResponseError;
|
|
21719
21715
|
_this4.name = "BadResponseError";
|
|
@@ -21723,12 +21719,11 @@ var BadResponseError = function (_NetworkError3) {
|
|
|
21723
21719
|
}(NetworkError);
|
|
21724
21720
|
var AccountRequiresMemoError = function (_Error2) {
|
|
21725
21721
|
_inherits(AccountRequiresMemoError, _Error2);
|
|
21726
|
-
var _super5 = _createSuper(AccountRequiresMemoError);
|
|
21727
21722
|
function AccountRequiresMemoError(message, accountId, operationIndex) {
|
|
21728
21723
|
var _this5;
|
|
21729
21724
|
_classCallCheck(this, AccountRequiresMemoError);
|
|
21730
21725
|
var trueProto = (this instanceof AccountRequiresMemoError ? this.constructor : void 0).prototype;
|
|
21731
|
-
_this5 =
|
|
21726
|
+
_this5 = _callSuper(this, AccountRequiresMemoError, [message]);
|
|
21732
21727
|
_this5.__proto__ = trueProto;
|
|
21733
21728
|
_this5.constructor = AccountRequiresMemoError;
|
|
21734
21729
|
_this5.name = "AccountRequiresMemoError";
|
|
@@ -25536,21 +25531,20 @@ function account_call_builder_defineProperties(target, props) { for (var i = 0;
|
|
|
25536
25531
|
function account_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) account_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) account_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25537
25532
|
function account_call_builder_toPropertyKey(t) { var i = account_call_builder_toPrimitive(t, "string"); return "symbol" == account_call_builder_typeof(i) ? i : String(i); }
|
|
25538
25533
|
function account_call_builder_toPrimitive(t, r) { if ("object" != account_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != account_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25539
|
-
function
|
|
25540
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
25541
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
25534
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25542
25535
|
function _possibleConstructorReturn(self, call) { if (call && (account_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
25543
25536
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25544
|
-
function _isNativeReflectConstruct() {
|
|
25537
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25545
25538
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
25539
|
+
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); }
|
|
25540
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
25546
25541
|
|
|
25547
25542
|
var AccountCallBuilder = function (_CallBuilder) {
|
|
25548
25543
|
_inherits(AccountCallBuilder, _CallBuilder);
|
|
25549
|
-
var _super = _createSuper(AccountCallBuilder);
|
|
25550
25544
|
function AccountCallBuilder(serverUrl) {
|
|
25551
25545
|
var _this;
|
|
25552
25546
|
account_call_builder_classCallCheck(this, AccountCallBuilder);
|
|
25553
|
-
_this =
|
|
25547
|
+
_this = _callSuper(this, AccountCallBuilder, [serverUrl]);
|
|
25554
25548
|
_this.url.segment("accounts");
|
|
25555
25549
|
return _this;
|
|
25556
25550
|
}
|
|
@@ -25595,21 +25589,20 @@ function assets_call_builder_defineProperties(target, props) { for (var i = 0; i
|
|
|
25595
25589
|
function assets_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) assets_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) assets_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25596
25590
|
function assets_call_builder_toPropertyKey(t) { var i = assets_call_builder_toPrimitive(t, "string"); return "symbol" == assets_call_builder_typeof(i) ? i : String(i); }
|
|
25597
25591
|
function assets_call_builder_toPrimitive(t, r) { if ("object" != assets_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != assets_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25598
|
-
function
|
|
25599
|
-
function assets_call_builder_setPrototypeOf(o, p) { assets_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return assets_call_builder_setPrototypeOf(o, p); }
|
|
25600
|
-
function assets_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = assets_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = assets_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = assets_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return assets_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25592
|
+
function assets_call_builder_callSuper(t, o, e) { return o = assets_call_builder_getPrototypeOf(o), assets_call_builder_possibleConstructorReturn(t, assets_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], assets_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25601
25593
|
function assets_call_builder_possibleConstructorReturn(self, call) { if (call && (assets_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return assets_call_builder_assertThisInitialized(self); }
|
|
25602
25594
|
function assets_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25603
|
-
function assets_call_builder_isNativeReflectConstruct() {
|
|
25595
|
+
function assets_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (assets_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25604
25596
|
function assets_call_builder_getPrototypeOf(o) { assets_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return assets_call_builder_getPrototypeOf(o); }
|
|
25597
|
+
function assets_call_builder_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) assets_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25598
|
+
function assets_call_builder_setPrototypeOf(o, p) { assets_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return assets_call_builder_setPrototypeOf(o, p); }
|
|
25605
25599
|
|
|
25606
25600
|
var AssetsCallBuilder = function (_CallBuilder) {
|
|
25607
25601
|
assets_call_builder_inherits(AssetsCallBuilder, _CallBuilder);
|
|
25608
|
-
var _super = assets_call_builder_createSuper(AssetsCallBuilder);
|
|
25609
25602
|
function AssetsCallBuilder(serverUrl) {
|
|
25610
25603
|
var _this;
|
|
25611
25604
|
assets_call_builder_classCallCheck(this, AssetsCallBuilder);
|
|
25612
|
-
_this =
|
|
25605
|
+
_this = assets_call_builder_callSuper(this, AssetsCallBuilder, [serverUrl]);
|
|
25613
25606
|
_this.url.segment("assets");
|
|
25614
25607
|
return _this;
|
|
25615
25608
|
}
|
|
@@ -25635,21 +25628,20 @@ function claimable_balances_call_builder_defineProperties(target, props) { for (
|
|
|
25635
25628
|
function claimable_balances_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) claimable_balances_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) claimable_balances_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25636
25629
|
function claimable_balances_call_builder_toPropertyKey(t) { var i = claimable_balances_call_builder_toPrimitive(t, "string"); return "symbol" == claimable_balances_call_builder_typeof(i) ? i : String(i); }
|
|
25637
25630
|
function claimable_balances_call_builder_toPrimitive(t, r) { if ("object" != claimable_balances_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != claimable_balances_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25638
|
-
function
|
|
25639
|
-
function claimable_balances_call_builder_setPrototypeOf(o, p) { claimable_balances_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return claimable_balances_call_builder_setPrototypeOf(o, p); }
|
|
25640
|
-
function claimable_balances_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = claimable_balances_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = claimable_balances_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = claimable_balances_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return claimable_balances_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25631
|
+
function claimable_balances_call_builder_callSuper(t, o, e) { return o = claimable_balances_call_builder_getPrototypeOf(o), claimable_balances_call_builder_possibleConstructorReturn(t, claimable_balances_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], claimable_balances_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25641
25632
|
function claimable_balances_call_builder_possibleConstructorReturn(self, call) { if (call && (claimable_balances_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return claimable_balances_call_builder_assertThisInitialized(self); }
|
|
25642
25633
|
function claimable_balances_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25643
|
-
function claimable_balances_call_builder_isNativeReflectConstruct() {
|
|
25634
|
+
function claimable_balances_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (claimable_balances_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25644
25635
|
function claimable_balances_call_builder_getPrototypeOf(o) { claimable_balances_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return claimable_balances_call_builder_getPrototypeOf(o); }
|
|
25636
|
+
function claimable_balances_call_builder_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) claimable_balances_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25637
|
+
function claimable_balances_call_builder_setPrototypeOf(o, p) { claimable_balances_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return claimable_balances_call_builder_setPrototypeOf(o, p); }
|
|
25645
25638
|
|
|
25646
25639
|
var ClaimableBalanceCallBuilder = function (_CallBuilder) {
|
|
25647
25640
|
claimable_balances_call_builder_inherits(ClaimableBalanceCallBuilder, _CallBuilder);
|
|
25648
|
-
var _super = claimable_balances_call_builder_createSuper(ClaimableBalanceCallBuilder);
|
|
25649
25641
|
function ClaimableBalanceCallBuilder(serverUrl) {
|
|
25650
25642
|
var _this;
|
|
25651
25643
|
claimable_balances_call_builder_classCallCheck(this, ClaimableBalanceCallBuilder);
|
|
25652
|
-
_this =
|
|
25644
|
+
_this = claimable_balances_call_builder_callSuper(this, ClaimableBalanceCallBuilder, [serverUrl]);
|
|
25653
25645
|
_this.url.segment("claimable_balances");
|
|
25654
25646
|
return _this;
|
|
25655
25647
|
}
|
|
@@ -25688,21 +25680,20 @@ function effect_call_builder_defineProperties(target, props) { for (var i = 0; i
|
|
|
25688
25680
|
function effect_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) effect_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) effect_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25689
25681
|
function effect_call_builder_toPropertyKey(t) { var i = effect_call_builder_toPrimitive(t, "string"); return "symbol" == effect_call_builder_typeof(i) ? i : String(i); }
|
|
25690
25682
|
function effect_call_builder_toPrimitive(t, r) { if ("object" != effect_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != effect_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25691
|
-
function
|
|
25692
|
-
function effect_call_builder_setPrototypeOf(o, p) { effect_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return effect_call_builder_setPrototypeOf(o, p); }
|
|
25693
|
-
function effect_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = effect_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = effect_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = effect_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return effect_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25683
|
+
function effect_call_builder_callSuper(t, o, e) { return o = effect_call_builder_getPrototypeOf(o), effect_call_builder_possibleConstructorReturn(t, effect_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], effect_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25694
25684
|
function effect_call_builder_possibleConstructorReturn(self, call) { if (call && (effect_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return effect_call_builder_assertThisInitialized(self); }
|
|
25695
25685
|
function effect_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25696
|
-
function effect_call_builder_isNativeReflectConstruct() {
|
|
25686
|
+
function effect_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (effect_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25697
25687
|
function effect_call_builder_getPrototypeOf(o) { effect_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return effect_call_builder_getPrototypeOf(o); }
|
|
25688
|
+
function effect_call_builder_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) effect_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25689
|
+
function effect_call_builder_setPrototypeOf(o, p) { effect_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return effect_call_builder_setPrototypeOf(o, p); }
|
|
25698
25690
|
|
|
25699
25691
|
var EffectCallBuilder = function (_CallBuilder) {
|
|
25700
25692
|
effect_call_builder_inherits(EffectCallBuilder, _CallBuilder);
|
|
25701
|
-
var _super = effect_call_builder_createSuper(EffectCallBuilder);
|
|
25702
25693
|
function EffectCallBuilder(serverUrl) {
|
|
25703
25694
|
var _this;
|
|
25704
25695
|
effect_call_builder_classCallCheck(this, EffectCallBuilder);
|
|
25705
|
-
_this =
|
|
25696
|
+
_this = effect_call_builder_callSuper(this, EffectCallBuilder, [serverUrl, "effects"]);
|
|
25706
25697
|
_this.url.segment("effects");
|
|
25707
25698
|
return _this;
|
|
25708
25699
|
}
|
|
@@ -25741,21 +25732,20 @@ function friendbot_builder_createClass(Constructor, protoProps, staticProps) { i
|
|
|
25741
25732
|
function friendbot_builder_toPropertyKey(t) { var i = friendbot_builder_toPrimitive(t, "string"); return "symbol" == friendbot_builder_typeof(i) ? i : String(i); }
|
|
25742
25733
|
function friendbot_builder_toPrimitive(t, r) { if ("object" != friendbot_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != friendbot_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25743
25734
|
function friendbot_builder_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
25744
|
-
function
|
|
25745
|
-
function friendbot_builder_setPrototypeOf(o, p) { friendbot_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return friendbot_builder_setPrototypeOf(o, p); }
|
|
25746
|
-
function friendbot_builder_createSuper(Derived) { var hasNativeReflectConstruct = friendbot_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = friendbot_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = friendbot_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return friendbot_builder_possibleConstructorReturn(this, result); }; }
|
|
25735
|
+
function friendbot_builder_callSuper(t, o, e) { return o = friendbot_builder_getPrototypeOf(o), friendbot_builder_possibleConstructorReturn(t, friendbot_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], friendbot_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25747
25736
|
function friendbot_builder_possibleConstructorReturn(self, call) { if (call && (friendbot_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return friendbot_builder_assertThisInitialized(self); }
|
|
25748
25737
|
function friendbot_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25749
|
-
function friendbot_builder_isNativeReflectConstruct() {
|
|
25738
|
+
function friendbot_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (friendbot_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25750
25739
|
function friendbot_builder_getPrototypeOf(o) { friendbot_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return friendbot_builder_getPrototypeOf(o); }
|
|
25740
|
+
function friendbot_builder_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) friendbot_builder_setPrototypeOf(subClass, superClass); }
|
|
25741
|
+
function friendbot_builder_setPrototypeOf(o, p) { friendbot_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return friendbot_builder_setPrototypeOf(o, p); }
|
|
25751
25742
|
|
|
25752
25743
|
var FriendbotBuilder = function (_CallBuilder) {
|
|
25753
25744
|
friendbot_builder_inherits(FriendbotBuilder, _CallBuilder);
|
|
25754
|
-
var _super = friendbot_builder_createSuper(FriendbotBuilder);
|
|
25755
25745
|
function FriendbotBuilder(serverUrl, address) {
|
|
25756
25746
|
var _this;
|
|
25757
25747
|
friendbot_builder_classCallCheck(this, FriendbotBuilder);
|
|
25758
|
-
_this =
|
|
25748
|
+
_this = friendbot_builder_callSuper(this, FriendbotBuilder, [serverUrl]);
|
|
25759
25749
|
_this.url.segment("friendbot");
|
|
25760
25750
|
_this.url.setQuery("addr", address);
|
|
25761
25751
|
return _this;
|
|
@@ -25769,21 +25759,20 @@ function ledger_call_builder_defineProperties(target, props) { for (var i = 0; i
|
|
|
25769
25759
|
function ledger_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) ledger_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) ledger_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25770
25760
|
function ledger_call_builder_toPropertyKey(t) { var i = ledger_call_builder_toPrimitive(t, "string"); return "symbol" == ledger_call_builder_typeof(i) ? i : String(i); }
|
|
25771
25761
|
function ledger_call_builder_toPrimitive(t, r) { if ("object" != ledger_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != ledger_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25772
|
-
function
|
|
25773
|
-
function ledger_call_builder_setPrototypeOf(o, p) { ledger_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return ledger_call_builder_setPrototypeOf(o, p); }
|
|
25774
|
-
function ledger_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = ledger_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = ledger_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = ledger_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return ledger_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25762
|
+
function ledger_call_builder_callSuper(t, o, e) { return o = ledger_call_builder_getPrototypeOf(o), ledger_call_builder_possibleConstructorReturn(t, ledger_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], ledger_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25775
25763
|
function ledger_call_builder_possibleConstructorReturn(self, call) { if (call && (ledger_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return ledger_call_builder_assertThisInitialized(self); }
|
|
25776
25764
|
function ledger_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25777
|
-
function ledger_call_builder_isNativeReflectConstruct() {
|
|
25765
|
+
function ledger_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (ledger_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25778
25766
|
function ledger_call_builder_getPrototypeOf(o) { ledger_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return ledger_call_builder_getPrototypeOf(o); }
|
|
25767
|
+
function ledger_call_builder_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) ledger_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25768
|
+
function ledger_call_builder_setPrototypeOf(o, p) { ledger_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return ledger_call_builder_setPrototypeOf(o, p); }
|
|
25779
25769
|
|
|
25780
25770
|
var LedgerCallBuilder = function (_CallBuilder) {
|
|
25781
25771
|
ledger_call_builder_inherits(LedgerCallBuilder, _CallBuilder);
|
|
25782
|
-
var _super = ledger_call_builder_createSuper(LedgerCallBuilder);
|
|
25783
25772
|
function LedgerCallBuilder(serverUrl) {
|
|
25784
25773
|
var _this;
|
|
25785
25774
|
ledger_call_builder_classCallCheck(this, LedgerCallBuilder);
|
|
25786
|
-
_this =
|
|
25775
|
+
_this = ledger_call_builder_callSuper(this, LedgerCallBuilder, [serverUrl]);
|
|
25787
25776
|
_this.url.segment("ledgers");
|
|
25788
25777
|
return _this;
|
|
25789
25778
|
}
|
|
@@ -25803,21 +25792,20 @@ function liquidity_pool_call_builder_defineProperties(target, props) { for (var
|
|
|
25803
25792
|
function liquidity_pool_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) liquidity_pool_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) liquidity_pool_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25804
25793
|
function liquidity_pool_call_builder_toPropertyKey(t) { var i = liquidity_pool_call_builder_toPrimitive(t, "string"); return "symbol" == liquidity_pool_call_builder_typeof(i) ? i : String(i); }
|
|
25805
25794
|
function liquidity_pool_call_builder_toPrimitive(t, r) { if ("object" != liquidity_pool_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != liquidity_pool_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25806
|
-
function
|
|
25807
|
-
function liquidity_pool_call_builder_setPrototypeOf(o, p) { liquidity_pool_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return liquidity_pool_call_builder_setPrototypeOf(o, p); }
|
|
25808
|
-
function liquidity_pool_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = liquidity_pool_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = liquidity_pool_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = liquidity_pool_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return liquidity_pool_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25795
|
+
function liquidity_pool_call_builder_callSuper(t, o, e) { return o = liquidity_pool_call_builder_getPrototypeOf(o), liquidity_pool_call_builder_possibleConstructorReturn(t, liquidity_pool_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], liquidity_pool_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25809
25796
|
function liquidity_pool_call_builder_possibleConstructorReturn(self, call) { if (call && (liquidity_pool_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return liquidity_pool_call_builder_assertThisInitialized(self); }
|
|
25810
25797
|
function liquidity_pool_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25811
|
-
function liquidity_pool_call_builder_isNativeReflectConstruct() {
|
|
25798
|
+
function liquidity_pool_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (liquidity_pool_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25812
25799
|
function liquidity_pool_call_builder_getPrototypeOf(o) { liquidity_pool_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return liquidity_pool_call_builder_getPrototypeOf(o); }
|
|
25800
|
+
function liquidity_pool_call_builder_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) liquidity_pool_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25801
|
+
function liquidity_pool_call_builder_setPrototypeOf(o, p) { liquidity_pool_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return liquidity_pool_call_builder_setPrototypeOf(o, p); }
|
|
25813
25802
|
|
|
25814
25803
|
var LiquidityPoolCallBuilder = function (_CallBuilder) {
|
|
25815
25804
|
liquidity_pool_call_builder_inherits(LiquidityPoolCallBuilder, _CallBuilder);
|
|
25816
|
-
var _super = liquidity_pool_call_builder_createSuper(LiquidityPoolCallBuilder);
|
|
25817
25805
|
function LiquidityPoolCallBuilder(serverUrl) {
|
|
25818
25806
|
var _this;
|
|
25819
25807
|
liquidity_pool_call_builder_classCallCheck(this, LiquidityPoolCallBuilder);
|
|
25820
|
-
_this =
|
|
25808
|
+
_this = liquidity_pool_call_builder_callSuper(this, LiquidityPoolCallBuilder, [serverUrl]);
|
|
25821
25809
|
_this.url.segment("liquidity_pools");
|
|
25822
25810
|
return _this;
|
|
25823
25811
|
}
|
|
@@ -25859,21 +25847,20 @@ function offer_call_builder_defineProperties(target, props) { for (var i = 0; i
|
|
|
25859
25847
|
function offer_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) offer_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) offer_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25860
25848
|
function offer_call_builder_toPropertyKey(t) { var i = offer_call_builder_toPrimitive(t, "string"); return "symbol" == offer_call_builder_typeof(i) ? i : String(i); }
|
|
25861
25849
|
function offer_call_builder_toPrimitive(t, r) { if ("object" != offer_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != offer_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25862
|
-
function
|
|
25863
|
-
function offer_call_builder_setPrototypeOf(o, p) { offer_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return offer_call_builder_setPrototypeOf(o, p); }
|
|
25864
|
-
function offer_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = offer_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = offer_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = offer_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return offer_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25850
|
+
function offer_call_builder_callSuper(t, o, e) { return o = offer_call_builder_getPrototypeOf(o), offer_call_builder_possibleConstructorReturn(t, offer_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], offer_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25865
25851
|
function offer_call_builder_possibleConstructorReturn(self, call) { if (call && (offer_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return offer_call_builder_assertThisInitialized(self); }
|
|
25866
25852
|
function offer_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25867
|
-
function offer_call_builder_isNativeReflectConstruct() {
|
|
25853
|
+
function offer_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (offer_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25868
25854
|
function offer_call_builder_getPrototypeOf(o) { offer_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return offer_call_builder_getPrototypeOf(o); }
|
|
25855
|
+
function offer_call_builder_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) offer_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25856
|
+
function offer_call_builder_setPrototypeOf(o, p) { offer_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return offer_call_builder_setPrototypeOf(o, p); }
|
|
25869
25857
|
|
|
25870
25858
|
var OfferCallBuilder = function (_CallBuilder) {
|
|
25871
25859
|
offer_call_builder_inherits(OfferCallBuilder, _CallBuilder);
|
|
25872
|
-
var _super = offer_call_builder_createSuper(OfferCallBuilder);
|
|
25873
25860
|
function OfferCallBuilder(serverUrl) {
|
|
25874
25861
|
var _this;
|
|
25875
25862
|
offer_call_builder_classCallCheck(this, OfferCallBuilder);
|
|
25876
|
-
_this =
|
|
25863
|
+
_this = offer_call_builder_callSuper(this, OfferCallBuilder, [serverUrl, "offers"]);
|
|
25877
25864
|
_this.url.segment("offers");
|
|
25878
25865
|
return _this;
|
|
25879
25866
|
}
|
|
@@ -25935,21 +25922,20 @@ function operation_call_builder_defineProperties(target, props) { for (var i = 0
|
|
|
25935
25922
|
function operation_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) operation_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) operation_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25936
25923
|
function operation_call_builder_toPropertyKey(t) { var i = operation_call_builder_toPrimitive(t, "string"); return "symbol" == operation_call_builder_typeof(i) ? i : String(i); }
|
|
25937
25924
|
function operation_call_builder_toPrimitive(t, r) { if ("object" != operation_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != operation_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
25938
|
-
function
|
|
25939
|
-
function operation_call_builder_setPrototypeOf(o, p) { operation_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return operation_call_builder_setPrototypeOf(o, p); }
|
|
25940
|
-
function operation_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = operation_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = operation_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = operation_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return operation_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25925
|
+
function operation_call_builder_callSuper(t, o, e) { return o = operation_call_builder_getPrototypeOf(o), operation_call_builder_possibleConstructorReturn(t, operation_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], operation_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
25941
25926
|
function operation_call_builder_possibleConstructorReturn(self, call) { if (call && (operation_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return operation_call_builder_assertThisInitialized(self); }
|
|
25942
25927
|
function operation_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
25943
|
-
function operation_call_builder_isNativeReflectConstruct() {
|
|
25928
|
+
function operation_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (operation_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
25944
25929
|
function operation_call_builder_getPrototypeOf(o) { operation_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return operation_call_builder_getPrototypeOf(o); }
|
|
25930
|
+
function operation_call_builder_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) operation_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25931
|
+
function operation_call_builder_setPrototypeOf(o, p) { operation_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return operation_call_builder_setPrototypeOf(o, p); }
|
|
25945
25932
|
|
|
25946
25933
|
var OperationCallBuilder = function (_CallBuilder) {
|
|
25947
25934
|
operation_call_builder_inherits(OperationCallBuilder, _CallBuilder);
|
|
25948
|
-
var _super = operation_call_builder_createSuper(OperationCallBuilder);
|
|
25949
25935
|
function OperationCallBuilder(serverUrl) {
|
|
25950
25936
|
var _this;
|
|
25951
25937
|
operation_call_builder_classCallCheck(this, OperationCallBuilder);
|
|
25952
|
-
_this =
|
|
25938
|
+
_this = operation_call_builder_callSuper(this, OperationCallBuilder, [serverUrl, "operations"]);
|
|
25953
25939
|
_this.url.segment("operations");
|
|
25954
25940
|
return _this;
|
|
25955
25941
|
}
|
|
@@ -26001,21 +25987,20 @@ function orderbook_call_builder_createClass(Constructor, protoProps, staticProps
|
|
|
26001
25987
|
function orderbook_call_builder_toPropertyKey(t) { var i = orderbook_call_builder_toPrimitive(t, "string"); return "symbol" == orderbook_call_builder_typeof(i) ? i : String(i); }
|
|
26002
25988
|
function orderbook_call_builder_toPrimitive(t, r) { if ("object" != orderbook_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != orderbook_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26003
25989
|
function orderbook_call_builder_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
26004
|
-
function
|
|
26005
|
-
function orderbook_call_builder_setPrototypeOf(o, p) { orderbook_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return orderbook_call_builder_setPrototypeOf(o, p); }
|
|
26006
|
-
function orderbook_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = orderbook_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = orderbook_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = orderbook_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return orderbook_call_builder_possibleConstructorReturn(this, result); }; }
|
|
25990
|
+
function orderbook_call_builder_callSuper(t, o, e) { return o = orderbook_call_builder_getPrototypeOf(o), orderbook_call_builder_possibleConstructorReturn(t, orderbook_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], orderbook_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26007
25991
|
function orderbook_call_builder_possibleConstructorReturn(self, call) { if (call && (orderbook_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return orderbook_call_builder_assertThisInitialized(self); }
|
|
26008
25992
|
function orderbook_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26009
|
-
function orderbook_call_builder_isNativeReflectConstruct() {
|
|
25993
|
+
function orderbook_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (orderbook_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26010
25994
|
function orderbook_call_builder_getPrototypeOf(o) { orderbook_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return orderbook_call_builder_getPrototypeOf(o); }
|
|
25995
|
+
function orderbook_call_builder_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) orderbook_call_builder_setPrototypeOf(subClass, superClass); }
|
|
25996
|
+
function orderbook_call_builder_setPrototypeOf(o, p) { orderbook_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return orderbook_call_builder_setPrototypeOf(o, p); }
|
|
26011
25997
|
|
|
26012
25998
|
var OrderbookCallBuilder = function (_CallBuilder) {
|
|
26013
25999
|
orderbook_call_builder_inherits(OrderbookCallBuilder, _CallBuilder);
|
|
26014
|
-
var _super = orderbook_call_builder_createSuper(OrderbookCallBuilder);
|
|
26015
26000
|
function OrderbookCallBuilder(serverUrl, selling, buying) {
|
|
26016
26001
|
var _this;
|
|
26017
26002
|
orderbook_call_builder_classCallCheck(this, OrderbookCallBuilder);
|
|
26018
|
-
_this =
|
|
26003
|
+
_this = orderbook_call_builder_callSuper(this, OrderbookCallBuilder, [serverUrl]);
|
|
26019
26004
|
_this.url.segment("order_book");
|
|
26020
26005
|
if (!selling.isNative()) {
|
|
26021
26006
|
_this.url.setQuery("selling_asset_type", selling.getAssetType());
|
|
@@ -26042,21 +26027,20 @@ function payment_call_builder_defineProperties(target, props) { for (var i = 0;
|
|
|
26042
26027
|
function payment_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) payment_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) payment_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26043
26028
|
function payment_call_builder_toPropertyKey(t) { var i = payment_call_builder_toPrimitive(t, "string"); return "symbol" == payment_call_builder_typeof(i) ? i : String(i); }
|
|
26044
26029
|
function payment_call_builder_toPrimitive(t, r) { if ("object" != payment_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != payment_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26045
|
-
function
|
|
26046
|
-
function payment_call_builder_setPrototypeOf(o, p) { payment_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return payment_call_builder_setPrototypeOf(o, p); }
|
|
26047
|
-
function payment_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = payment_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = payment_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = payment_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return payment_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26030
|
+
function payment_call_builder_callSuper(t, o, e) { return o = payment_call_builder_getPrototypeOf(o), payment_call_builder_possibleConstructorReturn(t, payment_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], payment_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26048
26031
|
function payment_call_builder_possibleConstructorReturn(self, call) { if (call && (payment_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return payment_call_builder_assertThisInitialized(self); }
|
|
26049
26032
|
function payment_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26050
|
-
function payment_call_builder_isNativeReflectConstruct() {
|
|
26033
|
+
function payment_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (payment_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26051
26034
|
function payment_call_builder_getPrototypeOf(o) { payment_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return payment_call_builder_getPrototypeOf(o); }
|
|
26035
|
+
function payment_call_builder_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) payment_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26036
|
+
function payment_call_builder_setPrototypeOf(o, p) { payment_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return payment_call_builder_setPrototypeOf(o, p); }
|
|
26052
26037
|
|
|
26053
26038
|
var PaymentCallBuilder = function (_CallBuilder) {
|
|
26054
26039
|
payment_call_builder_inherits(PaymentCallBuilder, _CallBuilder);
|
|
26055
|
-
var _super = payment_call_builder_createSuper(PaymentCallBuilder);
|
|
26056
26040
|
function PaymentCallBuilder(serverUrl) {
|
|
26057
26041
|
var _this;
|
|
26058
26042
|
payment_call_builder_classCallCheck(this, PaymentCallBuilder);
|
|
26059
|
-
_this =
|
|
26043
|
+
_this = payment_call_builder_callSuper(this, PaymentCallBuilder, [serverUrl, "payments"]);
|
|
26060
26044
|
_this.url.segment("payments");
|
|
26061
26045
|
return _this;
|
|
26062
26046
|
}
|
|
@@ -26085,21 +26069,20 @@ function strict_receive_path_call_builder_createClass(Constructor, protoProps, s
|
|
|
26085
26069
|
function strict_receive_path_call_builder_toPropertyKey(t) { var i = strict_receive_path_call_builder_toPrimitive(t, "string"); return "symbol" == strict_receive_path_call_builder_typeof(i) ? i : String(i); }
|
|
26086
26070
|
function strict_receive_path_call_builder_toPrimitive(t, r) { if ("object" != strict_receive_path_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != strict_receive_path_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26087
26071
|
function strict_receive_path_call_builder_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
26088
|
-
function
|
|
26089
|
-
function strict_receive_path_call_builder_setPrototypeOf(o, p) { strict_receive_path_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return strict_receive_path_call_builder_setPrototypeOf(o, p); }
|
|
26090
|
-
function strict_receive_path_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = strict_receive_path_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = strict_receive_path_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = strict_receive_path_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return strict_receive_path_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26072
|
+
function strict_receive_path_call_builder_callSuper(t, o, e) { return o = strict_receive_path_call_builder_getPrototypeOf(o), strict_receive_path_call_builder_possibleConstructorReturn(t, strict_receive_path_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], strict_receive_path_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26091
26073
|
function strict_receive_path_call_builder_possibleConstructorReturn(self, call) { if (call && (strict_receive_path_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return strict_receive_path_call_builder_assertThisInitialized(self); }
|
|
26092
26074
|
function strict_receive_path_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26093
|
-
function strict_receive_path_call_builder_isNativeReflectConstruct() {
|
|
26075
|
+
function strict_receive_path_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (strict_receive_path_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26094
26076
|
function strict_receive_path_call_builder_getPrototypeOf(o) { strict_receive_path_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return strict_receive_path_call_builder_getPrototypeOf(o); }
|
|
26077
|
+
function strict_receive_path_call_builder_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) strict_receive_path_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26078
|
+
function strict_receive_path_call_builder_setPrototypeOf(o, p) { strict_receive_path_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return strict_receive_path_call_builder_setPrototypeOf(o, p); }
|
|
26095
26079
|
|
|
26096
26080
|
var StrictReceivePathCallBuilder = function (_CallBuilder) {
|
|
26097
26081
|
strict_receive_path_call_builder_inherits(StrictReceivePathCallBuilder, _CallBuilder);
|
|
26098
|
-
var _super = strict_receive_path_call_builder_createSuper(StrictReceivePathCallBuilder);
|
|
26099
26082
|
function StrictReceivePathCallBuilder(serverUrl, source, destinationAsset, destinationAmount) {
|
|
26100
26083
|
var _this;
|
|
26101
26084
|
strict_receive_path_call_builder_classCallCheck(this, StrictReceivePathCallBuilder);
|
|
26102
|
-
_this =
|
|
26085
|
+
_this = strict_receive_path_call_builder_callSuper(this, StrictReceivePathCallBuilder, [serverUrl]);
|
|
26103
26086
|
_this.url.segment("paths/strict-receive");
|
|
26104
26087
|
if (typeof source === "string") {
|
|
26105
26088
|
_this.url.setQuery("source_account", source);
|
|
@@ -26131,21 +26114,20 @@ function strict_send_path_call_builder_createClass(Constructor, protoProps, stat
|
|
|
26131
26114
|
function strict_send_path_call_builder_toPropertyKey(t) { var i = strict_send_path_call_builder_toPrimitive(t, "string"); return "symbol" == strict_send_path_call_builder_typeof(i) ? i : String(i); }
|
|
26132
26115
|
function strict_send_path_call_builder_toPrimitive(t, r) { if ("object" != strict_send_path_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != strict_send_path_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26133
26116
|
function strict_send_path_call_builder_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
26134
|
-
function
|
|
26135
|
-
function strict_send_path_call_builder_setPrototypeOf(o, p) { strict_send_path_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return strict_send_path_call_builder_setPrototypeOf(o, p); }
|
|
26136
|
-
function strict_send_path_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = strict_send_path_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = strict_send_path_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = strict_send_path_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return strict_send_path_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26117
|
+
function strict_send_path_call_builder_callSuper(t, o, e) { return o = strict_send_path_call_builder_getPrototypeOf(o), strict_send_path_call_builder_possibleConstructorReturn(t, strict_send_path_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], strict_send_path_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26137
26118
|
function strict_send_path_call_builder_possibleConstructorReturn(self, call) { if (call && (strict_send_path_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return strict_send_path_call_builder_assertThisInitialized(self); }
|
|
26138
26119
|
function strict_send_path_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26139
|
-
function strict_send_path_call_builder_isNativeReflectConstruct() {
|
|
26120
|
+
function strict_send_path_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (strict_send_path_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26140
26121
|
function strict_send_path_call_builder_getPrototypeOf(o) { strict_send_path_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return strict_send_path_call_builder_getPrototypeOf(o); }
|
|
26122
|
+
function strict_send_path_call_builder_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) strict_send_path_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26123
|
+
function strict_send_path_call_builder_setPrototypeOf(o, p) { strict_send_path_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return strict_send_path_call_builder_setPrototypeOf(o, p); }
|
|
26141
26124
|
|
|
26142
26125
|
var StrictSendPathCallBuilder = function (_CallBuilder) {
|
|
26143
26126
|
strict_send_path_call_builder_inherits(StrictSendPathCallBuilder, _CallBuilder);
|
|
26144
|
-
var _super = strict_send_path_call_builder_createSuper(StrictSendPathCallBuilder);
|
|
26145
26127
|
function StrictSendPathCallBuilder(serverUrl, sourceAsset, sourceAmount, destination) {
|
|
26146
26128
|
var _this;
|
|
26147
26129
|
strict_send_path_call_builder_classCallCheck(this, StrictSendPathCallBuilder);
|
|
26148
|
-
_this =
|
|
26130
|
+
_this = strict_send_path_call_builder_callSuper(this, StrictSendPathCallBuilder, [serverUrl]);
|
|
26149
26131
|
_this.url.segment("paths/strict-send");
|
|
26150
26132
|
if (sourceAsset.isNative()) {
|
|
26151
26133
|
_this.url.setQuery("source_asset_type", "native");
|
|
@@ -26177,23 +26159,22 @@ function trade_aggregation_call_builder_defineProperties(target, props) { for (v
|
|
|
26177
26159
|
function trade_aggregation_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) trade_aggregation_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) trade_aggregation_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26178
26160
|
function trade_aggregation_call_builder_toPropertyKey(t) { var i = trade_aggregation_call_builder_toPrimitive(t, "string"); return "symbol" == trade_aggregation_call_builder_typeof(i) ? i : String(i); }
|
|
26179
26161
|
function trade_aggregation_call_builder_toPrimitive(t, r) { if ("object" != trade_aggregation_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != trade_aggregation_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26180
|
-
function
|
|
26181
|
-
function trade_aggregation_call_builder_setPrototypeOf(o, p) { trade_aggregation_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return trade_aggregation_call_builder_setPrototypeOf(o, p); }
|
|
26182
|
-
function trade_aggregation_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = trade_aggregation_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = trade_aggregation_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = trade_aggregation_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return trade_aggregation_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26162
|
+
function trade_aggregation_call_builder_callSuper(t, o, e) { return o = trade_aggregation_call_builder_getPrototypeOf(o), trade_aggregation_call_builder_possibleConstructorReturn(t, trade_aggregation_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], trade_aggregation_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26183
26163
|
function trade_aggregation_call_builder_possibleConstructorReturn(self, call) { if (call && (trade_aggregation_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return trade_aggregation_call_builder_assertThisInitialized(self); }
|
|
26184
26164
|
function trade_aggregation_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26185
|
-
function trade_aggregation_call_builder_isNativeReflectConstruct() {
|
|
26165
|
+
function trade_aggregation_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (trade_aggregation_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26186
26166
|
function trade_aggregation_call_builder_getPrototypeOf(o) { trade_aggregation_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return trade_aggregation_call_builder_getPrototypeOf(o); }
|
|
26167
|
+
function trade_aggregation_call_builder_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) trade_aggregation_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26168
|
+
function trade_aggregation_call_builder_setPrototypeOf(o, p) { trade_aggregation_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return trade_aggregation_call_builder_setPrototypeOf(o, p); }
|
|
26187
26169
|
|
|
26188
26170
|
|
|
26189
26171
|
var allowedResolutions = [60000, 300000, 900000, 3600000, 86400000, 604800000];
|
|
26190
26172
|
var TradeAggregationCallBuilder = function (_CallBuilder) {
|
|
26191
26173
|
trade_aggregation_call_builder_inherits(TradeAggregationCallBuilder, _CallBuilder);
|
|
26192
|
-
var _super = trade_aggregation_call_builder_createSuper(TradeAggregationCallBuilder);
|
|
26193
26174
|
function TradeAggregationCallBuilder(serverUrl, base, counter, start_time, end_time, resolution, offset) {
|
|
26194
26175
|
var _this;
|
|
26195
26176
|
trade_aggregation_call_builder_classCallCheck(this, TradeAggregationCallBuilder);
|
|
26196
|
-
_this =
|
|
26177
|
+
_this = trade_aggregation_call_builder_callSuper(this, TradeAggregationCallBuilder, [serverUrl]);
|
|
26197
26178
|
_this.url.segment("trade_aggregations");
|
|
26198
26179
|
if (!base.isNative()) {
|
|
26199
26180
|
_this.url.setQuery("base_asset_type", base.getAssetType());
|
|
@@ -26254,21 +26235,20 @@ function trades_call_builder_defineProperties(target, props) { for (var i = 0; i
|
|
|
26254
26235
|
function trades_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) trades_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) trades_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26255
26236
|
function trades_call_builder_toPropertyKey(t) { var i = trades_call_builder_toPrimitive(t, "string"); return "symbol" == trades_call_builder_typeof(i) ? i : String(i); }
|
|
26256
26237
|
function trades_call_builder_toPrimitive(t, r) { if ("object" != trades_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != trades_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26257
|
-
function
|
|
26258
|
-
function trades_call_builder_setPrototypeOf(o, p) { trades_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return trades_call_builder_setPrototypeOf(o, p); }
|
|
26259
|
-
function trades_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = trades_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = trades_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = trades_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return trades_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26238
|
+
function trades_call_builder_callSuper(t, o, e) { return o = trades_call_builder_getPrototypeOf(o), trades_call_builder_possibleConstructorReturn(t, trades_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], trades_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26260
26239
|
function trades_call_builder_possibleConstructorReturn(self, call) { if (call && (trades_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return trades_call_builder_assertThisInitialized(self); }
|
|
26261
26240
|
function trades_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26262
|
-
function trades_call_builder_isNativeReflectConstruct() {
|
|
26241
|
+
function trades_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (trades_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26263
26242
|
function trades_call_builder_getPrototypeOf(o) { trades_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return trades_call_builder_getPrototypeOf(o); }
|
|
26243
|
+
function trades_call_builder_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) trades_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26244
|
+
function trades_call_builder_setPrototypeOf(o, p) { trades_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return trades_call_builder_setPrototypeOf(o, p); }
|
|
26264
26245
|
|
|
26265
26246
|
var TradesCallBuilder = function (_CallBuilder) {
|
|
26266
26247
|
trades_call_builder_inherits(TradesCallBuilder, _CallBuilder);
|
|
26267
|
-
var _super = trades_call_builder_createSuper(TradesCallBuilder);
|
|
26268
26248
|
function TradesCallBuilder(serverUrl) {
|
|
26269
26249
|
var _this;
|
|
26270
26250
|
trades_call_builder_classCallCheck(this, TradesCallBuilder);
|
|
26271
|
-
_this =
|
|
26251
|
+
_this = trades_call_builder_callSuper(this, TradesCallBuilder, [serverUrl, "trades"]);
|
|
26272
26252
|
_this.url.segment("trades");
|
|
26273
26253
|
return _this;
|
|
26274
26254
|
}
|
|
@@ -26323,21 +26303,20 @@ function transaction_call_builder_defineProperties(target, props) { for (var i =
|
|
|
26323
26303
|
function transaction_call_builder_createClass(Constructor, protoProps, staticProps) { if (protoProps) transaction_call_builder_defineProperties(Constructor.prototype, protoProps); if (staticProps) transaction_call_builder_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26324
26304
|
function transaction_call_builder_toPropertyKey(t) { var i = transaction_call_builder_toPrimitive(t, "string"); return "symbol" == transaction_call_builder_typeof(i) ? i : String(i); }
|
|
26325
26305
|
function transaction_call_builder_toPrimitive(t, r) { if ("object" != transaction_call_builder_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != transaction_call_builder_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26326
|
-
function
|
|
26327
|
-
function transaction_call_builder_setPrototypeOf(o, p) { transaction_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return transaction_call_builder_setPrototypeOf(o, p); }
|
|
26328
|
-
function transaction_call_builder_createSuper(Derived) { var hasNativeReflectConstruct = transaction_call_builder_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = transaction_call_builder_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = transaction_call_builder_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return transaction_call_builder_possibleConstructorReturn(this, result); }; }
|
|
26306
|
+
function transaction_call_builder_callSuper(t, o, e) { return o = transaction_call_builder_getPrototypeOf(o), transaction_call_builder_possibleConstructorReturn(t, transaction_call_builder_isNativeReflectConstruct() ? Reflect.construct(o, e || [], transaction_call_builder_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
26329
26307
|
function transaction_call_builder_possibleConstructorReturn(self, call) { if (call && (transaction_call_builder_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return transaction_call_builder_assertThisInitialized(self); }
|
|
26330
26308
|
function transaction_call_builder_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26331
|
-
function transaction_call_builder_isNativeReflectConstruct() {
|
|
26309
|
+
function transaction_call_builder_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (transaction_call_builder_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26332
26310
|
function transaction_call_builder_getPrototypeOf(o) { transaction_call_builder_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return transaction_call_builder_getPrototypeOf(o); }
|
|
26311
|
+
function transaction_call_builder_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) transaction_call_builder_setPrototypeOf(subClass, superClass); }
|
|
26312
|
+
function transaction_call_builder_setPrototypeOf(o, p) { transaction_call_builder_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return transaction_call_builder_setPrototypeOf(o, p); }
|
|
26333
26313
|
|
|
26334
26314
|
var TransactionCallBuilder = function (_CallBuilder) {
|
|
26335
26315
|
transaction_call_builder_inherits(TransactionCallBuilder, _CallBuilder);
|
|
26336
|
-
var _super = transaction_call_builder_createSuper(TransactionCallBuilder);
|
|
26337
26316
|
function TransactionCallBuilder(serverUrl) {
|
|
26338
26317
|
var _this;
|
|
26339
26318
|
transaction_call_builder_classCallCheck(this, TransactionCallBuilder);
|
|
26340
|
-
_this =
|
|
26319
|
+
_this = transaction_call_builder_callSuper(this, TransactionCallBuilder, [serverUrl, "transactions"]);
|
|
26341
26320
|
_this.url.segment("transactions");
|
|
26342
26321
|
return _this;
|
|
26343
26322
|
}
|
|
@@ -27105,11 +27084,17 @@ function _toPrimitive(t, r) { if ("object" != parsers_typeof(t) || !t) return t;
|
|
|
27105
27084
|
|
|
27106
27085
|
|
|
27107
27086
|
function parseRawSendTransaction(r) {
|
|
27108
|
-
var
|
|
27087
|
+
var errorResultXdr = r.errorResultXdr,
|
|
27088
|
+
diagnosticEventsXdr = r.diagnosticEventsXdr;
|
|
27109
27089
|
delete r.errorResultXdr;
|
|
27110
|
-
|
|
27111
|
-
|
|
27112
|
-
|
|
27090
|
+
delete r.diagnosticEventsXdr;
|
|
27091
|
+
if (!!errorResultXdr) {
|
|
27092
|
+
return _objectSpread(_objectSpread(_objectSpread({}, r), diagnosticEventsXdr !== undefined && diagnosticEventsXdr.length > 0 && {
|
|
27093
|
+
diagnosticEvents: diagnosticEventsXdr.map(function (evt) {
|
|
27094
|
+
return lib.xdr.DiagnosticEvent.fromXDR(evt, 'base64');
|
|
27095
|
+
})
|
|
27096
|
+
}), {}, {
|
|
27097
|
+
errorResult: lib.xdr.TransactionResult.fromXDR(errorResultXdr, 'base64')
|
|
27113
27098
|
});
|
|
27114
27099
|
}
|
|
27115
27100
|
return _objectSpread({}, r);
|
|
@@ -28011,24 +27996,23 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
28011
27996
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
28012
27997
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
28013
27998
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
28014
|
-
function
|
|
28015
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
27999
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
28016
28000
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
28017
28001
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
28002
|
+
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); }
|
|
28018
28003
|
function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
|
|
28019
|
-
function _construct(
|
|
28020
|
-
function _isNativeReflectConstruct() {
|
|
28004
|
+
function _construct(t, e, r) { if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments); var o = [null]; o.push.apply(o, e); var p = new (t.bind.apply(t, o))(); return r && _setPrototypeOf(p, r.prototype), p; }
|
|
28005
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
28021
28006
|
function _isNativeFunction(fn) { try { return Function.toString.call(fn).indexOf("[native code]") !== -1; } catch (e) { return typeof fn === "function"; } }
|
|
28022
28007
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
28023
28008
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
28024
28009
|
var InvalidChallengeError = function (_Error) {
|
|
28025
28010
|
_inherits(InvalidChallengeError, _Error);
|
|
28026
|
-
var _super = _createSuper(InvalidChallengeError);
|
|
28027
28011
|
function InvalidChallengeError(message) {
|
|
28028
28012
|
var _this;
|
|
28029
28013
|
_classCallCheck(this, InvalidChallengeError);
|
|
28030
28014
|
var trueProto = (this instanceof InvalidChallengeError ? this.constructor : void 0).prototype;
|
|
28031
|
-
_this =
|
|
28015
|
+
_this = _callSuper(this, InvalidChallengeError, [message]);
|
|
28032
28016
|
_this.__proto__ = trueProto;
|
|
28033
28017
|
_this.constructor = InvalidChallengeError;
|
|
28034
28018
|
_this.name = "InvalidChallengeError";
|
|
@@ -54791,6 +54775,9 @@ function arrayToObject(arr) {
|
|
|
54791
54775
|
function formDataToJSON(formData) {
|
|
54792
54776
|
function buildPath(path, value, target, index) {
|
|
54793
54777
|
let name = path[index++];
|
|
54778
|
+
|
|
54779
|
+
if (name === '__proto__') return true;
|
|
54780
|
+
|
|
54794
54781
|
const isNumericKey = Number.isFinite(+name);
|
|
54795
54782
|
const isLast = index >= path.length;
|
|
54796
54783
|
name = !name && utils.isArray(target) ? target.length : name;
|
|
@@ -55518,7 +55505,7 @@ function isAbsoluteURL(url) {
|
|
|
55518
55505
|
*/
|
|
55519
55506
|
function combineURLs(baseURL, relativeURL) {
|
|
55520
55507
|
return relativeURL
|
|
55521
|
-
? baseURL.replace(
|
|
55508
|
+
? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')
|
|
55522
55509
|
: baseURL;
|
|
55523
55510
|
}
|
|
55524
55511
|
|
|
@@ -56212,7 +56199,7 @@ function mergeConfig(config1, config2) {
|
|
|
56212
56199
|
}
|
|
56213
56200
|
|
|
56214
56201
|
;// CONCATENATED MODULE: ./node_modules/axios/lib/env/data.js
|
|
56215
|
-
const VERSION = "1.6.
|
|
56202
|
+
const VERSION = "1.6.5";
|
|
56216
56203
|
;// CONCATENATED MODULE: ./node_modules/axios/lib/helpers/validator.js
|
|
56217
56204
|
|
|
56218
56205
|
|
|
@@ -56849,7 +56836,7 @@ axios.default = axios;
|
|
|
56849
56836
|
/***/ ((module) => {
|
|
56850
56837
|
|
|
56851
56838
|
"use strict";
|
|
56852
|
-
module.exports = {"i8":"11.
|
|
56839
|
+
module.exports = {"i8":"11.2.0"};
|
|
56853
56840
|
|
|
56854
56841
|
/***/ })
|
|
56855
56842
|
|