@cinerino/sdk 3.157.0-alpha.8 → 3.157.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/example/playground/public/lib/bundle.js +1587 -835
- package/example/src/chevre/{searchSellers.ts → searchSellerPaymentAccepted.ts} +9 -7
- package/lib/abstract/chevre/event.d.ts +14 -0
- package/lib/abstract/chevre/event.js +16 -0
- package/lib/abstract/chevre/holdReservation.d.ts +64 -0
- package/lib/abstract/chevre/{orderNumber.js → holdReservation.js} +60 -18
- package/lib/abstract/chevre/product.d.ts +1 -7
- package/lib/abstract/chevre/seller/factory.d.ts +12 -0
- package/lib/abstract/chevre/seller/factory.js +2 -0
- package/lib/abstract/chevre/seller.d.ts +66 -0
- package/lib/abstract/chevre/seller.js +138 -0
- package/lib/abstract/chevre.d.ts +6 -6
- package/lib/abstract/chevre.js +12 -12
- package/lib/abstract/service/seller.d.ts +32 -2
- package/lib/abstract/service/seller.js +56 -0
- package/lib/bundle.js +730 -450
- package/package.json +2 -2
- package/lib/abstract/chevre/orderNumber.d.ts +0 -12
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
2
2
|
var cinerino = window.cinerino = require('./lib/browser.js');
|
|
3
|
-
},{"./lib/browser.js":
|
|
3
|
+
},{"./lib/browser.js":100}],2:[function(require,module,exports){
|
|
4
4
|
"use strict";
|
|
5
5
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
6
|
if (k2 === undefined) k2 = k;
|
|
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
*/
|
|
19
19
|
__exportStar(require("./abstract/index"), exports);
|
|
20
20
|
|
|
21
|
-
},{"./abstract/index":
|
|
21
|
+
},{"./abstract/index":59}],3:[function(require,module,exports){
|
|
22
22
|
"use strict";
|
|
23
23
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
24
24
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -96,7 +96,7 @@ var StubAuthClient = /** @class */ (function () {
|
|
|
96
96
|
}());
|
|
97
97
|
exports.StubAuthClient = StubAuthClient;
|
|
98
98
|
|
|
99
|
-
},{"../transporters":
|
|
99
|
+
},{"../transporters":90}],4:[function(require,module,exports){
|
|
100
100
|
"use strict";
|
|
101
101
|
var __extends = (this && this.__extends) || (function () {
|
|
102
102
|
var extendStatics = function (d, b) {
|
|
@@ -142,13 +142,14 @@ var creativeWork_1 = require("./chevre/creativeWork");
|
|
|
142
142
|
var customer_1 = require("./chevre/customer");
|
|
143
143
|
var emailMessage_1 = require("./chevre/emailMessage");
|
|
144
144
|
var event_1 = require("./chevre/event");
|
|
145
|
+
var holdReservation_1 = require("./chevre/holdReservation");
|
|
145
146
|
var iam_1 = require("./chevre/iam");
|
|
146
147
|
var me_1 = require("./chevre/me");
|
|
147
148
|
var merchantReturnPolicy_1 = require("./chevre/merchantReturnPolicy");
|
|
148
149
|
var offer_1 = require("./chevre/offer");
|
|
149
150
|
var offerCatalog_1 = require("./chevre/offerCatalog");
|
|
151
|
+
var offerItemCondition_1 = require("./chevre/offerItemCondition");
|
|
150
152
|
var order_1 = require("./chevre/order");
|
|
151
|
-
var orderNumber_1 = require("./chevre/orderNumber");
|
|
152
153
|
var ownershipInfo_1 = require("./chevre/ownershipInfo");
|
|
153
154
|
var payment_1 = require("./chevre/payment");
|
|
154
155
|
var permit_1 = require("./chevre/permit");
|
|
@@ -336,6 +337,17 @@ var service;
|
|
|
336
337
|
return Event;
|
|
337
338
|
}(event_1.EventService));
|
|
338
339
|
service.Event = Event;
|
|
340
|
+
/**
|
|
341
|
+
* 保留予約サービス
|
|
342
|
+
*/
|
|
343
|
+
var HoldReservation = /** @class */ (function (_super) {
|
|
344
|
+
__extends(HoldReservation, _super);
|
|
345
|
+
function HoldReservation() {
|
|
346
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
347
|
+
}
|
|
348
|
+
return HoldReservation;
|
|
349
|
+
}(holdReservation_1.HoldReservationService));
|
|
350
|
+
service.HoldReservation = HoldReservation;
|
|
339
351
|
/**
|
|
340
352
|
* IAMサービス
|
|
341
353
|
*/
|
|
@@ -380,17 +392,6 @@ var service;
|
|
|
380
392
|
return Order;
|
|
381
393
|
}(order_1.OrderService));
|
|
382
394
|
service.Order = Order;
|
|
383
|
-
/**
|
|
384
|
-
* 注文番号サービス
|
|
385
|
-
*/
|
|
386
|
-
var OrderNumber = /** @class */ (function (_super) {
|
|
387
|
-
__extends(OrderNumber, _super);
|
|
388
|
-
function OrderNumber() {
|
|
389
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
390
|
-
}
|
|
391
|
-
return OrderNumber;
|
|
392
|
-
}(orderNumber_1.OrderNumberService));
|
|
393
|
-
service.OrderNumber = OrderNumber;
|
|
394
395
|
/**
|
|
395
396
|
* 所有権サービス
|
|
396
397
|
*/
|
|
@@ -527,6 +528,17 @@ var service;
|
|
|
527
528
|
return OfferCatalog;
|
|
528
529
|
}(offerCatalog_1.OfferCatalogService));
|
|
529
530
|
service.OfferCatalog = OfferCatalog;
|
|
531
|
+
/**
|
|
532
|
+
* アイテムコンディションサービス
|
|
533
|
+
*/
|
|
534
|
+
var OfferItemCondition = /** @class */ (function (_super) {
|
|
535
|
+
__extends(OfferItemCondition, _super);
|
|
536
|
+
function OfferItemCondition() {
|
|
537
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
538
|
+
}
|
|
539
|
+
return OfferItemCondition;
|
|
540
|
+
}(offerItemCondition_1.OfferItemConditionService));
|
|
541
|
+
service.OfferItemCondition = OfferItemCondition;
|
|
530
542
|
/**
|
|
531
543
|
* 販売者サービス
|
|
532
544
|
*/
|
|
@@ -714,7 +726,7 @@ var service;
|
|
|
714
726
|
service.UserPool = UserPool;
|
|
715
727
|
})(service = exports.service || (exports.service = {}));
|
|
716
728
|
|
|
717
|
-
},{"./chevre/account":5,"./chevre/accountTitle":6,"./chevre/accountTransaction":7,"./chevre/accountingReport":8,"./chevre/action":9,"./chevre/additionalProperty":10,"./chevre/aggregation":11,"./chevre/assetTransaction":12,"./chevre/assetTransaction/cancelReservation":13,"./chevre/assetTransaction/moneyTransfer":14,"./chevre/assetTransaction/pay":15,"./chevre/assetTransaction/refund":16,"./chevre/assetTransaction/registerService":17,"./chevre/assetTransaction/reserve":18,"./chevre/authorization":19,"./chevre/award":20,"./chevre/categoryCode":21,"./chevre/comment":22,"./chevre/creativeWork":23,"./chevre/customer":24,"./chevre/emailMessage":25,"./chevre/event":26,"./chevre/
|
|
729
|
+
},{"./chevre/account":5,"./chevre/accountTitle":6,"./chevre/accountTransaction":7,"./chevre/accountingReport":8,"./chevre/action":9,"./chevre/additionalProperty":10,"./chevre/aggregation":11,"./chevre/assetTransaction":12,"./chevre/assetTransaction/cancelReservation":13,"./chevre/assetTransaction/moneyTransfer":14,"./chevre/assetTransaction/pay":15,"./chevre/assetTransaction/refund":16,"./chevre/assetTransaction/registerService":17,"./chevre/assetTransaction/reserve":18,"./chevre/authorization":19,"./chevre/award":20,"./chevre/categoryCode":21,"./chevre/comment":22,"./chevre/creativeWork":23,"./chevre/customer":24,"./chevre/emailMessage":25,"./chevre/event":26,"./chevre/holdReservation":27,"./chevre/iam":28,"./chevre/me":29,"./chevre/merchantReturnPolicy":30,"./chevre/offer":31,"./chevre/offerCatalog":32,"./chevre/offerItemCondition":33,"./chevre/order":34,"./chevre/ownershipInfo":36,"./chevre/payment":37,"./chevre/permit":39,"./chevre/person":40,"./chevre/person/ownershipInfo":41,"./chevre/place":42,"./chevre/priceSpecification":43,"./chevre/product":44,"./chevre/project":45,"./chevre/reservation":46,"./chevre/seller":48,"./chevre/task":49,"./chevre/token":50,"./chevre/transaction/moneyTransfer":52,"./chevre/transaction/placeOrder":53,"./chevre/transaction/returnOrder":55,"./chevre/transactionNumber":51,"./chevre/trip":56,"./chevre/userPool":57,"./factory":58}],5:[function(require,module,exports){
|
|
718
730
|
"use strict";
|
|
719
731
|
var __extends = (this && this.__extends) || (function () {
|
|
720
732
|
var extendStatics = function (d, b) {
|
|
@@ -839,21 +851,6 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
839
851
|
});
|
|
840
852
|
});
|
|
841
853
|
};
|
|
842
|
-
/**
|
|
843
|
-
* 口座を解約する
|
|
844
|
-
*/
|
|
845
|
-
// public async close(params: {
|
|
846
|
-
// /**
|
|
847
|
-
// * 口座番号
|
|
848
|
-
// */
|
|
849
|
-
// accountNumber: string;
|
|
850
|
-
// }): Promise<void> {
|
|
851
|
-
// await this.fetch({
|
|
852
|
-
// uri: `/accounts/${params.accountNumber}/close`,
|
|
853
|
-
// method: 'PUT',
|
|
854
|
-
// expectedStatusCodes: [NO_CONTENT]
|
|
855
|
-
// });
|
|
856
|
-
// }
|
|
857
854
|
/**
|
|
858
855
|
* 口座を検索する
|
|
859
856
|
*/
|
|
@@ -886,7 +883,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
886
883
|
}(service_1.Service));
|
|
887
884
|
exports.AccountService = AccountService;
|
|
888
885
|
|
|
889
|
-
},{"../service":
|
|
886
|
+
},{"../service":63,"http-status":290}],6:[function(require,module,exports){
|
|
890
887
|
"use strict";
|
|
891
888
|
var __extends = (this && this.__extends) || (function () {
|
|
892
889
|
var extendStatics = function (d, b) {
|
|
@@ -1223,7 +1220,7 @@ var AccountTitleService = /** @class */ (function (_super) {
|
|
|
1223
1220
|
}(service_1.Service));
|
|
1224
1221
|
exports.AccountTitleService = AccountTitleService;
|
|
1225
1222
|
|
|
1226
|
-
},{"../factory":
|
|
1223
|
+
},{"../factory":58,"../service":63,"http-status":290}],7:[function(require,module,exports){
|
|
1227
1224
|
"use strict";
|
|
1228
1225
|
var __extends = (this && this.__extends) || (function () {
|
|
1229
1226
|
var extendStatics = function (d, b) {
|
|
@@ -1320,7 +1317,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
1320
1317
|
}(service_1.Service));
|
|
1321
1318
|
exports.AccountTransactionService = AccountTransactionService;
|
|
1322
1319
|
|
|
1323
|
-
},{"../service":
|
|
1320
|
+
},{"../service":63,"http-status":290}],8:[function(require,module,exports){
|
|
1324
1321
|
"use strict";
|
|
1325
1322
|
var __extends = (this && this.__extends) || (function () {
|
|
1326
1323
|
var extendStatics = function (d, b) {
|
|
@@ -1417,7 +1414,7 @@ var AccountingReportService = /** @class */ (function (_super) {
|
|
|
1417
1414
|
}(service_1.Service));
|
|
1418
1415
|
exports.AccountingReportService = AccountingReportService;
|
|
1419
1416
|
|
|
1420
|
-
},{"../service":
|
|
1417
|
+
},{"../service":63,"http-status":290}],9:[function(require,module,exports){
|
|
1421
1418
|
"use strict";
|
|
1422
1419
|
var __extends = (this && this.__extends) || (function () {
|
|
1423
1420
|
var extendStatics = function (d, b) {
|
|
@@ -1530,7 +1527,7 @@ var ActionService = /** @class */ (function (_super) {
|
|
|
1530
1527
|
}(service_1.Service));
|
|
1531
1528
|
exports.ActionService = ActionService;
|
|
1532
1529
|
|
|
1533
|
-
},{"../service":
|
|
1530
|
+
},{"../service":63,"http-status":290}],10:[function(require,module,exports){
|
|
1534
1531
|
"use strict";
|
|
1535
1532
|
var __extends = (this && this.__extends) || (function () {
|
|
1536
1533
|
var extendStatics = function (d, b) {
|
|
@@ -1694,7 +1691,7 @@ var AdditionalPropertyService = /** @class */ (function (_super) {
|
|
|
1694
1691
|
}(service_1.Service));
|
|
1695
1692
|
exports.AdditionalPropertyService = AdditionalPropertyService;
|
|
1696
1693
|
|
|
1697
|
-
},{"../service":
|
|
1694
|
+
},{"../service":63,"http-status":290}],11:[function(require,module,exports){
|
|
1698
1695
|
"use strict";
|
|
1699
1696
|
var __extends = (this && this.__extends) || (function () {
|
|
1700
1697
|
var extendStatics = function (d, b) {
|
|
@@ -1788,7 +1785,7 @@ var AggregationService = /** @class */ (function (_super) {
|
|
|
1788
1785
|
}(service_1.Service));
|
|
1789
1786
|
exports.AggregationService = AggregationService;
|
|
1790
1787
|
|
|
1791
|
-
},{"../service":
|
|
1788
|
+
},{"../service":63,"http-status":290}],12:[function(require,module,exports){
|
|
1792
1789
|
"use strict";
|
|
1793
1790
|
var __extends = (this && this.__extends) || (function () {
|
|
1794
1791
|
var extendStatics = function (d, b) {
|
|
@@ -1885,7 +1882,7 @@ var AssetTransactionService = /** @class */ (function (_super) {
|
|
|
1885
1882
|
}(service_1.Service));
|
|
1886
1883
|
exports.AssetTransactionService = AssetTransactionService;
|
|
1887
1884
|
|
|
1888
|
-
},{"../service":
|
|
1885
|
+
},{"../service":63,"http-status":290}],13:[function(require,module,exports){
|
|
1889
1886
|
"use strict";
|
|
1890
1887
|
var __extends = (this && this.__extends) || (function () {
|
|
1891
1888
|
var extendStatics = function (d, b) {
|
|
@@ -1938,6 +1935,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
1938
1935
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1939
1936
|
}
|
|
1940
1937
|
};
|
|
1938
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
1939
|
+
var t = {};
|
|
1940
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
1941
|
+
t[p] = s[p];
|
|
1942
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
1943
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
1944
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
1945
|
+
t[p[i]] = s[p[i]];
|
|
1946
|
+
}
|
|
1947
|
+
return t;
|
|
1948
|
+
};
|
|
1941
1949
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1942
1950
|
exports.CancelReservationAssetTransactionService = void 0;
|
|
1943
1951
|
var http_status_1 = require("http-status");
|
|
@@ -1994,14 +2002,17 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
1994
2002
|
*/
|
|
1995
2003
|
CancelReservationAssetTransactionService.prototype.confirm = function (params) {
|
|
1996
2004
|
return __awaiter(this, void 0, void 0, function () {
|
|
2005
|
+
var id, body;
|
|
1997
2006
|
return __generator(this, function (_a) {
|
|
1998
2007
|
switch (_a.label) {
|
|
1999
|
-
case 0:
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2008
|
+
case 0:
|
|
2009
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
2010
|
+
return [4 /*yield*/, this.fetch({
|
|
2011
|
+
uri: "/assetTransactions/cancelReservation/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2012
|
+
method: 'PUT',
|
|
2013
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
2014
|
+
body: body
|
|
2015
|
+
})];
|
|
2005
2016
|
case 1:
|
|
2006
2017
|
_a.sent();
|
|
2007
2018
|
return [2 /*return*/];
|
|
@@ -2019,8 +2030,8 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
2019
2030
|
case 0: return [4 /*yield*/, this.fetch({
|
|
2020
2031
|
uri: "/assetTransactions/cancelReservation/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2021
2032
|
method: 'PUT',
|
|
2022
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2023
|
-
body: params
|
|
2033
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2034
|
+
// body: params
|
|
2024
2035
|
})];
|
|
2025
2036
|
case 1:
|
|
2026
2037
|
_a.sent();
|
|
@@ -2033,7 +2044,7 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
2033
2044
|
}(service_1.Service));
|
|
2034
2045
|
exports.CancelReservationAssetTransactionService = CancelReservationAssetTransactionService;
|
|
2035
2046
|
|
|
2036
|
-
},{"../../service":
|
|
2047
|
+
},{"../../service":63,"http-status":290}],14:[function(require,module,exports){
|
|
2037
2048
|
"use strict";
|
|
2038
2049
|
var __extends = (this && this.__extends) || (function () {
|
|
2039
2050
|
var extendStatics = function (d, b) {
|
|
@@ -2123,16 +2134,19 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2123
2134
|
*/
|
|
2124
2135
|
MoneyTransferAssetTransactionService.prototype.confirm = function (params) {
|
|
2125
2136
|
return __awaiter(this, void 0, void 0, function () {
|
|
2137
|
+
var transactionNumber, id;
|
|
2126
2138
|
return __generator(this, function (_a) {
|
|
2127
2139
|
switch (_a.label) {
|
|
2128
|
-
case 0:
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
:
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2140
|
+
case 0:
|
|
2141
|
+
transactionNumber = params.transactionNumber, id = params.id;
|
|
2142
|
+
return [4 /*yield*/, this.fetch({
|
|
2143
|
+
uri: (typeof transactionNumber === 'string')
|
|
2144
|
+
? "/assetTransactions/" + factory.assetTransactionType.MoneyTransfer + "/" + transactionNumber + "/confirm?transactionNumber=1"
|
|
2145
|
+
: "/assetTransactions/" + factory.assetTransactionType.MoneyTransfer + "/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2146
|
+
method: 'PUT',
|
|
2147
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2148
|
+
// body: params
|
|
2149
|
+
})];
|
|
2136
2150
|
case 1:
|
|
2137
2151
|
_a.sent();
|
|
2138
2152
|
return [2 /*return*/];
|
|
@@ -2152,8 +2166,8 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2152
2166
|
? "/assetTransactions/" + factory.assetTransactionType.MoneyTransfer + "/" + params.transactionNumber + "/cancel?transactionNumber=1"
|
|
2153
2167
|
: "/assetTransactions/" + factory.assetTransactionType.MoneyTransfer + "/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2154
2168
|
method: 'PUT',
|
|
2155
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2156
|
-
body: params
|
|
2169
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2170
|
+
// body: params
|
|
2157
2171
|
})];
|
|
2158
2172
|
case 1:
|
|
2159
2173
|
_a.sent();
|
|
@@ -2187,7 +2201,7 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2187
2201
|
}(service_1.Service));
|
|
2188
2202
|
exports.MoneyTransferAssetTransactionService = MoneyTransferAssetTransactionService;
|
|
2189
2203
|
|
|
2190
|
-
},{"../../factory":
|
|
2204
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],15:[function(require,module,exports){
|
|
2191
2205
|
"use strict";
|
|
2192
2206
|
var __extends = (this && this.__extends) || (function () {
|
|
2193
2207
|
var extendStatics = function (d, b) {
|
|
@@ -2240,6 +2254,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
2240
2254
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
2241
2255
|
}
|
|
2242
2256
|
};
|
|
2257
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2258
|
+
var t = {};
|
|
2259
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
2260
|
+
t[p] = s[p];
|
|
2261
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
2262
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
2263
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
2264
|
+
t[p[i]] = s[p[i]];
|
|
2265
|
+
}
|
|
2266
|
+
return t;
|
|
2267
|
+
};
|
|
2243
2268
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2244
2269
|
exports.PayAssetTransactionService = void 0;
|
|
2245
2270
|
var http_status_1 = require("http-status");
|
|
@@ -2337,16 +2362,19 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2337
2362
|
*/
|
|
2338
2363
|
PayAssetTransactionService.prototype.confirm = function (params) {
|
|
2339
2364
|
return __awaiter(this, void 0, void 0, function () {
|
|
2365
|
+
var transactionNumber, id, body;
|
|
2340
2366
|
return __generator(this, function (_a) {
|
|
2341
2367
|
switch (_a.label) {
|
|
2342
|
-
case 0:
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
:
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2368
|
+
case 0:
|
|
2369
|
+
transactionNumber = params.transactionNumber, id = params.id, body = __rest(params, ["transactionNumber", "id"]);
|
|
2370
|
+
return [4 /*yield*/, this.fetch({
|
|
2371
|
+
uri: (typeof transactionNumber === 'string')
|
|
2372
|
+
? "/assetTransactions/" + factory.assetTransactionType.Pay + "/" + transactionNumber + "/confirm?transactionNumber=1"
|
|
2373
|
+
: "/assetTransactions/" + factory.assetTransactionType.Pay + "/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2374
|
+
method: 'PUT',
|
|
2375
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
2376
|
+
body: body
|
|
2377
|
+
})];
|
|
2350
2378
|
case 1:
|
|
2351
2379
|
_a.sent();
|
|
2352
2380
|
return [2 /*return*/];
|
|
@@ -2366,8 +2394,8 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2366
2394
|
? "/assetTransactions/" + factory.assetTransactionType.Pay + "/" + params.transactionNumber + "/cancel?transactionNumber=1"
|
|
2367
2395
|
: "/assetTransactions/" + factory.assetTransactionType.Pay + "/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2368
2396
|
method: 'PUT',
|
|
2369
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2370
|
-
body: params
|
|
2397
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2398
|
+
// body: params
|
|
2371
2399
|
})];
|
|
2372
2400
|
case 1:
|
|
2373
2401
|
_a.sent();
|
|
@@ -2398,7 +2426,7 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2398
2426
|
}(service_1.Service));
|
|
2399
2427
|
exports.PayAssetTransactionService = PayAssetTransactionService;
|
|
2400
2428
|
|
|
2401
|
-
},{"../../factory":
|
|
2429
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],16:[function(require,module,exports){
|
|
2402
2430
|
"use strict";
|
|
2403
2431
|
var __extends = (this && this.__extends) || (function () {
|
|
2404
2432
|
var extendStatics = function (d, b) {
|
|
@@ -2451,6 +2479,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
2451
2479
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
2452
2480
|
}
|
|
2453
2481
|
};
|
|
2482
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2483
|
+
var t = {};
|
|
2484
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
2485
|
+
t[p] = s[p];
|
|
2486
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
2487
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
2488
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
2489
|
+
t[p[i]] = s[p[i]];
|
|
2490
|
+
}
|
|
2491
|
+
return t;
|
|
2492
|
+
};
|
|
2454
2493
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2455
2494
|
exports.RefundAssetTransactionService = void 0;
|
|
2456
2495
|
var http_status_1 = require("http-status");
|
|
@@ -2488,16 +2527,19 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2488
2527
|
*/
|
|
2489
2528
|
RefundAssetTransactionService.prototype.confirm = function (params) {
|
|
2490
2529
|
return __awaiter(this, void 0, void 0, function () {
|
|
2530
|
+
var transactionNumber, id, body;
|
|
2491
2531
|
return __generator(this, function (_a) {
|
|
2492
2532
|
switch (_a.label) {
|
|
2493
|
-
case 0:
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
:
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2533
|
+
case 0:
|
|
2534
|
+
transactionNumber = params.transactionNumber, id = params.id, body = __rest(params, ["transactionNumber", "id"]);
|
|
2535
|
+
return [4 /*yield*/, this.fetch({
|
|
2536
|
+
uri: (typeof params.transactionNumber === 'string')
|
|
2537
|
+
? "/assetTransactions/" + factory.assetTransactionType.Refund + "/" + transactionNumber + "/confirm?transactionNumber=1"
|
|
2538
|
+
: "/assetTransactions/" + factory.assetTransactionType.Refund + "/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2539
|
+
method: 'PUT',
|
|
2540
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
2541
|
+
body: body
|
|
2542
|
+
})];
|
|
2501
2543
|
case 1:
|
|
2502
2544
|
_a.sent();
|
|
2503
2545
|
return [2 /*return*/];
|
|
@@ -2517,8 +2559,8 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2517
2559
|
? "/assetTransactions/" + factory.assetTransactionType.Refund + "/" + params.transactionNumber + "/cancel?transactionNumber=1"
|
|
2518
2560
|
: "/assetTransactions/" + factory.assetTransactionType.Refund + "/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2519
2561
|
method: 'PUT',
|
|
2520
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2521
|
-
body: params
|
|
2562
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2563
|
+
// body: params
|
|
2522
2564
|
})];
|
|
2523
2565
|
case 1:
|
|
2524
2566
|
_a.sent();
|
|
@@ -2531,7 +2573,7 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2531
2573
|
}(service_1.Service));
|
|
2532
2574
|
exports.RefundAssetTransactionService = RefundAssetTransactionService;
|
|
2533
2575
|
|
|
2534
|
-
},{"../../factory":
|
|
2576
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],17:[function(require,module,exports){
|
|
2535
2577
|
"use strict";
|
|
2536
2578
|
var __extends = (this && this.__extends) || (function () {
|
|
2537
2579
|
var extendStatics = function (d, b) {
|
|
@@ -2584,6 +2626,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
2584
2626
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
2585
2627
|
}
|
|
2586
2628
|
};
|
|
2629
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2630
|
+
var t = {};
|
|
2631
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
2632
|
+
t[p] = s[p];
|
|
2633
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
2634
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
2635
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
2636
|
+
t[p[i]] = s[p[i]];
|
|
2637
|
+
}
|
|
2638
|
+
return t;
|
|
2639
|
+
};
|
|
2587
2640
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2588
2641
|
exports.RegisterServiceAssetTransactionService = void 0;
|
|
2589
2642
|
var http_status_1 = require("http-status");
|
|
@@ -2621,16 +2674,19 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2621
2674
|
*/
|
|
2622
2675
|
RegisterServiceAssetTransactionService.prototype.confirm = function (params) {
|
|
2623
2676
|
return __awaiter(this, void 0, void 0, function () {
|
|
2677
|
+
var transactionNumber, id, body;
|
|
2624
2678
|
return __generator(this, function (_a) {
|
|
2625
2679
|
switch (_a.label) {
|
|
2626
|
-
case 0:
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
:
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2680
|
+
case 0:
|
|
2681
|
+
transactionNumber = params.transactionNumber, id = params.id, body = __rest(params, ["transactionNumber", "id"]);
|
|
2682
|
+
return [4 /*yield*/, this.fetch({
|
|
2683
|
+
uri: (typeof transactionNumber === 'string')
|
|
2684
|
+
? "/assetTransactions/" + factory.assetTransactionType.RegisterService + "/" + transactionNumber + "/confirm?transactionNumber=1"
|
|
2685
|
+
: "/assetTransactions/" + factory.assetTransactionType.RegisterService + "/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2686
|
+
method: 'PUT',
|
|
2687
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
2688
|
+
body: body
|
|
2689
|
+
})];
|
|
2634
2690
|
case 1:
|
|
2635
2691
|
_a.sent();
|
|
2636
2692
|
return [2 /*return*/];
|
|
@@ -2650,8 +2706,8 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2650
2706
|
? "/assetTransactions/" + factory.assetTransactionType.RegisterService + "/" + params.transactionNumber + "/cancel?transactionNumber=1"
|
|
2651
2707
|
: "/assetTransactions/" + factory.assetTransactionType.RegisterService + "/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2652
2708
|
method: 'PUT',
|
|
2653
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2654
|
-
body: params
|
|
2709
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2710
|
+
// body: params
|
|
2655
2711
|
})];
|
|
2656
2712
|
case 1:
|
|
2657
2713
|
_a.sent();
|
|
@@ -2664,7 +2720,7 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2664
2720
|
}(service_1.Service));
|
|
2665
2721
|
exports.RegisterServiceAssetTransactionService = RegisterServiceAssetTransactionService;
|
|
2666
2722
|
|
|
2667
|
-
},{"../../factory":
|
|
2723
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],18:[function(require,module,exports){
|
|
2668
2724
|
"use strict";
|
|
2669
2725
|
var __extends = (this && this.__extends) || (function () {
|
|
2670
2726
|
var extendStatics = function (d, b) {
|
|
@@ -2717,6 +2773,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
2717
2773
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
2718
2774
|
}
|
|
2719
2775
|
};
|
|
2776
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2777
|
+
var t = {};
|
|
2778
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
2779
|
+
t[p] = s[p];
|
|
2780
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
2781
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
2782
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
2783
|
+
t[p[i]] = s[p[i]];
|
|
2784
|
+
}
|
|
2785
|
+
return t;
|
|
2786
|
+
};
|
|
2720
2787
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2721
2788
|
exports.ReserveAssetTransactionService = void 0;
|
|
2722
2789
|
var http_status_1 = require("http-status");
|
|
@@ -2771,16 +2838,19 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2771
2838
|
*/
|
|
2772
2839
|
ReserveAssetTransactionService.prototype.confirm = function (params) {
|
|
2773
2840
|
return __awaiter(this, void 0, void 0, function () {
|
|
2841
|
+
var transactionNumber, id, body;
|
|
2774
2842
|
return __generator(this, function (_a) {
|
|
2775
2843
|
switch (_a.label) {
|
|
2776
|
-
case 0:
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
:
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2844
|
+
case 0:
|
|
2845
|
+
transactionNumber = params.transactionNumber, id = params.id, body = __rest(params, ["transactionNumber", "id"]);
|
|
2846
|
+
return [4 /*yield*/, this.fetch({
|
|
2847
|
+
uri: (typeof transactionNumber === 'string')
|
|
2848
|
+
? "/assetTransactions/reserve/" + transactionNumber + "/confirm?transactionNumber=1"
|
|
2849
|
+
: "/assetTransactions/reserve/" + encodeURIComponent(String(id)) + "/confirm",
|
|
2850
|
+
method: 'PUT',
|
|
2851
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
2852
|
+
body: body
|
|
2853
|
+
})];
|
|
2784
2854
|
case 1:
|
|
2785
2855
|
_a.sent();
|
|
2786
2856
|
return [2 /*return*/];
|
|
@@ -2800,8 +2870,8 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2800
2870
|
? "/assetTransactions/reserve/" + params.transactionNumber + "/cancel?transactionNumber=1"
|
|
2801
2871
|
: "/assetTransactions/reserve/" + encodeURIComponent(String(params.id)) + "/cancel",
|
|
2802
2872
|
method: 'PUT',
|
|
2803
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2804
|
-
body: params
|
|
2873
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
2874
|
+
// body: params
|
|
2805
2875
|
})];
|
|
2806
2876
|
case 1:
|
|
2807
2877
|
_a.sent();
|
|
@@ -2814,7 +2884,7 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
2814
2884
|
}(service_1.Service));
|
|
2815
2885
|
exports.ReserveAssetTransactionService = ReserveAssetTransactionService;
|
|
2816
2886
|
|
|
2817
|
-
},{"../../service":
|
|
2887
|
+
},{"../../service":63,"http-status":290}],19:[function(require,module,exports){
|
|
2818
2888
|
"use strict";
|
|
2819
2889
|
var __extends = (this && this.__extends) || (function () {
|
|
2820
2890
|
var extendStatics = function (d, b) {
|
|
@@ -2930,7 +3000,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
2930
3000
|
}(service_1.Service));
|
|
2931
3001
|
exports.AuthorizationService = AuthorizationService;
|
|
2932
3002
|
|
|
2933
|
-
},{"../service":
|
|
3003
|
+
},{"../service":63,"http-status":290}],20:[function(require,module,exports){
|
|
2934
3004
|
"use strict";
|
|
2935
3005
|
var __extends = (this && this.__extends) || (function () {
|
|
2936
3006
|
var extendStatics = function (d, b) {
|
|
@@ -2983,6 +3053,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
2983
3053
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
2984
3054
|
}
|
|
2985
3055
|
};
|
|
3056
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3057
|
+
var t = {};
|
|
3058
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3059
|
+
t[p] = s[p];
|
|
3060
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3061
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3062
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3063
|
+
t[p[i]] = s[p[i]];
|
|
3064
|
+
}
|
|
3065
|
+
return t;
|
|
3066
|
+
};
|
|
2986
3067
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2987
3068
|
exports.AwardService = void 0;
|
|
2988
3069
|
var http_status_1 = require("http-status");
|
|
@@ -3019,13 +3100,17 @@ var AwardService = /** @class */ (function (_super) {
|
|
|
3019
3100
|
*/
|
|
3020
3101
|
AwardService.prototype.voidPointAward = function (params) {
|
|
3021
3102
|
return __awaiter(this, void 0, void 0, function () {
|
|
3103
|
+
var id, body;
|
|
3022
3104
|
return __generator(this, function (_a) {
|
|
3023
3105
|
switch (_a.label) {
|
|
3024
|
-
case 0:
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3106
|
+
case 0:
|
|
3107
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
3108
|
+
return [4 /*yield*/, this.fetch({
|
|
3109
|
+
uri: "/awards/authorize/" + id + "/void",
|
|
3110
|
+
method: 'PUT',
|
|
3111
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
3112
|
+
body: body
|
|
3113
|
+
})];
|
|
3029
3114
|
case 1:
|
|
3030
3115
|
_a.sent();
|
|
3031
3116
|
return [2 /*return*/];
|
|
@@ -3037,7 +3122,7 @@ var AwardService = /** @class */ (function (_super) {
|
|
|
3037
3122
|
}(service_1.Service));
|
|
3038
3123
|
exports.AwardService = AwardService;
|
|
3039
3124
|
|
|
3040
|
-
},{"../service":
|
|
3125
|
+
},{"../service":63,"http-status":290}],21:[function(require,module,exports){
|
|
3041
3126
|
"use strict";
|
|
3042
3127
|
var __extends = (this && this.__extends) || (function () {
|
|
3043
3128
|
var extendStatics = function (d, b) {
|
|
@@ -3201,7 +3286,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
3201
3286
|
}(service_1.Service));
|
|
3202
3287
|
exports.CategoryCodeService = CategoryCodeService;
|
|
3203
3288
|
|
|
3204
|
-
},{"../service":
|
|
3289
|
+
},{"../service":63,"http-status":290}],22:[function(require,module,exports){
|
|
3205
3290
|
"use strict";
|
|
3206
3291
|
var __extends = (this && this.__extends) || (function () {
|
|
3207
3292
|
var extendStatics = function (d, b) {
|
|
@@ -3317,7 +3402,7 @@ var CommentService = /** @class */ (function (_super) {
|
|
|
3317
3402
|
}(service_1.Service));
|
|
3318
3403
|
exports.CommentService = CommentService;
|
|
3319
3404
|
|
|
3320
|
-
},{"../service":
|
|
3405
|
+
},{"../service":63,"http-status":290}],23:[function(require,module,exports){
|
|
3321
3406
|
"use strict";
|
|
3322
3407
|
var __extends = (this && this.__extends) || (function () {
|
|
3323
3408
|
var extendStatics = function (d, b) {
|
|
@@ -3475,7 +3560,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
3475
3560
|
}(service_1.Service));
|
|
3476
3561
|
exports.CreativeWorkService = CreativeWorkService;
|
|
3477
3562
|
|
|
3478
|
-
},{"../service":
|
|
3563
|
+
},{"../service":63,"http-status":290}],24:[function(require,module,exports){
|
|
3479
3564
|
"use strict";
|
|
3480
3565
|
var __extends = (this && this.__extends) || (function () {
|
|
3481
3566
|
var extendStatics = function (d, b) {
|
|
@@ -3528,6 +3613,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
3528
3613
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
3529
3614
|
}
|
|
3530
3615
|
};
|
|
3616
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3617
|
+
var t = {};
|
|
3618
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3619
|
+
t[p] = s[p];
|
|
3620
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3621
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3622
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3623
|
+
t[p[i]] = s[p[i]];
|
|
3624
|
+
}
|
|
3625
|
+
return t;
|
|
3626
|
+
};
|
|
3531
3627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3532
3628
|
exports.CustomerService = void 0;
|
|
3533
3629
|
var http_status_1 = require("http-status");
|
|
@@ -3564,12 +3660,14 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
3564
3660
|
*/
|
|
3565
3661
|
CustomerService.prototype.findById = function (params) {
|
|
3566
3662
|
return __awaiter(this, void 0, void 0, function () {
|
|
3663
|
+
var id, query;
|
|
3567
3664
|
var _this = this;
|
|
3568
3665
|
return __generator(this, function (_a) {
|
|
3666
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
3569
3667
|
return [2 /*return*/, this.fetch({
|
|
3570
|
-
uri: "/customers/" +
|
|
3668
|
+
uri: "/customers/" + id,
|
|
3571
3669
|
method: 'GET',
|
|
3572
|
-
qs:
|
|
3670
|
+
qs: query,
|
|
3573
3671
|
expectedStatusCodes: [http_status_1.OK]
|
|
3574
3672
|
})
|
|
3575
3673
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -3649,7 +3747,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
3649
3747
|
}(service_1.Service));
|
|
3650
3748
|
exports.CustomerService = CustomerService;
|
|
3651
3749
|
|
|
3652
|
-
},{"../service":
|
|
3750
|
+
},{"../service":63,"http-status":290}],25:[function(require,module,exports){
|
|
3653
3751
|
"use strict";
|
|
3654
3752
|
var __extends = (this && this.__extends) || (function () {
|
|
3655
3753
|
var extendStatics = function (d, b) {
|
|
@@ -3743,7 +3841,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
3743
3841
|
return [2 /*return*/, this.fetch({
|
|
3744
3842
|
uri: "/emailMessages/" + params.id,
|
|
3745
3843
|
method: 'GET',
|
|
3746
|
-
qs: params,
|
|
3844
|
+
// qs: params,
|
|
3747
3845
|
expectedStatusCodes: [http_status_1.OK]
|
|
3748
3846
|
})
|
|
3749
3847
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -3823,7 +3921,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
3823
3921
|
}(service_1.Service));
|
|
3824
3922
|
exports.EmailMessageService = EmailMessageService;
|
|
3825
3923
|
|
|
3826
|
-
},{"../service":
|
|
3924
|
+
},{"../service":63,"http-status":290}],26:[function(require,module,exports){
|
|
3827
3925
|
"use strict";
|
|
3828
3926
|
var __extends = (this && this.__extends) || (function () {
|
|
3829
3927
|
var extendStatics = function (d, b) {
|
|
@@ -3876,6 +3974,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
3876
3974
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
3877
3975
|
}
|
|
3878
3976
|
};
|
|
3977
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3978
|
+
var t = {};
|
|
3979
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
3980
|
+
t[p] = s[p];
|
|
3981
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
3982
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
3983
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
3984
|
+
t[p[i]] = s[p[i]];
|
|
3985
|
+
}
|
|
3986
|
+
return t;
|
|
3987
|
+
};
|
|
3879
3988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3880
3989
|
exports.EventService = void 0;
|
|
3881
3990
|
var http_status_1 = require("http-status");
|
|
@@ -3966,6 +4075,22 @@ var EventService = /** @class */ (function (_super) {
|
|
|
3966
4075
|
});
|
|
3967
4076
|
});
|
|
3968
4077
|
};
|
|
4078
|
+
EventService.prototype.aggregateScreeningEventMaxVersion = function (params) {
|
|
4079
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4080
|
+
var _this = this;
|
|
4081
|
+
return __generator(this, function (_a) {
|
|
4082
|
+
return [2 /*return*/, this.fetch({
|
|
4083
|
+
uri: '/events/aggregateScreeningEventMaxVersion',
|
|
4084
|
+
method: 'GET',
|
|
4085
|
+
qs: params,
|
|
4086
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
4087
|
+
})
|
|
4088
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4089
|
+
return [2 /*return*/, response.json()];
|
|
4090
|
+
}); }); })];
|
|
4091
|
+
});
|
|
4092
|
+
});
|
|
4093
|
+
};
|
|
3969
4094
|
/**
|
|
3970
4095
|
* イベント検索
|
|
3971
4096
|
*/
|
|
@@ -4076,12 +4201,14 @@ var EventService = /** @class */ (function (_super) {
|
|
|
4076
4201
|
*/
|
|
4077
4202
|
EventService.prototype.searchTicketOffers = function (params) {
|
|
4078
4203
|
return __awaiter(this, void 0, void 0, function () {
|
|
4204
|
+
var id, query;
|
|
4079
4205
|
var _this = this;
|
|
4080
4206
|
return __generator(this, function (_a) {
|
|
4207
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
4081
4208
|
return [2 /*return*/, this.fetch({
|
|
4082
|
-
uri: "/events/" + encodeURIComponent(String(
|
|
4209
|
+
uri: "/events/" + encodeURIComponent(String(id)) + "/offers/ticket",
|
|
4083
4210
|
method: 'GET',
|
|
4084
|
-
qs:
|
|
4211
|
+
qs: query,
|
|
4085
4212
|
expectedStatusCodes: [http_status_1.OK]
|
|
4086
4213
|
})
|
|
4087
4214
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -4095,12 +4222,14 @@ var EventService = /** @class */ (function (_super) {
|
|
|
4095
4222
|
*/
|
|
4096
4223
|
EventService.prototype.searchSeats = function (params) {
|
|
4097
4224
|
return __awaiter(this, void 0, void 0, function () {
|
|
4225
|
+
var id, query;
|
|
4098
4226
|
var _this = this;
|
|
4099
4227
|
return __generator(this, function (_a) {
|
|
4228
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
4100
4229
|
return [2 /*return*/, this.fetch({
|
|
4101
|
-
uri: "/events/" + encodeURIComponent(String(
|
|
4230
|
+
uri: "/events/" + encodeURIComponent(String(id)) + "/seats",
|
|
4102
4231
|
method: 'GET',
|
|
4103
|
-
qs:
|
|
4232
|
+
qs: query,
|
|
4104
4233
|
expectedStatusCodes: [http_status_1.OK]
|
|
4105
4234
|
})
|
|
4106
4235
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -4122,7 +4251,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
4122
4251
|
}(service_1.Service));
|
|
4123
4252
|
exports.EventService = EventService;
|
|
4124
4253
|
|
|
4125
|
-
},{"../service":
|
|
4254
|
+
},{"../service":63,"http-status":290}],27:[function(require,module,exports){
|
|
4126
4255
|
"use strict";
|
|
4127
4256
|
var __extends = (this && this.__extends) || (function () {
|
|
4128
4257
|
var extendStatics = function (d, b) {
|
|
@@ -4139,6 +4268,17 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
4139
4268
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4140
4269
|
};
|
|
4141
4270
|
})();
|
|
4271
|
+
var __assign = (this && this.__assign) || function () {
|
|
4272
|
+
__assign = Object.assign || function(t) {
|
|
4273
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4274
|
+
s = arguments[i];
|
|
4275
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
4276
|
+
t[p] = s[p];
|
|
4277
|
+
}
|
|
4278
|
+
return t;
|
|
4279
|
+
};
|
|
4280
|
+
return __assign.apply(this, arguments);
|
|
4281
|
+
};
|
|
4142
4282
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
4143
4283
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4144
4284
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -4176,26 +4316,23 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
4176
4316
|
}
|
|
4177
4317
|
};
|
|
4178
4318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4179
|
-
exports.
|
|
4319
|
+
exports.HoldReservationService = void 0;
|
|
4180
4320
|
var http_status_1 = require("http-status");
|
|
4181
4321
|
var service_1 = require("../service");
|
|
4182
4322
|
/**
|
|
4183
|
-
*
|
|
4323
|
+
* 保留予約サービス
|
|
4184
4324
|
*/
|
|
4185
|
-
var
|
|
4186
|
-
__extends(
|
|
4187
|
-
function
|
|
4325
|
+
var HoldReservationService = /** @class */ (function (_super) {
|
|
4326
|
+
__extends(HoldReservationService, _super);
|
|
4327
|
+
function HoldReservationService() {
|
|
4188
4328
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4189
4329
|
}
|
|
4190
|
-
|
|
4191
|
-
* ユーザー検索
|
|
4192
|
-
*/
|
|
4193
|
-
IAMService.prototype.searchUsers = function (params) {
|
|
4330
|
+
HoldReservationService.prototype.search = function (params) {
|
|
4194
4331
|
return __awaiter(this, void 0, void 0, function () {
|
|
4195
4332
|
var _this = this;
|
|
4196
4333
|
return __generator(this, function (_a) {
|
|
4197
4334
|
return [2 /*return*/, this.fetch({
|
|
4198
|
-
uri: '/
|
|
4335
|
+
uri: '/holdReservations',
|
|
4199
4336
|
method: 'GET',
|
|
4200
4337
|
qs: params,
|
|
4201
4338
|
expectedStatusCodes: [http_status_1.OK]
|
|
@@ -4215,73 +4352,14 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
4215
4352
|
});
|
|
4216
4353
|
});
|
|
4217
4354
|
};
|
|
4218
|
-
|
|
4219
|
-
* ユーザー取得
|
|
4220
|
-
*/
|
|
4221
|
-
IAMService.prototype.findUserById = function (params) {
|
|
4222
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
4223
|
-
var _this = this;
|
|
4224
|
-
return __generator(this, function (_a) {
|
|
4225
|
-
return [2 /*return*/, this.fetch({
|
|
4226
|
-
uri: "/iam/users/" + params.id,
|
|
4227
|
-
method: 'GET',
|
|
4228
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
4229
|
-
})
|
|
4230
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4231
|
-
return [2 /*return*/, response.json()];
|
|
4232
|
-
}); }); })];
|
|
4233
|
-
});
|
|
4234
|
-
});
|
|
4235
|
-
};
|
|
4236
|
-
/**
|
|
4237
|
-
* プロフィール検索
|
|
4238
|
-
*/
|
|
4239
|
-
IAMService.prototype.getUserProfile = function (params) {
|
|
4240
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
4241
|
-
var _this = this;
|
|
4242
|
-
return __generator(this, function (_a) {
|
|
4243
|
-
return [2 /*return*/, this.fetch({
|
|
4244
|
-
uri: "/iam/users/" + params.id + "/profile",
|
|
4245
|
-
method: 'GET',
|
|
4246
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
4247
|
-
})
|
|
4248
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4249
|
-
return [2 /*return*/, response.json()];
|
|
4250
|
-
}); }); })];
|
|
4251
|
-
});
|
|
4252
|
-
});
|
|
4253
|
-
};
|
|
4254
|
-
/**
|
|
4255
|
-
* プロフィール更新
|
|
4256
|
-
*/
|
|
4257
|
-
IAMService.prototype.updateUserProfile = function (params) {
|
|
4258
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
4259
|
-
return __generator(this, function (_a) {
|
|
4260
|
-
switch (_a.label) {
|
|
4261
|
-
case 0: return [4 /*yield*/, this.fetch({
|
|
4262
|
-
uri: "/iam/users/" + params.id + "/profile",
|
|
4263
|
-
method: 'PATCH',
|
|
4264
|
-
body: params,
|
|
4265
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
4266
|
-
})];
|
|
4267
|
-
case 1:
|
|
4268
|
-
_a.sent();
|
|
4269
|
-
return [2 /*return*/];
|
|
4270
|
-
}
|
|
4271
|
-
});
|
|
4272
|
-
});
|
|
4273
|
-
};
|
|
4274
|
-
/**
|
|
4275
|
-
* IAMロール検索
|
|
4276
|
-
*/
|
|
4277
|
-
IAMService.prototype.searchRoles = function (params) {
|
|
4355
|
+
HoldReservationService.prototype.aggregate = function (params) {
|
|
4278
4356
|
return __awaiter(this, void 0, void 0, function () {
|
|
4279
4357
|
var _this = this;
|
|
4280
4358
|
return __generator(this, function (_a) {
|
|
4281
4359
|
return [2 /*return*/, this.fetch({
|
|
4282
|
-
uri: '/
|
|
4360
|
+
uri: '/holdReservations',
|
|
4283
4361
|
method: 'GET',
|
|
4284
|
-
qs: params,
|
|
4362
|
+
qs: __assign(__assign({}, params), { aggregate: true }),
|
|
4285
4363
|
expectedStatusCodes: [http_status_1.OK]
|
|
4286
4364
|
})
|
|
4287
4365
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -4299,29 +4377,224 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
4299
4377
|
});
|
|
4300
4378
|
});
|
|
4301
4379
|
};
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
})
|
|
4315
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4316
|
-
return [2 /*return*/, response.json()];
|
|
4317
|
-
}); }); })];
|
|
4318
|
-
});
|
|
4319
|
-
});
|
|
4380
|
+
return HoldReservationService;
|
|
4381
|
+
}(service_1.Service));
|
|
4382
|
+
exports.HoldReservationService = HoldReservationService;
|
|
4383
|
+
|
|
4384
|
+
},{"../service":63,"http-status":290}],28:[function(require,module,exports){
|
|
4385
|
+
"use strict";
|
|
4386
|
+
var __extends = (this && this.__extends) || (function () {
|
|
4387
|
+
var extendStatics = function (d, b) {
|
|
4388
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4389
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
4390
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
4391
|
+
return extendStatics(d, b);
|
|
4320
4392
|
};
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4393
|
+
return function (d, b) {
|
|
4394
|
+
if (typeof b !== "function" && b !== null)
|
|
4395
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
4396
|
+
extendStatics(d, b);
|
|
4397
|
+
function __() { this.constructor = d; }
|
|
4398
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4399
|
+
};
|
|
4400
|
+
})();
|
|
4401
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
4402
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4403
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4404
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
4405
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
4406
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
4407
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
4408
|
+
});
|
|
4409
|
+
};
|
|
4410
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
4411
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
4412
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
4413
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
4414
|
+
function step(op) {
|
|
4415
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
4416
|
+
while (_) try {
|
|
4417
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
4418
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
4419
|
+
switch (op[0]) {
|
|
4420
|
+
case 0: case 1: t = op; break;
|
|
4421
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
4422
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
4423
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
4424
|
+
default:
|
|
4425
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
4426
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
4427
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
4428
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
4429
|
+
if (t[2]) _.ops.pop();
|
|
4430
|
+
_.trys.pop(); continue;
|
|
4431
|
+
}
|
|
4432
|
+
op = body.call(thisArg, _);
|
|
4433
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
4434
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
4435
|
+
}
|
|
4436
|
+
};
|
|
4437
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
4438
|
+
var t = {};
|
|
4439
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4440
|
+
t[p] = s[p];
|
|
4441
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
4442
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
4443
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
4444
|
+
t[p[i]] = s[p[i]];
|
|
4445
|
+
}
|
|
4446
|
+
return t;
|
|
4447
|
+
};
|
|
4448
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4449
|
+
exports.IAMService = void 0;
|
|
4450
|
+
var http_status_1 = require("http-status");
|
|
4451
|
+
var service_1 = require("../service");
|
|
4452
|
+
/**
|
|
4453
|
+
* IAMサービス
|
|
4454
|
+
*/
|
|
4455
|
+
var IAMService = /** @class */ (function (_super) {
|
|
4456
|
+
__extends(IAMService, _super);
|
|
4457
|
+
function IAMService() {
|
|
4458
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4459
|
+
}
|
|
4460
|
+
/**
|
|
4461
|
+
* ユーザー検索
|
|
4462
|
+
*/
|
|
4463
|
+
IAMService.prototype.searchUsers = function (params) {
|
|
4464
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4465
|
+
var _this = this;
|
|
4466
|
+
return __generator(this, function (_a) {
|
|
4467
|
+
return [2 /*return*/, this.fetch({
|
|
4468
|
+
uri: '/iam/users',
|
|
4469
|
+
method: 'GET',
|
|
4470
|
+
qs: params,
|
|
4471
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
4472
|
+
})
|
|
4473
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
4474
|
+
var _a;
|
|
4475
|
+
return __generator(this, function (_b) {
|
|
4476
|
+
switch (_b.label) {
|
|
4477
|
+
case 0:
|
|
4478
|
+
_a = {};
|
|
4479
|
+
return [4 /*yield*/, response.json()];
|
|
4480
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
4481
|
+
_a)];
|
|
4482
|
+
}
|
|
4483
|
+
});
|
|
4484
|
+
}); })];
|
|
4485
|
+
});
|
|
4486
|
+
});
|
|
4487
|
+
};
|
|
4488
|
+
/**
|
|
4489
|
+
* ユーザー取得
|
|
4490
|
+
*/
|
|
4491
|
+
IAMService.prototype.findUserById = function (params) {
|
|
4492
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4493
|
+
var _this = this;
|
|
4494
|
+
return __generator(this, function (_a) {
|
|
4495
|
+
return [2 /*return*/, this.fetch({
|
|
4496
|
+
uri: "/iam/users/" + params.id,
|
|
4497
|
+
method: 'GET',
|
|
4498
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
4499
|
+
})
|
|
4500
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4501
|
+
return [2 /*return*/, response.json()];
|
|
4502
|
+
}); }); })];
|
|
4503
|
+
});
|
|
4504
|
+
});
|
|
4505
|
+
};
|
|
4506
|
+
/**
|
|
4507
|
+
* プロフィール検索
|
|
4508
|
+
*/
|
|
4509
|
+
IAMService.prototype.getUserProfile = function (params) {
|
|
4510
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4511
|
+
var _this = this;
|
|
4512
|
+
return __generator(this, function (_a) {
|
|
4513
|
+
return [2 /*return*/, this.fetch({
|
|
4514
|
+
uri: "/iam/users/" + params.id + "/profile",
|
|
4515
|
+
method: 'GET',
|
|
4516
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
4517
|
+
})
|
|
4518
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4519
|
+
return [2 /*return*/, response.json()];
|
|
4520
|
+
}); }); })];
|
|
4521
|
+
});
|
|
4522
|
+
});
|
|
4523
|
+
};
|
|
4524
|
+
/**
|
|
4525
|
+
* プロフィール更新
|
|
4526
|
+
*/
|
|
4527
|
+
IAMService.prototype.updateUserProfile = function (params) {
|
|
4528
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4529
|
+
var id, query;
|
|
4530
|
+
return __generator(this, function (_a) {
|
|
4531
|
+
switch (_a.label) {
|
|
4532
|
+
case 0:
|
|
4533
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
4534
|
+
return [4 /*yield*/, this.fetch({
|
|
4535
|
+
uri: "/iam/users/" + params.id + "/profile",
|
|
4536
|
+
method: 'PATCH',
|
|
4537
|
+
body: query,
|
|
4538
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
4539
|
+
})];
|
|
4540
|
+
case 1:
|
|
4541
|
+
_a.sent();
|
|
4542
|
+
return [2 /*return*/];
|
|
4543
|
+
}
|
|
4544
|
+
});
|
|
4545
|
+
});
|
|
4546
|
+
};
|
|
4547
|
+
/**
|
|
4548
|
+
* IAMロール検索
|
|
4549
|
+
*/
|
|
4550
|
+
IAMService.prototype.searchRoles = function (params) {
|
|
4551
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4552
|
+
var _this = this;
|
|
4553
|
+
return __generator(this, function (_a) {
|
|
4554
|
+
return [2 /*return*/, this.fetch({
|
|
4555
|
+
uri: '/iam/roles',
|
|
4556
|
+
method: 'GET',
|
|
4557
|
+
qs: params,
|
|
4558
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
4559
|
+
})
|
|
4560
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
4561
|
+
var _a;
|
|
4562
|
+
return __generator(this, function (_b) {
|
|
4563
|
+
switch (_b.label) {
|
|
4564
|
+
case 0:
|
|
4565
|
+
_a = {};
|
|
4566
|
+
return [4 /*yield*/, response.json()];
|
|
4567
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
4568
|
+
_a)];
|
|
4569
|
+
}
|
|
4570
|
+
});
|
|
4571
|
+
}); })];
|
|
4572
|
+
});
|
|
4573
|
+
});
|
|
4574
|
+
};
|
|
4575
|
+
/**
|
|
4576
|
+
* IAMメンバー作成
|
|
4577
|
+
*/
|
|
4578
|
+
IAMService.prototype.createMember = function (params) {
|
|
4579
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4580
|
+
var _this = this;
|
|
4581
|
+
return __generator(this, function (_a) {
|
|
4582
|
+
return [2 /*return*/, this.fetch({
|
|
4583
|
+
uri: '/iam/members',
|
|
4584
|
+
method: 'POST',
|
|
4585
|
+
body: params,
|
|
4586
|
+
expectedStatusCodes: [http_status_1.CREATED]
|
|
4587
|
+
})
|
|
4588
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4589
|
+
return [2 /*return*/, response.json()];
|
|
4590
|
+
}); }); })];
|
|
4591
|
+
});
|
|
4592
|
+
});
|
|
4593
|
+
};
|
|
4594
|
+
/**
|
|
4595
|
+
* IAMメンバー検索
|
|
4596
|
+
*/
|
|
4597
|
+
IAMService.prototype.searchMembers = function (params) {
|
|
4325
4598
|
return __awaiter(this, void 0, void 0, function () {
|
|
4326
4599
|
var _this = this;
|
|
4327
4600
|
return __generator(this, function (_a) {
|
|
@@ -4445,7 +4718,7 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
4445
4718
|
}(service_1.Service));
|
|
4446
4719
|
exports.IAMService = IAMService;
|
|
4447
4720
|
|
|
4448
|
-
},{"../service":
|
|
4721
|
+
},{"../service":63,"http-status":290}],29:[function(require,module,exports){
|
|
4449
4722
|
"use strict";
|
|
4450
4723
|
var __extends = (this && this.__extends) || (function () {
|
|
4451
4724
|
var extendStatics = function (d, b) {
|
|
@@ -4542,7 +4815,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
4542
4815
|
}(service_1.Service));
|
|
4543
4816
|
exports.MeService = MeService;
|
|
4544
4817
|
|
|
4545
|
-
},{"../service":
|
|
4818
|
+
},{"../service":63,"http-status":290}],30:[function(require,module,exports){
|
|
4546
4819
|
"use strict";
|
|
4547
4820
|
var __extends = (this && this.__extends) || (function () {
|
|
4548
4821
|
var extendStatics = function (d, b) {
|
|
@@ -4700,7 +4973,7 @@ var MerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
4700
4973
|
}(service_1.Service));
|
|
4701
4974
|
exports.MerchantReturnPolicyService = MerchantReturnPolicyService;
|
|
4702
4975
|
|
|
4703
|
-
},{"../service":
|
|
4976
|
+
},{"../service":63,"http-status":290}],31:[function(require,module,exports){
|
|
4704
4977
|
"use strict";
|
|
4705
4978
|
var __extends = (this && this.__extends) || (function () {
|
|
4706
4979
|
var extendStatics = function (d, b) {
|
|
@@ -4764,6 +5037,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
4764
5037
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
4765
5038
|
}
|
|
4766
5039
|
};
|
|
5040
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
5041
|
+
var t = {};
|
|
5042
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5043
|
+
t[p] = s[p];
|
|
5044
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
5045
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
5046
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
5047
|
+
t[p[i]] = s[p[i]];
|
|
5048
|
+
}
|
|
5049
|
+
return t;
|
|
5050
|
+
};
|
|
4767
5051
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4768
5052
|
exports.OfferService = exports.FlgMember = void 0;
|
|
4769
5053
|
var http_status_1 = require("http-status");
|
|
@@ -4933,14 +5217,17 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
4933
5217
|
*/
|
|
4934
5218
|
OfferService.prototype.voidAuthorization = function (params) {
|
|
4935
5219
|
return __awaiter(this, void 0, void 0, function () {
|
|
5220
|
+
var id, object, body;
|
|
4936
5221
|
return __generator(this, function (_a) {
|
|
4937
5222
|
switch (_a.label) {
|
|
4938
|
-
case 0:
|
|
4939
|
-
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
5223
|
+
case 0:
|
|
5224
|
+
id = params.id, object = params.object, body = __rest(params, ["id", "object"]);
|
|
5225
|
+
return [4 /*yield*/, this.fetch({
|
|
5226
|
+
uri: "/offers/" + object.itemOffered.typeOf + "/authorize/" + id + "/void",
|
|
5227
|
+
method: 'PUT',
|
|
5228
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
5229
|
+
body: body
|
|
5230
|
+
})];
|
|
4944
5231
|
case 1:
|
|
4945
5232
|
_a.sent();
|
|
4946
5233
|
return [2 /*return*/];
|
|
@@ -4972,13 +5259,15 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
4972
5259
|
*/
|
|
4973
5260
|
OfferService.prototype.voidAuthorizationByCOA = function (params) {
|
|
4974
5261
|
return __awaiter(this, void 0, void 0, function () {
|
|
5262
|
+
var id, body;
|
|
4975
5263
|
var _this = this;
|
|
4976
5264
|
return __generator(this, function (_a) {
|
|
5265
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
4977
5266
|
return [2 /*return*/, this.fetch({
|
|
4978
|
-
uri: "/offers/" + factory.product.ProductType.EventService + "ByCOA/authorize/" +
|
|
5267
|
+
uri: "/offers/" + factory.product.ProductType.EventService + "ByCOA/authorize/" + id + "/void",
|
|
4979
5268
|
method: 'PUT',
|
|
4980
5269
|
expectedStatusCodes: [http_status_1.OK],
|
|
4981
|
-
body:
|
|
5270
|
+
body: body
|
|
4982
5271
|
})
|
|
4983
5272
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
4984
5273
|
return [2 /*return*/, response.json()];
|
|
@@ -4991,13 +5280,15 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
4991
5280
|
*/
|
|
4992
5281
|
OfferService.prototype.updateEventServiceByCOA = function (params) {
|
|
4993
5282
|
return __awaiter(this, void 0, void 0, function () {
|
|
5283
|
+
var id, body;
|
|
4994
5284
|
var _this = this;
|
|
4995
5285
|
return __generator(this, function (_a) {
|
|
5286
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
4996
5287
|
return [2 /*return*/, this.fetch({
|
|
4997
|
-
uri: "/offers/" + factory.product.ProductType.EventService + "ByCOA/authorize/" +
|
|
5288
|
+
uri: "/offers/" + factory.product.ProductType.EventService + "ByCOA/authorize/" + id,
|
|
4998
5289
|
method: 'PATCH',
|
|
4999
5290
|
expectedStatusCodes: [http_status_1.OK],
|
|
5000
|
-
body:
|
|
5291
|
+
body: body
|
|
5001
5292
|
})
|
|
5002
5293
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
5003
5294
|
return [2 /*return*/, response.json()];
|
|
@@ -5009,7 +5300,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
5009
5300
|
}(service_1.Service));
|
|
5010
5301
|
exports.OfferService = OfferService;
|
|
5011
5302
|
|
|
5012
|
-
},{"../factory":
|
|
5303
|
+
},{"../factory":58,"../service":63,"http-status":290}],32:[function(require,module,exports){
|
|
5013
5304
|
"use strict";
|
|
5014
5305
|
var __extends = (this && this.__extends) || (function () {
|
|
5015
5306
|
var extendStatics = function (d, b) {
|
|
@@ -5062,6 +5353,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
5062
5353
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
5063
5354
|
}
|
|
5064
5355
|
};
|
|
5356
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
5357
|
+
var t = {};
|
|
5358
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5359
|
+
t[p] = s[p];
|
|
5360
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
5361
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
5362
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
5363
|
+
t[p[i]] = s[p[i]];
|
|
5364
|
+
}
|
|
5365
|
+
return t;
|
|
5366
|
+
};
|
|
5065
5367
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5066
5368
|
exports.OfferCatalogService = void 0;
|
|
5067
5369
|
var http_status_1 = require("http-status");
|
|
@@ -5097,9 +5399,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
5097
5399
|
* オファーカタログ検索
|
|
5098
5400
|
* レスポンス最適化(2023-02-28~)
|
|
5099
5401
|
*/
|
|
5100
|
-
OfferCatalogService.prototype.search = function (params
|
|
5101
|
-
// ): Promise<ISearchResult<factory.offerCatalog.IOfferCatalog[]>> {
|
|
5102
|
-
) {
|
|
5402
|
+
OfferCatalogService.prototype.search = function (params) {
|
|
5103
5403
|
return __awaiter(this, void 0, void 0, function () {
|
|
5104
5404
|
var _this = this;
|
|
5105
5405
|
return __generator(this, function (_a) {
|
|
@@ -5185,12 +5485,14 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
5185
5485
|
};
|
|
5186
5486
|
OfferCatalogService.prototype.searchItemListElement = function (params) {
|
|
5187
5487
|
return __awaiter(this, void 0, void 0, function () {
|
|
5488
|
+
var id, query;
|
|
5188
5489
|
var _this = this;
|
|
5189
5490
|
return __generator(this, function (_a) {
|
|
5491
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
5190
5492
|
return [2 /*return*/, this.fetch({
|
|
5191
|
-
uri: "/offerCatalogs/" + encodeURIComponent(String(
|
|
5493
|
+
uri: "/offerCatalogs/" + encodeURIComponent(String(id)) + "/itemListElement",
|
|
5192
5494
|
method: 'GET',
|
|
5193
|
-
qs:
|
|
5495
|
+
qs: query,
|
|
5194
5496
|
expectedStatusCodes: [http_status_1.OK]
|
|
5195
5497
|
})
|
|
5196
5498
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -5212,7 +5514,165 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
5212
5514
|
}(service_1.Service));
|
|
5213
5515
|
exports.OfferCatalogService = OfferCatalogService;
|
|
5214
5516
|
|
|
5215
|
-
},{"../service":
|
|
5517
|
+
},{"../service":63,"http-status":290}],33:[function(require,module,exports){
|
|
5518
|
+
"use strict";
|
|
5519
|
+
var __extends = (this && this.__extends) || (function () {
|
|
5520
|
+
var extendStatics = function (d, b) {
|
|
5521
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5522
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5523
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
5524
|
+
return extendStatics(d, b);
|
|
5525
|
+
};
|
|
5526
|
+
return function (d, b) {
|
|
5527
|
+
if (typeof b !== "function" && b !== null)
|
|
5528
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
5529
|
+
extendStatics(d, b);
|
|
5530
|
+
function __() { this.constructor = d; }
|
|
5531
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5532
|
+
};
|
|
5533
|
+
})();
|
|
5534
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
5535
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
5536
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5537
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5538
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
5539
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
5540
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
5541
|
+
});
|
|
5542
|
+
};
|
|
5543
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
5544
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
5545
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
5546
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
5547
|
+
function step(op) {
|
|
5548
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
5549
|
+
while (_) try {
|
|
5550
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
5551
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
5552
|
+
switch (op[0]) {
|
|
5553
|
+
case 0: case 1: t = op; break;
|
|
5554
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
5555
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
5556
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
5557
|
+
default:
|
|
5558
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
5559
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
5560
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
5561
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
5562
|
+
if (t[2]) _.ops.pop();
|
|
5563
|
+
_.trys.pop(); continue;
|
|
5564
|
+
}
|
|
5565
|
+
op = body.call(thisArg, _);
|
|
5566
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
5567
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
5568
|
+
}
|
|
5569
|
+
};
|
|
5570
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5571
|
+
exports.OfferItemConditionService = void 0;
|
|
5572
|
+
var http_status_1 = require("http-status");
|
|
5573
|
+
var service_1 = require("../service");
|
|
5574
|
+
/**
|
|
5575
|
+
* アイテムコンディションサービス
|
|
5576
|
+
*/
|
|
5577
|
+
var OfferItemConditionService = /** @class */ (function (_super) {
|
|
5578
|
+
__extends(OfferItemConditionService, _super);
|
|
5579
|
+
function OfferItemConditionService() {
|
|
5580
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
5581
|
+
}
|
|
5582
|
+
OfferItemConditionService.prototype.create = function (params) {
|
|
5583
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5584
|
+
var _this = this;
|
|
5585
|
+
return __generator(this, function (_a) {
|
|
5586
|
+
return [2 /*return*/, this.fetch({
|
|
5587
|
+
uri: '/offerItemConditions',
|
|
5588
|
+
method: 'POST',
|
|
5589
|
+
body: params,
|
|
5590
|
+
expectedStatusCodes: [http_status_1.CREATED]
|
|
5591
|
+
})
|
|
5592
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
5593
|
+
return [2 /*return*/, response.json()];
|
|
5594
|
+
}); }); })];
|
|
5595
|
+
});
|
|
5596
|
+
});
|
|
5597
|
+
};
|
|
5598
|
+
OfferItemConditionService.prototype.search = function (params) {
|
|
5599
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5600
|
+
var _this = this;
|
|
5601
|
+
return __generator(this, function (_a) {
|
|
5602
|
+
return [2 /*return*/, this.fetch({
|
|
5603
|
+
uri: '/offerItemConditions',
|
|
5604
|
+
method: 'GET',
|
|
5605
|
+
qs: params,
|
|
5606
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
5607
|
+
})
|
|
5608
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
5609
|
+
var _a;
|
|
5610
|
+
return __generator(this, function (_b) {
|
|
5611
|
+
switch (_b.label) {
|
|
5612
|
+
case 0:
|
|
5613
|
+
_a = {};
|
|
5614
|
+
return [4 /*yield*/, response.json()];
|
|
5615
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
5616
|
+
_a)];
|
|
5617
|
+
}
|
|
5618
|
+
});
|
|
5619
|
+
}); })];
|
|
5620
|
+
});
|
|
5621
|
+
});
|
|
5622
|
+
};
|
|
5623
|
+
OfferItemConditionService.prototype.findById = function (params) {
|
|
5624
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5625
|
+
var _this = this;
|
|
5626
|
+
return __generator(this, function (_a) {
|
|
5627
|
+
return [2 /*return*/, this.fetch({
|
|
5628
|
+
uri: "/offerItemConditions/" + encodeURIComponent(String(params.id)),
|
|
5629
|
+
method: 'GET',
|
|
5630
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
5631
|
+
})
|
|
5632
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
5633
|
+
return [2 /*return*/, response.json()];
|
|
5634
|
+
}); }); })];
|
|
5635
|
+
});
|
|
5636
|
+
});
|
|
5637
|
+
};
|
|
5638
|
+
OfferItemConditionService.prototype.update = function (params) {
|
|
5639
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5640
|
+
return __generator(this, function (_a) {
|
|
5641
|
+
switch (_a.label) {
|
|
5642
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
5643
|
+
uri: "/offerItemConditions/" + encodeURIComponent(String(params.id)),
|
|
5644
|
+
method: 'PUT',
|
|
5645
|
+
body: params,
|
|
5646
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
5647
|
+
})];
|
|
5648
|
+
case 1:
|
|
5649
|
+
_a.sent();
|
|
5650
|
+
return [2 /*return*/];
|
|
5651
|
+
}
|
|
5652
|
+
});
|
|
5653
|
+
});
|
|
5654
|
+
};
|
|
5655
|
+
OfferItemConditionService.prototype.deleteById = function (params) {
|
|
5656
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5657
|
+
return __generator(this, function (_a) {
|
|
5658
|
+
switch (_a.label) {
|
|
5659
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
5660
|
+
uri: "/offerItemConditions/" + encodeURIComponent(String(params.id)),
|
|
5661
|
+
method: 'DELETE',
|
|
5662
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
5663
|
+
})];
|
|
5664
|
+
case 1:
|
|
5665
|
+
_a.sent();
|
|
5666
|
+
return [2 /*return*/];
|
|
5667
|
+
}
|
|
5668
|
+
});
|
|
5669
|
+
});
|
|
5670
|
+
};
|
|
5671
|
+
return OfferItemConditionService;
|
|
5672
|
+
}(service_1.Service));
|
|
5673
|
+
exports.OfferItemConditionService = OfferItemConditionService;
|
|
5674
|
+
|
|
5675
|
+
},{"../service":63,"http-status":290}],34:[function(require,module,exports){
|
|
5216
5676
|
"use strict";
|
|
5217
5677
|
var __extends = (this && this.__extends) || (function () {
|
|
5218
5678
|
var extendStatics = function (d, b) {
|
|
@@ -5265,6 +5725,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
5265
5725
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
5266
5726
|
}
|
|
5267
5727
|
};
|
|
5728
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
5729
|
+
var t = {};
|
|
5730
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5731
|
+
t[p] = s[p];
|
|
5732
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
5733
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
5734
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
5735
|
+
t[p[i]] = s[p[i]];
|
|
5736
|
+
}
|
|
5737
|
+
return t;
|
|
5738
|
+
};
|
|
5268
5739
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5269
5740
|
exports.OrderService = void 0;
|
|
5270
5741
|
var http_status_1 = require("http-status");
|
|
@@ -5409,7 +5880,9 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
5409
5880
|
case 0: return [4 /*yield*/, this.fetch({
|
|
5410
5881
|
uri: "/orders/" + params.orderNumber + "/" + factory.orderStatus.OrderDelivered,
|
|
5411
5882
|
method: 'PUT',
|
|
5412
|
-
body:
|
|
5883
|
+
body: {
|
|
5884
|
+
confirmationNumber: params.confirmationNumber
|
|
5885
|
+
},
|
|
5413
5886
|
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
5414
5887
|
})];
|
|
5415
5888
|
case 1:
|
|
@@ -5424,14 +5897,17 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
5424
5897
|
*/
|
|
5425
5898
|
OrderService.prototype.returnOrder = function (params) {
|
|
5426
5899
|
return __awaiter(this, void 0, void 0, function () {
|
|
5900
|
+
var dateReturned, orderNumber, returner;
|
|
5427
5901
|
return __generator(this, function (_a) {
|
|
5428
5902
|
switch (_a.label) {
|
|
5429
|
-
case 0:
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5903
|
+
case 0:
|
|
5904
|
+
dateReturned = params.dateReturned, orderNumber = params.orderNumber, returner = params.returner;
|
|
5905
|
+
return [4 /*yield*/, this.fetch({
|
|
5906
|
+
uri: "/orders/" + orderNumber + "/" + factory.orderStatus.OrderReturned,
|
|
5907
|
+
method: 'PUT',
|
|
5908
|
+
body: { dateReturned: dateReturned, returner: returner },
|
|
5909
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
5910
|
+
})];
|
|
5435
5911
|
case 1:
|
|
5436
5912
|
_a.sent();
|
|
5437
5913
|
return [2 /*return*/];
|
|
@@ -5444,14 +5920,17 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
5444
5920
|
*/
|
|
5445
5921
|
OrderService.prototype.updateChangeableAttributes = function (params) {
|
|
5446
5922
|
return __awaiter(this, void 0, void 0, function () {
|
|
5923
|
+
var orderNumber, body;
|
|
5447
5924
|
return __generator(this, function (_a) {
|
|
5448
5925
|
switch (_a.label) {
|
|
5449
|
-
case 0:
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5926
|
+
case 0:
|
|
5927
|
+
orderNumber = params.orderNumber, body = __rest(params, ["orderNumber"]);
|
|
5928
|
+
return [4 /*yield*/, this.fetch({
|
|
5929
|
+
uri: "/orders/" + orderNumber,
|
|
5930
|
+
method: 'PATCH',
|
|
5931
|
+
body: body,
|
|
5932
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
5933
|
+
})];
|
|
5455
5934
|
case 1:
|
|
5456
5935
|
_a.sent();
|
|
5457
5936
|
return [2 /*return*/];
|
|
@@ -5548,12 +6027,14 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
5548
6027
|
*/
|
|
5549
6028
|
OrderService.prototype.searchAcceptedOffersByConfirmationNumber = function (params) {
|
|
5550
6029
|
return __awaiter(this, void 0, void 0, function () {
|
|
6030
|
+
var orderNumber, body;
|
|
5551
6031
|
var _this = this;
|
|
5552
6032
|
return __generator(this, function (_a) {
|
|
6033
|
+
orderNumber = params.orderNumber, body = __rest(params, ["orderNumber"]);
|
|
5553
6034
|
return [2 /*return*/, this.fetch({
|
|
5554
|
-
uri: "/orders/" +
|
|
6035
|
+
uri: "/orders/" + orderNumber + "/acceptedOffersByConfirmationNumber",
|
|
5555
6036
|
method: 'POST',
|
|
5556
|
-
body:
|
|
6037
|
+
body: body,
|
|
5557
6038
|
expectedStatusCodes: [http_status_1.OK]
|
|
5558
6039
|
})
|
|
5559
6040
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -5605,99 +6086,11 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
5605
6086
|
}(service_1.Service));
|
|
5606
6087
|
exports.OrderService = OrderService;
|
|
5607
6088
|
|
|
5608
|
-
},{"../factory":
|
|
5609
|
-
"use strict";
|
|
5610
|
-
var __extends = (this && this.__extends) || (function () {
|
|
5611
|
-
var extendStatics = function (d, b) {
|
|
5612
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5613
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5614
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
5615
|
-
return extendStatics(d, b);
|
|
5616
|
-
};
|
|
5617
|
-
return function (d, b) {
|
|
5618
|
-
if (typeof b !== "function" && b !== null)
|
|
5619
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
5620
|
-
extendStatics(d, b);
|
|
5621
|
-
function __() { this.constructor = d; }
|
|
5622
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
5623
|
-
};
|
|
5624
|
-
})();
|
|
5625
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
5626
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
5627
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5628
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5629
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
5630
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
5631
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
5632
|
-
});
|
|
5633
|
-
};
|
|
5634
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
5635
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
5636
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
5637
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
5638
|
-
function step(op) {
|
|
5639
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
5640
|
-
while (_) try {
|
|
5641
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
5642
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
5643
|
-
switch (op[0]) {
|
|
5644
|
-
case 0: case 1: t = op; break;
|
|
5645
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
5646
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
5647
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
5648
|
-
default:
|
|
5649
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
5650
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
5651
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
5652
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
5653
|
-
if (t[2]) _.ops.pop();
|
|
5654
|
-
_.trys.pop(); continue;
|
|
5655
|
-
}
|
|
5656
|
-
op = body.call(thisArg, _);
|
|
5657
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
5658
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
5659
|
-
}
|
|
5660
|
-
};
|
|
5661
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5662
|
-
exports.OrderNumberService = void 0;
|
|
5663
|
-
var http_status_1 = require("http-status");
|
|
5664
|
-
var service_1 = require("../service");
|
|
5665
|
-
/**
|
|
5666
|
-
* 注文番号サービス
|
|
5667
|
-
*/
|
|
5668
|
-
var OrderNumberService = /** @class */ (function (_super) {
|
|
5669
|
-
__extends(OrderNumberService, _super);
|
|
5670
|
-
function OrderNumberService() {
|
|
5671
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
5672
|
-
}
|
|
5673
|
-
/**
|
|
5674
|
-
* 発行
|
|
5675
|
-
*/
|
|
5676
|
-
OrderNumberService.prototype.publish = function () {
|
|
5677
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
5678
|
-
var _this = this;
|
|
5679
|
-
return __generator(this, function (_a) {
|
|
5680
|
-
return [2 /*return*/, this.fetch({
|
|
5681
|
-
uri: '/orderNumbers',
|
|
5682
|
-
method: 'POST',
|
|
5683
|
-
body: {},
|
|
5684
|
-
expectedStatusCodes: [http_status_1.CREATED]
|
|
5685
|
-
})
|
|
5686
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
5687
|
-
return [2 /*return*/, response.json()];
|
|
5688
|
-
}); }); })];
|
|
5689
|
-
});
|
|
5690
|
-
});
|
|
5691
|
-
};
|
|
5692
|
-
return OrderNumberService;
|
|
5693
|
-
}(service_1.Service));
|
|
5694
|
-
exports.OrderNumberService = OrderNumberService;
|
|
5695
|
-
|
|
5696
|
-
},{"../service":62,"http-status":282}],34:[function(require,module,exports){
|
|
6089
|
+
},{"../factory":58,"../service":63,"http-status":290}],35:[function(require,module,exports){
|
|
5697
6090
|
"use strict";
|
|
5698
6091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5699
6092
|
|
|
5700
|
-
},{}],
|
|
6093
|
+
},{}],36:[function(require,module,exports){
|
|
5701
6094
|
"use strict";
|
|
5702
6095
|
var __extends = (this && this.__extends) || (function () {
|
|
5703
6096
|
var extendStatics = function (d, b) {
|
|
@@ -5794,7 +6187,7 @@ var OwnershipInfoService = /** @class */ (function (_super) {
|
|
|
5794
6187
|
}(service_1.Service));
|
|
5795
6188
|
exports.OwnershipInfoService = OwnershipInfoService;
|
|
5796
6189
|
|
|
5797
|
-
},{"../service":
|
|
6190
|
+
},{"../service":63,"http-status":290}],37:[function(require,module,exports){
|
|
5798
6191
|
"use strict";
|
|
5799
6192
|
var __extends = (this && this.__extends) || (function () {
|
|
5800
6193
|
var extendStatics = function (d, b) {
|
|
@@ -5847,6 +6240,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
5847
6240
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
5848
6241
|
}
|
|
5849
6242
|
};
|
|
6243
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
6244
|
+
var t = {};
|
|
6245
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
6246
|
+
t[p] = s[p];
|
|
6247
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6248
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
6249
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
6250
|
+
t[p[i]] = s[p[i]];
|
|
6251
|
+
}
|
|
6252
|
+
return t;
|
|
6253
|
+
};
|
|
5850
6254
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5851
6255
|
exports.PaymentService = void 0;
|
|
5852
6256
|
var http_status_1 = require("http-status");
|
|
@@ -5980,14 +6384,17 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
5980
6384
|
*/
|
|
5981
6385
|
PaymentService.prototype.voidAnyPayment = function (params) {
|
|
5982
6386
|
return __awaiter(this, void 0, void 0, function () {
|
|
6387
|
+
var id, body;
|
|
5983
6388
|
return __generator(this, function (_a) {
|
|
5984
6389
|
switch (_a.label) {
|
|
5985
|
-
case 0:
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
6390
|
+
case 0:
|
|
6391
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
6392
|
+
return [4 /*yield*/, this.fetch({
|
|
6393
|
+
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.FaceToFace + "/authorize/" + id + "/void",
|
|
6394
|
+
method: 'PUT',
|
|
6395
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
6396
|
+
body: body
|
|
6397
|
+
})];
|
|
5991
6398
|
case 1:
|
|
5992
6399
|
_a.sent();
|
|
5993
6400
|
return [2 /*return*/];
|
|
@@ -6000,14 +6407,17 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
6000
6407
|
*/
|
|
6001
6408
|
PaymentService.prototype.voidTransaction = function (params) {
|
|
6002
6409
|
return __awaiter(this, void 0, void 0, function () {
|
|
6410
|
+
var id, object, body;
|
|
6003
6411
|
return __generator(this, function (_a) {
|
|
6004
6412
|
switch (_a.label) {
|
|
6005
|
-
case 0:
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6413
|
+
case 0:
|
|
6414
|
+
id = params.id, object = params.object, body = __rest(params, ["id", "object"]);
|
|
6415
|
+
return [4 /*yield*/, this.fetch({
|
|
6416
|
+
uri: "/payment/" + object.typeOf + "/authorize/" + id + "/void",
|
|
6417
|
+
method: 'PUT',
|
|
6418
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
6419
|
+
body: body
|
|
6420
|
+
})];
|
|
6011
6421
|
case 1:
|
|
6012
6422
|
_a.sent();
|
|
6013
6423
|
return [2 /*return*/];
|
|
@@ -6019,9 +6429,9 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
6019
6429
|
}(service_1.Service));
|
|
6020
6430
|
exports.PaymentService = PaymentService;
|
|
6021
6431
|
|
|
6022
|
-
},{"../factory":
|
|
6023
|
-
arguments[4][
|
|
6024
|
-
},{"dup":
|
|
6432
|
+
},{"../factory":58,"../service":63,"http-status":290}],38:[function(require,module,exports){
|
|
6433
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
6434
|
+
},{"dup":35}],39:[function(require,module,exports){
|
|
6025
6435
|
"use strict";
|
|
6026
6436
|
var __extends = (this && this.__extends) || (function () {
|
|
6027
6437
|
var extendStatics = function (d, b) {
|
|
@@ -6177,7 +6587,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
6177
6587
|
}(service_1.Service));
|
|
6178
6588
|
exports.PermitService = PermitService;
|
|
6179
6589
|
|
|
6180
|
-
},{"../service":
|
|
6590
|
+
},{"../service":63,"http-status":290}],40:[function(require,module,exports){
|
|
6181
6591
|
"use strict";
|
|
6182
6592
|
var __extends = (this && this.__extends) || (function () {
|
|
6183
6593
|
var extendStatics = function (d, b) {
|
|
@@ -6413,7 +6823,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
6413
6823
|
}(service_1.Service));
|
|
6414
6824
|
exports.PersonService = PersonService;
|
|
6415
6825
|
|
|
6416
|
-
},{"../service":
|
|
6826
|
+
},{"../service":63,"http-status":290}],41:[function(require,module,exports){
|
|
6417
6827
|
"use strict";
|
|
6418
6828
|
var __extends = (this && this.__extends) || (function () {
|
|
6419
6829
|
var extendStatics = function (d, b) {
|
|
@@ -6466,6 +6876,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
6466
6876
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
6467
6877
|
}
|
|
6468
6878
|
};
|
|
6879
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
6880
|
+
var t = {};
|
|
6881
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
6882
|
+
t[p] = s[p];
|
|
6883
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6884
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
6885
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
6886
|
+
t[p[i]] = s[p[i]];
|
|
6887
|
+
}
|
|
6888
|
+
return t;
|
|
6889
|
+
};
|
|
6469
6890
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6470
6891
|
exports.PersonOwnershipInfoService = void 0;
|
|
6471
6892
|
var http_status_1 = require("http-status");
|
|
@@ -6609,8 +7030,8 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
6609
7030
|
return [2 /*return*/, this.fetch({
|
|
6610
7031
|
uri: "/people/" + id + "/ownershipInfos/" + params.ownershipInfoId + "/authorize",
|
|
6611
7032
|
method: 'POST',
|
|
6612
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
6613
|
-
body: params
|
|
7033
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
7034
|
+
// body: params
|
|
6614
7035
|
})
|
|
6615
7036
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
6616
7037
|
return [2 /*return*/, response.json()];
|
|
@@ -6623,14 +7044,15 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
6623
7044
|
*/
|
|
6624
7045
|
PersonOwnershipInfoService.prototype.searchPaymentCardMoneyTransferActions = function (params) {
|
|
6625
7046
|
return __awaiter(this, void 0, void 0, function () {
|
|
6626
|
-
var id;
|
|
7047
|
+
var id, ownershipInfoId, query, personId;
|
|
6627
7048
|
var _this = this;
|
|
6628
7049
|
return __generator(this, function (_a) {
|
|
6629
|
-
id =
|
|
7050
|
+
id = params.id, ownershipInfoId = params.ownershipInfoId, query = __rest(params, ["id", "ownershipInfoId"]);
|
|
7051
|
+
personId = (typeof id === 'string') ? id : 'me';
|
|
6630
7052
|
return [2 /*return*/, this.fetch({
|
|
6631
|
-
uri: "/people/" +
|
|
7053
|
+
uri: "/people/" + personId + "/ownershipInfos/" + ownershipInfoId + "/actions/moneyTransfer",
|
|
6632
7054
|
method: 'GET',
|
|
6633
|
-
qs:
|
|
7055
|
+
qs: query,
|
|
6634
7056
|
expectedStatusCodes: [http_status_1.OK]
|
|
6635
7057
|
})
|
|
6636
7058
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -6652,7 +7074,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
6652
7074
|
}(service_1.Service));
|
|
6653
7075
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
6654
7076
|
|
|
6655
|
-
},{"../../service":
|
|
7077
|
+
},{"../../service":63,"http-status":290}],42:[function(require,module,exports){
|
|
6656
7078
|
"use strict";
|
|
6657
7079
|
var __extends = (this && this.__extends) || (function () {
|
|
6658
7080
|
var extendStatics = function (d, b) {
|
|
@@ -7155,7 +7577,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
7155
7577
|
}(service_1.Service));
|
|
7156
7578
|
exports.PlaceService = PlaceService;
|
|
7157
7579
|
|
|
7158
|
-
},{"../factory":
|
|
7580
|
+
},{"../factory":58,"../service":63,"http-status":290}],43:[function(require,module,exports){
|
|
7159
7581
|
"use strict";
|
|
7160
7582
|
var __extends = (this && this.__extends) || (function () {
|
|
7161
7583
|
var extendStatics = function (d, b) {
|
|
@@ -7319,7 +7741,7 @@ var PriceSpecificationService = /** @class */ (function (_super) {
|
|
|
7319
7741
|
}(service_1.Service));
|
|
7320
7742
|
exports.PriceSpecificationService = PriceSpecificationService;
|
|
7321
7743
|
|
|
7322
|
-
},{"../service":
|
|
7744
|
+
},{"../service":63,"http-status":290}],44:[function(require,module,exports){
|
|
7323
7745
|
"use strict";
|
|
7324
7746
|
var __extends = (this && this.__extends) || (function () {
|
|
7325
7747
|
var extendStatics = function (d, b) {
|
|
@@ -7372,6 +7794,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
7372
7794
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
7373
7795
|
}
|
|
7374
7796
|
};
|
|
7797
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
7798
|
+
var t = {};
|
|
7799
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
7800
|
+
t[p] = s[p];
|
|
7801
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7802
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7803
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
7804
|
+
t[p[i]] = s[p[i]];
|
|
7805
|
+
}
|
|
7806
|
+
return t;
|
|
7807
|
+
};
|
|
7375
7808
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7376
7809
|
exports.ProductService = void 0;
|
|
7377
7810
|
var http_status_1 = require("http-status");
|
|
@@ -7453,12 +7886,15 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
7453
7886
|
};
|
|
7454
7887
|
ProductService.prototype.findById = function (params) {
|
|
7455
7888
|
return __awaiter(this, void 0, void 0, function () {
|
|
7889
|
+
var id, query;
|
|
7456
7890
|
var _this = this;
|
|
7457
7891
|
return __generator(this, function (_a) {
|
|
7892
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
7458
7893
|
return [2 /*return*/, this.fetch({
|
|
7459
|
-
uri: "/products/" + encodeURIComponent(String(
|
|
7894
|
+
uri: "/products/" + encodeURIComponent(String(id)),
|
|
7460
7895
|
method: 'GET',
|
|
7461
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
7896
|
+
expectedStatusCodes: [http_status_1.OK],
|
|
7897
|
+
qs: query
|
|
7462
7898
|
})
|
|
7463
7899
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
7464
7900
|
return [2 /*return*/, response.json()];
|
|
@@ -7504,12 +7940,14 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
7504
7940
|
*/
|
|
7505
7941
|
ProductService.prototype.searchOffers = function (params) {
|
|
7506
7942
|
return __awaiter(this, void 0, void 0, function () {
|
|
7943
|
+
var id, query;
|
|
7507
7944
|
var _this = this;
|
|
7508
7945
|
return __generator(this, function (_a) {
|
|
7946
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
7509
7947
|
return [2 /*return*/, this.fetch({
|
|
7510
|
-
uri: "/products/" + encodeURIComponent(String(
|
|
7948
|
+
uri: "/products/" + encodeURIComponent(String(id)) + "/offers",
|
|
7511
7949
|
method: 'GET',
|
|
7512
|
-
qs:
|
|
7950
|
+
qs: query,
|
|
7513
7951
|
expectedStatusCodes: [http_status_1.OK]
|
|
7514
7952
|
})
|
|
7515
7953
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -7522,7 +7960,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
7522
7960
|
}(service_1.Service));
|
|
7523
7961
|
exports.ProductService = ProductService;
|
|
7524
7962
|
|
|
7525
|
-
},{"../service":
|
|
7963
|
+
},{"../service":63,"http-status":290}],45:[function(require,module,exports){
|
|
7526
7964
|
"use strict";
|
|
7527
7965
|
var __extends = (this && this.__extends) || (function () {
|
|
7528
7966
|
var extendStatics = function (d, b) {
|
|
@@ -7575,6 +8013,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
7575
8013
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
7576
8014
|
}
|
|
7577
8015
|
};
|
|
8016
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
8017
|
+
var t = {};
|
|
8018
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
8019
|
+
t[p] = s[p];
|
|
8020
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
8021
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8022
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8023
|
+
t[p[i]] = s[p[i]];
|
|
8024
|
+
}
|
|
8025
|
+
return t;
|
|
8026
|
+
};
|
|
7578
8027
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7579
8028
|
exports.ProjectService = void 0;
|
|
7580
8029
|
var http_status_1 = require("http-status");
|
|
@@ -7639,12 +8088,14 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
7639
8088
|
*/
|
|
7640
8089
|
ProjectService.prototype.findById = function (params) {
|
|
7641
8090
|
return __awaiter(this, void 0, void 0, function () {
|
|
8091
|
+
var id, query;
|
|
7642
8092
|
var _this = this;
|
|
7643
8093
|
return __generator(this, function (_a) {
|
|
8094
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
7644
8095
|
return [2 /*return*/, this.fetch({
|
|
7645
|
-
uri: "/projects/" +
|
|
8096
|
+
uri: "/projects/" + id,
|
|
7646
8097
|
method: 'GET',
|
|
7647
|
-
qs:
|
|
8098
|
+
qs: query,
|
|
7648
8099
|
expectedStatusCodes: [http_status_1.OK]
|
|
7649
8100
|
})
|
|
7650
8101
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -7658,14 +8109,17 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
7658
8109
|
*/
|
|
7659
8110
|
ProjectService.prototype.update = function (params) {
|
|
7660
8111
|
return __awaiter(this, void 0, void 0, function () {
|
|
8112
|
+
var id, body;
|
|
7661
8113
|
return __generator(this, function (_a) {
|
|
7662
8114
|
switch (_a.label) {
|
|
7663
|
-
case 0:
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
8115
|
+
case 0:
|
|
8116
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
8117
|
+
return [4 /*yield*/, this.fetch({
|
|
8118
|
+
uri: "/projects/" + id,
|
|
8119
|
+
method: 'PATCH',
|
|
8120
|
+
body: body,
|
|
8121
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8122
|
+
})];
|
|
7669
8123
|
case 1:
|
|
7670
8124
|
_a.sent();
|
|
7671
8125
|
return [2 /*return*/];
|
|
@@ -7746,7 +8200,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
7746
8200
|
}(service_1.Service));
|
|
7747
8201
|
exports.ProjectService = ProjectService;
|
|
7748
8202
|
|
|
7749
|
-
},{"../service":
|
|
8203
|
+
},{"../service":63,"http-status":290}],46:[function(require,module,exports){
|
|
7750
8204
|
"use strict";
|
|
7751
8205
|
var __extends = (this && this.__extends) || (function () {
|
|
7752
8206
|
var extendStatics = function (d, b) {
|
|
@@ -7842,22 +8296,17 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
7842
8296
|
/**
|
|
7843
8297
|
* 予約取得
|
|
7844
8298
|
*/
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
return [2 /*return*/, response.json()];
|
|
7857
|
-
}); }); })];
|
|
7858
|
-
});
|
|
7859
|
-
});
|
|
7860
|
-
};
|
|
8299
|
+
// public async findById<T extends factory.reservationType>(params: {
|
|
8300
|
+
// id: string;
|
|
8301
|
+
// }): Promise<factory.reservation.IReservation<T>> {
|
|
8302
|
+
// return this.fetch({
|
|
8303
|
+
// uri: `/reservations/${encodeURIComponent(String(params.id))}`,
|
|
8304
|
+
// method: 'GET',
|
|
8305
|
+
// // qs: params,
|
|
8306
|
+
// expectedStatusCodes: [OK]
|
|
8307
|
+
// })
|
|
8308
|
+
// .then(async (response) => response.json());
|
|
8309
|
+
// }
|
|
7861
8310
|
/**
|
|
7862
8311
|
* 予約部分更新
|
|
7863
8312
|
*/
|
|
@@ -7938,9 +8387,9 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
7938
8387
|
}(service_1.Service));
|
|
7939
8388
|
exports.ReservationService = ReservationService;
|
|
7940
8389
|
|
|
7941
|
-
},{"../service":
|
|
7942
|
-
arguments[4][
|
|
7943
|
-
},{"dup":
|
|
8390
|
+
},{"../service":63,"http-status":290}],47:[function(require,module,exports){
|
|
8391
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
8392
|
+
},{"dup":35}],48:[function(require,module,exports){
|
|
7944
8393
|
"use strict";
|
|
7945
8394
|
var __extends = (this && this.__extends) || (function () {
|
|
7946
8395
|
var extendStatics = function (d, b) {
|
|
@@ -7993,6 +8442,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
7993
8442
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
7994
8443
|
}
|
|
7995
8444
|
};
|
|
8445
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
8446
|
+
var t = {};
|
|
8447
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
8448
|
+
t[p] = s[p];
|
|
8449
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
8450
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8451
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8452
|
+
t[p[i]] = s[p[i]];
|
|
8453
|
+
}
|
|
8454
|
+
return t;
|
|
8455
|
+
};
|
|
7996
8456
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7997
8457
|
exports.SellerService = void 0;
|
|
7998
8458
|
var http_status_1 = require("http-status");
|
|
@@ -8029,31 +8489,157 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
8029
8489
|
*/
|
|
8030
8490
|
SellerService.prototype.findById = function (params) {
|
|
8031
8491
|
return __awaiter(this, void 0, void 0, function () {
|
|
8492
|
+
var id, query;
|
|
8032
8493
|
var _this = this;
|
|
8033
8494
|
return __generator(this, function (_a) {
|
|
8495
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
8034
8496
|
return [2 /*return*/, this.fetch({
|
|
8035
|
-
uri: "/sellers/" +
|
|
8497
|
+
uri: "/sellers/" + id,
|
|
8498
|
+
method: 'GET',
|
|
8499
|
+
qs: query,
|
|
8500
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
8501
|
+
})
|
|
8502
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
8503
|
+
return [2 /*return*/, response.json()];
|
|
8504
|
+
}); }); })];
|
|
8505
|
+
});
|
|
8506
|
+
});
|
|
8507
|
+
};
|
|
8508
|
+
/**
|
|
8509
|
+
* 販売者検索
|
|
8510
|
+
*/
|
|
8511
|
+
SellerService.prototype.search = function (params) {
|
|
8512
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8513
|
+
var _this = this;
|
|
8514
|
+
return __generator(this, function (_a) {
|
|
8515
|
+
return [2 /*return*/, this.fetch({
|
|
8516
|
+
uri: '/sellers',
|
|
8036
8517
|
method: 'GET',
|
|
8037
8518
|
qs: params,
|
|
8038
8519
|
expectedStatusCodes: [http_status_1.OK]
|
|
8039
8520
|
})
|
|
8040
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
8041
|
-
|
|
8042
|
-
|
|
8521
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
8522
|
+
var _a;
|
|
8523
|
+
return __generator(this, function (_b) {
|
|
8524
|
+
switch (_b.label) {
|
|
8525
|
+
case 0:
|
|
8526
|
+
_a = {};
|
|
8527
|
+
return [4 /*yield*/, response.json()];
|
|
8528
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
8529
|
+
_a)];
|
|
8530
|
+
}
|
|
8531
|
+
});
|
|
8532
|
+
}); })];
|
|
8533
|
+
});
|
|
8534
|
+
});
|
|
8535
|
+
};
|
|
8536
|
+
/**
|
|
8537
|
+
* 販売者編集
|
|
8538
|
+
*/
|
|
8539
|
+
SellerService.prototype.update = function (params) {
|
|
8540
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8541
|
+
return __generator(this, function (_a) {
|
|
8542
|
+
switch (_a.label) {
|
|
8543
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
8544
|
+
uri: "/sellers/" + params.id,
|
|
8545
|
+
method: 'PUT',
|
|
8546
|
+
body: params.attributes,
|
|
8547
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8548
|
+
})];
|
|
8549
|
+
case 1:
|
|
8550
|
+
_a.sent();
|
|
8551
|
+
return [2 /*return*/];
|
|
8552
|
+
}
|
|
8553
|
+
});
|
|
8554
|
+
});
|
|
8555
|
+
};
|
|
8556
|
+
/**
|
|
8557
|
+
* 販売者削除
|
|
8558
|
+
*/
|
|
8559
|
+
SellerService.prototype.deleteById = function (params) {
|
|
8560
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8561
|
+
return __generator(this, function (_a) {
|
|
8562
|
+
switch (_a.label) {
|
|
8563
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
8564
|
+
uri: "/sellers/" + params.id,
|
|
8565
|
+
method: 'DELETE',
|
|
8566
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8567
|
+
})];
|
|
8568
|
+
case 1:
|
|
8569
|
+
_a.sent();
|
|
8570
|
+
return [2 /*return*/];
|
|
8571
|
+
}
|
|
8572
|
+
});
|
|
8573
|
+
});
|
|
8574
|
+
};
|
|
8575
|
+
/**
|
|
8576
|
+
* 提供決済サービス検索(public)
|
|
8577
|
+
*/
|
|
8578
|
+
SellerService.prototype.searchPaymentServices = function (params) {
|
|
8579
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8580
|
+
var _this = this;
|
|
8581
|
+
return __generator(this, function (_a) {
|
|
8582
|
+
return [2 /*return*/, this.fetch({
|
|
8583
|
+
uri: "/sellers/" + params.id + "/paymentServices",
|
|
8584
|
+
method: 'GET',
|
|
8585
|
+
qs: params.qs,
|
|
8586
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
8587
|
+
})
|
|
8588
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
8589
|
+
var _a;
|
|
8590
|
+
return __generator(this, function (_b) {
|
|
8591
|
+
switch (_b.label) {
|
|
8592
|
+
case 0:
|
|
8593
|
+
_a = {};
|
|
8594
|
+
return [4 /*yield*/, response.json()];
|
|
8595
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
8596
|
+
_a)];
|
|
8597
|
+
}
|
|
8598
|
+
});
|
|
8599
|
+
}); })];
|
|
8600
|
+
});
|
|
8601
|
+
});
|
|
8602
|
+
};
|
|
8603
|
+
/**
|
|
8604
|
+
* 対応決済方法区分検索
|
|
8605
|
+
*/
|
|
8606
|
+
SellerService.prototype.searchPaymentAccepted = function (params) {
|
|
8607
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8608
|
+
var _this = this;
|
|
8609
|
+
return __generator(this, function (_a) {
|
|
8610
|
+
return [2 /*return*/, this.fetch({
|
|
8611
|
+
uri: "/sellers/" + params.id + "/paymentAccepted",
|
|
8612
|
+
method: 'GET',
|
|
8613
|
+
qs: params.qs,
|
|
8614
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
8615
|
+
})
|
|
8616
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
8617
|
+
var _a;
|
|
8618
|
+
return __generator(this, function (_b) {
|
|
8619
|
+
switch (_b.label) {
|
|
8620
|
+
case 0:
|
|
8621
|
+
_a = {};
|
|
8622
|
+
return [4 /*yield*/, response.json()];
|
|
8623
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
8624
|
+
_a)];
|
|
8625
|
+
}
|
|
8626
|
+
});
|
|
8627
|
+
}); })];
|
|
8043
8628
|
});
|
|
8044
8629
|
});
|
|
8045
8630
|
};
|
|
8046
8631
|
/**
|
|
8047
|
-
*
|
|
8632
|
+
* 提供決済サービス検索
|
|
8048
8633
|
*/
|
|
8049
|
-
SellerService.prototype.
|
|
8634
|
+
SellerService.prototype.searchProvidesPaymentService = function (params) {
|
|
8635
|
+
var _a;
|
|
8050
8636
|
return __awaiter(this, void 0, void 0, function () {
|
|
8051
8637
|
var _this = this;
|
|
8052
|
-
return __generator(this, function (
|
|
8638
|
+
return __generator(this, function (_b) {
|
|
8053
8639
|
return [2 /*return*/, this.fetch({
|
|
8054
|
-
uri:
|
|
8640
|
+
uri: "/sellers/" + ((_a = params.provider) === null || _a === void 0 ? void 0 : _a.id) + "/providesPaymentService",
|
|
8055
8641
|
method: 'GET',
|
|
8056
|
-
qs: params,
|
|
8642
|
+
qs: params.qs,
|
|
8057
8643
|
expectedStatusCodes: [http_status_1.OK]
|
|
8058
8644
|
})
|
|
8059
8645
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
@@ -8071,40 +8657,54 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
8071
8657
|
});
|
|
8072
8658
|
});
|
|
8073
8659
|
};
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
*/
|
|
8077
|
-
SellerService.prototype.update = function (params) {
|
|
8660
|
+
SellerService.prototype.createProvidesPaymentService = function (params) {
|
|
8661
|
+
var _a;
|
|
8078
8662
|
return __awaiter(this, void 0, void 0, function () {
|
|
8079
|
-
return __generator(this, function (
|
|
8080
|
-
switch (
|
|
8663
|
+
return __generator(this, function (_b) {
|
|
8664
|
+
switch (_b.label) {
|
|
8081
8665
|
case 0: return [4 /*yield*/, this.fetch({
|
|
8082
|
-
uri: "/sellers/" + params.id,
|
|
8666
|
+
uri: "/sellers/" + ((_a = params.provider) === null || _a === void 0 ? void 0 : _a.id) + "/providesPaymentService",
|
|
8667
|
+
method: 'POST',
|
|
8668
|
+
body: params,
|
|
8669
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8670
|
+
})];
|
|
8671
|
+
case 1:
|
|
8672
|
+
_b.sent();
|
|
8673
|
+
return [2 /*return*/];
|
|
8674
|
+
}
|
|
8675
|
+
});
|
|
8676
|
+
});
|
|
8677
|
+
};
|
|
8678
|
+
SellerService.prototype.updateProvidesPaymentService = function (params) {
|
|
8679
|
+
var _a;
|
|
8680
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8681
|
+
return __generator(this, function (_b) {
|
|
8682
|
+
switch (_b.label) {
|
|
8683
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
8684
|
+
uri: "/sellers/" + ((_a = params.provider) === null || _a === void 0 ? void 0 : _a.id) + "/providesPaymentService/" + params.id,
|
|
8083
8685
|
method: 'PUT',
|
|
8084
|
-
body: params
|
|
8686
|
+
body: params,
|
|
8085
8687
|
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8086
8688
|
})];
|
|
8087
8689
|
case 1:
|
|
8088
|
-
|
|
8690
|
+
_b.sent();
|
|
8089
8691
|
return [2 /*return*/];
|
|
8090
8692
|
}
|
|
8091
8693
|
});
|
|
8092
8694
|
});
|
|
8093
8695
|
};
|
|
8094
|
-
|
|
8095
|
-
|
|
8096
|
-
*/
|
|
8097
|
-
SellerService.prototype.deleteById = function (params) {
|
|
8696
|
+
SellerService.prototype.deleteProvidesPaymentService = function (params) {
|
|
8697
|
+
var _a;
|
|
8098
8698
|
return __awaiter(this, void 0, void 0, function () {
|
|
8099
|
-
return __generator(this, function (
|
|
8100
|
-
switch (
|
|
8699
|
+
return __generator(this, function (_b) {
|
|
8700
|
+
switch (_b.label) {
|
|
8101
8701
|
case 0: return [4 /*yield*/, this.fetch({
|
|
8102
|
-
uri: "/sellers/" + params.id,
|
|
8702
|
+
uri: "/sellers/" + ((_a = params.provider) === null || _a === void 0 ? void 0 : _a.id) + "/providesPaymentService/" + params.id,
|
|
8103
8703
|
method: 'DELETE',
|
|
8104
8704
|
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
8105
8705
|
})];
|
|
8106
8706
|
case 1:
|
|
8107
|
-
|
|
8707
|
+
_b.sent();
|
|
8108
8708
|
return [2 /*return*/];
|
|
8109
8709
|
}
|
|
8110
8710
|
});
|
|
@@ -8114,7 +8714,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
8114
8714
|
}(service_1.Service));
|
|
8115
8715
|
exports.SellerService = SellerService;
|
|
8116
8716
|
|
|
8117
|
-
},{"../service":
|
|
8717
|
+
},{"../service":63,"http-status":290}],49:[function(require,module,exports){
|
|
8118
8718
|
"use strict";
|
|
8119
8719
|
var __extends = (this && this.__extends) || (function () {
|
|
8120
8720
|
var extendStatics = function (d, b) {
|
|
@@ -8248,7 +8848,7 @@ var TaskService = /** @class */ (function (_super) {
|
|
|
8248
8848
|
}(service_1.Service));
|
|
8249
8849
|
exports.TaskService = TaskService;
|
|
8250
8850
|
|
|
8251
|
-
},{"../service":
|
|
8851
|
+
},{"../service":63,"http-status":290}],50:[function(require,module,exports){
|
|
8252
8852
|
"use strict";
|
|
8253
8853
|
var __extends = (this && this.__extends) || (function () {
|
|
8254
8854
|
var extendStatics = function (d, b) {
|
|
@@ -8336,7 +8936,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
8336
8936
|
}(service_1.Service));
|
|
8337
8937
|
exports.TokenService = TokenService;
|
|
8338
8938
|
|
|
8339
|
-
},{"../service":
|
|
8939
|
+
},{"../service":63,"http-status":290}],51:[function(require,module,exports){
|
|
8340
8940
|
"use strict";
|
|
8341
8941
|
var __extends = (this && this.__extends) || (function () {
|
|
8342
8942
|
var extendStatics = function (d, b) {
|
|
@@ -8424,7 +9024,7 @@ var TransactionNumberService = /** @class */ (function (_super) {
|
|
|
8424
9024
|
}(service_1.Service));
|
|
8425
9025
|
exports.TransactionNumberService = TransactionNumberService;
|
|
8426
9026
|
|
|
8427
|
-
},{"../service":
|
|
9027
|
+
},{"../service":63,"http-status":290}],52:[function(require,module,exports){
|
|
8428
9028
|
"use strict";
|
|
8429
9029
|
var __extends = (this && this.__extends) || (function () {
|
|
8430
9030
|
var extendStatics = function (d, b) {
|
|
@@ -8477,6 +9077,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
8477
9077
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
8478
9078
|
}
|
|
8479
9079
|
};
|
|
9080
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
9081
|
+
var t = {};
|
|
9082
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
9083
|
+
t[p] = s[p];
|
|
9084
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
9085
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
9086
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9087
|
+
t[p[i]] = s[p[i]];
|
|
9088
|
+
}
|
|
9089
|
+
return t;
|
|
9090
|
+
};
|
|
8480
9091
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8481
9092
|
exports.MoneyTransferTransactionService = void 0;
|
|
8482
9093
|
var http_status_1 = require("http-status");
|
|
@@ -8603,12 +9214,14 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
8603
9214
|
*/
|
|
8604
9215
|
MoneyTransferTransactionService.prototype.searchActionsByTransactionId = function (params) {
|
|
8605
9216
|
return __awaiter(this, void 0, void 0, function () {
|
|
9217
|
+
var id, query;
|
|
8606
9218
|
var _this = this;
|
|
8607
9219
|
return __generator(this, function (_a) {
|
|
9220
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
8608
9221
|
return [2 /*return*/, this.fetch({
|
|
8609
|
-
uri: "/transactions/" + this.typeOf + "/" +
|
|
9222
|
+
uri: "/transactions/" + this.typeOf + "/" + id + "/actions",
|
|
8610
9223
|
method: 'GET',
|
|
8611
|
-
qs:
|
|
9224
|
+
qs: query,
|
|
8612
9225
|
expectedStatusCodes: [http_status_1.OK]
|
|
8613
9226
|
})
|
|
8614
9227
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -8621,7 +9234,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
8621
9234
|
}(service_1.Service));
|
|
8622
9235
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
8623
9236
|
|
|
8624
|
-
},{"../../factory":
|
|
9237
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],53:[function(require,module,exports){
|
|
8625
9238
|
"use strict";
|
|
8626
9239
|
var __extends = (this && this.__extends) || (function () {
|
|
8627
9240
|
var extendStatics = function (d, b) {
|
|
@@ -8674,6 +9287,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
8674
9287
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
8675
9288
|
}
|
|
8676
9289
|
};
|
|
9290
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
9291
|
+
var t = {};
|
|
9292
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
9293
|
+
t[p] = s[p];
|
|
9294
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
9295
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
9296
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9297
|
+
t[p[i]] = s[p[i]];
|
|
9298
|
+
}
|
|
9299
|
+
return t;
|
|
9300
|
+
};
|
|
8677
9301
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8678
9302
|
exports.PlaceOrderTransactionService = void 0;
|
|
8679
9303
|
var http_status_1 = require("http-status");
|
|
@@ -8750,14 +9374,17 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
8750
9374
|
*/
|
|
8751
9375
|
PlaceOrderTransactionService.prototype.changeExpiringDate = function (params) {
|
|
8752
9376
|
return __awaiter(this, void 0, void 0, function () {
|
|
9377
|
+
var id, body;
|
|
8753
9378
|
return __generator(this, function (_a) {
|
|
8754
9379
|
switch (_a.label) {
|
|
8755
|
-
case 0:
|
|
8756
|
-
|
|
8757
|
-
|
|
8758
|
-
|
|
8759
|
-
|
|
8760
|
-
|
|
9380
|
+
case 0:
|
|
9381
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
9382
|
+
return [4 /*yield*/, this.fetch({
|
|
9383
|
+
uri: "/transactions/" + this.typeOf + "/" + id + "/expires",
|
|
9384
|
+
method: 'PUT',
|
|
9385
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
9386
|
+
body: body
|
|
9387
|
+
})];
|
|
8761
9388
|
case 1:
|
|
8762
9389
|
_a.sent();
|
|
8763
9390
|
return [2 /*return*/];
|
|
@@ -8770,13 +9397,15 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
8770
9397
|
*/
|
|
8771
9398
|
PlaceOrderTransactionService.prototype.confirm = function (params) {
|
|
8772
9399
|
return __awaiter(this, void 0, void 0, function () {
|
|
9400
|
+
var id, body;
|
|
8773
9401
|
var _this = this;
|
|
8774
9402
|
return __generator(this, function (_a) {
|
|
9403
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
8775
9404
|
return [2 /*return*/, this.fetch({
|
|
8776
|
-
uri: "/transactions/" + this.typeOf + "/" +
|
|
9405
|
+
uri: "/transactions/" + this.typeOf + "/" + id + "/confirm",
|
|
8777
9406
|
method: 'PUT',
|
|
8778
9407
|
expectedStatusCodes: [http_status_1.OK],
|
|
8779
|
-
body:
|
|
9408
|
+
body: body
|
|
8780
9409
|
})
|
|
8781
9410
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
8782
9411
|
return [2 /*return*/, response.json()];
|
|
@@ -8837,12 +9466,14 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
8837
9466
|
*/
|
|
8838
9467
|
PlaceOrderTransactionService.prototype.searchActionsByTransactionId = function (params) {
|
|
8839
9468
|
return __awaiter(this, void 0, void 0, function () {
|
|
9469
|
+
var id, query;
|
|
8840
9470
|
var _this = this;
|
|
8841
9471
|
return __generator(this, function (_a) {
|
|
9472
|
+
id = params.id, query = __rest(params, ["id"]);
|
|
8842
9473
|
return [2 /*return*/, this.fetch({
|
|
8843
|
-
uri: "/transactions/" + this.typeOf + "/" +
|
|
9474
|
+
uri: "/transactions/" + this.typeOf + "/" + id + "/actions",
|
|
8844
9475
|
method: 'GET',
|
|
8845
|
-
qs:
|
|
9476
|
+
qs: query,
|
|
8846
9477
|
expectedStatusCodes: [http_status_1.OK]
|
|
8847
9478
|
})
|
|
8848
9479
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -8855,9 +9486,9 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
8855
9486
|
}(service_1.Service));
|
|
8856
9487
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
8857
9488
|
|
|
8858
|
-
},{"../../factory":
|
|
8859
|
-
arguments[4][
|
|
8860
|
-
},{"dup":
|
|
9489
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],54:[function(require,module,exports){
|
|
9490
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
9491
|
+
},{"dup":35}],55:[function(require,module,exports){
|
|
8861
9492
|
"use strict";
|
|
8862
9493
|
var __extends = (this && this.__extends) || (function () {
|
|
8863
9494
|
var extendStatics = function (d, b) {
|
|
@@ -8910,6 +9541,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
8910
9541
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
8911
9542
|
}
|
|
8912
9543
|
};
|
|
9544
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
9545
|
+
var t = {};
|
|
9546
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
9547
|
+
t[p] = s[p];
|
|
9548
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
9549
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
9550
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9551
|
+
t[p[i]] = s[p[i]];
|
|
9552
|
+
}
|
|
9553
|
+
return t;
|
|
9554
|
+
};
|
|
8913
9555
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8914
9556
|
exports.ReturnOrderTransactionService = void 0;
|
|
8915
9557
|
var http_status_1 = require("http-status");
|
|
@@ -8997,14 +9639,17 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
8997
9639
|
*/
|
|
8998
9640
|
ReturnOrderTransactionService.prototype.confirm = function (params) {
|
|
8999
9641
|
return __awaiter(this, void 0, void 0, function () {
|
|
9642
|
+
var id, body;
|
|
9000
9643
|
return __generator(this, function (_a) {
|
|
9001
9644
|
switch (_a.label) {
|
|
9002
|
-
case 0:
|
|
9003
|
-
|
|
9004
|
-
|
|
9005
|
-
|
|
9006
|
-
|
|
9007
|
-
|
|
9645
|
+
case 0:
|
|
9646
|
+
id = params.id, body = __rest(params, ["id"]);
|
|
9647
|
+
return [4 /*yield*/, this.fetch({
|
|
9648
|
+
uri: "/transactions/" + this.typeOf + "/" + id + "/confirm",
|
|
9649
|
+
method: 'PUT',
|
|
9650
|
+
body: body,
|
|
9651
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
9652
|
+
})];
|
|
9008
9653
|
case 1:
|
|
9009
9654
|
_a.sent();
|
|
9010
9655
|
return [2 /*return*/];
|
|
@@ -9016,7 +9661,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
9016
9661
|
}(service_1.Service));
|
|
9017
9662
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
9018
9663
|
|
|
9019
|
-
},{"../../factory":
|
|
9664
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],56:[function(require,module,exports){
|
|
9020
9665
|
"use strict";
|
|
9021
9666
|
var __extends = (this && this.__extends) || (function () {
|
|
9022
9667
|
var extendStatics = function (d, b) {
|
|
@@ -9189,7 +9834,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
9189
9834
|
}(service_1.Service));
|
|
9190
9835
|
exports.TripService = TripService;
|
|
9191
9836
|
|
|
9192
|
-
},{"../service":
|
|
9837
|
+
},{"../service":63,"http-status":290}],57:[function(require,module,exports){
|
|
9193
9838
|
"use strict";
|
|
9194
9839
|
var __extends = (this && this.__extends) || (function () {
|
|
9195
9840
|
var extendStatics = function (d, b) {
|
|
@@ -9322,7 +9967,7 @@ var UserPoolService = /** @class */ (function (_super) {
|
|
|
9322
9967
|
}(service_1.Service));
|
|
9323
9968
|
exports.UserPoolService = UserPoolService;
|
|
9324
9969
|
|
|
9325
|
-
},{"../service":
|
|
9970
|
+
},{"../service":63,"http-status":290}],58:[function(require,module,exports){
|
|
9326
9971
|
"use strict";
|
|
9327
9972
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9328
9973
|
if (k2 === undefined) k2 = k;
|
|
@@ -9340,7 +9985,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9340
9985
|
*/
|
|
9341
9986
|
__exportStar(require("@chevre/factory"), exports);
|
|
9342
9987
|
|
|
9343
|
-
},{"@chevre/factory":
|
|
9988
|
+
},{"@chevre/factory":178}],59:[function(require,module,exports){
|
|
9344
9989
|
"use strict";
|
|
9345
9990
|
var __extends = (this && this.__extends) || (function () {
|
|
9346
9991
|
var extendStatics = function (d, b) {
|
|
@@ -9374,12 +10019,12 @@ var ReservationServiceFactory = require("./service/reservation/factory");
|
|
|
9374
10019
|
var PlaceOrderTransactionServiceFactory = require("./chevre/transaction/placeOrder/factory");
|
|
9375
10020
|
var account_1 = require("./service/account");
|
|
9376
10021
|
var categoryCode_1 = require("./service/categoryCode");
|
|
10022
|
+
var comment_1 = require("./service/comment");
|
|
9377
10023
|
var creativeWork_1 = require("./service/creativeWork");
|
|
9378
10024
|
var customer_1 = require("./service/customer");
|
|
9379
10025
|
var delivery_1 = require("./service/delivery");
|
|
9380
10026
|
var emailMessage_1 = require("./service/emailMessage");
|
|
9381
10027
|
var event_1 = require("./service/event");
|
|
9382
|
-
// import { IAMService } from './service/iam';
|
|
9383
10028
|
var offer_1 = require("./service/offer");
|
|
9384
10029
|
var order_1 = require("./service/order");
|
|
9385
10030
|
var payment_1 = require("./service/payment");
|
|
@@ -9476,6 +10121,17 @@ var service;
|
|
|
9476
10121
|
return CategoryCode;
|
|
9477
10122
|
}(categoryCode_1.CategoryCodeService));
|
|
9478
10123
|
service.CategoryCode = CategoryCode;
|
|
10124
|
+
/**
|
|
10125
|
+
* コメントサービス
|
|
10126
|
+
*/
|
|
10127
|
+
var Comment = /** @class */ (function (_super) {
|
|
10128
|
+
__extends(Comment, _super);
|
|
10129
|
+
function Comment() {
|
|
10130
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10131
|
+
}
|
|
10132
|
+
return Comment;
|
|
10133
|
+
}(comment_1.CommentService));
|
|
10134
|
+
service.Comment = Comment;
|
|
9479
10135
|
/**
|
|
9480
10136
|
* 作品サービス
|
|
9481
10137
|
*/
|
|
@@ -9748,7 +10404,7 @@ var service;
|
|
|
9748
10404
|
service.txn = transaction;
|
|
9749
10405
|
})(service = exports.service || (exports.service = {}));
|
|
9750
10406
|
|
|
9751
|
-
},{"./auth/authClient":3,"./chevre":4,"./chevre/payment/factory":
|
|
10407
|
+
},{"./auth/authClient":3,"./chevre":4,"./chevre/payment/factory":38,"./chevre/transaction/placeOrder/factory":54,"./factory":58,"./pecorino":60,"./service":63,"./service/account":64,"./service/categoryCode":65,"./service/comment":66,"./service/creativeWork":67,"./service/customer":68,"./service/delivery":69,"./service/emailMessage":70,"./service/event":71,"./service/offer":72,"./service/order":73,"./service/order/factory":74,"./service/payment":75,"./service/permit":76,"./service/person":77,"./service/person/ownershipInfo":78,"./service/place":79,"./service/product":80,"./service/project":81,"./service/reservation":82,"./service/reservation/factory":83,"./service/seller":84,"./service/token":85,"./service/transaction/moneyTransfer":86,"./service/transaction/placeOrder":87,"./service/transaction/placeOrder4sskts":88,"./service/transaction/returnOrder":89,"./transporters":90}],60:[function(require,module,exports){
|
|
9752
10408
|
"use strict";
|
|
9753
10409
|
var __extends = (this && this.__extends) || (function () {
|
|
9754
10410
|
var extendStatics = function (d, b) {
|
|
@@ -9801,7 +10457,7 @@ var service;
|
|
|
9801
10457
|
service.AccountTransaction = AccountTransaction;
|
|
9802
10458
|
})(service = exports.service || (exports.service = {}));
|
|
9803
10459
|
|
|
9804
|
-
},{"./factory":
|
|
10460
|
+
},{"./factory":58,"./pecorino/accountTransaction":61,"./pecorino/permit":62}],61:[function(require,module,exports){
|
|
9805
10461
|
"use strict";
|
|
9806
10462
|
var __extends = (this && this.__extends) || (function () {
|
|
9807
10463
|
var extendStatics = function (d, b) {
|
|
@@ -9961,7 +10617,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
9961
10617
|
}(service_1.Service));
|
|
9962
10618
|
exports.AccountTransactionService = AccountTransactionService;
|
|
9963
10619
|
|
|
9964
|
-
},{"../service":
|
|
10620
|
+
},{"../service":63,"http-status":290}],62:[function(require,module,exports){
|
|
9965
10621
|
"use strict";
|
|
9966
10622
|
var __extends = (this && this.__extends) || (function () {
|
|
9967
10623
|
var extendStatics = function (d, b) {
|
|
@@ -10070,7 +10726,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
10070
10726
|
}(service_1.Service));
|
|
10071
10727
|
exports.PermitService = PermitService;
|
|
10072
10728
|
|
|
10073
|
-
},{"../service":
|
|
10729
|
+
},{"../service":63,"http-status":290}],63:[function(require,module,exports){
|
|
10074
10730
|
"use strict";
|
|
10075
10731
|
var __assign = (this && this.__assign) || function () {
|
|
10076
10732
|
__assign = Object.assign || function(t) {
|
|
@@ -10177,7 +10833,7 @@ var Service = /** @class */ (function () {
|
|
|
10177
10833
|
}());
|
|
10178
10834
|
exports.Service = Service;
|
|
10179
10835
|
|
|
10180
|
-
},{"./transporters":
|
|
10836
|
+
},{"./transporters":90,"qs":297}],64:[function(require,module,exports){
|
|
10181
10837
|
"use strict";
|
|
10182
10838
|
var __extends = (this && this.__extends) || (function () {
|
|
10183
10839
|
var extendStatics = function (d, b) {
|
|
@@ -10286,7 +10942,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
10286
10942
|
}(service_1.Service));
|
|
10287
10943
|
exports.AccountService = AccountService;
|
|
10288
10944
|
|
|
10289
|
-
},{"../service":
|
|
10945
|
+
},{"../service":63,"http-status":290}],65:[function(require,module,exports){
|
|
10290
10946
|
"use strict";
|
|
10291
10947
|
var __extends = (this && this.__extends) || (function () {
|
|
10292
10948
|
var extendStatics = function (d, b) {
|
|
@@ -10383,7 +11039,9 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
10383
11039
|
}(service_1.Service));
|
|
10384
11040
|
exports.CategoryCodeService = CategoryCodeService;
|
|
10385
11041
|
|
|
10386
|
-
},{"../service":
|
|
11042
|
+
},{"../service":63,"http-status":290}],66:[function(require,module,exports){
|
|
11043
|
+
arguments[4][22][0].apply(exports,arguments)
|
|
11044
|
+
},{"../service":63,"dup":22,"http-status":290}],67:[function(require,module,exports){
|
|
10387
11045
|
"use strict";
|
|
10388
11046
|
var __extends = (this && this.__extends) || (function () {
|
|
10389
11047
|
var extendStatics = function (d, b) {
|
|
@@ -10480,7 +11138,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
10480
11138
|
}(service_1.Service));
|
|
10481
11139
|
exports.CreativeWorkService = CreativeWorkService;
|
|
10482
11140
|
|
|
10483
|
-
},{"../service":
|
|
11141
|
+
},{"../service":63,"http-status":290}],68:[function(require,module,exports){
|
|
10484
11142
|
"use strict";
|
|
10485
11143
|
var __extends = (this && this.__extends) || (function () {
|
|
10486
11144
|
var extendStatics = function (d, b) {
|
|
@@ -10595,7 +11253,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
10595
11253
|
}(service_1.Service));
|
|
10596
11254
|
exports.CustomerService = CustomerService;
|
|
10597
11255
|
|
|
10598
|
-
},{"../service":
|
|
11256
|
+
},{"../service":63,"http-status":290}],69:[function(require,module,exports){
|
|
10599
11257
|
"use strict";
|
|
10600
11258
|
var __extends = (this && this.__extends) || (function () {
|
|
10601
11259
|
var extendStatics = function (d, b) {
|
|
@@ -10687,7 +11345,7 @@ var DeliveryService = /** @class */ (function (_super) {
|
|
|
10687
11345
|
}(service_1.Service));
|
|
10688
11346
|
exports.DeliveryService = DeliveryService;
|
|
10689
11347
|
|
|
10690
|
-
},{"../service":
|
|
11348
|
+
},{"../service":63,"http-status":290}],70:[function(require,module,exports){
|
|
10691
11349
|
"use strict";
|
|
10692
11350
|
var __extends = (this && this.__extends) || (function () {
|
|
10693
11351
|
var extendStatics = function (d, b) {
|
|
@@ -10784,7 +11442,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
10784
11442
|
}(service_1.Service));
|
|
10785
11443
|
exports.EmailMessageService = EmailMessageService;
|
|
10786
11444
|
|
|
10787
|
-
},{"../service":
|
|
11445
|
+
},{"../service":63,"http-status":290}],71:[function(require,module,exports){
|
|
10788
11446
|
"use strict";
|
|
10789
11447
|
var __extends = (this && this.__extends) || (function () {
|
|
10790
11448
|
var extendStatics = function (d, b) {
|
|
@@ -11006,7 +11664,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
11006
11664
|
}(service_1.Service));
|
|
11007
11665
|
exports.EventService = EventService;
|
|
11008
11666
|
|
|
11009
|
-
},{"../service":
|
|
11667
|
+
},{"../service":63,"http-status":290}],72:[function(require,module,exports){
|
|
11010
11668
|
"use strict";
|
|
11011
11669
|
var __extends = (this && this.__extends) || (function () {
|
|
11012
11670
|
var extendStatics = function (d, b) {
|
|
@@ -11163,7 +11821,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
11163
11821
|
}(service_1.Service));
|
|
11164
11822
|
exports.OfferService = OfferService;
|
|
11165
11823
|
|
|
11166
|
-
},{"../service":
|
|
11824
|
+
},{"../service":63,"http-status":290}],73:[function(require,module,exports){
|
|
11167
11825
|
"use strict";
|
|
11168
11826
|
var __extends = (this && this.__extends) || (function () {
|
|
11169
11827
|
var extendStatics = function (d, b) {
|
|
@@ -11473,7 +12131,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
11473
12131
|
}(service_1.Service));
|
|
11474
12132
|
exports.OrderService = OrderService;
|
|
11475
12133
|
|
|
11476
|
-
},{"../service":
|
|
12134
|
+
},{"../service":63,"http-status":290}],74:[function(require,module,exports){
|
|
11477
12135
|
"use strict";
|
|
11478
12136
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
11479
12137
|
if (k2 === undefined) k2 = k;
|
|
@@ -11488,7 +12146,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11488
12146
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11489
12147
|
__exportStar(require("../../chevre/order/factory"), exports);
|
|
11490
12148
|
|
|
11491
|
-
},{"../../chevre/order/factory":
|
|
12149
|
+
},{"../../chevre/order/factory":35}],75:[function(require,module,exports){
|
|
11492
12150
|
"use strict";
|
|
11493
12151
|
var __extends = (this && this.__extends) || (function () {
|
|
11494
12152
|
var extendStatics = function (d, b) {
|
|
@@ -11751,7 +12409,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
11751
12409
|
}(service_1.Service));
|
|
11752
12410
|
exports.PaymentService = PaymentService;
|
|
11753
12411
|
|
|
11754
|
-
},{"../factory":
|
|
12412
|
+
},{"../factory":58,"../service":63,"http-status":290}],76:[function(require,module,exports){
|
|
11755
12413
|
"use strict";
|
|
11756
12414
|
var __extends = (this && this.__extends) || (function () {
|
|
11757
12415
|
var extendStatics = function (d, b) {
|
|
@@ -11877,9 +12535,9 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
11877
12535
|
}(service_1.Service));
|
|
11878
12536
|
exports.PermitService = PermitService;
|
|
11879
12537
|
|
|
11880
|
-
},{"../service":
|
|
11881
|
-
arguments[4][
|
|
11882
|
-
},{"../service":
|
|
12538
|
+
},{"../service":63,"http-status":290}],77:[function(require,module,exports){
|
|
12539
|
+
arguments[4][40][0].apply(exports,arguments)
|
|
12540
|
+
},{"../service":63,"dup":40,"http-status":290}],78:[function(require,module,exports){
|
|
11883
12541
|
"use strict";
|
|
11884
12542
|
var __extends = (this && this.__extends) || (function () {
|
|
11885
12543
|
var extendStatics = function (d, b) {
|
|
@@ -12244,7 +12902,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
12244
12902
|
}(service_1.Service));
|
|
12245
12903
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
12246
12904
|
|
|
12247
|
-
},{"../../factory":
|
|
12905
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],79:[function(require,module,exports){
|
|
12248
12906
|
"use strict";
|
|
12249
12907
|
var __extends = (this && this.__extends) || (function () {
|
|
12250
12908
|
var extendStatics = function (d, b) {
|
|
@@ -12426,7 +13084,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
12426
13084
|
}(service_1.Service));
|
|
12427
13085
|
exports.PlaceService = PlaceService;
|
|
12428
13086
|
|
|
12429
|
-
},{"../factory":
|
|
13087
|
+
},{"../factory":58,"../service":63,"http-status":290}],80:[function(require,module,exports){
|
|
12430
13088
|
"use strict";
|
|
12431
13089
|
var __extends = (this && this.__extends) || (function () {
|
|
12432
13090
|
var extendStatics = function (d, b) {
|
|
@@ -12542,7 +13200,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
12542
13200
|
}(service_1.Service));
|
|
12543
13201
|
exports.ProductService = ProductService;
|
|
12544
13202
|
|
|
12545
|
-
},{"../service":
|
|
13203
|
+
},{"../service":63,"http-status":290}],81:[function(require,module,exports){
|
|
12546
13204
|
"use strict";
|
|
12547
13205
|
var __extends = (this && this.__extends) || (function () {
|
|
12548
13206
|
var extendStatics = function (d, b) {
|
|
@@ -12689,7 +13347,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
12689
13347
|
}(service_1.Service));
|
|
12690
13348
|
exports.ProjectService = ProjectService;
|
|
12691
13349
|
|
|
12692
|
-
},{"../service":
|
|
13350
|
+
},{"../service":63,"http-status":290}],82:[function(require,module,exports){
|
|
12693
13351
|
"use strict";
|
|
12694
13352
|
var __extends = (this && this.__extends) || (function () {
|
|
12695
13353
|
var extendStatics = function (d, b) {
|
|
@@ -12855,7 +13513,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
12855
13513
|
}(service_1.Service));
|
|
12856
13514
|
exports.ReservationService = ReservationService;
|
|
12857
13515
|
|
|
12858
|
-
},{"../service":
|
|
13516
|
+
},{"../service":63,"http-status":290}],83:[function(require,module,exports){
|
|
12859
13517
|
"use strict";
|
|
12860
13518
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12861
13519
|
if (k2 === undefined) k2 = k;
|
|
@@ -12870,7 +13528,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
12870
13528
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12871
13529
|
__exportStar(require("../../chevre/reservation/factory"), exports);
|
|
12872
13530
|
|
|
12873
|
-
},{"../../chevre/reservation/factory":
|
|
13531
|
+
},{"../../chevre/reservation/factory":47}],84:[function(require,module,exports){
|
|
12874
13532
|
"use strict";
|
|
12875
13533
|
var __extends = (this && this.__extends) || (function () {
|
|
12876
13534
|
var extendStatics = function (d, b) {
|
|
@@ -12981,13 +13639,69 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
12981
13639
|
});
|
|
12982
13640
|
});
|
|
12983
13641
|
};
|
|
13642
|
+
/**
|
|
13643
|
+
* 提供決済サービス検索(public)
|
|
13644
|
+
*/
|
|
13645
|
+
SellerService.prototype.searchPaymentServices = function (params) {
|
|
13646
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
13647
|
+
var _this = this;
|
|
13648
|
+
return __generator(this, function (_a) {
|
|
13649
|
+
return [2 /*return*/, this.fetch({
|
|
13650
|
+
uri: "/sellers/" + params.id + "/paymentServices",
|
|
13651
|
+
method: 'GET',
|
|
13652
|
+
qs: params.qs,
|
|
13653
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
13654
|
+
})
|
|
13655
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
13656
|
+
var _a;
|
|
13657
|
+
return __generator(this, function (_b) {
|
|
13658
|
+
switch (_b.label) {
|
|
13659
|
+
case 0:
|
|
13660
|
+
_a = {};
|
|
13661
|
+
return [4 /*yield*/, response.json()];
|
|
13662
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
13663
|
+
_a)];
|
|
13664
|
+
}
|
|
13665
|
+
});
|
|
13666
|
+
}); })];
|
|
13667
|
+
});
|
|
13668
|
+
});
|
|
13669
|
+
};
|
|
13670
|
+
/**
|
|
13671
|
+
* 対応決済方法区分検索
|
|
13672
|
+
*/
|
|
13673
|
+
SellerService.prototype.searchPaymentAccepted = function (params) {
|
|
13674
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
13675
|
+
var _this = this;
|
|
13676
|
+
return __generator(this, function (_a) {
|
|
13677
|
+
return [2 /*return*/, this.fetch({
|
|
13678
|
+
uri: "/sellers/" + params.id + "/paymentAccepted",
|
|
13679
|
+
method: 'GET',
|
|
13680
|
+
qs: params.qs,
|
|
13681
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
13682
|
+
})
|
|
13683
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
13684
|
+
var _a;
|
|
13685
|
+
return __generator(this, function (_b) {
|
|
13686
|
+
switch (_b.label) {
|
|
13687
|
+
case 0:
|
|
13688
|
+
_a = {};
|
|
13689
|
+
return [4 /*yield*/, response.json()];
|
|
13690
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
13691
|
+
_a)];
|
|
13692
|
+
}
|
|
13693
|
+
});
|
|
13694
|
+
}); })];
|
|
13695
|
+
});
|
|
13696
|
+
});
|
|
13697
|
+
};
|
|
12984
13698
|
return SellerService;
|
|
12985
13699
|
}(service_1.Service));
|
|
12986
13700
|
exports.SellerService = SellerService;
|
|
12987
13701
|
|
|
12988
|
-
},{"../service":
|
|
12989
|
-
arguments[4][
|
|
12990
|
-
},{"../service":
|
|
13702
|
+
},{"../service":63,"http-status":290}],85:[function(require,module,exports){
|
|
13703
|
+
arguments[4][50][0].apply(exports,arguments)
|
|
13704
|
+
},{"../service":63,"dup":50,"http-status":290}],86:[function(require,module,exports){
|
|
12991
13705
|
"use strict";
|
|
12992
13706
|
var __extends = (this && this.__extends) || (function () {
|
|
12993
13707
|
var extendStatics = function (d, b) {
|
|
@@ -13137,7 +13851,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
13137
13851
|
}(service_1.Service));
|
|
13138
13852
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
13139
13853
|
|
|
13140
|
-
},{"../../factory":
|
|
13854
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],87:[function(require,module,exports){
|
|
13141
13855
|
"use strict";
|
|
13142
13856
|
var __extends = (this && this.__extends) || (function () {
|
|
13143
13857
|
var extendStatics = function (d, b) {
|
|
@@ -13395,7 +14109,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13395
14109
|
}(service_1.Service));
|
|
13396
14110
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
13397
14111
|
|
|
13398
|
-
},{"../../factory":
|
|
14112
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],88:[function(require,module,exports){
|
|
13399
14113
|
"use strict";
|
|
13400
14114
|
var __extends = (this && this.__extends) || (function () {
|
|
13401
14115
|
var extendStatics = function (d, b) {
|
|
@@ -13539,7 +14253,7 @@ var PlaceOrderTransaction4ssktsService = /** @class */ (function (_super) {
|
|
|
13539
14253
|
}(placeOrder_1.PlaceOrderTransactionService));
|
|
13540
14254
|
exports.PlaceOrderTransaction4ssktsService = PlaceOrderTransaction4ssktsService;
|
|
13541
14255
|
|
|
13542
|
-
},{"./placeOrder":
|
|
14256
|
+
},{"./placeOrder":87,"http-status":290}],89:[function(require,module,exports){
|
|
13543
14257
|
"use strict";
|
|
13544
14258
|
var __extends = (this && this.__extends) || (function () {
|
|
13545
14259
|
var extendStatics = function (d, b) {
|
|
@@ -13670,7 +14384,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13670
14384
|
}(service_1.Service));
|
|
13671
14385
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
13672
14386
|
|
|
13673
|
-
},{"../../factory":
|
|
14387
|
+
},{"../../factory":58,"../../service":63,"http-status":290}],90:[function(require,module,exports){
|
|
13674
14388
|
"use strict";
|
|
13675
14389
|
var __extends = (this && this.__extends) || (function () {
|
|
13676
14390
|
var extendStatics = function (d, b) {
|
|
@@ -13867,7 +14581,7 @@ var StubTransporter = /** @class */ (function () {
|
|
|
13867
14581
|
}());
|
|
13868
14582
|
exports.StubTransporter = StubTransporter;
|
|
13869
14583
|
|
|
13870
|
-
},{"debug":
|
|
14584
|
+
},{"debug":282,"isomorphic-fetch":293}],91:[function(require,module,exports){
|
|
13871
14585
|
"use strict";
|
|
13872
14586
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
13873
14587
|
/* istanbul ignore file */
|
|
@@ -14224,7 +14938,7 @@ var ImplicitGrantClient = /** @class */ (function (_super) {
|
|
|
14224
14938
|
}(oAuth2client_1.default));
|
|
14225
14939
|
exports.ImplicitGrantClient = ImplicitGrantClient;
|
|
14226
14940
|
|
|
14227
|
-
},{"./implicitGrantClient/error":
|
|
14941
|
+
},{"./implicitGrantClient/error":92,"./implicitGrantClient/popupAuthenticationHandler":94,"./implicitGrantClient/silentAuthenticationHandler":96,"./implicitGrantClient/silentLogoutHandler":97,"./oAuth2client":99,"debug":282,"idtoken-verifier":291,"qs":297}],92:[function(require,module,exports){
|
|
14228
14942
|
"use strict";
|
|
14229
14943
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14230
14944
|
/* istanbul ignore file */
|
|
@@ -14257,7 +14971,7 @@ var AuthorizeError = /** @class */ (function (_super) {
|
|
|
14257
14971
|
}(Error));
|
|
14258
14972
|
exports.AuthorizeError = AuthorizeError;
|
|
14259
14973
|
|
|
14260
|
-
},{}],
|
|
14974
|
+
},{}],93:[function(require,module,exports){
|
|
14261
14975
|
"use strict";
|
|
14262
14976
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14263
14977
|
/* istanbul ignore file */
|
|
@@ -14343,7 +15057,7 @@ var IframeHandler = /** @class */ (function () {
|
|
|
14343
15057
|
}());
|
|
14344
15058
|
exports.default = IframeHandler;
|
|
14345
15059
|
|
|
14346
|
-
},{"debug":
|
|
15060
|
+
},{"debug":282}],94:[function(require,module,exports){
|
|
14347
15061
|
"use strict";
|
|
14348
15062
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14349
15063
|
/* istanbul ignore file */
|
|
@@ -14453,7 +15167,7 @@ var PopupAuthenticationHandler = /** @class */ (function () {
|
|
|
14453
15167
|
}());
|
|
14454
15168
|
exports.default = PopupAuthenticationHandler;
|
|
14455
15169
|
|
|
14456
|
-
},{"./error":
|
|
15170
|
+
},{"./error":92,"./popupHandler":95}],95:[function(require,module,exports){
|
|
14457
15171
|
"use strict";
|
|
14458
15172
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14459
15173
|
/* istanbul ignore file */
|
|
@@ -14539,7 +15253,7 @@ var PopupHandler = /** @class */ (function () {
|
|
|
14539
15253
|
}());
|
|
14540
15254
|
exports.default = PopupHandler;
|
|
14541
15255
|
|
|
14542
|
-
},{"debug":
|
|
15256
|
+
},{"debug":282}],96:[function(require,module,exports){
|
|
14543
15257
|
"use strict";
|
|
14544
15258
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14545
15259
|
/* istanbul ignore file */
|
|
@@ -14649,7 +15363,7 @@ var SilentAuthenticationHandler = /** @class */ (function () {
|
|
|
14649
15363
|
}());
|
|
14650
15364
|
exports.default = SilentAuthenticationHandler;
|
|
14651
15365
|
|
|
14652
|
-
},{"./error":
|
|
15366
|
+
},{"./error":92,"./iframeHandler":93}],97:[function(require,module,exports){
|
|
14653
15367
|
"use strict";
|
|
14654
15368
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
14655
15369
|
/* istanbul ignore file */
|
|
@@ -14759,7 +15473,7 @@ var SilentLogoutHandler = /** @class */ (function () {
|
|
|
14759
15473
|
}());
|
|
14760
15474
|
exports.default = SilentLogoutHandler;
|
|
14761
15475
|
|
|
14762
|
-
},{"./error":
|
|
15476
|
+
},{"./error":92,"./iframeHandler":93}],98:[function(require,module,exports){
|
|
14763
15477
|
"use strict";
|
|
14764
15478
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14765
15479
|
exports.LoginTicket = void 0;
|
|
@@ -14788,7 +15502,7 @@ var LoginTicket = /** @class */ (function () {
|
|
|
14788
15502
|
}());
|
|
14789
15503
|
exports.LoginTicket = LoginTicket;
|
|
14790
15504
|
|
|
14791
|
-
},{}],
|
|
15505
|
+
},{}],99:[function(require,module,exports){
|
|
14792
15506
|
(function (Buffer){
|
|
14793
15507
|
"use strict";
|
|
14794
15508
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
@@ -15296,7 +16010,7 @@ var OAuth2client = /** @class */ (function () {
|
|
|
15296
16010
|
exports.default = OAuth2client;
|
|
15297
16011
|
|
|
15298
16012
|
}).call(this,require("buffer").Buffer)
|
|
15299
|
-
},{"../abstract":2,"./loginTicket":
|
|
16013
|
+
},{"../abstract":2,"./loginTicket":98,"buffer":278,"crypto":277,"debug":282,"http-status":290,"isomorphic-fetch":293,"querystring":303}],100:[function(require,module,exports){
|
|
15300
16014
|
"use strict";
|
|
15301
16015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15302
16016
|
exports.createAuthInstance = exports.transporters = exports.service = exports.factory = void 0;
|
|
@@ -15321,7 +16035,7 @@ function createAuthInstance(options) {
|
|
|
15321
16035
|
}
|
|
15322
16036
|
exports.createAuthInstance = createAuthInstance;
|
|
15323
16037
|
|
|
15324
|
-
},{"./abstract":2,"./auth/implicitGrantClient":
|
|
16038
|
+
},{"./abstract":2,"./auth/implicitGrantClient":91}],101:[function(require,module,exports){
|
|
15325
16039
|
"use strict";
|
|
15326
16040
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15327
16041
|
exports.transactionType = exports.transaction = exports.action = void 0;
|
|
@@ -15355,9 +16069,9 @@ var transaction;
|
|
|
15355
16069
|
})(transaction = exports.transaction || (exports.transaction = {}));
|
|
15356
16070
|
exports.transactionType = transactionType_1.AccountTransactionType;
|
|
15357
16071
|
|
|
15358
|
-
},{"./account/action/moneyTransfer":
|
|
15359
|
-
arguments[4][
|
|
15360
|
-
},{"dup":
|
|
16072
|
+
},{"./account/action/moneyTransfer":104,"./account/transaction/deposit":106,"./account/transaction/transfer":107,"./account/transaction/withdraw":108,"./account/transactionType":105}],102:[function(require,module,exports){
|
|
16073
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16074
|
+
},{"dup":35}],103:[function(require,module,exports){
|
|
15361
16075
|
"use strict";
|
|
15362
16076
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15363
16077
|
exports.AccountType = void 0;
|
|
@@ -15378,9 +16092,9 @@ var AccountType;
|
|
|
15378
16092
|
AccountType["Transactional"] = "Transactional";
|
|
15379
16093
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
15380
16094
|
|
|
15381
|
-
},{}],
|
|
15382
|
-
arguments[4][
|
|
15383
|
-
},{"dup":
|
|
16095
|
+
},{}],104:[function(require,module,exports){
|
|
16096
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16097
|
+
},{"dup":35}],105:[function(require,module,exports){
|
|
15384
16098
|
"use strict";
|
|
15385
16099
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15386
16100
|
exports.AccountTransactionType = void 0;
|
|
@@ -15403,13 +16117,13 @@ var AccountTransactionType;
|
|
|
15403
16117
|
AccountTransactionType["Transfer"] = "Transfer";
|
|
15404
16118
|
})(AccountTransactionType = exports.AccountTransactionType || (exports.AccountTransactionType = {}));
|
|
15405
16119
|
|
|
15406
|
-
},{}],
|
|
15407
|
-
arguments[4][
|
|
15408
|
-
},{"dup":
|
|
15409
|
-
arguments[4][
|
|
15410
|
-
},{"dup":
|
|
15411
|
-
arguments[4][
|
|
15412
|
-
},{"dup":
|
|
16120
|
+
},{}],106:[function(require,module,exports){
|
|
16121
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16122
|
+
},{"dup":35}],107:[function(require,module,exports){
|
|
16123
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16124
|
+
},{"dup":35}],108:[function(require,module,exports){
|
|
16125
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16126
|
+
},{"dup":35}],109:[function(require,module,exports){
|
|
15413
16127
|
"use strict";
|
|
15414
16128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15415
16129
|
exports.ActionStatusType = void 0;
|
|
@@ -15425,7 +16139,7 @@ var ActionStatusType;
|
|
|
15425
16139
|
ActionStatusType["CanceledActionStatus"] = "CanceledActionStatus";
|
|
15426
16140
|
})(ActionStatusType = exports.ActionStatusType || (exports.ActionStatusType = {}));
|
|
15427
16141
|
|
|
15428
|
-
},{}],
|
|
16142
|
+
},{}],110:[function(require,module,exports){
|
|
15429
16143
|
"use strict";
|
|
15430
16144
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15431
16145
|
exports.ActionType = void 0;
|
|
@@ -15457,7 +16171,7 @@ var ActionType;
|
|
|
15457
16171
|
ActionType["UseAction"] = "UseAction";
|
|
15458
16172
|
})(ActionType = exports.ActionType || (exports.ActionType = {}));
|
|
15459
16173
|
|
|
15460
|
-
},{}],
|
|
16174
|
+
},{}],111:[function(require,module,exports){
|
|
15461
16175
|
"use strict";
|
|
15462
16176
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15463
16177
|
exports.ObjectType = void 0;
|
|
@@ -15466,11 +16180,11 @@ var ObjectType;
|
|
|
15466
16180
|
ObjectType["PointAward"] = "PointAward";
|
|
15467
16181
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
15468
16182
|
|
|
15469
|
-
},{}],
|
|
15470
|
-
arguments[4][
|
|
15471
|
-
},{"dup":
|
|
15472
|
-
arguments[4][
|
|
15473
|
-
},{"dup":
|
|
16183
|
+
},{}],112:[function(require,module,exports){
|
|
16184
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16185
|
+
},{"dup":35}],113:[function(require,module,exports){
|
|
16186
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16187
|
+
},{"dup":35}],114:[function(require,module,exports){
|
|
15474
16188
|
"use strict";
|
|
15475
16189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15476
16190
|
exports.ObjectType = void 0;
|
|
@@ -15479,7 +16193,7 @@ var ObjectType;
|
|
|
15479
16193
|
ObjectType["SeatReservation"] = "SeatReservation";
|
|
15480
16194
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
15481
16195
|
|
|
15482
|
-
},{}],
|
|
16196
|
+
},{}],115:[function(require,module,exports){
|
|
15483
16197
|
"use strict";
|
|
15484
16198
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15485
16199
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -15493,11 +16207,11 @@ var ServiceIdentifier;
|
|
|
15493
16207
|
ServiceIdentifier["Chevre"] = "Chevre";
|
|
15494
16208
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
15495
16209
|
|
|
15496
|
-
},{}],
|
|
15497
|
-
arguments[4][
|
|
15498
|
-
},{"dup":
|
|
15499
|
-
arguments[4][
|
|
15500
|
-
},{"dup":
|
|
16210
|
+
},{}],116:[function(require,module,exports){
|
|
16211
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16212
|
+
},{"dup":35}],117:[function(require,module,exports){
|
|
16213
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16214
|
+
},{"dup":35}],118:[function(require,module,exports){
|
|
15501
16215
|
"use strict";
|
|
15502
16216
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15503
16217
|
exports.ObjectType = void 0;
|
|
@@ -15506,56 +16220,56 @@ var ObjectType;
|
|
|
15506
16220
|
ObjectType["Ticket"] = "Ticket";
|
|
15507
16221
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
15508
16222
|
|
|
15509
|
-
},{}],
|
|
15510
|
-
arguments[4][
|
|
15511
|
-
},{"dup":
|
|
15512
|
-
arguments[4][
|
|
15513
|
-
},{"dup":
|
|
15514
|
-
arguments[4][
|
|
15515
|
-
},{"dup":
|
|
15516
|
-
arguments[4][
|
|
15517
|
-
},{"dup":
|
|
15518
|
-
arguments[4][
|
|
15519
|
-
},{"dup":
|
|
15520
|
-
arguments[4][
|
|
15521
|
-
},{"dup":
|
|
15522
|
-
arguments[4][
|
|
15523
|
-
},{"dup":
|
|
15524
|
-
arguments[4][
|
|
15525
|
-
},{"dup":
|
|
15526
|
-
arguments[4][
|
|
15527
|
-
},{"dup":
|
|
15528
|
-
arguments[4][
|
|
15529
|
-
},{"dup":
|
|
15530
|
-
arguments[4][
|
|
15531
|
-
},{"dup":
|
|
16223
|
+
},{}],119:[function(require,module,exports){
|
|
16224
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16225
|
+
},{"dup":35}],120:[function(require,module,exports){
|
|
16226
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16227
|
+
},{"dup":35}],121:[function(require,module,exports){
|
|
16228
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16229
|
+
},{"dup":35}],122:[function(require,module,exports){
|
|
16230
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16231
|
+
},{"dup":35}],123:[function(require,module,exports){
|
|
16232
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16233
|
+
},{"dup":35}],124:[function(require,module,exports){
|
|
16234
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16235
|
+
},{"dup":35}],125:[function(require,module,exports){
|
|
16236
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16237
|
+
},{"dup":35}],126:[function(require,module,exports){
|
|
16238
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16239
|
+
},{"dup":35}],127:[function(require,module,exports){
|
|
16240
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16241
|
+
},{"dup":35}],128:[function(require,module,exports){
|
|
16242
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16243
|
+
},{"dup":35}],129:[function(require,module,exports){
|
|
16244
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16245
|
+
},{"dup":35}],130:[function(require,module,exports){
|
|
15532
16246
|
"use strict";
|
|
15533
16247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15534
16248
|
exports.ObjectType = void 0;
|
|
15535
16249
|
var point_1 = require("../../authorize/award/point");
|
|
15536
16250
|
exports.ObjectType = point_1.ObjectType;
|
|
15537
16251
|
|
|
15538
|
-
},{"../../authorize/award/point":
|
|
15539
|
-
arguments[4][
|
|
15540
|
-
},{"dup":
|
|
15541
|
-
arguments[4][
|
|
15542
|
-
},{"dup":
|
|
15543
|
-
arguments[4][
|
|
15544
|
-
},{"dup":
|
|
15545
|
-
arguments[4][
|
|
15546
|
-
},{"dup":
|
|
15547
|
-
arguments[4][
|
|
15548
|
-
},{"dup":
|
|
15549
|
-
arguments[4][
|
|
15550
|
-
},{"dup":
|
|
15551
|
-
arguments[4][
|
|
15552
|
-
},{"dup":
|
|
15553
|
-
arguments[4][
|
|
15554
|
-
},{"dup":
|
|
15555
|
-
arguments[4][
|
|
15556
|
-
},{"dup":
|
|
15557
|
-
arguments[4][
|
|
15558
|
-
},{"dup":
|
|
16252
|
+
},{"../../authorize/award/point":111}],131:[function(require,module,exports){
|
|
16253
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16254
|
+
},{"dup":35}],132:[function(require,module,exports){
|
|
16255
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16256
|
+
},{"dup":35}],133:[function(require,module,exports){
|
|
16257
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16258
|
+
},{"dup":35}],134:[function(require,module,exports){
|
|
16259
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16260
|
+
},{"dup":35}],135:[function(require,module,exports){
|
|
16261
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16262
|
+
},{"dup":35}],136:[function(require,module,exports){
|
|
16263
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16264
|
+
},{"dup":35}],137:[function(require,module,exports){
|
|
16265
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16266
|
+
},{"dup":35}],138:[function(require,module,exports){
|
|
16267
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16268
|
+
},{"dup":35}],139:[function(require,module,exports){
|
|
16269
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16270
|
+
},{"dup":35}],140:[function(require,module,exports){
|
|
16271
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16272
|
+
},{"dup":35}],141:[function(require,module,exports){
|
|
15559
16273
|
"use strict";
|
|
15560
16274
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15561
16275
|
exports.AssetTransactionType = void 0;
|
|
@@ -15592,21 +16306,21 @@ var AssetTransactionType;
|
|
|
15592
16306
|
AssetTransactionType["RegisterService"] = "RegisterService";
|
|
15593
16307
|
})(AssetTransactionType = exports.AssetTransactionType || (exports.AssetTransactionType = {}));
|
|
15594
16308
|
|
|
15595
|
-
},{}],
|
|
15596
|
-
arguments[4][
|
|
15597
|
-
},{"dup":
|
|
15598
|
-
arguments[4][
|
|
15599
|
-
},{"dup":
|
|
15600
|
-
arguments[4][
|
|
15601
|
-
},{"dup":
|
|
15602
|
-
arguments[4][
|
|
15603
|
-
},{"dup":
|
|
15604
|
-
arguments[4][
|
|
15605
|
-
},{"dup":
|
|
15606
|
-
arguments[4][
|
|
15607
|
-
},{"dup":
|
|
15608
|
-
arguments[4][
|
|
15609
|
-
},{"dup":
|
|
16309
|
+
},{}],142:[function(require,module,exports){
|
|
16310
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16311
|
+
},{"dup":35}],143:[function(require,module,exports){
|
|
16312
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16313
|
+
},{"dup":35}],144:[function(require,module,exports){
|
|
16314
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16315
|
+
},{"dup":35}],145:[function(require,module,exports){
|
|
16316
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16317
|
+
},{"dup":35}],146:[function(require,module,exports){
|
|
16318
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16319
|
+
},{"dup":35}],147:[function(require,module,exports){
|
|
16320
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16321
|
+
},{"dup":35}],148:[function(require,module,exports){
|
|
16322
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16323
|
+
},{"dup":35}],149:[function(require,module,exports){
|
|
15610
16324
|
"use strict";
|
|
15611
16325
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15612
16326
|
exports.CategorySetIdentifier = void 0;
|
|
@@ -15658,7 +16372,7 @@ var CategorySetIdentifier;
|
|
|
15658
16372
|
CategorySetIdentifier["VideoFormatType"] = "VideoFormatType";
|
|
15659
16373
|
})(CategorySetIdentifier = exports.CategorySetIdentifier || (exports.CategorySetIdentifier = {}));
|
|
15660
16374
|
|
|
15661
|
-
},{}],
|
|
16375
|
+
},{}],150:[function(require,module,exports){
|
|
15662
16376
|
"use strict";
|
|
15663
16377
|
/**
|
|
15664
16378
|
* アプリケーションクライアントユーザーファクトリー
|
|
@@ -15666,9 +16380,9 @@ var CategorySetIdentifier;
|
|
|
15666
16380
|
*/
|
|
15667
16381
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15668
16382
|
|
|
15669
|
-
},{}],
|
|
15670
|
-
arguments[4][
|
|
15671
|
-
},{"dup":
|
|
16383
|
+
},{}],151:[function(require,module,exports){
|
|
16384
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16385
|
+
},{"dup":35}],152:[function(require,module,exports){
|
|
15672
16386
|
"use strict";
|
|
15673
16387
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15674
16388
|
exports.CreativeWorkType = void 0;
|
|
@@ -15683,9 +16397,9 @@ var CreativeWorkType;
|
|
|
15683
16397
|
CreativeWorkType["WebApplication"] = "WebApplication";
|
|
15684
16398
|
})(CreativeWorkType = exports.CreativeWorkType || (exports.CreativeWorkType = {}));
|
|
15685
16399
|
|
|
15686
|
-
},{}],
|
|
15687
|
-
arguments[4][
|
|
15688
|
-
},{"dup":
|
|
16400
|
+
},{}],153:[function(require,module,exports){
|
|
16401
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16402
|
+
},{"dup":35}],154:[function(require,module,exports){
|
|
15689
16403
|
"use strict";
|
|
15690
16404
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15691
16405
|
exports.AboutIdentifier = void 0;
|
|
@@ -15697,13 +16411,13 @@ var AboutIdentifier;
|
|
|
15697
16411
|
AboutIdentifier["OnEventStatusChanged"] = "OnEventStatusChanged";
|
|
15698
16412
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
15699
16413
|
|
|
15700
|
-
},{}],
|
|
15701
|
-
arguments[4][
|
|
15702
|
-
},{"dup":
|
|
15703
|
-
arguments[4][
|
|
15704
|
-
},{"dup":
|
|
15705
|
-
arguments[4][
|
|
15706
|
-
},{"dup":
|
|
16414
|
+
},{}],155:[function(require,module,exports){
|
|
16415
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16416
|
+
},{"dup":35}],156:[function(require,module,exports){
|
|
16417
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16418
|
+
},{"dup":35}],157:[function(require,module,exports){
|
|
16419
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
16420
|
+
},{"dup":35}],158:[function(require,module,exports){
|
|
15707
16421
|
"use strict";
|
|
15708
16422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15709
16423
|
exports.Video = exports.Text = exports.Multipart = exports.Model = exports.Message = exports.Image = exports.Example = exports.Font = exports.Audio = exports.Application = void 0;
|
|
@@ -15746,7 +16460,7 @@ var Video;
|
|
|
15746
16460
|
(function (Video) {
|
|
15747
16461
|
})(Video = exports.Video || (exports.Video = {}));
|
|
15748
16462
|
|
|
15749
|
-
},{}],
|
|
16463
|
+
},{}],159:[function(require,module,exports){
|
|
15750
16464
|
"use strict";
|
|
15751
16465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15752
16466
|
exports.ErrorCode = void 0;
|
|
@@ -15767,7 +16481,7 @@ var ErrorCode;
|
|
|
15767
16481
|
ErrorCode["Unauthorized"] = "Unauthorized";
|
|
15768
16482
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
15769
16483
|
|
|
15770
|
-
},{}],
|
|
16484
|
+
},{}],160:[function(require,module,exports){
|
|
15771
16485
|
"use strict";
|
|
15772
16486
|
var __extends = (this && this.__extends) || (function () {
|
|
15773
16487
|
var extendStatics = function (d, b) {
|
|
@@ -15812,7 +16526,7 @@ var AlreadyInUseError = /** @class */ (function (_super) {
|
|
|
15812
16526
|
}(chevre_1.ChevreError));
|
|
15813
16527
|
exports.AlreadyInUseError = AlreadyInUseError;
|
|
15814
16528
|
|
|
15815
|
-
},{"../errorCode":
|
|
16529
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],161:[function(require,module,exports){
|
|
15816
16530
|
"use strict";
|
|
15817
16531
|
var __extends = (this && this.__extends) || (function () {
|
|
15818
16532
|
var extendStatics = function (d, b) {
|
|
@@ -15856,7 +16570,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
15856
16570
|
}(chevre_1.ChevreError));
|
|
15857
16571
|
exports.ArgumentError = ArgumentError;
|
|
15858
16572
|
|
|
15859
|
-
},{"../errorCode":
|
|
16573
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],162:[function(require,module,exports){
|
|
15860
16574
|
"use strict";
|
|
15861
16575
|
var __extends = (this && this.__extends) || (function () {
|
|
15862
16576
|
var extendStatics = function (d, b) {
|
|
@@ -15900,7 +16614,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
15900
16614
|
}(chevre_1.ChevreError));
|
|
15901
16615
|
exports.ArgumentNullError = ArgumentNullError;
|
|
15902
16616
|
|
|
15903
|
-
},{"../errorCode":
|
|
16617
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],163:[function(require,module,exports){
|
|
15904
16618
|
"use strict";
|
|
15905
16619
|
var __extends = (this && this.__extends) || (function () {
|
|
15906
16620
|
var extendStatics = function (d, b) {
|
|
@@ -15939,7 +16653,7 @@ var ChevreError = /** @class */ (function (_super) {
|
|
|
15939
16653
|
}(Error));
|
|
15940
16654
|
exports.ChevreError = ChevreError;
|
|
15941
16655
|
|
|
15942
|
-
},{"setprototypeof":
|
|
16656
|
+
},{"setprototypeof":304}],164:[function(require,module,exports){
|
|
15943
16657
|
"use strict";
|
|
15944
16658
|
var __extends = (this && this.__extends) || (function () {
|
|
15945
16659
|
var extendStatics = function (d, b) {
|
|
@@ -15982,7 +16696,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
15982
16696
|
}(chevre_1.ChevreError));
|
|
15983
16697
|
exports.ForbiddenError = ForbiddenError;
|
|
15984
16698
|
|
|
15985
|
-
},{"../errorCode":
|
|
16699
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],165:[function(require,module,exports){
|
|
15986
16700
|
"use strict";
|
|
15987
16701
|
var __extends = (this && this.__extends) || (function () {
|
|
15988
16702
|
var extendStatics = function (d, b) {
|
|
@@ -16025,7 +16739,7 @@ var GatewayTimeoutError = /** @class */ (function (_super) {
|
|
|
16025
16739
|
}(chevre_1.ChevreError));
|
|
16026
16740
|
exports.GatewayTimeoutError = GatewayTimeoutError;
|
|
16027
16741
|
|
|
16028
|
-
},{"../errorCode":
|
|
16742
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],166:[function(require,module,exports){
|
|
16029
16743
|
"use strict";
|
|
16030
16744
|
var __extends = (this && this.__extends) || (function () {
|
|
16031
16745
|
var extendStatics = function (d, b) {
|
|
@@ -16069,7 +16783,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
16069
16783
|
}(chevre_1.ChevreError));
|
|
16070
16784
|
exports.NotFoundError = NotFoundError;
|
|
16071
16785
|
|
|
16072
|
-
},{"../errorCode":
|
|
16786
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],167:[function(require,module,exports){
|
|
16073
16787
|
"use strict";
|
|
16074
16788
|
var __extends = (this && this.__extends) || (function () {
|
|
16075
16789
|
var extendStatics = function (d, b) {
|
|
@@ -16112,7 +16826,7 @@ var NotImplementedError = /** @class */ (function (_super) {
|
|
|
16112
16826
|
}(chevre_1.ChevreError));
|
|
16113
16827
|
exports.NotImplementedError = NotImplementedError;
|
|
16114
16828
|
|
|
16115
|
-
},{"../errorCode":
|
|
16829
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],168:[function(require,module,exports){
|
|
16116
16830
|
"use strict";
|
|
16117
16831
|
var __extends = (this && this.__extends) || (function () {
|
|
16118
16832
|
var extendStatics = function (d, b) {
|
|
@@ -16155,7 +16869,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
16155
16869
|
}(chevre_1.ChevreError));
|
|
16156
16870
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
16157
16871
|
|
|
16158
|
-
},{"../errorCode":
|
|
16872
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],169:[function(require,module,exports){
|
|
16159
16873
|
"use strict";
|
|
16160
16874
|
var __extends = (this && this.__extends) || (function () {
|
|
16161
16875
|
var extendStatics = function (d, b) {
|
|
@@ -16198,7 +16912,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
16198
16912
|
}(chevre_1.ChevreError));
|
|
16199
16913
|
exports.ServiceUnavailableError = ServiceUnavailableError;
|
|
16200
16914
|
|
|
16201
|
-
},{"../errorCode":
|
|
16915
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],170:[function(require,module,exports){
|
|
16202
16916
|
"use strict";
|
|
16203
16917
|
var __extends = (this && this.__extends) || (function () {
|
|
16204
16918
|
var extendStatics = function (d, b) {
|
|
@@ -16241,7 +16955,7 @@ var UnauthorizedError = /** @class */ (function (_super) {
|
|
|
16241
16955
|
}(chevre_1.ChevreError));
|
|
16242
16956
|
exports.UnauthorizedError = UnauthorizedError;
|
|
16243
16957
|
|
|
16244
|
-
},{"../errorCode":
|
|
16958
|
+
},{"../errorCode":159,"./chevre":163,"setprototypeof":304}],171:[function(require,module,exports){
|
|
16245
16959
|
"use strict";
|
|
16246
16960
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16247
16961
|
exports.Unauthorized = exports.ServiceUnavailable = exports.RateLimitExceeded = exports.NotImplemented = exports.NotFound = exports.GatewayTimeout = exports.Forbidden = exports.Chevre = exports.ArgumentNull = exports.Argument = exports.AlreadyInUse = void 0;
|
|
@@ -16271,7 +16985,7 @@ Object.defineProperty(exports, "ServiceUnavailable", { enumerable: true, get: fu
|
|
|
16271
16985
|
var unauthorized_1 = require("./error/unauthorized");
|
|
16272
16986
|
Object.defineProperty(exports, "Unauthorized", { enumerable: true, get: function () { return unauthorized_1.UnauthorizedError; } });
|
|
16273
16987
|
|
|
16274
|
-
},{"./error/alreadyInUse":
|
|
16988
|
+
},{"./error/alreadyInUse":160,"./error/argument":161,"./error/argumentNull":162,"./error/chevre":163,"./error/forbidden":164,"./error/gatewayTimeout":165,"./error/notFound":166,"./error/notImplemented":167,"./error/rateLimitExceeded":168,"./error/serviceUnavailable":169,"./error/unauthorized":170}],172:[function(require,module,exports){
|
|
16275
16989
|
"use strict";
|
|
16276
16990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16277
16991
|
exports.EventStatusType = void 0;
|
|
@@ -16286,7 +17000,7 @@ var EventStatusType;
|
|
|
16286
17000
|
EventStatusType["EventScheduled"] = "EventScheduled";
|
|
16287
17001
|
})(EventStatusType = exports.EventStatusType || (exports.EventStatusType = {}));
|
|
16288
17002
|
|
|
16289
|
-
},{}],
|
|
17003
|
+
},{}],173:[function(require,module,exports){
|
|
16290
17004
|
"use strict";
|
|
16291
17005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16292
17006
|
exports.EventType = void 0;
|
|
@@ -16300,13 +17014,13 @@ var EventType;
|
|
|
16300
17014
|
EventType["ScreeningEventSeries"] = "ScreeningEventSeries";
|
|
16301
17015
|
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
16302
17016
|
|
|
16303
|
-
},{}],
|
|
16304
|
-
arguments[4][
|
|
16305
|
-
},{"dup":
|
|
16306
|
-
arguments[4][
|
|
16307
|
-
},{"dup":
|
|
16308
|
-
arguments[4][
|
|
16309
|
-
},{"dup":
|
|
17017
|
+
},{}],174:[function(require,module,exports){
|
|
17018
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17019
|
+
},{"dup":35}],175:[function(require,module,exports){
|
|
17020
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17021
|
+
},{"dup":35}],176:[function(require,module,exports){
|
|
17022
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17023
|
+
},{"dup":35}],177:[function(require,module,exports){
|
|
16310
17024
|
"use strict";
|
|
16311
17025
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16312
17026
|
exports.RoleType = void 0;
|
|
@@ -16315,11 +17029,11 @@ var RoleType;
|
|
|
16315
17029
|
RoleType["OrganizationRole"] = "OrganizationRole";
|
|
16316
17030
|
})(RoleType = exports.RoleType || (exports.RoleType = {}));
|
|
16317
17031
|
|
|
16318
|
-
},{}],
|
|
17032
|
+
},{}],178:[function(require,module,exports){
|
|
16319
17033
|
"use strict";
|
|
16320
17034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16321
|
-
exports.
|
|
16322
|
-
exports.unitPriceOffer = exports.unitCode = exports.assetTransactionType = exports.transactionTasksExportationStatus = exports.transactionStatusType = exports.transactionType = exports.transaction = exports.assetTransaction = exports.tripType = exports.trip = exports.thing = exports.taskStatus = exports.taskName = exports.sortType = exports.service = exports.task = exports.seller = exports.reservationType = exports.reservationStatusType = exports.reservation = exports.report = exports.quantitativeValue = void 0;
|
|
17035
|
+
exports.propertyValue = exports.project = exports.product = exports.programMembership = exports.priceSpecificationType = exports.priceSpecification = exports.placeType = exports.place = exports.priceCurrency = exports.personType = exports.person = exports.permit = exports.paymentStatusType = exports.paymentMethod = exports.ownershipInfo = exports.organizationType = exports.organization = exports.orderStatus = exports.order = exports.offerType = exports.offerItemCondition = exports.offerCatalog = exports.offer = exports.monetaryAmount = exports.merchantReturnPolicy = exports.language = exports.itemAvailability = exports.invoice = exports.iam = exports.eventType = exports.eventStatusType = exports.encodingFormat = exports.event = exports.customer = exports.creativeWorkType = exports.creativeWork = exports.clientUser = exports.categoryCode = exports.authorization = exports.additionalProperty = exports.accountType = exports.accountTitle = exports.action = exports.actionType = exports.actionStatusType = exports.account = exports.errorCode = exports.errors = exports.waiter = exports.cognito = void 0;
|
|
17036
|
+
exports.unitPriceOffer = exports.unitCode = exports.assetTransactionType = exports.transactionTasksExportationStatus = exports.transactionStatusType = exports.transactionType = exports.transaction = exports.assetTransaction = exports.tripType = exports.trip = exports.thing = exports.taskStatus = exports.taskName = exports.sortType = exports.service = exports.task = exports.seller = exports.reservationType = exports.reservationStatusType = exports.reservation = exports.report = exports.quantitativeValue = exports.qualitativeValue = void 0;
|
|
16323
17037
|
/**
|
|
16324
17038
|
* factory
|
|
16325
17039
|
*/
|
|
@@ -16385,6 +17099,7 @@ var MerchantReturnPolicyFactory = require("./merchantReturnPolicy");
|
|
|
16385
17099
|
var MonetaryAmountFactory = require("./monetaryAmount");
|
|
16386
17100
|
var OfferFactory = require("./offer");
|
|
16387
17101
|
var OfferCatalogFactory = require("./offerCatalog");
|
|
17102
|
+
var OfferItemConditionFactory = require("./offerItemCondition");
|
|
16388
17103
|
var offerType_1 = require("./offerType");
|
|
16389
17104
|
var OrderFactory = require("./order");
|
|
16390
17105
|
var orderStatus_1 = require("./orderStatus");
|
|
@@ -16434,18 +17149,23 @@ var CancelAccountMoneyTransferTaskFactory = require("./task/cancelAccountMoneyTr
|
|
|
16434
17149
|
var CancelMoneyTransferTaskFactory = require("./task/cancelMoneyTransfer");
|
|
16435
17150
|
var CancelPendingReservationTaskFactory = require("./task/cancelPendingReservation");
|
|
16436
17151
|
var CancelReservationTaskFactory = require("./task/cancelReservation");
|
|
16437
|
-
var
|
|
17152
|
+
var DeleteTransactionTaskFactory = require("./task/deleteTransaction");
|
|
16438
17153
|
var ImportEventCapacitiesFromCOATaskFactory = require("./task/importEventCapacitiesFromCOA");
|
|
16439
17154
|
var ImportEventsFromCOATaskFactory = require("./task/importEventsFromCOA");
|
|
16440
17155
|
var ImportOffersFromCOATaskFactory = require("./task/importOffersFromCOA");
|
|
16441
17156
|
var MoneyTransferTaskFactory = require("./task/moneyTransfer");
|
|
17157
|
+
var OnAuthorizationCreatedTaskFactory = require("./task/onAuthorizationCreated");
|
|
17158
|
+
var OnEventChangedTaskFactory = require("./task/onEventChanged");
|
|
17159
|
+
var OnResourceUpdatedTaskFactory = require("./task/onResourceUpdated");
|
|
16442
17160
|
var OrderProgramMembershipTaskFactory = require("./task/orderProgramMembership");
|
|
16443
17161
|
var PayTaskFactory = require("./task/pay");
|
|
16444
17162
|
var RefundTaskFactory = require("./task/refund");
|
|
16445
17163
|
var RegisterServiceTaskFactory = require("./task/registerService");
|
|
16446
17164
|
var ReserveTaskFactory = require("./task/reserve");
|
|
16447
17165
|
var SendEmailMessageTaskFactory = require("./task/sendEmailMessage");
|
|
17166
|
+
var SyncScreeningRoomsTaskFactory = require("./task/syncScreeningRooms");
|
|
16448
17167
|
var TriggerWebhookTaskFactory = require("./task/triggerWebhook");
|
|
17168
|
+
var UseReservationTaskFactory = require("./task/useReservation");
|
|
16449
17169
|
var VoidPaymentTaskFactory = require("./task/voidPayment");
|
|
16450
17170
|
var taskName_1 = require("./taskName");
|
|
16451
17171
|
var taskStatus_1 = require("./taskStatus");
|
|
@@ -16619,6 +17339,7 @@ exports.merchantReturnPolicy = MerchantReturnPolicyFactory;
|
|
|
16619
17339
|
exports.monetaryAmount = MonetaryAmountFactory;
|
|
16620
17340
|
exports.offer = OfferFactory;
|
|
16621
17341
|
exports.offerCatalog = OfferCatalogFactory;
|
|
17342
|
+
exports.offerItemCondition = OfferItemConditionFactory;
|
|
16622
17343
|
exports.offerType = offerType_1.OfferType;
|
|
16623
17344
|
exports.order = OrderFactory;
|
|
16624
17345
|
exports.orderStatus = orderStatus_1.OrderStatus;
|
|
@@ -16681,7 +17402,7 @@ var task;
|
|
|
16681
17402
|
task.cancelMoneyTransfer = CancelMoneyTransferTaskFactory;
|
|
16682
17403
|
task.cancelPendingReservation = CancelPendingReservationTaskFactory;
|
|
16683
17404
|
task.cancelReservation = CancelReservationTaskFactory;
|
|
16684
|
-
task.
|
|
17405
|
+
task.deleteTransaction = DeleteTransactionTaskFactory;
|
|
16685
17406
|
task.importEventCapacitiesFromCOA = ImportEventCapacitiesFromCOATaskFactory;
|
|
16686
17407
|
task.importEventsFromCOA = ImportEventsFromCOATaskFactory;
|
|
16687
17408
|
task.importOffersFromCOA = ImportOffersFromCOATaskFactory;
|
|
@@ -16691,8 +17412,13 @@ var task;
|
|
|
16691
17412
|
task.registerService = RegisterServiceTaskFactory;
|
|
16692
17413
|
task.reserve = ReserveTaskFactory;
|
|
16693
17414
|
task.sendEmailMessage = SendEmailMessageTaskFactory;
|
|
17415
|
+
task.syncScreeningRooms = SyncScreeningRoomsTaskFactory;
|
|
16694
17416
|
task.triggerWebhook = TriggerWebhookTaskFactory;
|
|
17417
|
+
task.useReservation = UseReservationTaskFactory;
|
|
16695
17418
|
task.voidPayment = VoidPaymentTaskFactory;
|
|
17419
|
+
task.onAuthorizationCreated = OnAuthorizationCreatedTaskFactory;
|
|
17420
|
+
task.onEventChanged = OnEventChangedTaskFactory;
|
|
17421
|
+
task.onResourceUpdated = OnResourceUpdatedTaskFactory;
|
|
16696
17422
|
task.orderProgramMembership = OrderProgramMembershipTaskFactory;
|
|
16697
17423
|
task.accountMoneyTransfer = AccountMoneyTransferTaskFactory;
|
|
16698
17424
|
task.cancelAccountMoneyTransfer = CancelAccountMoneyTransferTaskFactory;
|
|
@@ -16733,9 +17459,9 @@ exports.assetTransactionType = assetTransactionType_1.AssetTransactionType;
|
|
|
16733
17459
|
exports.unitCode = unitCode_1.UnitCode;
|
|
16734
17460
|
exports.unitPriceOffer = UnitPriceOfferFactory;
|
|
16735
17461
|
|
|
16736
|
-
},{"./account":
|
|
16737
|
-
arguments[4][
|
|
16738
|
-
},{"dup":
|
|
17462
|
+
},{"./account":101,"./accountTitle":102,"./accountType":103,"./action/authorize/award/point":111,"./action/authorize/offer/moneyTransfer":112,"./action/authorize/offer/product":113,"./action/authorize/offer/seatReservation":114,"./action/authorize/paymentMethod/any":115,"./action/cancel/reservation":116,"./action/check/paymentMethod/movieTicket":117,"./action/check/token":118,"./action/consume/use/reservation":119,"./action/interact/confirm/moneyTransfer":120,"./action/interact/confirm/pay":121,"./action/interact/confirm/registerService":122,"./action/interact/confirm/reservation":123,"./action/interact/inform":124,"./action/interact/register/service":125,"./action/reserve":126,"./action/trade/order":127,"./action/trade/pay":128,"./action/trade/refund":129,"./action/transfer/give/pointAward":130,"./action/transfer/moneyTransfer":131,"./action/transfer/return/moneyTransfer":132,"./action/transfer/return/order":133,"./action/transfer/return/paymentMethod":134,"./action/transfer/return/pointAward":135,"./action/transfer/return/reserveTransaction":136,"./action/transfer/send/message/email":137,"./action/transfer/send/order":138,"./action/update/delete/member":139,"./actionStatusType":109,"./actionType":110,"./additionalProperty":140,"./assetTransaction/cancelReservation":142,"./assetTransaction/moneyTransfer":143,"./assetTransaction/pay":144,"./assetTransaction/refund":145,"./assetTransaction/registerService":146,"./assetTransaction/reserve":147,"./assetTransactionType":141,"./authorization":148,"./categoryCode":149,"./clientUser":150,"./cognito":151,"./creativeWork/comment":153,"./creativeWork/message/email":154,"./creativeWork/movie":155,"./creativeWork/softwareApplication/webApplication":156,"./creativeWorkType":152,"./customer":157,"./encodingFormat":158,"./errorCode":159,"./errors":171,"./event/anyEvent":174,"./event/screeningEvent":175,"./event/screeningEventSeries":176,"./eventStatusType":172,"./eventType":173,"./iam":177,"./invoice":179,"./itemAvailability":180,"./language":181,"./merchantReturnPolicy":182,"./monetaryAmount":183,"./offer":184,"./offerCatalog":185,"./offerItemCondition":186,"./offerType":187,"./order":188,"./orderStatus":189,"./organization":190,"./organizationType":191,"./ownershipInfo":192,"./paymentMethod/paymentCard/creditCard":193,"./paymentMethod/paymentCard/movieTicket":194,"./paymentStatusType":195,"./permit":196,"./person":197,"./personType":198,"./place/busStop":200,"./place/movieTheater":201,"./place/screeningRoom":202,"./place/screeningRoomSection":203,"./place/seat":204,"./placeType":199,"./priceCurrency":205,"./priceSpecification/unitPriceSpecification":207,"./priceSpecificationType":206,"./product":208,"./programMembership":209,"./project":210,"./propertyValue":211,"./propertyValue/locationFeatureSpecification":212,"./qualitativeValue":213,"./quantitativeValue":214,"./report/accountingReport":215,"./reservation/busReservation":218,"./reservation/event":219,"./reservationStatusType":216,"./reservationType":217,"./seller":220,"./service/paymentService":221,"./service/webAPI":222,"./sortType":223,"./task/accountMoneyTransfer":226,"./task/aggregateScreeningEvent":227,"./task/aggregateUseActionsOnEvent":228,"./task/cancelAccountMoneyTransfer":229,"./task/cancelMoneyTransfer":230,"./task/cancelPendingReservation":231,"./task/cancelReservation":232,"./task/deleteTransaction":233,"./task/importEventCapacitiesFromCOA":234,"./task/importEventsFromCOA":235,"./task/importOffersFromCOA":236,"./task/moneyTransfer":237,"./task/onAuthorizationCreated":238,"./task/onEventChanged":239,"./task/onResourceUpdated":240,"./task/orderProgramMembership":241,"./task/pay":242,"./task/refund":243,"./task/registerService":244,"./task/reserve":245,"./task/sendEmailMessage":246,"./task/syncScreeningRooms":247,"./task/triggerWebhook":248,"./task/useReservation":249,"./task/voidPayment":250,"./taskName":224,"./taskStatus":225,"./thing":251,"./transaction/moneyTransfer":255,"./transaction/placeOrder":256,"./transaction/returnOrder":257,"./transactionStatusType":252,"./transactionTasksExportationStatus":253,"./transactionType":254,"./trip/busTrip":259,"./tripType":258,"./unitCode":260,"./unitPriceOffer":261,"@waiter/factory":275}],179:[function(require,module,exports){
|
|
17463
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17464
|
+
},{"dup":35}],180:[function(require,module,exports){
|
|
16739
17465
|
"use strict";
|
|
16740
17466
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16741
17467
|
exports.ItemAvailability = void 0;
|
|
@@ -16755,9 +17481,9 @@ var ItemAvailability;
|
|
|
16755
17481
|
ItemAvailability["SoldOut"] = "SoldOut";
|
|
16756
17482
|
})(ItemAvailability = exports.ItemAvailability || (exports.ItemAvailability = {}));
|
|
16757
17483
|
|
|
16758
|
-
},{}],
|
|
16759
|
-
arguments[4][
|
|
16760
|
-
},{"dup":
|
|
17484
|
+
},{}],181:[function(require,module,exports){
|
|
17485
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17486
|
+
},{"dup":35}],182:[function(require,module,exports){
|
|
16761
17487
|
"use strict";
|
|
16762
17488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16763
17489
|
exports.MerchantReturnEnumeration = exports.ReturnFeesEnumeration = exports.RefundTypeEnumeration = void 0;
|
|
@@ -16808,13 +17534,15 @@ var MerchantReturnEnumeration;
|
|
|
16808
17534
|
MerchantReturnEnumeration["MerchantReturnUnspecified"] = "MerchantReturnUnspecified";
|
|
16809
17535
|
})(MerchantReturnEnumeration = exports.MerchantReturnEnumeration || (exports.MerchantReturnEnumeration = {}));
|
|
16810
17536
|
|
|
16811
|
-
},{}],
|
|
16812
|
-
arguments[4][
|
|
16813
|
-
},{"dup":
|
|
16814
|
-
arguments[4][
|
|
16815
|
-
},{"dup":
|
|
16816
|
-
arguments[4][
|
|
16817
|
-
},{"dup":
|
|
17537
|
+
},{}],183:[function(require,module,exports){
|
|
17538
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17539
|
+
},{"dup":35}],184:[function(require,module,exports){
|
|
17540
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17541
|
+
},{"dup":35}],185:[function(require,module,exports){
|
|
17542
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17543
|
+
},{"dup":35}],186:[function(require,module,exports){
|
|
17544
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17545
|
+
},{"dup":35}],187:[function(require,module,exports){
|
|
16818
17546
|
"use strict";
|
|
16819
17547
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16820
17548
|
exports.OfferType = void 0;
|
|
@@ -16827,7 +17555,7 @@ var OfferType;
|
|
|
16827
17555
|
OfferType["AggregateOffer"] = "AggregateOffer";
|
|
16828
17556
|
})(OfferType = exports.OfferType || (exports.OfferType = {}));
|
|
16829
17557
|
|
|
16830
|
-
},{}],
|
|
17558
|
+
},{}],188:[function(require,module,exports){
|
|
16831
17559
|
"use strict";
|
|
16832
17560
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16833
17561
|
exports.OrderType = void 0;
|
|
@@ -16836,7 +17564,7 @@ var OrderType;
|
|
|
16836
17564
|
OrderType["Order"] = "Order";
|
|
16837
17565
|
})(OrderType = exports.OrderType || (exports.OrderType = {}));
|
|
16838
17566
|
|
|
16839
|
-
},{}],
|
|
17567
|
+
},{}],189:[function(require,module,exports){
|
|
16840
17568
|
"use strict";
|
|
16841
17569
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16842
17570
|
exports.OrderStatus = void 0;
|
|
@@ -16855,9 +17583,9 @@ var OrderStatus;
|
|
|
16855
17583
|
OrderStatus["OrderReturned"] = "OrderReturned";
|
|
16856
17584
|
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));
|
|
16857
17585
|
|
|
16858
|
-
},{}],
|
|
16859
|
-
arguments[4][
|
|
16860
|
-
},{"dup":
|
|
17586
|
+
},{}],190:[function(require,module,exports){
|
|
17587
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17588
|
+
},{"dup":35}],191:[function(require,module,exports){
|
|
16861
17589
|
"use strict";
|
|
16862
17590
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16863
17591
|
exports.OrganizationType = void 0;
|
|
@@ -16882,13 +17610,13 @@ var OrganizationType;
|
|
|
16882
17610
|
OrganizationType["Project"] = "Project";
|
|
16883
17611
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
16884
17612
|
|
|
16885
|
-
},{}],
|
|
16886
|
-
arguments[4][
|
|
16887
|
-
},{"dup":
|
|
16888
|
-
arguments[4][
|
|
16889
|
-
},{"dup":
|
|
16890
|
-
arguments[4][
|
|
16891
|
-
},{"dup":
|
|
17613
|
+
},{}],192:[function(require,module,exports){
|
|
17614
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17615
|
+
},{"dup":35}],193:[function(require,module,exports){
|
|
17616
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17617
|
+
},{"dup":35}],194:[function(require,module,exports){
|
|
17618
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17619
|
+
},{"dup":35}],195:[function(require,module,exports){
|
|
16892
17620
|
"use strict";
|
|
16893
17621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16894
17622
|
exports.PaymentStatusType = void 0;
|
|
@@ -16904,7 +17632,7 @@ var PaymentStatusType;
|
|
|
16904
17632
|
PaymentStatusType["PaymentPastDue"] = "PaymentPastDue";
|
|
16905
17633
|
})(PaymentStatusType = exports.PaymentStatusType || (exports.PaymentStatusType = {}));
|
|
16906
17634
|
|
|
16907
|
-
},{}],
|
|
17635
|
+
},{}],196:[function(require,module,exports){
|
|
16908
17636
|
"use strict";
|
|
16909
17637
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16910
17638
|
exports.PermitType = void 0;
|
|
@@ -16913,9 +17641,9 @@ var PermitType;
|
|
|
16913
17641
|
PermitType["Permit"] = "Permit";
|
|
16914
17642
|
})(PermitType = exports.PermitType || (exports.PermitType = {}));
|
|
16915
17643
|
|
|
16916
|
-
},{}],
|
|
16917
|
-
arguments[4][
|
|
16918
|
-
},{"dup":
|
|
17644
|
+
},{}],197:[function(require,module,exports){
|
|
17645
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17646
|
+
},{"dup":35}],198:[function(require,module,exports){
|
|
16919
17647
|
"use strict";
|
|
16920
17648
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16921
17649
|
exports.PersonType = void 0;
|
|
@@ -16927,7 +17655,7 @@ var PersonType;
|
|
|
16927
17655
|
PersonType["Person"] = "Person";
|
|
16928
17656
|
})(PersonType = exports.PersonType || (exports.PersonType = {}));
|
|
16929
17657
|
|
|
16930
|
-
},{}],
|
|
17658
|
+
},{}],199:[function(require,module,exports){
|
|
16931
17659
|
"use strict";
|
|
16932
17660
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16933
17661
|
exports.PlaceType = void 0;
|
|
@@ -16945,17 +17673,17 @@ var PlaceType;
|
|
|
16945
17673
|
PlaceType["Seat"] = "Seat";
|
|
16946
17674
|
})(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
|
|
16947
17675
|
|
|
16948
|
-
},{}],
|
|
16949
|
-
arguments[4][
|
|
16950
|
-
},{"dup":
|
|
16951
|
-
arguments[4][
|
|
16952
|
-
},{"dup":
|
|
16953
|
-
arguments[4][
|
|
16954
|
-
},{"dup":
|
|
16955
|
-
arguments[4][
|
|
16956
|
-
},{"dup":
|
|
16957
|
-
arguments[4][
|
|
16958
|
-
},{"dup":
|
|
17676
|
+
},{}],200:[function(require,module,exports){
|
|
17677
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17678
|
+
},{"dup":35}],201:[function(require,module,exports){
|
|
17679
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17680
|
+
},{"dup":35}],202:[function(require,module,exports){
|
|
17681
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17682
|
+
},{"dup":35}],203:[function(require,module,exports){
|
|
17683
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17684
|
+
},{"dup":35}],204:[function(require,module,exports){
|
|
17685
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17686
|
+
},{"dup":35}],205:[function(require,module,exports){
|
|
16959
17687
|
"use strict";
|
|
16960
17688
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16961
17689
|
exports.PriceCurrency = void 0;
|
|
@@ -16969,7 +17697,7 @@ var PriceCurrency;
|
|
|
16969
17697
|
PriceCurrency["JPY"] = "JPY";
|
|
16970
17698
|
})(PriceCurrency = exports.PriceCurrency || (exports.PriceCurrency = {}));
|
|
16971
17699
|
|
|
16972
|
-
},{}],
|
|
17700
|
+
},{}],206:[function(require,module,exports){
|
|
16973
17701
|
"use strict";
|
|
16974
17702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16975
17703
|
exports.PriceSpecificationType = void 0;
|
|
@@ -17000,9 +17728,9 @@ var PriceSpecificationType;
|
|
|
17000
17728
|
PriceSpecificationType["UnitPriceSpecification"] = "UnitPriceSpecification";
|
|
17001
17729
|
})(PriceSpecificationType = exports.PriceSpecificationType || (exports.PriceSpecificationType = {}));
|
|
17002
17730
|
|
|
17003
|
-
},{}],
|
|
17004
|
-
arguments[4][
|
|
17005
|
-
},{"dup":
|
|
17731
|
+
},{}],207:[function(require,module,exports){
|
|
17732
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17733
|
+
},{"dup":35}],208:[function(require,module,exports){
|
|
17006
17734
|
"use strict";
|
|
17007
17735
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17008
17736
|
exports.ProductType = void 0;
|
|
@@ -17033,7 +17761,7 @@ var ProductType;
|
|
|
17033
17761
|
ProductType["Transportation"] = "Transportation";
|
|
17034
17762
|
})(ProductType = exports.ProductType || (exports.ProductType = {}));
|
|
17035
17763
|
|
|
17036
|
-
},{}],
|
|
17764
|
+
},{}],209:[function(require,module,exports){
|
|
17037
17765
|
"use strict";
|
|
17038
17766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17039
17767
|
exports.ProgramMembershipType = void 0;
|
|
@@ -17042,9 +17770,9 @@ var ProgramMembershipType;
|
|
|
17042
17770
|
ProgramMembershipType["ProgramMembership"] = "ProgramMembership";
|
|
17043
17771
|
})(ProgramMembershipType = exports.ProgramMembershipType || (exports.ProgramMembershipType = {}));
|
|
17044
17772
|
|
|
17045
|
-
},{}],
|
|
17046
|
-
arguments[4][
|
|
17047
|
-
},{"dup":
|
|
17773
|
+
},{}],210:[function(require,module,exports){
|
|
17774
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17775
|
+
},{"dup":35}],211:[function(require,module,exports){
|
|
17048
17776
|
"use strict";
|
|
17049
17777
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17050
17778
|
exports.PropertyValueType = void 0;
|
|
@@ -17053,11 +17781,11 @@ var PropertyValueType;
|
|
|
17053
17781
|
PropertyValueType["LocationFeatureSpecification"] = "LocationFeatureSpecification";
|
|
17054
17782
|
})(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
|
|
17055
17783
|
|
|
17056
|
-
},{}],
|
|
17057
|
-
arguments[4][
|
|
17058
|
-
},{"dup":
|
|
17059
|
-
arguments[4][
|
|
17060
|
-
},{"dup":
|
|
17784
|
+
},{}],212:[function(require,module,exports){
|
|
17785
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17786
|
+
},{"dup":35}],213:[function(require,module,exports){
|
|
17787
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17788
|
+
},{"dup":35}],214:[function(require,module,exports){
|
|
17061
17789
|
"use strict";
|
|
17062
17790
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17063
17791
|
exports.StringValue = void 0;
|
|
@@ -17066,9 +17794,9 @@ var StringValue;
|
|
|
17066
17794
|
StringValue["Infinity"] = "Infinity";
|
|
17067
17795
|
})(StringValue = exports.StringValue || (exports.StringValue = {}));
|
|
17068
17796
|
|
|
17069
|
-
},{}],
|
|
17070
|
-
arguments[4][
|
|
17071
|
-
},{"dup":
|
|
17797
|
+
},{}],215:[function(require,module,exports){
|
|
17798
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17799
|
+
},{"dup":35}],216:[function(require,module,exports){
|
|
17072
17800
|
"use strict";
|
|
17073
17801
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17074
17802
|
exports.ReservationStatusType = void 0;
|
|
@@ -17095,7 +17823,7 @@ var ReservationStatusType;
|
|
|
17095
17823
|
ReservationStatusType["ReservationPending"] = "ReservationPending";
|
|
17096
17824
|
})(ReservationStatusType = exports.ReservationStatusType || (exports.ReservationStatusType = {}));
|
|
17097
17825
|
|
|
17098
|
-
},{}],
|
|
17826
|
+
},{}],217:[function(require,module,exports){
|
|
17099
17827
|
"use strict";
|
|
17100
17828
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17101
17829
|
exports.ReservationType = void 0;
|
|
@@ -17109,13 +17837,13 @@ var ReservationType;
|
|
|
17109
17837
|
ReservationType["ReservationPackage"] = "ReservationPackage";
|
|
17110
17838
|
})(ReservationType = exports.ReservationType || (exports.ReservationType = {}));
|
|
17111
17839
|
|
|
17112
|
-
},{}],
|
|
17113
|
-
arguments[4][
|
|
17114
|
-
},{"dup":
|
|
17115
|
-
arguments[4][
|
|
17116
|
-
},{"dup":
|
|
17117
|
-
arguments[4][
|
|
17118
|
-
},{"dup":
|
|
17840
|
+
},{}],218:[function(require,module,exports){
|
|
17841
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17842
|
+
},{"dup":35}],219:[function(require,module,exports){
|
|
17843
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17844
|
+
},{"dup":35}],220:[function(require,module,exports){
|
|
17845
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
17846
|
+
},{"dup":35}],221:[function(require,module,exports){
|
|
17119
17847
|
"use strict";
|
|
17120
17848
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17121
17849
|
exports.PaymentServiceType = void 0;
|
|
@@ -17127,7 +17855,7 @@ var PaymentServiceType;
|
|
|
17127
17855
|
PaymentServiceType["PaymentCard"] = "PaymentCard";
|
|
17128
17856
|
})(PaymentServiceType = exports.PaymentServiceType || (exports.PaymentServiceType = {}));
|
|
17129
17857
|
|
|
17130
|
-
},{}],
|
|
17858
|
+
},{}],222:[function(require,module,exports){
|
|
17131
17859
|
"use strict";
|
|
17132
17860
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17133
17861
|
exports.Identifier = void 0;
|
|
@@ -17137,7 +17865,7 @@ var Identifier;
|
|
|
17137
17865
|
Identifier["Chevre"] = "Chevre";
|
|
17138
17866
|
})(Identifier = exports.Identifier || (exports.Identifier = {}));
|
|
17139
17867
|
|
|
17140
|
-
},{}],
|
|
17868
|
+
},{}],223:[function(require,module,exports){
|
|
17141
17869
|
"use strict";
|
|
17142
17870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17143
17871
|
exports.SortType = void 0;
|
|
@@ -17150,7 +17878,7 @@ var SortType;
|
|
|
17150
17878
|
SortType[SortType["Descending"] = -1] = "Descending";
|
|
17151
17879
|
})(SortType = exports.SortType || (exports.SortType = {}));
|
|
17152
17880
|
|
|
17153
|
-
},{}],
|
|
17881
|
+
},{}],224:[function(require,module,exports){
|
|
17154
17882
|
"use strict";
|
|
17155
17883
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17156
17884
|
exports.TaskName = void 0;
|
|
@@ -17159,31 +17887,19 @@ exports.TaskName = void 0;
|
|
|
17159
17887
|
*/
|
|
17160
17888
|
var TaskName;
|
|
17161
17889
|
(function (TaskName) {
|
|
17162
|
-
TaskName["Reserve"] = "reserve";
|
|
17163
|
-
TaskName["CancelReservation"] = "cancelReservation";
|
|
17164
|
-
TaskName["CancelPendingReservation"] = "cancelPendingReservation";
|
|
17165
|
-
TaskName["AggregateScreeningEvent"] = "aggregateScreeningEvent";
|
|
17166
|
-
TaskName["AggregateUseActionsOnEvent"] = "aggregateUseActionsOnEvent";
|
|
17167
|
-
TaskName["DeleteAssetTransaction"] = "deleteAssetTransaction";
|
|
17168
|
-
TaskName["DeleteOrder"] = "deleteOrder";
|
|
17169
|
-
TaskName["DeleteTransaction"] = "deleteTransaction";
|
|
17170
|
-
TaskName["ImportEventCapacitiesFromCOA"] = "importEventCapacitiesFromCOA";
|
|
17171
|
-
TaskName["ImportEventsFromCOA"] = "importEventsFromCOA";
|
|
17172
|
-
TaskName["ImportOffersFromCOA"] = "importOffersFromCOA";
|
|
17173
|
-
TaskName["CancelMoneyTransfer"] = "cancelMoneyTransfer";
|
|
17174
|
-
TaskName["MoneyTransfer"] = "moneyTransfer";
|
|
17175
|
-
TaskName["Refund"] = "refund";
|
|
17176
|
-
TaskName["RegisterService"] = "registerService";
|
|
17177
|
-
TaskName["Pay"] = "pay";
|
|
17178
17890
|
/**
|
|
17179
|
-
*
|
|
17891
|
+
* 口座転送
|
|
17180
17892
|
*/
|
|
17181
|
-
TaskName["
|
|
17893
|
+
TaskName["AccountMoneyTransfer"] = "accountMoneyTransfer";
|
|
17894
|
+
TaskName["AggregateScreeningEvent"] = "aggregateScreeningEvent";
|
|
17895
|
+
TaskName["AggregateUseActionsOnEvent"] = "aggregateUseActionsOnEvent";
|
|
17182
17896
|
/**
|
|
17183
|
-
*
|
|
17897
|
+
* 口座転送中止
|
|
17184
17898
|
*/
|
|
17185
|
-
TaskName["
|
|
17186
|
-
TaskName["
|
|
17899
|
+
TaskName["CancelAccountMoneyTransfer"] = "cancelAccountMoneyTransfer";
|
|
17900
|
+
TaskName["CancelMoneyTransfer"] = "cancelMoneyTransfer";
|
|
17901
|
+
TaskName["CancelReservation"] = "cancelReservation";
|
|
17902
|
+
TaskName["CancelPendingReservation"] = "cancelPendingReservation";
|
|
17187
17903
|
/**
|
|
17188
17904
|
* 通貨転送
|
|
17189
17905
|
*/
|
|
@@ -17204,22 +17920,34 @@ var TaskName;
|
|
|
17204
17920
|
* 予約資産取引確定
|
|
17205
17921
|
*/
|
|
17206
17922
|
TaskName["ConfirmReserveTransaction"] = "confirmReserveTransaction";
|
|
17207
|
-
|
|
17208
|
-
|
|
17209
|
-
*/
|
|
17210
|
-
TaskName["DeleteMember"] = "deleteMember";
|
|
17923
|
+
// DeleteMember = 'deleteMember',
|
|
17924
|
+
TaskName["DeleteTransaction"] = "deleteTransaction";
|
|
17211
17925
|
/**
|
|
17212
17926
|
* ポイント特典付与
|
|
17213
17927
|
*/
|
|
17214
17928
|
TaskName["GivePointAward"] = "givePointAward";
|
|
17929
|
+
TaskName["ImportEventCapacitiesFromCOA"] = "importEventCapacitiesFromCOA";
|
|
17930
|
+
TaskName["ImportEventsFromCOA"] = "importEventsFromCOA";
|
|
17931
|
+
TaskName["ImportOffersFromCOA"] = "importOffersFromCOA";
|
|
17932
|
+
TaskName["MoneyTransfer"] = "moneyTransfer";
|
|
17933
|
+
TaskName["OnAuthorizationCreated"] = "onAuthorizationCreated";
|
|
17934
|
+
TaskName["OnEventChanged"] = "onEventChanged";
|
|
17935
|
+
TaskName["OnResourceUpdated"] = "onResourceUpdated";
|
|
17215
17936
|
/**
|
|
17216
17937
|
* メンバーシップ注文
|
|
17217
17938
|
*/
|
|
17218
17939
|
TaskName["OrderProgramMembership"] = "orderProgramMembership";
|
|
17940
|
+
TaskName["Pay"] = "pay";
|
|
17219
17941
|
/**
|
|
17220
17942
|
* 注文受付
|
|
17221
17943
|
*/
|
|
17222
17944
|
TaskName["PlaceOrder"] = "placeOrder";
|
|
17945
|
+
TaskName["Refund"] = "refund";
|
|
17946
|
+
TaskName["RegisterService"] = "registerService";
|
|
17947
|
+
/**
|
|
17948
|
+
* Eメールメッセージ送信
|
|
17949
|
+
*/
|
|
17950
|
+
TaskName["Reserve"] = "reserve";
|
|
17223
17951
|
/**
|
|
17224
17952
|
* 注文返品
|
|
17225
17953
|
*/
|
|
@@ -17240,10 +17968,21 @@ var TaskName;
|
|
|
17240
17968
|
* 予約資産取引返却
|
|
17241
17969
|
*/
|
|
17242
17970
|
TaskName["ReturnReserveTransaction"] = "returnReserveTransaction";
|
|
17971
|
+
TaskName["SendEmailMessage"] = "sendEmailMessage";
|
|
17243
17972
|
/**
|
|
17244
17973
|
* 注文配送
|
|
17245
17974
|
*/
|
|
17246
17975
|
TaskName["SendOrder"] = "sendOrder";
|
|
17976
|
+
/**
|
|
17977
|
+
* ルーム同期
|
|
17978
|
+
*/
|
|
17979
|
+
TaskName["SyncScreeningRooms"] = "syncScreeningRooms";
|
|
17980
|
+
/**
|
|
17981
|
+
* ウェブフックをたたく
|
|
17982
|
+
*/
|
|
17983
|
+
TaskName["TriggerWebhook"] = "triggerWebhook";
|
|
17984
|
+
TaskName["UseReservation"] = "useReservation";
|
|
17985
|
+
TaskName["VoidPayment"] = "voidPayment";
|
|
17247
17986
|
/**
|
|
17248
17987
|
* 通貨転送中止
|
|
17249
17988
|
*/
|
|
@@ -17260,17 +17999,9 @@ var TaskName;
|
|
|
17260
17999
|
* 予約中止
|
|
17261
18000
|
*/
|
|
17262
18001
|
TaskName["VoidReserveTransaction"] = "voidReserveTransaction";
|
|
17263
|
-
/**
|
|
17264
|
-
* 口座転送中止
|
|
17265
|
-
*/
|
|
17266
|
-
TaskName["CancelAccountMoneyTransfer"] = "cancelAccountMoneyTransfer";
|
|
17267
|
-
/**
|
|
17268
|
-
* 口座転送
|
|
17269
|
-
*/
|
|
17270
|
-
TaskName["AccountMoneyTransfer"] = "accountMoneyTransfer";
|
|
17271
18002
|
})(TaskName = exports.TaskName || (exports.TaskName = {}));
|
|
17272
18003
|
|
|
17273
|
-
},{}],
|
|
18004
|
+
},{}],225:[function(require,module,exports){
|
|
17274
18005
|
"use strict";
|
|
17275
18006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17276
18007
|
exports.TaskStatus = void 0;
|
|
@@ -17297,49 +18028,70 @@ var TaskStatus;
|
|
|
17297
18028
|
TaskStatus["Aborted"] = "Aborted";
|
|
17298
18029
|
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
17299
18030
|
|
|
17300
|
-
},{}],
|
|
17301
|
-
arguments[4][
|
|
17302
|
-
},{"dup":
|
|
17303
|
-
arguments[4][
|
|
17304
|
-
},{"dup":
|
|
17305
|
-
arguments[4][
|
|
17306
|
-
},{"dup":
|
|
17307
|
-
arguments[4][
|
|
17308
|
-
},{"dup":
|
|
17309
|
-
arguments[4][
|
|
17310
|
-
},{"dup":
|
|
17311
|
-
arguments[4][
|
|
17312
|
-
},{"dup":
|
|
17313
|
-
arguments[4][
|
|
17314
|
-
},{"dup":
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
|
|
17318
|
-
|
|
17319
|
-
|
|
17320
|
-
|
|
17321
|
-
|
|
17322
|
-
|
|
17323
|
-
|
|
17324
|
-
|
|
17325
|
-
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
17332
|
-
|
|
17333
|
-
|
|
17334
|
-
|
|
17335
|
-
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
|
|
18031
|
+
},{}],226:[function(require,module,exports){
|
|
18032
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18033
|
+
},{"dup":35}],227:[function(require,module,exports){
|
|
18034
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18035
|
+
},{"dup":35}],228:[function(require,module,exports){
|
|
18036
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18037
|
+
},{"dup":35}],229:[function(require,module,exports){
|
|
18038
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18039
|
+
},{"dup":35}],230:[function(require,module,exports){
|
|
18040
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18041
|
+
},{"dup":35}],231:[function(require,module,exports){
|
|
18042
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18043
|
+
},{"dup":35}],232:[function(require,module,exports){
|
|
18044
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18045
|
+
},{"dup":35}],233:[function(require,module,exports){
|
|
18046
|
+
"use strict";
|
|
18047
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18048
|
+
exports.SpecifyingMethod = void 0;
|
|
18049
|
+
/**
|
|
18050
|
+
* オブジェクト特定方法
|
|
18051
|
+
*/
|
|
18052
|
+
var SpecifyingMethod;
|
|
18053
|
+
(function (SpecifyingMethod) {
|
|
18054
|
+
SpecifyingMethod["Id"] = "Id";
|
|
18055
|
+
SpecifyingMethod["AgentId"] = "AgentId";
|
|
18056
|
+
})(SpecifyingMethod = exports.SpecifyingMethod || (exports.SpecifyingMethod = {}));
|
|
18057
|
+
|
|
18058
|
+
},{}],234:[function(require,module,exports){
|
|
18059
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18060
|
+
},{"dup":35}],235:[function(require,module,exports){
|
|
18061
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18062
|
+
},{"dup":35}],236:[function(require,module,exports){
|
|
18063
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18064
|
+
},{"dup":35}],237:[function(require,module,exports){
|
|
18065
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18066
|
+
},{"dup":35}],238:[function(require,module,exports){
|
|
18067
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18068
|
+
},{"dup":35}],239:[function(require,module,exports){
|
|
18069
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18070
|
+
},{"dup":35}],240:[function(require,module,exports){
|
|
18071
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18072
|
+
},{"dup":35}],241:[function(require,module,exports){
|
|
18073
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18074
|
+
},{"dup":35}],242:[function(require,module,exports){
|
|
18075
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18076
|
+
},{"dup":35}],243:[function(require,module,exports){
|
|
18077
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18078
|
+
},{"dup":35}],244:[function(require,module,exports){
|
|
18079
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18080
|
+
},{"dup":35}],245:[function(require,module,exports){
|
|
18081
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18082
|
+
},{"dup":35}],246:[function(require,module,exports){
|
|
18083
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18084
|
+
},{"dup":35}],247:[function(require,module,exports){
|
|
18085
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18086
|
+
},{"dup":35}],248:[function(require,module,exports){
|
|
18087
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18088
|
+
},{"dup":35}],249:[function(require,module,exports){
|
|
18089
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18090
|
+
},{"dup":35}],250:[function(require,module,exports){
|
|
18091
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18092
|
+
},{"dup":35}],251:[function(require,module,exports){
|
|
18093
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18094
|
+
},{"dup":35}],252:[function(require,module,exports){
|
|
17343
18095
|
"use strict";
|
|
17344
18096
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17345
18097
|
exports.TransactionStatusType = void 0;
|
|
@@ -17354,7 +18106,7 @@ var TransactionStatusType;
|
|
|
17354
18106
|
TransactionStatusType["Expired"] = "Expired";
|
|
17355
18107
|
})(TransactionStatusType = exports.TransactionStatusType || (exports.TransactionStatusType = {}));
|
|
17356
18108
|
|
|
17357
|
-
},{}],
|
|
18109
|
+
},{}],253:[function(require,module,exports){
|
|
17358
18110
|
"use strict";
|
|
17359
18111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17360
18112
|
exports.TransactionTasksExportationStatus = void 0;
|
|
@@ -17377,7 +18129,7 @@ var TransactionTasksExportationStatus;
|
|
|
17377
18129
|
TransactionTasksExportationStatus["Exported"] = "Exported";
|
|
17378
18130
|
})(TransactionTasksExportationStatus = exports.TransactionTasksExportationStatus || (exports.TransactionTasksExportationStatus = {}));
|
|
17379
18131
|
|
|
17380
|
-
},{}],
|
|
18132
|
+
},{}],254:[function(require,module,exports){
|
|
17381
18133
|
"use strict";
|
|
17382
18134
|
/**
|
|
17383
18135
|
* 取引タイプ
|
|
@@ -17400,11 +18152,11 @@ var TransactionType;
|
|
|
17400
18152
|
TransactionType["ReturnOrder"] = "ReturnOrder";
|
|
17401
18153
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
17402
18154
|
|
|
17403
|
-
},{}],
|
|
17404
|
-
arguments[4][
|
|
17405
|
-
},{"dup":
|
|
17406
|
-
arguments[4][
|
|
17407
|
-
},{"dup":
|
|
18155
|
+
},{}],255:[function(require,module,exports){
|
|
18156
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18157
|
+
},{"dup":35}],256:[function(require,module,exports){
|
|
18158
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18159
|
+
},{"dup":35}],257:[function(require,module,exports){
|
|
17408
18160
|
"use strict";
|
|
17409
18161
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17410
18162
|
exports.Reason = void 0;
|
|
@@ -17423,7 +18175,7 @@ var Reason;
|
|
|
17423
18175
|
Reason["Seller"] = "Seller";
|
|
17424
18176
|
})(Reason = exports.Reason || (exports.Reason = {}));
|
|
17425
18177
|
|
|
17426
|
-
},{}],
|
|
18178
|
+
},{}],258:[function(require,module,exports){
|
|
17427
18179
|
"use strict";
|
|
17428
18180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17429
18181
|
exports.TripType = void 0;
|
|
@@ -17436,9 +18188,9 @@ var TripType;
|
|
|
17436
18188
|
TripType["Trip"] = "Trip";
|
|
17437
18189
|
})(TripType = exports.TripType || (exports.TripType = {}));
|
|
17438
18190
|
|
|
17439
|
-
},{}],
|
|
17440
|
-
arguments[4][
|
|
17441
|
-
},{"dup":
|
|
18191
|
+
},{}],259:[function(require,module,exports){
|
|
18192
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18193
|
+
},{"dup":35}],260:[function(require,module,exports){
|
|
17442
18194
|
"use strict";
|
|
17443
18195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17444
18196
|
exports.UnitCode = void 0;
|
|
@@ -17465,11 +18217,11 @@ var UnitCode;
|
|
|
17465
18217
|
UnitCode["Sec"] = "SEC";
|
|
17466
18218
|
})(UnitCode = exports.UnitCode || (exports.UnitCode = {}));
|
|
17467
18219
|
|
|
17468
|
-
},{}],
|
|
17469
|
-
arguments[4][
|
|
17470
|
-
},{"dup":
|
|
17471
|
-
arguments[4][
|
|
17472
|
-
},{"dup":
|
|
18220
|
+
},{}],261:[function(require,module,exports){
|
|
18221
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18222
|
+
},{"dup":35}],262:[function(require,module,exports){
|
|
18223
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18224
|
+
},{"dup":35}],263:[function(require,module,exports){
|
|
17473
18225
|
"use strict";
|
|
17474
18226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17475
18227
|
/**
|
|
@@ -17488,7 +18240,7 @@ var ErrorCode;
|
|
|
17488
18240
|
})(ErrorCode || (ErrorCode = {}));
|
|
17489
18241
|
exports.default = ErrorCode;
|
|
17490
18242
|
|
|
17491
|
-
},{}],
|
|
18243
|
+
},{}],264:[function(require,module,exports){
|
|
17492
18244
|
"use strict";
|
|
17493
18245
|
var __extends = (this && this.__extends) || (function () {
|
|
17494
18246
|
var extendStatics = function (d, b) {
|
|
@@ -17529,7 +18281,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
17529
18281
|
}(waiter_1.WaiterError));
|
|
17530
18282
|
exports.default = ArgumentError;
|
|
17531
18283
|
|
|
17532
|
-
},{"../errorCode":
|
|
18284
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],265:[function(require,module,exports){
|
|
17533
18285
|
"use strict";
|
|
17534
18286
|
var __extends = (this && this.__extends) || (function () {
|
|
17535
18287
|
var extendStatics = function (d, b) {
|
|
@@ -17570,7 +18322,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
17570
18322
|
}(waiter_1.WaiterError));
|
|
17571
18323
|
exports.default = ArgumentNullError;
|
|
17572
18324
|
|
|
17573
|
-
},{"../errorCode":
|
|
18325
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],266:[function(require,module,exports){
|
|
17574
18326
|
"use strict";
|
|
17575
18327
|
var __extends = (this && this.__extends) || (function () {
|
|
17576
18328
|
var extendStatics = function (d, b) {
|
|
@@ -17610,7 +18362,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
17610
18362
|
}(waiter_1.WaiterError));
|
|
17611
18363
|
exports.default = ForbiddenError;
|
|
17612
18364
|
|
|
17613
|
-
},{"../errorCode":
|
|
18365
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],267:[function(require,module,exports){
|
|
17614
18366
|
"use strict";
|
|
17615
18367
|
var __extends = (this && this.__extends) || (function () {
|
|
17616
18368
|
var extendStatics = function (d, b) {
|
|
@@ -17651,7 +18403,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
17651
18403
|
}(waiter_1.WaiterError));
|
|
17652
18404
|
exports.default = NotFoundError;
|
|
17653
18405
|
|
|
17654
|
-
},{"../errorCode":
|
|
18406
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],268:[function(require,module,exports){
|
|
17655
18407
|
"use strict";
|
|
17656
18408
|
var __extends = (this && this.__extends) || (function () {
|
|
17657
18409
|
var extendStatics = function (d, b) {
|
|
@@ -17691,7 +18443,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
17691
18443
|
}(waiter_1.WaiterError));
|
|
17692
18444
|
exports.default = RateLimitExceededError;
|
|
17693
18445
|
|
|
17694
|
-
},{"../errorCode":
|
|
18446
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],269:[function(require,module,exports){
|
|
17695
18447
|
"use strict";
|
|
17696
18448
|
var __extends = (this && this.__extends) || (function () {
|
|
17697
18449
|
var extendStatics = function (d, b) {
|
|
@@ -17731,7 +18483,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
17731
18483
|
}(waiter_1.WaiterError));
|
|
17732
18484
|
exports.default = ServiceUnavailableError;
|
|
17733
18485
|
|
|
17734
|
-
},{"../errorCode":
|
|
18486
|
+
},{"../errorCode":263,"./waiter":270,"setprototypeof":304}],270:[function(require,module,exports){
|
|
17735
18487
|
"use strict";
|
|
17736
18488
|
var __extends = (this && this.__extends) || (function () {
|
|
17737
18489
|
var extendStatics = function (d, b) {
|
|
@@ -17764,7 +18516,7 @@ var WaiterError = /** @class */ (function (_super) {
|
|
|
17764
18516
|
}(Error));
|
|
17765
18517
|
exports.WaiterError = WaiterError;
|
|
17766
18518
|
|
|
17767
|
-
},{}],
|
|
18519
|
+
},{}],271:[function(require,module,exports){
|
|
17768
18520
|
"use strict";
|
|
17769
18521
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17770
18522
|
/**
|
|
@@ -17785,13 +18537,13 @@ exports.ServiceUnavailable = serviceUnavailable_1.default;
|
|
|
17785
18537
|
var waiter_1 = require("./error/waiter");
|
|
17786
18538
|
exports.Waiter = waiter_1.WaiterError;
|
|
17787
18539
|
|
|
17788
|
-
},{"./error/argument":
|
|
17789
|
-
arguments[4][
|
|
17790
|
-
},{"dup":
|
|
17791
|
-
arguments[4][
|
|
17792
|
-
},{"dup":
|
|
17793
|
-
arguments[4][
|
|
17794
|
-
},{"dup":
|
|
18540
|
+
},{"./error/argument":264,"./error/argumentNull":265,"./error/forbidden":266,"./error/notFound":267,"./error/rateLimitExceeded":268,"./error/serviceUnavailable":269,"./error/waiter":270}],272:[function(require,module,exports){
|
|
18541
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18542
|
+
},{"dup":35}],273:[function(require,module,exports){
|
|
18543
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18544
|
+
},{"dup":35}],274:[function(require,module,exports){
|
|
18545
|
+
arguments[4][35][0].apply(exports,arguments)
|
|
18546
|
+
},{"dup":35}],275:[function(require,module,exports){
|
|
17795
18547
|
"use strict";
|
|
17796
18548
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17797
18549
|
/**
|
|
@@ -17810,7 +18562,7 @@ exports.passport = passport;
|
|
|
17810
18562
|
exports.project = project;
|
|
17811
18563
|
exports.rule = rule;
|
|
17812
18564
|
|
|
17813
|
-
},{"./factory/client":
|
|
18565
|
+
},{"./factory/client":262,"./factory/errorCode":263,"./factory/errors":271,"./factory/passport":272,"./factory/project":273,"./factory/rule":274}],276:[function(require,module,exports){
|
|
17814
18566
|
'use strict'
|
|
17815
18567
|
|
|
17816
18568
|
exports.byteLength = byteLength
|
|
@@ -17964,9 +18716,9 @@ function fromByteArray (uint8) {
|
|
|
17964
18716
|
return parts.join('')
|
|
17965
18717
|
}
|
|
17966
18718
|
|
|
17967
|
-
},{}],
|
|
18719
|
+
},{}],277:[function(require,module,exports){
|
|
17968
18720
|
|
|
17969
|
-
},{}],
|
|
18721
|
+
},{}],278:[function(require,module,exports){
|
|
17970
18722
|
(function (Buffer){
|
|
17971
18723
|
/*!
|
|
17972
18724
|
* The buffer module from node.js, for the browser.
|
|
@@ -19747,7 +20499,7 @@ function numberIsNaN (obj) {
|
|
|
19747
20499
|
}
|
|
19748
20500
|
|
|
19749
20501
|
}).call(this,require("buffer").Buffer)
|
|
19750
|
-
},{"base64-js":
|
|
20502
|
+
},{"base64-js":276,"buffer":278,"ieee754":292}],279:[function(require,module,exports){
|
|
19751
20503
|
'use strict';
|
|
19752
20504
|
|
|
19753
20505
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -19764,7 +20516,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
19764
20516
|
return intrinsic;
|
|
19765
20517
|
};
|
|
19766
20518
|
|
|
19767
|
-
},{"./":
|
|
20519
|
+
},{"./":280,"get-intrinsic":286}],280:[function(require,module,exports){
|
|
19768
20520
|
'use strict';
|
|
19769
20521
|
|
|
19770
20522
|
var bind = require('function-bind');
|
|
@@ -19813,7 +20565,7 @@ if ($defineProperty) {
|
|
|
19813
20565
|
module.exports.apply = applyBind;
|
|
19814
20566
|
}
|
|
19815
20567
|
|
|
19816
|
-
},{"function-bind":
|
|
20568
|
+
},{"function-bind":285,"get-intrinsic":286}],281:[function(require,module,exports){
|
|
19817
20569
|
/**
|
|
19818
20570
|
* Helpers.
|
|
19819
20571
|
*/
|
|
@@ -19977,7 +20729,7 @@ function plural(ms, msAbs, n, name) {
|
|
|
19977
20729
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
19978
20730
|
}
|
|
19979
20731
|
|
|
19980
|
-
},{}],
|
|
20732
|
+
},{}],282:[function(require,module,exports){
|
|
19981
20733
|
(function (process){
|
|
19982
20734
|
"use strict";
|
|
19983
20735
|
|
|
@@ -20161,7 +20913,7 @@ formatters.j = function (v) {
|
|
|
20161
20913
|
|
|
20162
20914
|
|
|
20163
20915
|
}).call(this,require('_process'))
|
|
20164
|
-
},{"./common":
|
|
20916
|
+
},{"./common":283,"_process":295}],283:[function(require,module,exports){
|
|
20165
20917
|
"use strict";
|
|
20166
20918
|
|
|
20167
20919
|
/**
|
|
@@ -20412,7 +21164,7 @@ function setup(env) {
|
|
|
20412
21164
|
module.exports = setup;
|
|
20413
21165
|
|
|
20414
21166
|
|
|
20415
|
-
},{"ms":
|
|
21167
|
+
},{"ms":281}],284:[function(require,module,exports){
|
|
20416
21168
|
'use strict';
|
|
20417
21169
|
|
|
20418
21170
|
/* eslint no-invalid-this: 1 */
|
|
@@ -20466,14 +21218,14 @@ module.exports = function bind(that) {
|
|
|
20466
21218
|
return bound;
|
|
20467
21219
|
};
|
|
20468
21220
|
|
|
20469
|
-
},{}],
|
|
21221
|
+
},{}],285:[function(require,module,exports){
|
|
20470
21222
|
'use strict';
|
|
20471
21223
|
|
|
20472
21224
|
var implementation = require('./implementation');
|
|
20473
21225
|
|
|
20474
21226
|
module.exports = Function.prototype.bind || implementation;
|
|
20475
21227
|
|
|
20476
|
-
},{"./implementation":
|
|
21228
|
+
},{"./implementation":284}],286:[function(require,module,exports){
|
|
20477
21229
|
'use strict';
|
|
20478
21230
|
|
|
20479
21231
|
var undefined;
|
|
@@ -20805,7 +21557,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
20805
21557
|
return value;
|
|
20806
21558
|
};
|
|
20807
21559
|
|
|
20808
|
-
},{"function-bind":
|
|
21560
|
+
},{"function-bind":285,"has":289,"has-symbols":287}],287:[function(require,module,exports){
|
|
20809
21561
|
'use strict';
|
|
20810
21562
|
|
|
20811
21563
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -20820,7 +21572,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
20820
21572
|
return hasSymbolSham();
|
|
20821
21573
|
};
|
|
20822
21574
|
|
|
20823
|
-
},{"./shams":
|
|
21575
|
+
},{"./shams":288}],288:[function(require,module,exports){
|
|
20824
21576
|
'use strict';
|
|
20825
21577
|
|
|
20826
21578
|
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
@@ -20864,14 +21616,14 @@ module.exports = function hasSymbols() {
|
|
|
20864
21616
|
return true;
|
|
20865
21617
|
};
|
|
20866
21618
|
|
|
20867
|
-
},{}],
|
|
21619
|
+
},{}],289:[function(require,module,exports){
|
|
20868
21620
|
'use strict';
|
|
20869
21621
|
|
|
20870
21622
|
var bind = require('function-bind');
|
|
20871
21623
|
|
|
20872
21624
|
module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
|
|
20873
21625
|
|
|
20874
|
-
},{"function-bind":
|
|
21626
|
+
},{"function-bind":285}],290:[function(require,module,exports){
|
|
20875
21627
|
// Generated by CoffeeScript 2.3.0
|
|
20876
21628
|
// # node-http-status
|
|
20877
21629
|
|
|
@@ -21496,13 +22248,13 @@ module.exports = {
|
|
|
21496
22248
|
}
|
|
21497
22249
|
};
|
|
21498
22250
|
|
|
21499
|
-
},{}],
|
|
22251
|
+
},{}],291:[function(require,module,exports){
|
|
21500
22252
|
(function (process,global){
|
|
21501
22253
|
var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=e(function(t,e){var r;t.exports=r=r||function(t,e){var r=Object.create||function(){function t(){}return function(e){var r;return t.prototype=e,r=new t,t.prototype=null,r}}(),i={},n=i.lib={},o=n.Base={extend:function(t){var e=r(this);return t&&e.mixIn(t),e.hasOwnProperty("init")&&this.init!==e.init||(e.init=function(){e.$super.init.apply(this,arguments)}),e.init.prototype=e,e.$super=this,e},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}},s=n.WordArray=o.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:4*t.length},toString:function(t){return(t||a).stringify(this)},concat:function(t){var e=this.words,r=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var o=0;o<n;o++)e[i+o>>>2]|=(r[o>>>2]>>>24-o%4*8&255)<<24-(i+o)%4*8;else for(o=0;o<n;o+=4)e[i+o>>>2]=r[o>>>2];return this.sigBytes+=n,this},clamp:function(){var e=this.words,r=this.sigBytes;e[r>>>2]&=4294967295<<32-r%4*8,e.length=t.ceil(r/4)},clone:function(){var t=o.clone.call(this);return t.words=this.words.slice(0),t},random:function(e){for(var r,i=[],n=function(e){e=e;var r=987654321,i=4294967295;return function(){var n=((r=36969*(65535&r)+(r>>16)&i)<<16)+(e=18e3*(65535&e)+(e>>16)&i)&i;return n/=4294967296,(n+=.5)*(t.random()>.5?1:-1)}},o=0;o<e;o+=4){var h=n(4294967296*(r||t.random()));r=987654071*h(),i.push(4294967296*h()|0)}return new s.init(i,e)}}),h=i.enc={},a=h.Hex={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++){var o=e[n>>>2]>>>24-n%4*8&255;i.push((o>>>4).toString(16)),i.push((15&o).toString(16))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i+=2)r[i>>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new s.init(r,e/2)}},u=h.Latin1={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n<r;n++)i.push(String.fromCharCode(e[n>>>2]>>>24-n%4*8&255));return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i<e;i++)r[i>>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new s.init(r,e)}},f=h.Utf8={stringify:function(t){try{return decodeURIComponent(escape(u.stringify(t)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(t){return u.parse(unescape(encodeURIComponent(t)))}},c=n.BufferedBlockAlgorithm=o.extend({reset:function(){this._data=new s.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=f.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(e){var r=this._data,i=r.words,n=r.sigBytes,o=this.blockSize,h=n/(4*o),a=(h=e?t.ceil(h):t.max((0|h)-this._minBufferSize,0))*o,u=t.min(4*a,n);if(a){for(var f=0;f<a;f+=o)this._doProcessBlock(i,f);var c=i.splice(0,a);r.sigBytes-=u}return new s.init(c,u)},clone:function(){var t=o.clone.call(this);return t._data=this._data.clone(),t},_minBufferSize:0}),p=(n.Hasher=c.extend({cfg:o.extend(),init:function(t){this.cfg=this.cfg.extend(t),this.reset()},reset:function(){c.reset.call(this),this._doReset()},update:function(t){return this._append(t),this._process(),this},finalize:function(t){return t&&this._append(t),this._doFinalize()},blockSize:16,_createHelper:function(t){return function(e,r){return new t.init(r).finalize(e)}},_createHmacHelper:function(t){return function(e,r){return new p.HMAC.init(t,r).finalize(e)}}}),i.algo={});return i}(Math)}),i=e(function(t,e){var i;t.exports=(i=r,function(t){var e=i,r=e.lib,n=r.WordArray,o=r.Hasher,s=e.algo,h=[],a=[];!function(){function e(e){for(var r=t.sqrt(e),i=2;i<=r;i++)if(!(e%i))return!1;return!0}function r(t){return 4294967296*(t-(0|t))|0}for(var i=2,n=0;n<64;)e(i)&&(n<8&&(h[n]=r(t.pow(i,.5))),a[n]=r(t.pow(i,1/3)),n++),i++}();var u=[],f=s.SHA256=o.extend({_doReset:function(){this._hash=new n.init(h.slice(0))},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],o=r[2],s=r[3],h=r[4],f=r[5],c=r[6],p=r[7],l=0;l<64;l++){if(l<16)u[l]=0|t[e+l];else{var d=u[l-15],m=u[l-2];u[l]=((d<<25|d>>>7)^(d<<14|d>>>18)^d>>>3)+u[l-7]+((m<<15|m>>>17)^(m<<13|m>>>19)^m>>>10)+u[l-16]}var v=i&n^i&o^n&o,y=p+((h<<26|h>>>6)^(h<<21|h>>>11)^(h<<7|h>>>25))+(h&f^~h&c)+a[l]+u[l];p=c,c=f,f=h,h=s+y|0,s=o,o=n,n=i,i=y+(((i<<30|i>>>2)^(i<<19|i>>>13)^(i<<10|i>>>22))+v)|0}r[0]=r[0]+i|0,r[1]=r[1]+n|0,r[2]=r[2]+o|0,r[3]=r[3]+s|0,r[4]=r[4]+h|0,r[5]=r[5]+f|0,r[6]=r[6]+c|0,r[7]=r[7]+p|0},_doFinalize:function(){var e=this._data,r=e.words,i=8*this._nDataBytes,n=8*e.sigBytes;return r[n>>>5]|=128<<24-n%32,r[14+(n+64>>>9<<4)]=t.floor(i/4294967296),r[15+(n+64>>>9<<4)]=i,e.sigBytes=4*r.length,this._process(),this._hash},clone:function(){var t=o.clone.call(this);return t._hash=this._hash.clone(),t}});e.SHA256=o._createHelper(f),e.HmacSHA256=o._createHmacHelper(f)}(Math),i.SHA256)}),n=e(function(t,e){var i,n;t.exports=(n=(i=r).lib.WordArray,i.enc.Base64={stringify:function(t){var e=t.words,r=t.sigBytes,i=this._map;t.clamp();for(var n=[],o=0;o<r;o+=3)for(var s=(e[o>>>2]>>>24-o%4*8&255)<<16|(e[o+1>>>2]>>>24-(o+1)%4*8&255)<<8|e[o+2>>>2]>>>24-(o+2)%4*8&255,h=0;h<4&&o+.75*h<r;h++)n.push(i.charAt(s>>>6*(3-h)&63));var a=i.charAt(64);if(a)for(;n.length%4;)n.push(a);return n.join("")},parse:function(t){var e=t.length,r=this._map,i=this._reverseMap;if(!i){i=this._reverseMap=[];for(var o=0;o<r.length;o++)i[r.charCodeAt(o)]=o}var s=r.charAt(64);if(s){var h=t.indexOf(s);-1!==h&&(e=h)}return function(t,e,r){for(var i=[],o=0,s=0;s<e;s++)if(s%4){var h=r[t.charCodeAt(s-1)]<<s%4*2,a=r[t.charCodeAt(s)]>>>6-s%4*2;i[o>>>2]|=(h|a)<<24-o%4*8,o++}return n.create(i,o)}(t,e,i)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},i.enc.Base64)}),o=e(function(t,e){t.exports=r.enc.Hex}),s=e(function(e,r){(function(){var t;function r(t,e,r){null!=t&&("number"==typeof t?this.fromNumber(t,e,r):this.fromString(t,null==e&&"string"!=typeof t?256:e))}function i(){return new r(null)}var n="undefined"!=typeof navigator;n&&"Microsoft Internet Explorer"==navigator.appName?(r.prototype.am=function(t,e,r,i,n,o){for(var s=32767&e,h=e>>15;--o>=0;){var a=32767&this[t],u=this[t++]>>15,f=h*a+u*s;n=((a=s*a+((32767&f)<<15)+r[i]+(1073741823&n))>>>30)+(f>>>15)+h*u+(n>>>30),r[i++]=1073741823&a}return n},t=30):n&&"Netscape"!=navigator.appName?(r.prototype.am=function(t,e,r,i,n,o){for(;--o>=0;){var s=e*this[t++]+r[i]+n;n=Math.floor(s/67108864),r[i++]=67108863&s}return n},t=26):(r.prototype.am=function(t,e,r,i,n,o){for(var s=16383&e,h=e>>14;--o>=0;){var a=16383&this[t],u=this[t++]>>14,f=h*a+u*s;n=((a=s*a+((16383&f)<<14)+r[i]+n)>>28)+(f>>14)+h*u,r[i++]=268435455&a}return n},t=28),r.prototype.DB=t,r.prototype.DM=(1<<t)-1,r.prototype.DV=1<<t,r.prototype.FV=Math.pow(2,52),r.prototype.F1=52-t,r.prototype.F2=2*t-52;var o,s,h="0123456789abcdefghijklmnopqrstuvwxyz",a=new Array;for(o="0".charCodeAt(0),s=0;s<=9;++s)a[o++]=s;for(o="a".charCodeAt(0),s=10;s<36;++s)a[o++]=s;for(o="A".charCodeAt(0),s=10;s<36;++s)a[o++]=s;function u(t){return h.charAt(t)}function f(t,e){var r=a[t.charCodeAt(e)];return null==r?-1:r}function c(t){var e=i();return e.fromInt(t),e}function p(t){var e,r=1;return 0!=(e=t>>>16)&&(t=e,r+=16),0!=(e=t>>8)&&(t=e,r+=8),0!=(e=t>>4)&&(t=e,r+=4),0!=(e=t>>2)&&(t=e,r+=2),0!=(e=t>>1)&&(t=e,r+=1),r}function l(t){this.m=t}function d(t){this.m=t,this.mp=t.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<<t.DB-15)-1,this.mt2=2*t.t}function m(t,e){return t&e}function v(t,e){return t|e}function y(t,e){return t^e}function g(t,e){return t&~e}function w(t){if(0==t)return-1;var e=0;return 0==(65535&t)&&(t>>=16,e+=16),0==(255&t)&&(t>>=8,e+=8),0==(15&t)&&(t>>=4,e+=4),0==(3&t)&&(t>>=2,e+=2),0==(1&t)&&++e,e}function T(t){for(var e=0;0!=t;)t&=t-1,++e;return e}function b(){}function _(t){return t}function A(t){this.r2=i(),this.q3=i(),r.ONE.dlShiftTo(2*t.t,this.r2),this.mu=this.r2.divide(t),this.m=t}l.prototype.convert=function(t){return t.s<0||t.compareTo(this.m)>=0?t.mod(this.m):t},l.prototype.revert=function(t){return t},l.prototype.reduce=function(t){t.divRemTo(this.m,null,t)},l.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},l.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)},d.prototype.convert=function(t){var e=i();return t.abs().dlShiftTo(this.m.t,e),e.divRemTo(this.m,null,e),t.s<0&&e.compareTo(r.ZERO)>0&&this.m.subTo(e,e),e},d.prototype.revert=function(t){var e=i();return t.copyTo(e),this.reduce(e),e},d.prototype.reduce=function(t){for(;t.t<=this.mt2;)t[t.t++]=0;for(var e=0;e<this.m.t;++e){var r=32767&t[e],i=r*this.mpl+((r*this.mph+(t[e]>>15)*this.mpl&this.um)<<15)&t.DM;for(t[r=e+this.m.t]+=this.m.am(0,i,t,e,0,this.m.t);t[r]>=t.DV;)t[r]-=t.DV,t[++r]++}t.clamp(),t.drShiftTo(this.m.t,t),t.compareTo(this.m)>=0&&t.subTo(this.m,t)},d.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},d.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)},r.prototype.copyTo=function(t){for(var e=this.t-1;e>=0;--e)t[e]=this[e];t.t=this.t,t.s=this.s},r.prototype.fromInt=function(t){this.t=1,this.s=t<0?-1:0,t>0?this[0]=t:t<-1?this[0]=t+this.DV:this.t=0},r.prototype.fromString=function(t,e){var i;if(16==e)i=4;else if(8==e)i=3;else if(256==e)i=8;else if(2==e)i=1;else if(32==e)i=5;else{if(4!=e)return void this.fromRadix(t,e);i=2}this.t=0,this.s=0;for(var n=t.length,o=!1,s=0;--n>=0;){var h=8==i?255&t[n]:f(t,n);h<0?"-"==t.charAt(n)&&(o=!0):(o=!1,0==s?this[this.t++]=h:s+i>this.DB?(this[this.t-1]|=(h&(1<<this.DB-s)-1)<<s,this[this.t++]=h>>this.DB-s):this[this.t-1]|=h<<s,(s+=i)>=this.DB&&(s-=this.DB))}8==i&&0!=(128&t[0])&&(this.s=-1,s>0&&(this[this.t-1]|=(1<<this.DB-s)-1<<s)),this.clamp(),o&&r.ZERO.subTo(this,this)},r.prototype.clamp=function(){for(var t=this.s&this.DM;this.t>0&&this[this.t-1]==t;)--this.t},r.prototype.dlShiftTo=function(t,e){var r;for(r=this.t-1;r>=0;--r)e[r+t]=this[r];for(r=t-1;r>=0;--r)e[r]=0;e.t=this.t+t,e.s=this.s},r.prototype.drShiftTo=function(t,e){for(var r=t;r<this.t;++r)e[r-t]=this[r];e.t=Math.max(this.t-t,0),e.s=this.s},r.prototype.lShiftTo=function(t,e){var r,i=t%this.DB,n=this.DB-i,o=(1<<n)-1,s=Math.floor(t/this.DB),h=this.s<<i&this.DM;for(r=this.t-1;r>=0;--r)e[r+s+1]=this[r]>>n|h,h=(this[r]&o)<<i;for(r=s-1;r>=0;--r)e[r]=0;e[s]=h,e.t=this.t+s+1,e.s=this.s,e.clamp()},r.prototype.rShiftTo=function(t,e){e.s=this.s;var r=Math.floor(t/this.DB);if(r>=this.t)e.t=0;else{var i=t%this.DB,n=this.DB-i,o=(1<<i)-1;e[0]=this[r]>>i;for(var s=r+1;s<this.t;++s)e[s-r-1]|=(this[s]&o)<<n,e[s-r]=this[s]>>i;i>0&&(e[this.t-r-1]|=(this.s&o)<<n),e.t=this.t-r,e.clamp()}},r.prototype.subTo=function(t,e){for(var r=0,i=0,n=Math.min(t.t,this.t);r<n;)i+=this[r]-t[r],e[r++]=i&this.DM,i>>=this.DB;if(t.t<this.t){for(i-=t.s;r<this.t;)i+=this[r],e[r++]=i&this.DM,i>>=this.DB;i+=this.s}else{for(i+=this.s;r<t.t;)i-=t[r],e[r++]=i&this.DM,i>>=this.DB;i-=t.s}e.s=i<0?-1:0,i<-1?e[r++]=this.DV+i:i>0&&(e[r++]=i),e.t=r,e.clamp()},r.prototype.multiplyTo=function(t,e){var i=this.abs(),n=t.abs(),o=i.t;for(e.t=o+n.t;--o>=0;)e[o]=0;for(o=0;o<n.t;++o)e[o+i.t]=i.am(0,n[o],e,o,0,i.t);e.s=0,e.clamp(),this.s!=t.s&&r.ZERO.subTo(e,e)},r.prototype.squareTo=function(t){for(var e=this.abs(),r=t.t=2*e.t;--r>=0;)t[r]=0;for(r=0;r<e.t-1;++r){var i=e.am(r,e[r],t,2*r,0,1);(t[r+e.t]+=e.am(r+1,2*e[r],t,2*r+1,i,e.t-r-1))>=e.DV&&(t[r+e.t]-=e.DV,t[r+e.t+1]=1)}t.t>0&&(t[t.t-1]+=e.am(r,e[r],t,2*r,0,1)),t.s=0,t.clamp()},r.prototype.divRemTo=function(t,e,n){var o=t.abs();if(!(o.t<=0)){var s=this.abs();if(s.t<o.t)return null!=e&&e.fromInt(0),void(null!=n&&this.copyTo(n));null==n&&(n=i());var h=i(),a=this.s,u=t.s,f=this.DB-p(o[o.t-1]);f>0?(o.lShiftTo(f,h),s.lShiftTo(f,n)):(o.copyTo(h),s.copyTo(n));var c=h.t,l=h[c-1];if(0!=l){var d=l*(1<<this.F1)+(c>1?h[c-2]>>this.F2:0),m=this.FV/d,v=(1<<this.F1)/d,y=1<<this.F2,g=n.t,w=g-c,T=null==e?i():e;for(h.dlShiftTo(w,T),n.compareTo(T)>=0&&(n[n.t++]=1,n.subTo(T,n)),r.ONE.dlShiftTo(c,T),T.subTo(h,h);h.t<c;)h[h.t++]=0;for(;--w>=0;){var b=n[--g]==l?this.DM:Math.floor(n[g]*m+(n[g-1]+y)*v);if((n[g]+=h.am(0,b,n,w,0,c))<b)for(h.dlShiftTo(w,T),n.subTo(T,n);n[g]<--b;)n.subTo(T,n)}null!=e&&(n.drShiftTo(c,e),a!=u&&r.ZERO.subTo(e,e)),n.t=c,n.clamp(),f>0&&n.rShiftTo(f,n),a<0&&r.ZERO.subTo(n,n)}}},r.prototype.invDigit=function(){if(this.t<1)return 0;var t=this[0];if(0==(1&t))return 0;var e=3&t;return(e=(e=(e=(e=e*(2-(15&t)*e)&15)*(2-(255&t)*e)&255)*(2-((65535&t)*e&65535))&65535)*(2-t*e%this.DV)%this.DV)>0?this.DV-e:-e},r.prototype.isEven=function(){return 0==(this.t>0?1&this[0]:this.s)},r.prototype.exp=function(t,e){if(t>4294967295||t<1)return r.ONE;var n=i(),o=i(),s=e.convert(this),h=p(t)-1;for(s.copyTo(n);--h>=0;)if(e.sqrTo(n,o),(t&1<<h)>0)e.mulTo(o,s,n);else{var a=n;n=o,o=a}return e.revert(n)},r.prototype.toString=function(t){if(this.s<0)return"-"+this.negate().toString(t);var e;if(16==t)e=4;else if(8==t)e=3;else if(2==t)e=1;else if(32==t)e=5;else{if(4!=t)return this.toRadix(t);e=2}var r,i=(1<<e)-1,n=!1,o="",s=this.t,h=this.DB-s*this.DB%e;if(s-- >0)for(h<this.DB&&(r=this[s]>>h)>0&&(n=!0,o=u(r));s>=0;)h<e?(r=(this[s]&(1<<h)-1)<<e-h,r|=this[--s]>>(h+=this.DB-e)):(r=this[s]>>(h-=e)&i,h<=0&&(h+=this.DB,--s)),r>0&&(n=!0),n&&(o+=u(r));return n?o:"0"},r.prototype.negate=function(){var t=i();return r.ZERO.subTo(this,t),t},r.prototype.abs=function(){return this.s<0?this.negate():this},r.prototype.compareTo=function(t){var e=this.s-t.s;if(0!=e)return e;var r=this.t;if(0!=(e=r-t.t))return this.s<0?-e:e;for(;--r>=0;)if(0!=(e=this[r]-t[r]))return e;return 0},r.prototype.bitLength=function(){return this.t<=0?0:this.DB*(this.t-1)+p(this[this.t-1]^this.s&this.DM)},r.prototype.mod=function(t){var e=i();return this.abs().divRemTo(t,null,e),this.s<0&&e.compareTo(r.ZERO)>0&&t.subTo(e,e),e},r.prototype.modPowInt=function(t,e){var r;return r=t<256||e.isEven()?new l(e):new d(e),this.exp(t,r)},r.ZERO=c(0),r.ONE=c(1),b.prototype.convert=_,b.prototype.revert=_,b.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r)},b.prototype.sqrTo=function(t,e){t.squareTo(e)},A.prototype.convert=function(t){if(t.s<0||t.t>2*this.m.t)return t.mod(this.m);if(t.compareTo(this.m)<0)return t;var e=i();return t.copyTo(e),this.reduce(e),e},A.prototype.revert=function(t){return t},A.prototype.reduce=function(t){for(t.drShiftTo(this.m.t-1,this.r2),t.t>this.m.t+1&&(t.t=this.m.t+1,t.clamp()),this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3),this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);t.compareTo(this.r2)<0;)t.dAddOffset(1,this.m.t+1);for(t.subTo(this.r2,t);t.compareTo(this.m)>=0;)t.subTo(this.m,t)},A.prototype.mulTo=function(t,e,r){t.multiplyTo(e,r),this.reduce(r)},A.prototype.sqrTo=function(t,e){t.squareTo(e),this.reduce(e)};var S,D,B,x=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],k=(1<<26)/x[x.length-1];function E(){var t;t=(new Date).getTime(),D[B++]^=255&t,D[B++]^=t>>8&255,D[B++]^=t>>16&255,D[B++]^=t>>24&255,B>=N&&(B-=N)}if(r.prototype.chunkSize=function(t){return Math.floor(Math.LN2*this.DB/Math.log(t))},r.prototype.toRadix=function(t){if(null==t&&(t=10),0==this.signum()||t<2||t>36)return"0";var e=this.chunkSize(t),r=Math.pow(t,e),n=c(r),o=i(),s=i(),h="";for(this.divRemTo(n,o,s);o.signum()>0;)h=(r+s.intValue()).toString(t).substr(1)+h,o.divRemTo(n,o,s);return s.intValue().toString(t)+h},r.prototype.fromRadix=function(t,e){this.fromInt(0),null==e&&(e=10);for(var i=this.chunkSize(e),n=Math.pow(e,i),o=!1,s=0,h=0,a=0;a<t.length;++a){var u=f(t,a);u<0?"-"==t.charAt(a)&&0==this.signum()&&(o=!0):(h=e*h+u,++s>=i&&(this.dMultiply(n),this.dAddOffset(h,0),s=0,h=0))}s>0&&(this.dMultiply(Math.pow(e,s)),this.dAddOffset(h,0)),o&&r.ZERO.subTo(this,this)},r.prototype.fromNumber=function(t,e,i){if("number"==typeof e)if(t<2)this.fromInt(1);else for(this.fromNumber(t,i),this.testBit(t-1)||this.bitwiseTo(r.ONE.shiftLeft(t-1),v,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(e);)this.dAddOffset(2,0),this.bitLength()>t&&this.subTo(r.ONE.shiftLeft(t-1),this);else{var n=new Array,o=7&t;n.length=1+(t>>3),e.nextBytes(n),o>0?n[0]&=(1<<o)-1:n[0]=0,this.fromString(n,256)}},r.prototype.bitwiseTo=function(t,e,r){var i,n,o=Math.min(t.t,this.t);for(i=0;i<o;++i)r[i]=e(this[i],t[i]);if(t.t<this.t){for(n=t.s&this.DM,i=o;i<this.t;++i)r[i]=e(this[i],n);r.t=this.t}else{for(n=this.s&this.DM,i=o;i<t.t;++i)r[i]=e(n,t[i]);r.t=t.t}r.s=e(this.s,t.s),r.clamp()},r.prototype.changeBit=function(t,e){var i=r.ONE.shiftLeft(t);return this.bitwiseTo(i,e,i),i},r.prototype.addTo=function(t,e){for(var r=0,i=0,n=Math.min(t.t,this.t);r<n;)i+=this[r]+t[r],e[r++]=i&this.DM,i>>=this.DB;if(t.t<this.t){for(i+=t.s;r<this.t;)i+=this[r],e[r++]=i&this.DM,i>>=this.DB;i+=this.s}else{for(i+=this.s;r<t.t;)i+=t[r],e[r++]=i&this.DM,i>>=this.DB;i+=t.s}e.s=i<0?-1:0,i>0?e[r++]=i:i<-1&&(e[r++]=this.DV+i),e.t=r,e.clamp()},r.prototype.dMultiply=function(t){this[this.t]=this.am(0,t-1,this,0,0,this.t),++this.t,this.clamp()},r.prototype.dAddOffset=function(t,e){if(0!=t){for(;this.t<=e;)this[this.t++]=0;for(this[e]+=t;this[e]>=this.DV;)this[e]-=this.DV,++e>=this.t&&(this[this.t++]=0),++this[e]}},r.prototype.multiplyLowerTo=function(t,e,r){var i,n=Math.min(this.t+t.t,e);for(r.s=0,r.t=n;n>0;)r[--n]=0;for(i=r.t-this.t;n<i;++n)r[n+this.t]=this.am(0,t[n],r,n,0,this.t);for(i=Math.min(t.t,e);n<i;++n)this.am(0,t[n],r,n,0,e-n);r.clamp()},r.prototype.multiplyUpperTo=function(t,e,r){var i=r.t=this.t+t.t- --e;for(r.s=0;--i>=0;)r[i]=0;for(i=Math.max(e-this.t,0);i<t.t;++i)r[this.t+i-e]=this.am(e-i,t[i],r,0,0,this.t+i-e);r.clamp(),r.drShiftTo(1,r)},r.prototype.modInt=function(t){if(t<=0)return 0;var e=this.DV%t,r=this.s<0?t-1:0;if(this.t>0)if(0==e)r=this[0]%t;else for(var i=this.t-1;i>=0;--i)r=(e*r+this[i])%t;return r},r.prototype.millerRabin=function(t){var e=this.subtract(r.ONE),n=e.getLowestSetBit();if(n<=0)return!1;var o=e.shiftRight(n);(t=t+1>>1)>x.length&&(t=x.length);for(var s=i(),h=0;h<t;++h){s.fromInt(x[Math.floor(Math.random()*x.length)]);var a=s.modPow(o,this);if(0!=a.compareTo(r.ONE)&&0!=a.compareTo(e)){for(var u=1;u++<n&&0!=a.compareTo(e);)if(0==(a=a.modPowInt(2,this)).compareTo(r.ONE))return!1;if(0!=a.compareTo(e))return!1}}return!0},r.prototype.clone=function(){var t=i();return this.copyTo(t),t},r.prototype.intValue=function(){if(this.s<0){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<<this.DB|this[0]},r.prototype.byteValue=function(){return 0==this.t?this.s:this[0]<<24>>24},r.prototype.shortValue=function(){return 0==this.t?this.s:this[0]<<16>>16},r.prototype.signum=function(){return this.s<0?-1:this.t<=0||1==this.t&&this[0]<=0?0:1},r.prototype.toByteArray=function(){var t=this.t,e=new Array;e[0]=this.s;var r,i=this.DB-t*this.DB%8,n=0;if(t-- >0)for(i<this.DB&&(r=this[t]>>i)!=(this.s&this.DM)>>i&&(e[n++]=r|this.s<<this.DB-i);t>=0;)i<8?(r=(this[t]&(1<<i)-1)<<8-i,r|=this[--t]>>(i+=this.DB-8)):(r=this[t]>>(i-=8)&255,i<=0&&(i+=this.DB,--t)),0!=(128&r)&&(r|=-256),0==n&&(128&this.s)!=(128&r)&&++n,(n>0||r!=this.s)&&(e[n++]=r);return e},r.prototype.equals=function(t){return 0==this.compareTo(t)},r.prototype.min=function(t){return this.compareTo(t)<0?this:t},r.prototype.max=function(t){return this.compareTo(t)>0?this:t},r.prototype.and=function(t){var e=i();return this.bitwiseTo(t,m,e),e},r.prototype.or=function(t){var e=i();return this.bitwiseTo(t,v,e),e},r.prototype.xor=function(t){var e=i();return this.bitwiseTo(t,y,e),e},r.prototype.andNot=function(t){var e=i();return this.bitwiseTo(t,g,e),e},r.prototype.not=function(){for(var t=i(),e=0;e<this.t;++e)t[e]=this.DM&~this[e];return t.t=this.t,t.s=~this.s,t},r.prototype.shiftLeft=function(t){var e=i();return t<0?this.rShiftTo(-t,e):this.lShiftTo(t,e),e},r.prototype.shiftRight=function(t){var e=i();return t<0?this.lShiftTo(-t,e):this.rShiftTo(t,e),e},r.prototype.getLowestSetBit=function(){for(var t=0;t<this.t;++t)if(0!=this[t])return t*this.DB+w(this[t]);return this.s<0?this.t*this.DB:-1},r.prototype.bitCount=function(){for(var t=0,e=this.s&this.DM,r=0;r<this.t;++r)t+=T(this[r]^e);return t},r.prototype.testBit=function(t){var e=Math.floor(t/this.DB);return e>=this.t?0!=this.s:0!=(this[e]&1<<t%this.DB)},r.prototype.setBit=function(t){return this.changeBit(t,v)},r.prototype.clearBit=function(t){return this.changeBit(t,g)},r.prototype.flipBit=function(t){return this.changeBit(t,y)},r.prototype.add=function(t){var e=i();return this.addTo(t,e),e},r.prototype.subtract=function(t){var e=i();return this.subTo(t,e),e},r.prototype.multiply=function(t){var e=i();return this.multiplyTo(t,e),e},r.prototype.divide=function(t){var e=i();return this.divRemTo(t,e,null),e},r.prototype.remainder=function(t){var e=i();return this.divRemTo(t,null,e),e},r.prototype.divideAndRemainder=function(t){var e=i(),r=i();return this.divRemTo(t,e,r),new Array(e,r)},r.prototype.modPow=function(t,e){var r,n,o=t.bitLength(),s=c(1);if(o<=0)return s;r=o<18?1:o<48?3:o<144?4:o<768?5:6,n=o<8?new l(e):e.isEven()?new A(e):new d(e);var h=new Array,a=3,u=r-1,f=(1<<r)-1;if(h[1]=n.convert(this),r>1){var m=i();for(n.sqrTo(h[1],m);a<=f;)h[a]=i(),n.mulTo(m,h[a-2],h[a]),a+=2}var v,y,g=t.t-1,w=!0,T=i();for(o=p(t[g])-1;g>=0;){for(o>=u?v=t[g]>>o-u&f:(v=(t[g]&(1<<o+1)-1)<<u-o,g>0&&(v|=t[g-1]>>this.DB+o-u)),a=r;0==(1&v);)v>>=1,--a;if((o-=a)<0&&(o+=this.DB,--g),w)h[v].copyTo(s),w=!1;else{for(;a>1;)n.sqrTo(s,T),n.sqrTo(T,s),a-=2;a>0?n.sqrTo(s,T):(y=s,s=T,T=y),n.mulTo(T,h[v],s)}for(;g>=0&&0==(t[g]&1<<o);)n.sqrTo(s,T),y=s,s=T,T=y,--o<0&&(o=this.DB-1,--g)}return n.revert(s)},r.prototype.modInverse=function(t){var e=t.isEven();if(this.isEven()&&e||0==t.signum())return r.ZERO;for(var i=t.clone(),n=this.clone(),o=c(1),s=c(0),h=c(0),a=c(1);0!=i.signum();){for(;i.isEven();)i.rShiftTo(1,i),e?(o.isEven()&&s.isEven()||(o.addTo(this,o),s.subTo(t,s)),o.rShiftTo(1,o)):s.isEven()||s.subTo(t,s),s.rShiftTo(1,s);for(;n.isEven();)n.rShiftTo(1,n),e?(h.isEven()&&a.isEven()||(h.addTo(this,h),a.subTo(t,a)),h.rShiftTo(1,h)):a.isEven()||a.subTo(t,a),a.rShiftTo(1,a);i.compareTo(n)>=0?(i.subTo(n,i),e&&o.subTo(h,o),s.subTo(a,s)):(n.subTo(i,n),e&&h.subTo(o,h),a.subTo(s,a))}return 0!=n.compareTo(r.ONE)?r.ZERO:a.compareTo(t)>=0?a.subtract(t):a.signum()<0?(a.addTo(t,a),a.signum()<0?a.add(t):a):a},r.prototype.pow=function(t){return this.exp(t,new b)},r.prototype.gcd=function(t){var e=this.s<0?this.negate():this.clone(),r=t.s<0?t.negate():t.clone();if(e.compareTo(r)<0){var i=e;e=r,r=i}var n=e.getLowestSetBit(),o=r.getLowestSetBit();if(o<0)return e;for(n<o&&(o=n),o>0&&(e.rShiftTo(o,e),r.rShiftTo(o,r));e.signum()>0;)(n=e.getLowestSetBit())>0&&e.rShiftTo(n,e),(n=r.getLowestSetBit())>0&&r.rShiftTo(n,r),e.compareTo(r)>=0?(e.subTo(r,e),e.rShiftTo(1,e)):(r.subTo(e,r),r.rShiftTo(1,r));return o>0&&r.lShiftTo(o,r),r},r.prototype.isProbablePrime=function(t){var e,r=this.abs();if(1==r.t&&r[0]<=x[x.length-1]){for(e=0;e<x.length;++e)if(r[0]==x[e])return!0;return!1}if(r.isEven())return!1;for(e=1;e<x.length;){for(var i=x[e],n=e+1;n<x.length&&i<k;)i*=x[n++];for(i=r.modInt(i);e<n;)if(i%x[e++]==0)return!1}return r.millerRabin(t)},r.prototype.square=function(){var t=i();return this.squareTo(t),t},r.prototype.Barrett=A,null==D){var M;if(D=new Array,B=0,"undefined"!=typeof window&&window.crypto)if(window.crypto.getRandomValues){var I=new Uint8Array(32);for(window.crypto.getRandomValues(I),M=0;M<32;++M)D[B++]=I[M]}else if("Netscape"==navigator.appName&&navigator.appVersion<"5"){var C=window.crypto.random(32);for(M=0;M<C.length;++M)D[B++]=255&C.charCodeAt(M)}for(;B<N;)M=Math.floor(65536*Math.random()),D[B++]=M>>>8,D[B++]=255&M;B=0,E()}function R(){if(null==S){for(E(),(S=new O).init(D),B=0;B<D.length;++B)D[B]=0;B=0}return S.next()}function j(){}function O(){this.i=0,this.j=0,this.S=new Array}j.prototype.nextBytes=function(t){var e;for(e=0;e<t.length;++e)t[e]=R()},O.prototype.init=function(t){var e,r,i;for(e=0;e<256;++e)this.S[e]=e;for(r=0,e=0;e<256;++e)i=this.S[e],this.S[e]=this.S[r=r+this.S[e]+t[e%t.length]&255],this.S[r]=i;this.i=0,this.j=0},O.prototype.next=function(){var t;return this.i=this.i+1&255,this.j=this.j+this.S[this.i]&255,t=this.S[this.i],this.S[this.i]=this.S[this.j],this.S[this.j]=t,this.S[t+this.S[this.i]&255]};var N=256;e.exports={default:r,BigInteger:r,SecureRandom:j}}).call(t)}).BigInteger,h={sha1:"3021300906052b0e03021a05000414",sha224:"302d300d06096086480165030402040500041c",sha256:"3031300d060960864801650304020105000420",sha384:"3041300d060960864801650304020205000430",sha512:"3051300d060960864801650304020305000440",md2:"3020300c06082a864886f70d020205000410",md5:"3020300c06082a864886f70d020505000410",ripemd160:"3021300906052b2403020105000414"},a={sha256:i};function u(t,e){if(this.n=null,this.e=0,!(null!=t&&null!=e&&t.length>0&&e.length>0))throw new Error("Invalid key data");this.n=new s(t,16),this.e=parseInt(e,16)}u.prototype.verify=function(t,e){e=e.replace(/[^0-9a-f]|[\s\n]]/gi,"");var r=new s(e,16);if(r.bitLength()>this.n.bitLength())throw new Error("Signature does not match with the key modulus.");var i=function(t){for(var e in h){var r=h[e],i=r.length;if(t.substring(0,i)===r)return{alg:e,hash:t.substring(i)}}return[]}(r.modPowInt(this.e,this.n).toString(16).replace(/^1f+00/,""));if(0===i.length)return!1;if(!a.hasOwnProperty(i.alg))throw new Error("Hashing algorithm is not supported.");var n=a[i.alg](t).toString();return i.hash===n};for(var f=[],c=[],p="undefined"!=typeof Uint8Array?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",d=0,m=l.length;d<m;++d)f[d]=l[d],c[l.charCodeAt(d)]=d;function v(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function y(t,e,r){for(var i,n=[],o=e;o<r;o+=3)n.push(f[(i=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(255&t[o+2]))>>18&63]+f[i>>12&63]+f[i>>6&63]+f[63&i]);return n.join("")}c["-".charCodeAt(0)]=62,c["_".charCodeAt(0)]=63;var g={byteLength:function(t){var e=v(t),r=e[1];return 3*(e[0]+r)/4-r},toByteArray:function(t){var e,r,i=v(t),n=i[0],o=i[1],s=new p(function(t,e,r){return 3*(e+r)/4-r}(0,n,o)),h=0,a=o>0?n-4:n;for(r=0;r<a;r+=4)e=c[t.charCodeAt(r)]<<18|c[t.charCodeAt(r+1)]<<12|c[t.charCodeAt(r+2)]<<6|c[t.charCodeAt(r+3)],s[h++]=e>>16&255,s[h++]=e>>8&255,s[h++]=255&e;return 2===o&&(e=c[t.charCodeAt(r)]<<2|c[t.charCodeAt(r+1)]>>4,s[h++]=255&e),1===o&&(e=c[t.charCodeAt(r)]<<10|c[t.charCodeAt(r+1)]<<4|c[t.charCodeAt(r+2)]>>2,s[h++]=e>>8&255,s[h++]=255&e),s},fromByteArray:function(t){for(var e,r=t.length,i=r%3,n=[],o=0,s=r-i;o<s;o+=16383)n.push(y(t,o,o+16383>s?s:o+16383));return 1===i?n.push(f[(e=t[r-1])>>2]+f[e<<4&63]+"=="):2===i&&n.push(f[(e=(t[r-2]<<8)+t[r-1])>>10]+f[e>>4&63]+f[e<<2&63]+"="),n.join("")}};function w(t){var e=t.length%4;return 0===e?t:t+new Array(4-e+1).join("=")}function T(t){return t=w(t).replace(/\-/g,"+").replace(/_/g,"/"),decodeURIComponent(function(t){for(var e="",r=0;r<t.length;r++)e+=String.fromCharCode(t[r]);return e}(g.toByteArray(t)).split("").map(function(t){return"%"+("00"+t.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function b(t){return function(t){for(var e="",r=0;r<t.length;r++){var i=t[r].toString(16);e+=2===i.length?i:"0"+i}return e}(g.toByteArray(w(t)))}var _=e(function(e,r){e.exports=function(){function e(t){return"function"==typeof t}var r=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},i=0,n=void 0,o=void 0,s=function(t,e){l[i]=t,l[i+1]=e,2===(i+=2)&&(o?o(d):w())},h="undefined"!=typeof window?window:void 0,a=h||{},u=a.MutationObserver||a.WebKitMutationObserver,f="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),c="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function p(){var t=setTimeout;return function(){return t(d,1)}}var l=new Array(1e3);function d(){for(var t=0;t<i;t+=2)(0,l[t])(l[t+1]),l[t]=void 0,l[t+1]=void 0;i=0}var m,v,y,g,w=void 0;function T(t,e){var r=this,i=new this.constructor(A);void 0===i[_]&&N(i);var n=r._state;if(n){var o=arguments[n-1];s(function(){return j(n,i,o,r._result)})}else C(r,i,t,e);return i}function b(t){if(t&&"object"==typeof t&&t.constructor===this)return t;var e=new this(A);return k(e,t),e}f?w=function(){return process.nextTick(d)}:u?(v=0,y=new u(d),g=document.createTextNode(""),y.observe(g,{characterData:!0}),w=function(){g.data=v=++v%2}):c?((m=new MessageChannel).port1.onmessage=d,w=function(){return m.port2.postMessage(0)}):w=void 0===h?function(){try{var t=Function("return this")().require("vertx");return void 0!==(n=t.runOnLoop||t.runOnContext)?function(){n(d)}:p()}catch(t){return p()}}():p();var _=Math.random().toString(36).substring(2);function A(){}var S=void 0,D=1,B=2;function x(t,r,i){r.constructor===t.constructor&&i===T&&r.constructor.resolve===b?function(t,e){e._state===D?M(t,e._result):e._state===B?I(t,e._result):C(e,void 0,function(e){return k(t,e)},function(e){return I(t,e)})}(t,r):void 0===i?M(t,r):e(i)?function(t,e,r){s(function(t){var i=!1,n=function(r,n,o,s){try{r.call(n,function(r){i||(i=!0,e!==r?k(t,r):M(t,r))},function(e){i||(i=!0,I(t,e))})}catch(t){return t}}(r,e);!i&&n&&(i=!0,I(t,n))},t)}(t,r,i):M(t,r)}function k(t,e){if(t===e)I(t,new TypeError("You cannot resolve a promise with itself"));else if(n=typeof(i=e),null===i||"object"!==n&&"function"!==n)M(t,e);else{var r=void 0;try{r=e.then}catch(e){return void I(t,e)}x(t,e,r)}var i,n}function E(t){t._onerror&&t._onerror(t._result),R(t)}function M(t,e){t._state===S&&(t._result=e,t._state=D,0!==t._subscribers.length&&s(R,t))}function I(t,e){t._state===S&&(t._state=B,t._result=e,s(E,t))}function C(t,e,r,i){var n=t._subscribers,o=n.length;t._onerror=null,n[o]=e,n[o+D]=r,n[o+B]=i,0===o&&t._state&&s(R,t)}function R(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var i=void 0,n=void 0,o=t._result,s=0;s<e.length;s+=3)n=e[s+r],(i=e[s])?j(r,i,n,o):n(o);t._subscribers.length=0}}function j(t,r,i,n){var o=e(i),s=void 0,h=void 0,a=!0;if(o){try{s=i(n)}catch(t){a=!1,h=t}if(r===s)return void I(r,new TypeError("A promises callback cannot return that same promise."))}else s=n;r._state!==S||(o&&a?k(r,s):!1===a?I(r,h):t===D?M(r,s):t===B&&I(r,s))}var O=0;function N(t){t[_]=O++,t._state=void 0,t._result=void 0,t._subscribers=[]}var P=function(){function t(t,e){this._instanceConstructor=t,this.promise=new t(A),this.promise[_]||N(this.promise),r(e)?(this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?M(this.promise,this._result):(this.length=this.length||0,this._enumerate(e),0===this._remaining&&M(this.promise,this._result))):I(this.promise,new Error("Array Methods must be provided an Array"))}return t.prototype._enumerate=function(t){for(var e=0;this._state===S&&e<t.length;e++)this._eachEntry(t[e],e)},t.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,i=r.resolve;if(i===b){var n=void 0,o=void 0,s=!1;try{n=t.then}catch(t){s=!0,o=t}if(n===T&&t._state!==S)this._settledAt(t._state,e,t._result);else if("function"!=typeof n)this._remaining--,this._result[e]=t;else if(r===V){var h=new r(A);s?I(h,o):x(h,t,n),this._willSettleAt(h,e)}else this._willSettleAt(new r(function(e){return e(t)}),e)}else this._willSettleAt(i(t),e)},t.prototype._settledAt=function(t,e,r){var i=this.promise;i._state===S&&(this._remaining--,t===B?I(i,r):this._result[e]=r),0===this._remaining&&M(i,this._result)},t.prototype._willSettleAt=function(t,e){var r=this;C(t,void 0,function(t){return r._settledAt(D,e,t)},function(t){return r._settledAt(B,e,t)})},t}(),V=function(){function t(e){this[_]=O++,this._result=this._state=void 0,this._subscribers=[],A!==e&&("function"!=typeof e&&function(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}(),this instanceof t?function(t,e){try{e(function(e){k(t,e)},function(e){I(t,e)})}catch(e){I(t,e)}}(this,e):function(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}())}return t.prototype.catch=function(t){return this.then(null,t)},t.prototype.finally=function(t){var r=this.constructor;return e(t)?this.then(function(e){return r.resolve(t()).then(function(){return e})},function(e){return r.resolve(t()).then(function(){throw e})}):this.then(t,t)},t}();return V.prototype.then=T,V.all=function(t){return new P(this,t).promise},V.race=function(t){var e=this;return r(t)?new e(function(r,i){for(var n=t.length,o=0;o<n;o++)e.resolve(t[o]).then(r,i)}):new e(function(t,e){return e(new TypeError("You must pass an array to race."))})},V.resolve=b,V.reject=function(t){var e=new this(A);return I(e,t),e},V._setScheduler=function(t){o=t},V._setAsap=function(t){s=t},V._asap=s,V.polyfill=function(){var e=void 0;if(void 0!==t)e=t;else if("undefined"!=typeof self)e=self;else try{e=Function("return this")()}catch(t){throw new Error("polyfill failed because global object is unavailable in this environment")}var r=e.Promise;if(r){var i=null;try{i=Object.prototype.toString.call(r.resolve())}catch(t){}if("[object Promise]"===i&&!r.cast)return}e.Promise=V},V.Promise=V,V}()}),A=e(function(e){var r,i;r=t,i=function(){return function(){return function(t){var e=[];if(0===t.length)return"";if("string"!=typeof t[0])throw new TypeError("Url must be a string. Received "+t[0]);if(t[0].match(/^[^/:]+:\/*$/)&&t.length>1){var r=t.shift();t[0]=r+t[0]}t[0]=t[0].match(/^file:\/\/\//)?t[0].replace(/^([^/:]+):\/*/,"$1:///"):t[0].replace(/^([^/:]+):\/*/,"$1://");for(var i=0;i<t.length;i++){var n=t[i];if("string"!=typeof n)throw new TypeError("Url must be a string. Received "+n);""!==n&&(i>0&&(n=n.replace(/^[\/]+/,"")),n=n.replace(/[\/]+$/,i<t.length-1?"":"/"),e.push(n))}var o=e.join("/"),s=(o=o.replace(/\/(\?|&|#[^!])/g,"$1")).split("?");return s.shift()+(s.length>0?"?":"")+s.join("&")}("object"==typeof arguments[0]?arguments[0]:[].slice.call(arguments))}},e.exports?e.exports=i():r.urljoin=i()});function S(t){if(t.ok)return t.json();var e=new Error(t.statusText);return e.response=t,Promise.reject(e)}function D(t){this.name="ConfigurationError",this.message=t||""}function B(t){this.name="TokenValidationError",this.message=t||""}_.polyfill(),D.prototype=Error.prototype,B.prototype=Error.prototype;var x=function(){};x.prototype.get=function(){return null},x.prototype.has=function(){return null},x.prototype.set=function(){return null};var k="RS256",E=function(t){return"number"==typeof t},M=function(){return new Date},I=60;function C(t){var e=t||{};if(this.jwksCache=e.jwksCache||new x,this.expectedAlg=e.expectedAlg||"RS256",this.issuer=e.issuer,this.audience=e.audience,this.leeway=0===e.leeway?0:e.leeway||I,this.jwksURI=e.jwksURI,this.maxAge=e.maxAge,this.__clock="function"==typeof e.__clock?e.__clock:M,this.leeway<0||this.leeway>300)throw new D("The leeway should be positive and lower than five minutes.");if(k!==this.expectedAlg)throw new D('Signature algorithm of "'+this.expectedAlg+'" is not supported. Expected the ID token to be signed with "'+k+'".')}C.prototype.verify=function(t,e,r){if(!t)return r(new B("ID token is required but missing"),!1);var i=this.decode(t);if(i instanceof Error)return r(new B("ID token could not be decoded"),!1);var n=i.encoded.header+"."+i.encoded.payload,o=b(i.encoded.signature),s=i.header.alg,h=i.header.kid,a=i.payload.aud,u=i.payload.sub,f=i.payload.iss,c=i.payload.exp,p=i.payload.nbf,l=i.payload.iat,d=i.payload.azp,m=i.payload.auth_time,v=i.payload.nonce,y=this.__clock(),g=this;if(g.expectedAlg!==s)return r(new B('Signature algorithm of "'+s+'" is not supported. Expected the ID token to be signed with "'+k+'".'),!1);this.getRsaVerifier(f,h,function(t,s){if(t)return r(t);if(!s.verify(n,o))return r(new B("Invalid ID token signature."));if(!f||"string"!=typeof f)return r(new B("Issuer (iss) claim must be a string present in the ID token",!1));if(g.issuer!==f)return r(new B('Issuer (iss) claim mismatch in the ID token, expected "'+g.issuer+'", found "'+f+'"'),!1);if(!u||"string"!=typeof u)return r(new B("Subject (sub) claim must be a string present in the ID token"),!1);if(!a||"string"!=typeof a&&!Array.isArray(a))return r(new B("Audience (aud) claim must be a string or array of strings present in the ID token"));if(Array.isArray(a)&&!a.includes(g.audience))return r(new B('Audience (aud) claim mismatch in the ID token; expected "'+g.audience+'" but was not one of "'+a.join(", ")+'"'));if("string"==typeof a&&g.audience!==a)return r(new B('Audience (aud) claim mismatch in the ID token; expected "'+g.audience+'" but found "'+a+'"'),!1);if(e){if(!v||"string"!=typeof v)return r(new B("Nonce (nonce) claim must be a string present in the ID token"),!1);if(v!==e)return r(new B('Nonce (nonce) claim value mismatch in the ID token; expected "'+e+'", found "'+v+'"'),!1)}if(Array.isArray(a)&&a.length>1){if(!d||"string"!=typeof d)return r(new B("Authorized Party (azp) claim must be a string present in the ID token when Audience (aud) claim has multiple values",!1));if(d!==g.audience)return r(new B('Authorized Party (azp) claim mismatch in the ID token; expected "'+g.audience+'", found "'+d+'"',!1))}if(!c||!E(c))return r(new B("Expiration Time (exp) claim must be a number present in the ID token",!1));if(!l||!E(l))return r(new B("Issued At (iat) claim must be a number present in the ID token"));var h=c+g.leeway,w=new Date(0);if(w.setUTCSeconds(h),y>w)return r(new B('Expiration Time (exp) claim error in the ID token; current time "'+y+'" is after expiration time "'+w+'"',!1));if(p&&E(p)){var T=p-g.leeway,b=new Date(0);if(b.setUTCSeconds(T),y<b)return r(new B('Not Before Time (nbf) claim error in the ID token; current time "'+y+'" is before the not before time "'+b+'"'))}if(g.maxAge){if(!m||!E(m))return r(new B("Authentication Time (auth_time) claim must be a number present in the ID token when Max Age (max_age) is specified"));var _=m+g.maxAge+g.leeway,A=new Date(0);if(A.setUTCSeconds(_),y>A)return r(new B('Authentication Time (auth_time) claim in the ID token indicates that too much time has passed since the last end-user authentication. Current time "'+y+'" is after last auth time at "'+A+'"'))}return r(null,i.payload)})},C.prototype.getRsaVerifier=function(t,e,r){var i=this,n=t+e;if(this.jwksCache.has(n)){var o=this.jwksCache.get(n);r(null,new u(o.modulus,o.exp))}else!function(t,e){("undefined"==typeof fetch?function(t,e){return e=e||{},new Promise(function(r,i){var n=new XMLHttpRequest,o=[],s=[],h={},a=function(){return{ok:2==(n.status/100|0),statusText:n.statusText,status:n.status,url:n.responseURL,text:function(){return Promise.resolve(n.responseText)},json:function(){return Promise.resolve(JSON.parse(n.responseText))},blob:function(){return Promise.resolve(new Blob([n.response]))},clone:a,headers:{keys:function(){return o},entries:function(){return s},get:function(t){return h[t.toLowerCase()]},has:function(t){return t.toLowerCase()in h}}}};for(var u in n.open(e.method||"get",t,!0),n.onload=function(){n.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(t,e,r){o.push(e=e.toLowerCase()),s.push([e,r]),h[e]=h[e]?h[e]+","+r:r}),r(a())},n.onerror=i,n.withCredentials="include"==e.credentials,e.headers)n.setRequestHeader(u,e.headers[u]);n.send(e.body||null)})}:fetch)(t.jwksURI||A(t.iss,".well-known","jwks.json")).then(S).then(function(r){var i,n,o,s=null;for(i=0;i<r.keys.length&&null===s;i++)(n=r.keys[i]).kid===t.kid&&(s=n);return s?e(null,{modulus:b((o=s).n),exp:b(o.e)}):e(new Error('Could not find a public key for Key ID (kid) "'+t.kid+'"'))}).catch(function(t){e(t)})}({jwksURI:this.jwksURI,iss:t,kid:e},function(t,e){return t?r(t):(i.jwksCache.set(n,e),r(null,new u(e.modulus,e.exp)))})},C.prototype.decode=function(t){var e,r,i=t.split(".");if(3!==i.length)return new B("Cannot decode a malformed JWT");try{e=JSON.parse(T(i[0])),r=JSON.parse(T(i[1]))}catch(t){return new B("Token header or payload is not valid JSON")}return{header:e,payload:r,encoded:{header:i[0],payload:i[1],signature:i[2]}}},C.prototype.validateAccessToken=function(t,e,r,s){if(this.expectedAlg!==e)return s(new B('Signature algorithm of "'+e+'" is not supported. Expected "'+this.expectedAlg+'"'));var h,a=i(t),u=o.stringify(a),f=u.substring(0,u.length/2),c=o.parse(f),p=n.stringify(c);return s((h={"+":"-","/":"_","=":""},p.replace(/[+/=]/g,function(t){return h[t]})!==r?new B("Invalid access_token"):null))},module.exports=C;
|
|
21502
22254
|
|
|
21503
22255
|
|
|
21504
22256
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
21505
|
-
},{"_process":
|
|
22257
|
+
},{"_process":295}],292:[function(require,module,exports){
|
|
21506
22258
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
21507
22259
|
var e, m
|
|
21508
22260
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -21588,7 +22340,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
21588
22340
|
buffer[offset + i - d] |= s * 128
|
|
21589
22341
|
}
|
|
21590
22342
|
|
|
21591
|
-
},{}],
|
|
22343
|
+
},{}],293:[function(require,module,exports){
|
|
21592
22344
|
// the whatwg-fetch polyfill installs the fetch() function
|
|
21593
22345
|
// on the global object (window or self)
|
|
21594
22346
|
//
|
|
@@ -21596,7 +22348,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
21596
22348
|
require('whatwg-fetch');
|
|
21597
22349
|
module.exports = self.fetch.bind(self);
|
|
21598
22350
|
|
|
21599
|
-
},{"whatwg-fetch":
|
|
22351
|
+
},{"whatwg-fetch":306}],294:[function(require,module,exports){
|
|
21600
22352
|
var hasMap = typeof Map === 'function' && Map.prototype;
|
|
21601
22353
|
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
|
|
21602
22354
|
var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;
|
|
@@ -22114,7 +22866,7 @@ function arrObjKeys(obj, inspect) {
|
|
|
22114
22866
|
return xs;
|
|
22115
22867
|
}
|
|
22116
22868
|
|
|
22117
|
-
},{"./util.inspect":
|
|
22869
|
+
},{"./util.inspect":277}],295:[function(require,module,exports){
|
|
22118
22870
|
// shim for using process in browser
|
|
22119
22871
|
var process = module.exports = {};
|
|
22120
22872
|
|
|
@@ -22300,7 +23052,7 @@ process.chdir = function (dir) {
|
|
|
22300
23052
|
};
|
|
22301
23053
|
process.umask = function() { return 0; };
|
|
22302
23054
|
|
|
22303
|
-
},{}],
|
|
23055
|
+
},{}],296:[function(require,module,exports){
|
|
22304
23056
|
'use strict';
|
|
22305
23057
|
|
|
22306
23058
|
var replace = String.prototype.replace;
|
|
@@ -22325,7 +23077,7 @@ module.exports = {
|
|
|
22325
23077
|
RFC3986: Format.RFC3986
|
|
22326
23078
|
};
|
|
22327
23079
|
|
|
22328
|
-
},{}],
|
|
23080
|
+
},{}],297:[function(require,module,exports){
|
|
22329
23081
|
'use strict';
|
|
22330
23082
|
|
|
22331
23083
|
var stringify = require('./stringify');
|
|
@@ -22338,7 +23090,7 @@ module.exports = {
|
|
|
22338
23090
|
stringify: stringify
|
|
22339
23091
|
};
|
|
22340
23092
|
|
|
22341
|
-
},{"./formats":
|
|
23093
|
+
},{"./formats":296,"./parse":298,"./stringify":299}],298:[function(require,module,exports){
|
|
22342
23094
|
'use strict';
|
|
22343
23095
|
|
|
22344
23096
|
var utils = require('./utils');
|
|
@@ -22603,7 +23355,7 @@ module.exports = function (str, opts) {
|
|
|
22603
23355
|
return utils.compact(obj);
|
|
22604
23356
|
};
|
|
22605
23357
|
|
|
22606
|
-
},{"./utils":
|
|
23358
|
+
},{"./utils":300}],299:[function(require,module,exports){
|
|
22607
23359
|
'use strict';
|
|
22608
23360
|
|
|
22609
23361
|
var getSideChannel = require('side-channel');
|
|
@@ -22931,7 +23683,7 @@ module.exports = function (object, opts) {
|
|
|
22931
23683
|
return joined.length > 0 ? prefix + joined : '';
|
|
22932
23684
|
};
|
|
22933
23685
|
|
|
22934
|
-
},{"./formats":
|
|
23686
|
+
},{"./formats":296,"./utils":300,"side-channel":305}],300:[function(require,module,exports){
|
|
22935
23687
|
'use strict';
|
|
22936
23688
|
|
|
22937
23689
|
var formats = require('./formats');
|
|
@@ -23185,7 +23937,7 @@ module.exports = {
|
|
|
23185
23937
|
merge: merge
|
|
23186
23938
|
};
|
|
23187
23939
|
|
|
23188
|
-
},{"./formats":
|
|
23940
|
+
},{"./formats":296}],301:[function(require,module,exports){
|
|
23189
23941
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
23190
23942
|
//
|
|
23191
23943
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -23271,7 +24023,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
23271
24023
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
23272
24024
|
};
|
|
23273
24025
|
|
|
23274
|
-
},{}],
|
|
24026
|
+
},{}],302:[function(require,module,exports){
|
|
23275
24027
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
23276
24028
|
//
|
|
23277
24029
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -23358,13 +24110,13 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
23358
24110
|
return res;
|
|
23359
24111
|
};
|
|
23360
24112
|
|
|
23361
|
-
},{}],
|
|
24113
|
+
},{}],303:[function(require,module,exports){
|
|
23362
24114
|
'use strict';
|
|
23363
24115
|
|
|
23364
24116
|
exports.decode = exports.parse = require('./decode');
|
|
23365
24117
|
exports.encode = exports.stringify = require('./encode');
|
|
23366
24118
|
|
|
23367
|
-
},{"./decode":
|
|
24119
|
+
},{"./decode":301,"./encode":302}],304:[function(require,module,exports){
|
|
23368
24120
|
'use strict'
|
|
23369
24121
|
/* eslint no-proto: 0 */
|
|
23370
24122
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -23383,7 +24135,7 @@ function mixinProperties (obj, proto) {
|
|
|
23383
24135
|
return obj
|
|
23384
24136
|
}
|
|
23385
24137
|
|
|
23386
|
-
},{}],
|
|
24138
|
+
},{}],305:[function(require,module,exports){
|
|
23387
24139
|
'use strict';
|
|
23388
24140
|
|
|
23389
24141
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -23509,7 +24261,7 @@ module.exports = function getSideChannel() {
|
|
|
23509
24261
|
return channel;
|
|
23510
24262
|
};
|
|
23511
24263
|
|
|
23512
|
-
},{"call-bind/callBound":
|
|
24264
|
+
},{"call-bind/callBound":279,"get-intrinsic":286,"object-inspect":294}],306:[function(require,module,exports){
|
|
23513
24265
|
(function(self) {
|
|
23514
24266
|
'use strict';
|
|
23515
24267
|
|