@cinerino/sdk 11.1.0-alpha.0 → 11.2.0-alpha.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 +1049 -471
- package/example/src/chevre/admin/findMySellers.ts +33 -0
- package/example/src/chevre/{searchEvents.ts → default/searchEvents.ts} +1 -1
- package/example/src/cloud/{adminSearchMyProjects.ts → admin/findMyProjects.ts} +2 -3
- package/example/src/cloud/admin/findMySellers.ts +31 -0
- package/example/src/cloud/search/findPaymentServices.ts +29 -0
- package/example/src/cloud/search/findProducts.ts +30 -0
- package/example/src/cloud/transaction/processPlaceOrderByCreditCard3DS.ts +3 -1
- package/lib/abstract/chevre/paymentService.d.ts +29 -0
- package/lib/abstract/chevre/paymentService.js +88 -0
- package/lib/abstract/chevre.d.ts +9 -0
- package/lib/abstract/chevre.js +20 -0
- package/lib/abstract/chevreAdmin/me.d.ts +13 -2
- package/lib/abstract/chevreAdmin/me.js +21 -0
- package/lib/abstract/chevrePay/payment.js +57 -36
- package/lib/abstract/cloud/admin/me.d.ts +12 -11
- package/lib/abstract/cloud/admin/me.js +22 -1
- package/lib/abstract/cloud/search/paymentService.d.ts +11 -0
- package/lib/abstract/cloud/search/paymentService.js +91 -0
- package/lib/abstract/cloud/search/product.d.ts +38 -0
- package/lib/abstract/cloud/search/product.js +127 -0
- package/lib/abstract/cloud/search.d.ts +37 -0
- package/lib/abstract/cloud/search.js +115 -0
- package/lib/abstract/index.d.ts +6 -1
- package/lib/abstract/index.js +27 -1
- package/lib/bundle.js +1220 -682
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -1
- package/package.json +1 -1
- package/example/src/searchProductModels.ts +0 -32
- package/example/src/searchProducts.ts +0 -28
|
@@ -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":178}],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":160}],3:[function(require,module,exports){
|
|
22
22
|
"use strict";
|
|
23
23
|
var __assign = (this && this.__assign) || function () {
|
|
24
24
|
__assign = Object.assign || function(t) {
|
|
@@ -86,6 +86,9 @@ var service;
|
|
|
86
86
|
var EventSeries;
|
|
87
87
|
(function (EventSeries) {
|
|
88
88
|
})(EventSeries = service.EventSeries || (service.EventSeries = {}));
|
|
89
|
+
var PaymentProduct;
|
|
90
|
+
(function (PaymentProduct) {
|
|
91
|
+
})(PaymentProduct = service.PaymentProduct || (service.PaymentProduct = {}));
|
|
89
92
|
var Place;
|
|
90
93
|
(function (Place) {
|
|
91
94
|
})(Place = service.Place || (service.Place = {}));
|
|
@@ -197,6 +200,23 @@ var Chevre = /** @class */ (function () {
|
|
|
197
200
|
});
|
|
198
201
|
});
|
|
199
202
|
};
|
|
203
|
+
Chevre.prototype.createPaymentProductInstance = function (params) {
|
|
204
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
205
|
+
var _a;
|
|
206
|
+
return __generator(this, function (_b) {
|
|
207
|
+
switch (_b.label) {
|
|
208
|
+
case 0:
|
|
209
|
+
if (!(service.PaymentProduct.svc === undefined)) return [3 /*break*/, 2];
|
|
210
|
+
_a = service.PaymentProduct;
|
|
211
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./chevre/paymentService'); })];
|
|
212
|
+
case 1:
|
|
213
|
+
_a.svc = (_b.sent()).PaymentProductService;
|
|
214
|
+
_b.label = 2;
|
|
215
|
+
case 2: return [2 /*return*/, new service.PaymentProduct.svc(__assign(__assign(__assign({}, this.options), params), { retryableStatusCodes: [] }))];
|
|
216
|
+
}
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
};
|
|
200
220
|
Chevre.prototype.createPlaceInstance = function (params) {
|
|
201
221
|
return __awaiter(this, void 0, void 0, function () {
|
|
202
222
|
var _a;
|
|
@@ -286,7 +306,7 @@ var Chevre = /** @class */ (function () {
|
|
|
286
306
|
}());
|
|
287
307
|
exports.Chevre = Chevre;
|
|
288
308
|
|
|
289
|
-
},{"./chevre/categoryCode":109,"./chevre/creativeWork":110,"./chevre/emailMessage":111,"./chevre/event":112,"./chevre/eventSeries":113,"./chevre/
|
|
309
|
+
},{"./chevre/categoryCode":109,"./chevre/creativeWork":110,"./chevre/emailMessage":111,"./chevre/event":112,"./chevre/eventSeries":113,"./chevre/paymentService":114,"./chevre/place":115,"./chevre/place/hasPOS":116,"./chevre/product":117,"./chevre/seller":118,"./chevre/trip":119}],4:[function(require,module,exports){
|
|
290
310
|
"use strict";
|
|
291
311
|
var __assign = (this && this.__assign) || function () {
|
|
292
312
|
__assign = Object.assign || function(t) {
|
|
@@ -764,7 +784,7 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
764
784
|
}(service_1.Service));
|
|
765
785
|
exports.CancelReservationAssetTransactionService = CancelReservationAssetTransactionService;
|
|
766
786
|
|
|
767
|
-
},{"../../service":
|
|
787
|
+
},{"../../service":164,"http-status":440}],6:[function(require,module,exports){
|
|
768
788
|
"use strict";
|
|
769
789
|
var __extends = (this && this.__extends) || (function () {
|
|
770
790
|
var extendStatics = function (d, b) {
|
|
@@ -852,7 +872,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
852
872
|
}(service_1.Service));
|
|
853
873
|
exports.AuthorizationService = AuthorizationService;
|
|
854
874
|
|
|
855
|
-
},{"../service":
|
|
875
|
+
},{"../service":164,"http-status":440}],7:[function(require,module,exports){
|
|
856
876
|
"use strict";
|
|
857
877
|
var __extends = (this && this.__extends) || (function () {
|
|
858
878
|
var extendStatics = function (d, b) {
|
|
@@ -941,7 +961,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
941
961
|
}(service_1.Service));
|
|
942
962
|
exports.CreativeWorkService = CreativeWorkService;
|
|
943
963
|
|
|
944
|
-
},{"../service":
|
|
964
|
+
},{"../service":164,"http-status":440}],8:[function(require,module,exports){
|
|
945
965
|
"use strict";
|
|
946
966
|
var __extends = (this && this.__extends) || (function () {
|
|
947
967
|
var extendStatics = function (d, b) {
|
|
@@ -1029,7 +1049,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
1029
1049
|
}(service_1.Service));
|
|
1030
1050
|
exports.CustomerService = CustomerService;
|
|
1031
1051
|
|
|
1032
|
-
},{"../service":
|
|
1052
|
+
},{"../service":164,"http-status":440}],9:[function(require,module,exports){
|
|
1033
1053
|
"use strict";
|
|
1034
1054
|
var __extends = (this && this.__extends) || (function () {
|
|
1035
1055
|
var extendStatics = function (d, b) {
|
|
@@ -1144,7 +1164,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
1144
1164
|
}(service_1.Service));
|
|
1145
1165
|
exports.EventService = EventService;
|
|
1146
1166
|
|
|
1147
|
-
},{"../service":
|
|
1167
|
+
},{"../service":164,"http-status":440}],10:[function(require,module,exports){
|
|
1148
1168
|
"use strict";
|
|
1149
1169
|
var __extends = (this && this.__extends) || (function () {
|
|
1150
1170
|
var extendStatics = function (d, b) {
|
|
@@ -1236,7 +1256,7 @@ var EventSeriesService = /** @class */ (function (_super) {
|
|
|
1236
1256
|
}(service_1.Service));
|
|
1237
1257
|
exports.EventSeriesService = EventSeriesService;
|
|
1238
1258
|
|
|
1239
|
-
},{"../factory":
|
|
1259
|
+
},{"../factory":159,"../service":164,"http-status":440}],11:[function(require,module,exports){
|
|
1240
1260
|
"use strict";
|
|
1241
1261
|
var __extends = (this && this.__extends) || (function () {
|
|
1242
1262
|
var extendStatics = function (d, b) {
|
|
@@ -1331,11 +1351,32 @@ var MeService = /** @class */ (function (_super) {
|
|
|
1331
1351
|
});
|
|
1332
1352
|
});
|
|
1333
1353
|
};
|
|
1354
|
+
/**
|
|
1355
|
+
* マイ販売者検索
|
|
1356
|
+
*/
|
|
1357
|
+
MeService.prototype.findMySellers = function (params) {
|
|
1358
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1359
|
+
var project, conditions;
|
|
1360
|
+
var _this = this;
|
|
1361
|
+
return __generator(this, function (_a) {
|
|
1362
|
+
project = params.project, conditions = params.conditions;
|
|
1363
|
+
return [2 /*return*/, this.fetch({
|
|
1364
|
+
uri: "/members/me/projects/" + String(project === null || project === void 0 ? void 0 : project.id) + "/sellers",
|
|
1365
|
+
method: 'GET',
|
|
1366
|
+
qs: conditions,
|
|
1367
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1368
|
+
})
|
|
1369
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1370
|
+
return [2 /*return*/, response.json()];
|
|
1371
|
+
}); }); })];
|
|
1372
|
+
});
|
|
1373
|
+
});
|
|
1374
|
+
};
|
|
1334
1375
|
return MeService;
|
|
1335
1376
|
}(service_1.Service));
|
|
1336
1377
|
exports.MeService = MeService;
|
|
1337
1378
|
|
|
1338
|
-
},{"../service":
|
|
1379
|
+
},{"../service":164,"http-status":440}],12:[function(require,module,exports){
|
|
1339
1380
|
"use strict";
|
|
1340
1381
|
var __extends = (this && this.__extends) || (function () {
|
|
1341
1382
|
var extendStatics = function (d, b) {
|
|
@@ -1424,7 +1465,7 @@ var MemberService = /** @class */ (function (_super) {
|
|
|
1424
1465
|
}(service_1.Service));
|
|
1425
1466
|
exports.MemberService = MemberService;
|
|
1426
1467
|
|
|
1427
|
-
},{"../factory":
|
|
1468
|
+
},{"../factory":159,"../service":164,"http-status":440}],13:[function(require,module,exports){
|
|
1428
1469
|
"use strict";
|
|
1429
1470
|
var __extends = (this && this.__extends) || (function () {
|
|
1430
1471
|
var extendStatics = function (d, b) {
|
|
@@ -1546,7 +1587,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
1546
1587
|
}(service_1.Service));
|
|
1547
1588
|
exports.NoteService = NoteService;
|
|
1548
1589
|
|
|
1549
|
-
},{"../service":
|
|
1590
|
+
},{"../service":164,"http-status":440}],14:[function(require,module,exports){
|
|
1550
1591
|
"use strict";
|
|
1551
1592
|
var __extends = (this && this.__extends) || (function () {
|
|
1552
1593
|
var extendStatics = function (d, b) {
|
|
@@ -1652,7 +1693,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
1652
1693
|
}(service_1.Service));
|
|
1653
1694
|
exports.OfferService = OfferService;
|
|
1654
1695
|
|
|
1655
|
-
},{"../service":
|
|
1696
|
+
},{"../service":164,"http-status":440}],15:[function(require,module,exports){
|
|
1656
1697
|
"use strict";
|
|
1657
1698
|
var __extends = (this && this.__extends) || (function () {
|
|
1658
1699
|
var extendStatics = function (d, b) {
|
|
@@ -1739,7 +1780,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
1739
1780
|
}(service_1.Service));
|
|
1740
1781
|
exports.OfferCatalogService = OfferCatalogService;
|
|
1741
1782
|
|
|
1742
|
-
},{"../service":
|
|
1783
|
+
},{"../service":164,"http-status":440}],16:[function(require,module,exports){
|
|
1743
1784
|
"use strict";
|
|
1744
1785
|
var __extends = (this && this.__extends) || (function () {
|
|
1745
1786
|
var extendStatics = function (d, b) {
|
|
@@ -1842,7 +1883,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
1842
1883
|
}(service_1.Service));
|
|
1843
1884
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
1844
1885
|
|
|
1845
|
-
},{"../service":
|
|
1886
|
+
},{"../service":164,"http-status":440}],17:[function(require,module,exports){
|
|
1846
1887
|
"use strict";
|
|
1847
1888
|
var __extends = (this && this.__extends) || (function () {
|
|
1848
1889
|
var extendStatics = function (d, b) {
|
|
@@ -2029,7 +2070,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
2029
2070
|
}(service_1.Service));
|
|
2030
2071
|
exports.OrderService = OrderService;
|
|
2031
2072
|
|
|
2032
|
-
},{"../service":
|
|
2073
|
+
},{"../service":164,"http-status":440}],18:[function(require,module,exports){
|
|
2033
2074
|
"use strict";
|
|
2034
2075
|
var __extends = (this && this.__extends) || (function () {
|
|
2035
2076
|
var extendStatics = function (d, b) {
|
|
@@ -2118,7 +2159,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
2118
2159
|
}(service_1.Service));
|
|
2119
2160
|
exports.ProductService = ProductService;
|
|
2120
2161
|
|
|
2121
|
-
},{"../service":
|
|
2162
|
+
},{"../service":164,"http-status":440}],19:[function(require,module,exports){
|
|
2122
2163
|
"use strict";
|
|
2123
2164
|
var __extends = (this && this.__extends) || (function () {
|
|
2124
2165
|
var extendStatics = function (d, b) {
|
|
@@ -2268,7 +2309,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
2268
2309
|
}(service_1.Service));
|
|
2269
2310
|
exports.ReservationService = ReservationService;
|
|
2270
2311
|
|
|
2271
|
-
},{"../service":
|
|
2312
|
+
},{"../service":164,"http-status":440}],20:[function(require,module,exports){
|
|
2272
2313
|
"use strict";
|
|
2273
2314
|
var __extends = (this && this.__extends) || (function () {
|
|
2274
2315
|
var extendStatics = function (d, b) {
|
|
@@ -2360,7 +2401,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
2360
2401
|
}(service_1.Service));
|
|
2361
2402
|
exports.SellerService = SellerService;
|
|
2362
2403
|
|
|
2363
|
-
},{"../service":
|
|
2404
|
+
},{"../service":164,"http-status":440}],21:[function(require,module,exports){
|
|
2364
2405
|
"use strict";
|
|
2365
2406
|
var __assign = (this && this.__assign) || function () {
|
|
2366
2407
|
__assign = Object.assign || function(t) {
|
|
@@ -2811,7 +2852,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
2811
2852
|
}(service_1.Service));
|
|
2812
2853
|
exports.OrderService = OrderService;
|
|
2813
2854
|
|
|
2814
|
-
},{"../factory":
|
|
2855
|
+
},{"../factory":159,"../service":164,"http-status":440}],23:[function(require,module,exports){
|
|
2815
2856
|
"use strict";
|
|
2816
2857
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2817
2858
|
|
|
@@ -2923,7 +2964,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
2923
2964
|
}(service_1.Service));
|
|
2924
2965
|
exports.PermitService = PermitService;
|
|
2925
2966
|
|
|
2926
|
-
},{"../service":
|
|
2967
|
+
},{"../service":164,"http-status":440}],25:[function(require,module,exports){
|
|
2927
2968
|
"use strict";
|
|
2928
2969
|
var __extends = (this && this.__extends) || (function () {
|
|
2929
2970
|
var extendStatics = function (d, b) {
|
|
@@ -3100,7 +3141,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
3100
3141
|
}(service_1.Service));
|
|
3101
3142
|
exports.PersonService = PersonService;
|
|
3102
3143
|
|
|
3103
|
-
},{"../service":
|
|
3144
|
+
},{"../service":164,"http-status":440}],26:[function(require,module,exports){
|
|
3104
3145
|
"use strict";
|
|
3105
3146
|
var __extends = (this && this.__extends) || (function () {
|
|
3106
3147
|
var extendStatics = function (d, b) {
|
|
@@ -3259,7 +3300,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
3259
3300
|
}(service_1.Service));
|
|
3260
3301
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
3261
3302
|
|
|
3262
|
-
},{"../../service":
|
|
3303
|
+
},{"../../service":164,"http-status":440}],27:[function(require,module,exports){
|
|
3263
3304
|
"use strict";
|
|
3264
3305
|
var __extends = (this && this.__extends) || (function () {
|
|
3265
3306
|
var extendStatics = function (d, b) {
|
|
@@ -3367,7 +3408,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
3367
3408
|
}(service_1.Service));
|
|
3368
3409
|
exports.ReservationService = ReservationService;
|
|
3369
3410
|
|
|
3370
|
-
},{"../service":
|
|
3411
|
+
},{"../service":164,"http-status":440}],28:[function(require,module,exports){
|
|
3371
3412
|
"use strict";
|
|
3372
3413
|
// import { OK } from 'http-status';
|
|
3373
3414
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -3400,7 +3441,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
3400
3441
|
}(service_1.Service));
|
|
3401
3442
|
exports.TokenService = TokenService;
|
|
3402
3443
|
|
|
3403
|
-
},{"../service":
|
|
3444
|
+
},{"../service":164}],29:[function(require,module,exports){
|
|
3404
3445
|
"use strict";
|
|
3405
3446
|
var __assign = (this && this.__assign) || function () {
|
|
3406
3447
|
__assign = Object.assign || function(t) {
|
|
@@ -4984,7 +5025,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
4984
5025
|
}(service_1.Service));
|
|
4985
5026
|
exports.AccountService = AccountService;
|
|
4986
5027
|
|
|
4987
|
-
},{"../service":
|
|
5028
|
+
},{"../service":164,"http-status":440}],31:[function(require,module,exports){
|
|
4988
5029
|
"use strict";
|
|
4989
5030
|
var __extends = (this && this.__extends) || (function () {
|
|
4990
5031
|
var extendStatics = function (d, b) {
|
|
@@ -5321,7 +5362,7 @@ var AccountTitleService = /** @class */ (function (_super) {
|
|
|
5321
5362
|
}(service_1.Service));
|
|
5322
5363
|
exports.AccountTitleService = AccountTitleService;
|
|
5323
5364
|
|
|
5324
|
-
},{"../factory":
|
|
5365
|
+
},{"../factory":159,"../service":164,"http-status":440}],32:[function(require,module,exports){
|
|
5325
5366
|
"use strict";
|
|
5326
5367
|
var __extends = (this && this.__extends) || (function () {
|
|
5327
5368
|
var extendStatics = function (d, b) {
|
|
@@ -5418,7 +5459,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
5418
5459
|
}(service_1.Service));
|
|
5419
5460
|
exports.AccountTransactionService = AccountTransactionService;
|
|
5420
5461
|
|
|
5421
|
-
},{"../service":
|
|
5462
|
+
},{"../service":164,"http-status":440}],33:[function(require,module,exports){
|
|
5422
5463
|
"use strict";
|
|
5423
5464
|
var __extends = (this && this.__extends) || (function () {
|
|
5424
5465
|
var extendStatics = function (d, b) {
|
|
@@ -5515,7 +5556,7 @@ var AccountingReportService = /** @class */ (function (_super) {
|
|
|
5515
5556
|
}(service_1.Service));
|
|
5516
5557
|
exports.AccountingReportService = AccountingReportService;
|
|
5517
5558
|
|
|
5518
|
-
},{"../service":
|
|
5559
|
+
},{"../service":164,"http-status":440}],34:[function(require,module,exports){
|
|
5519
5560
|
"use strict";
|
|
5520
5561
|
var __extends = (this && this.__extends) || (function () {
|
|
5521
5562
|
var extendStatics = function (d, b) {
|
|
@@ -5643,7 +5684,7 @@ var ActionService = /** @class */ (function (_super) {
|
|
|
5643
5684
|
}(service_1.Service));
|
|
5644
5685
|
exports.ActionService = ActionService;
|
|
5645
5686
|
|
|
5646
|
-
},{"../service":
|
|
5687
|
+
},{"../service":164,"http-status":440}],35:[function(require,module,exports){
|
|
5647
5688
|
"use strict";
|
|
5648
5689
|
var __extends = (this && this.__extends) || (function () {
|
|
5649
5690
|
var extendStatics = function (d, b) {
|
|
@@ -5807,7 +5848,7 @@ var AdditionalPropertyService = /** @class */ (function (_super) {
|
|
|
5807
5848
|
}(service_1.Service));
|
|
5808
5849
|
exports.AdditionalPropertyService = AdditionalPropertyService;
|
|
5809
5850
|
|
|
5810
|
-
},{"../service":
|
|
5851
|
+
},{"../service":164,"http-status":440}],36:[function(require,module,exports){
|
|
5811
5852
|
"use strict";
|
|
5812
5853
|
var __extends = (this && this.__extends) || (function () {
|
|
5813
5854
|
var extendStatics = function (d, b) {
|
|
@@ -5958,7 +5999,7 @@ var AdvanceBookingRequirementService = /** @class */ (function (_super) {
|
|
|
5958
5999
|
}(service_1.Service));
|
|
5959
6000
|
exports.AdvanceBookingRequirementService = AdvanceBookingRequirementService;
|
|
5960
6001
|
|
|
5961
|
-
},{"../service":
|
|
6002
|
+
},{"../service":164,"http-status":440}],37:[function(require,module,exports){
|
|
5962
6003
|
"use strict";
|
|
5963
6004
|
var __extends = (this && this.__extends) || (function () {
|
|
5964
6005
|
var extendStatics = function (d, b) {
|
|
@@ -6074,7 +6115,7 @@ var AggregateOfferService = /** @class */ (function (_super) {
|
|
|
6074
6115
|
}(service_1.Service));
|
|
6075
6116
|
exports.AggregateOfferService = AggregateOfferService;
|
|
6076
6117
|
|
|
6077
|
-
},{"../service":
|
|
6118
|
+
},{"../service":164,"http-status":440}],38:[function(require,module,exports){
|
|
6078
6119
|
"use strict";
|
|
6079
6120
|
var __extends = (this && this.__extends) || (function () {
|
|
6080
6121
|
var extendStatics = function (d, b) {
|
|
@@ -6159,7 +6200,7 @@ var AggregateReservationService = /** @class */ (function (_super) {
|
|
|
6159
6200
|
}(service_1.Service));
|
|
6160
6201
|
exports.AggregateReservationService = AggregateReservationService;
|
|
6161
6202
|
|
|
6162
|
-
},{"../service":
|
|
6203
|
+
},{"../service":164,"http-status":440}],39:[function(require,module,exports){
|
|
6163
6204
|
"use strict";
|
|
6164
6205
|
var __extends = (this && this.__extends) || (function () {
|
|
6165
6206
|
var extendStatics = function (d, b) {
|
|
@@ -6255,7 +6296,7 @@ var AggregationService = /** @class */ (function (_super) {
|
|
|
6255
6296
|
}(service_1.Service));
|
|
6256
6297
|
exports.AggregationService = AggregationService;
|
|
6257
6298
|
|
|
6258
|
-
},{"../service":
|
|
6299
|
+
},{"../service":164,"http-status":440}],40:[function(require,module,exports){
|
|
6259
6300
|
"use strict";
|
|
6260
6301
|
var __extends = (this && this.__extends) || (function () {
|
|
6261
6302
|
var extendStatics = function (d, b) {
|
|
@@ -6352,7 +6393,7 @@ var AssetTransactionService = /** @class */ (function (_super) {
|
|
|
6352
6393
|
}(service_1.Service));
|
|
6353
6394
|
exports.AssetTransactionService = AssetTransactionService;
|
|
6354
6395
|
|
|
6355
|
-
},{"../service":
|
|
6396
|
+
},{"../service":164,"http-status":440}],41:[function(require,module,exports){
|
|
6356
6397
|
"use strict";
|
|
6357
6398
|
var __extends = (this && this.__extends) || (function () {
|
|
6358
6399
|
var extendStatics = function (d, b) {
|
|
@@ -6488,7 +6529,7 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6488
6529
|
}(service_1.Service));
|
|
6489
6530
|
exports.MoneyTransferAssetTransactionService = MoneyTransferAssetTransactionService;
|
|
6490
6531
|
|
|
6491
|
-
},{"../../factory":
|
|
6532
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],42:[function(require,module,exports){
|
|
6492
6533
|
"use strict";
|
|
6493
6534
|
var __extends = (this && this.__extends) || (function () {
|
|
6494
6535
|
var extendStatics = function (d, b) {
|
|
@@ -6694,7 +6735,7 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6694
6735
|
}(service_1.Service));
|
|
6695
6736
|
exports.PayAssetTransactionService = PayAssetTransactionService;
|
|
6696
6737
|
|
|
6697
|
-
},{"../../factory":
|
|
6738
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],43:[function(require,module,exports){
|
|
6698
6739
|
"use strict";
|
|
6699
6740
|
var __extends = (this && this.__extends) || (function () {
|
|
6700
6741
|
var extendStatics = function (d, b) {
|
|
@@ -6841,7 +6882,7 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6841
6882
|
}(service_1.Service));
|
|
6842
6883
|
exports.RegisterServiceAssetTransactionService = RegisterServiceAssetTransactionService;
|
|
6843
6884
|
|
|
6844
|
-
},{"../../factory":
|
|
6885
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],44:[function(require,module,exports){
|
|
6845
6886
|
"use strict";
|
|
6846
6887
|
var __extends = (this && this.__extends) || (function () {
|
|
6847
6888
|
var extendStatics = function (d, b) {
|
|
@@ -7005,7 +7046,7 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
7005
7046
|
}(service_1.Service));
|
|
7006
7047
|
exports.ReserveAssetTransactionService = ReserveAssetTransactionService;
|
|
7007
7048
|
|
|
7008
|
-
},{"../../service":
|
|
7049
|
+
},{"../../service":164,"http-status":440}],45:[function(require,module,exports){
|
|
7009
7050
|
"use strict";
|
|
7010
7051
|
var __extends = (this && this.__extends) || (function () {
|
|
7011
7052
|
var extendStatics = function (d, b) {
|
|
@@ -7093,7 +7134,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
7093
7134
|
}(service_1.Service));
|
|
7094
7135
|
exports.AuthorizationService = AuthorizationService;
|
|
7095
7136
|
|
|
7096
|
-
},{"../service":
|
|
7137
|
+
},{"../service":164,"http-status":440}],46:[function(require,module,exports){
|
|
7097
7138
|
"use strict";
|
|
7098
7139
|
var __extends = (this && this.__extends) || (function () {
|
|
7099
7140
|
var extendStatics = function (d, b) {
|
|
@@ -7257,7 +7298,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
7257
7298
|
}(service_1.Service));
|
|
7258
7299
|
exports.CategoryCodeService = CategoryCodeService;
|
|
7259
7300
|
|
|
7260
|
-
},{"../service":
|
|
7301
|
+
},{"../service":164,"http-status":440}],47:[function(require,module,exports){
|
|
7261
7302
|
"use strict";
|
|
7262
7303
|
var __extends = (this && this.__extends) || (function () {
|
|
7263
7304
|
var extendStatics = function (d, b) {
|
|
@@ -7373,7 +7414,7 @@ var CommentService = /** @class */ (function (_super) {
|
|
|
7373
7414
|
}(service_1.Service));
|
|
7374
7415
|
exports.CommentService = CommentService;
|
|
7375
7416
|
|
|
7376
|
-
},{"../service":
|
|
7417
|
+
},{"../service":164,"http-status":440}],48:[function(require,module,exports){
|
|
7377
7418
|
"use strict";
|
|
7378
7419
|
var __extends = (this && this.__extends) || (function () {
|
|
7379
7420
|
var extendStatics = function (d, b) {
|
|
@@ -7531,7 +7572,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
7531
7572
|
}(service_1.Service));
|
|
7532
7573
|
exports.CreativeWorkService = CreativeWorkService;
|
|
7533
7574
|
|
|
7534
|
-
},{"../service":
|
|
7575
|
+
},{"../service":164,"http-status":440}],49:[function(require,module,exports){
|
|
7535
7576
|
"use strict";
|
|
7536
7577
|
var __extends = (this && this.__extends) || (function () {
|
|
7537
7578
|
var extendStatics = function (d, b) {
|
|
@@ -7658,7 +7699,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
7658
7699
|
}(service_1.Service));
|
|
7659
7700
|
exports.CustomerService = CustomerService;
|
|
7660
7701
|
|
|
7661
|
-
},{"../service":
|
|
7702
|
+
},{"../service":164,"http-status":440}],50:[function(require,module,exports){
|
|
7662
7703
|
"use strict";
|
|
7663
7704
|
var __extends = (this && this.__extends) || (function () {
|
|
7664
7705
|
var extendStatics = function (d, b) {
|
|
@@ -7746,7 +7787,7 @@ var CustomerTypeService = /** @class */ (function (_super) {
|
|
|
7746
7787
|
}(service_1.Service));
|
|
7747
7788
|
exports.CustomerTypeService = CustomerTypeService;
|
|
7748
7789
|
|
|
7749
|
-
},{"../service":
|
|
7790
|
+
},{"../service":164,"http-status":440}],51:[function(require,module,exports){
|
|
7750
7791
|
"use strict";
|
|
7751
7792
|
var __extends = (this && this.__extends) || (function () {
|
|
7752
7793
|
var extendStatics = function (d, b) {
|
|
@@ -7920,7 +7961,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
7920
7961
|
}(service_1.Service));
|
|
7921
7962
|
exports.EmailMessageService = EmailMessageService;
|
|
7922
7963
|
|
|
7923
|
-
},{"../service":
|
|
7964
|
+
},{"../service":164,"http-status":440}],52:[function(require,module,exports){
|
|
7924
7965
|
"use strict";
|
|
7925
7966
|
var __extends = (this && this.__extends) || (function () {
|
|
7926
7967
|
var extendStatics = function (d, b) {
|
|
@@ -8071,7 +8112,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
8071
8112
|
}(service_1.Service));
|
|
8072
8113
|
exports.EventService = EventService;
|
|
8073
8114
|
|
|
8074
|
-
},{"../service":
|
|
8115
|
+
},{"../service":164,"http-status":440}],53:[function(require,module,exports){
|
|
8075
8116
|
"use strict";
|
|
8076
8117
|
var __extends = (this && this.__extends) || (function () {
|
|
8077
8118
|
var extendStatics = function (d, b) {
|
|
@@ -8242,7 +8283,7 @@ var EventOfferService = /** @class */ (function (_super) {
|
|
|
8242
8283
|
}(service_1.Service));
|
|
8243
8284
|
exports.EventOfferService = EventOfferService;
|
|
8244
8285
|
|
|
8245
|
-
},{"../service":
|
|
8286
|
+
},{"../service":164,"http-status":440}],54:[function(require,module,exports){
|
|
8246
8287
|
"use strict";
|
|
8247
8288
|
var __extends = (this && this.__extends) || (function () {
|
|
8248
8289
|
var extendStatics = function (d, b) {
|
|
@@ -8424,7 +8465,7 @@ var EventSeriesService = /** @class */ (function (_super) {
|
|
|
8424
8465
|
}(service_1.Service));
|
|
8425
8466
|
exports.EventSeriesService = EventSeriesService;
|
|
8426
8467
|
|
|
8427
|
-
},{"../factory":
|
|
8468
|
+
},{"../factory":159,"../service":164,"http-status":440}],55:[function(require,module,exports){
|
|
8428
8469
|
"use strict";
|
|
8429
8470
|
var __extends = (this && this.__extends) || (function () {
|
|
8430
8471
|
var extendStatics = function (d, b) {
|
|
@@ -8508,7 +8549,7 @@ var HasMerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
8508
8549
|
}(service_1.Service));
|
|
8509
8550
|
exports.HasMerchantReturnPolicyService = HasMerchantReturnPolicyService;
|
|
8510
8551
|
|
|
8511
|
-
},{"../service":
|
|
8552
|
+
},{"../service":164,"http-status":440}],56:[function(require,module,exports){
|
|
8512
8553
|
"use strict";
|
|
8513
8554
|
var __extends = (this && this.__extends) || (function () {
|
|
8514
8555
|
var extendStatics = function (d, b) {
|
|
@@ -8866,7 +8907,7 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
8866
8907
|
}(service_1.Service));
|
|
8867
8908
|
exports.IAMService = IAMService;
|
|
8868
8909
|
|
|
8869
|
-
},{"../service":
|
|
8910
|
+
},{"../service":164,"http-status":440}],57:[function(require,module,exports){
|
|
8870
8911
|
"use strict";
|
|
8871
8912
|
var __extends = (this && this.__extends) || (function () {
|
|
8872
8913
|
var extendStatics = function (d, b) {
|
|
@@ -9017,7 +9058,7 @@ var IdentityService = /** @class */ (function (_super) {
|
|
|
9017
9058
|
}(service_1.Service));
|
|
9018
9059
|
exports.IdentityService = IdentityService;
|
|
9019
9060
|
|
|
9020
|
-
},{"../service":
|
|
9061
|
+
},{"../service":164,"http-status":440}],58:[function(require,module,exports){
|
|
9021
9062
|
"use strict";
|
|
9022
9063
|
var __extends = (this && this.__extends) || (function () {
|
|
9023
9064
|
var extendStatics = function (d, b) {
|
|
@@ -9168,7 +9209,7 @@ var IdentityProviderService = /** @class */ (function (_super) {
|
|
|
9168
9209
|
}(service_1.Service));
|
|
9169
9210
|
exports.IdentityProviderService = IdentityProviderService;
|
|
9170
9211
|
|
|
9171
|
-
},{"../service":
|
|
9212
|
+
},{"../service":164,"http-status":440}],59:[function(require,module,exports){
|
|
9172
9213
|
"use strict";
|
|
9173
9214
|
var __extends = (this && this.__extends) || (function () {
|
|
9174
9215
|
var extendStatics = function (d, b) {
|
|
@@ -9338,7 +9379,7 @@ var IssuerService = /** @class */ (function (_super) {
|
|
|
9338
9379
|
}(service_1.Service));
|
|
9339
9380
|
exports.IssuerService = IssuerService;
|
|
9340
9381
|
|
|
9341
|
-
},{"../service":
|
|
9382
|
+
},{"../service":164,"http-status":440}],60:[function(require,module,exports){
|
|
9342
9383
|
"use strict";
|
|
9343
9384
|
var __extends = (this && this.__extends) || (function () {
|
|
9344
9385
|
var extendStatics = function (d, b) {
|
|
@@ -9464,7 +9505,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
9464
9505
|
}(service_1.Service));
|
|
9465
9506
|
exports.MeService = MeService;
|
|
9466
9507
|
|
|
9467
|
-
},{"../service":
|
|
9508
|
+
},{"../service":164,"http-status":440}],61:[function(require,module,exports){
|
|
9468
9509
|
"use strict";
|
|
9469
9510
|
var __extends = (this && this.__extends) || (function () {
|
|
9470
9511
|
var extendStatics = function (d, b) {
|
|
@@ -9666,7 +9707,7 @@ var MemberService = /** @class */ (function (_super) {
|
|
|
9666
9707
|
}(service_1.Service));
|
|
9667
9708
|
exports.MemberService = MemberService;
|
|
9668
9709
|
|
|
9669
|
-
},{"../factory":
|
|
9710
|
+
},{"../factory":159,"../service":164,"http-status":440}],62:[function(require,module,exports){
|
|
9670
9711
|
"use strict";
|
|
9671
9712
|
var __extends = (this && this.__extends) || (function () {
|
|
9672
9713
|
var extendStatics = function (d, b) {
|
|
@@ -9835,7 +9876,7 @@ var MemberProgramService = /** @class */ (function (_super) {
|
|
|
9835
9876
|
}(service_1.Service));
|
|
9836
9877
|
exports.MemberProgramService = MemberProgramService;
|
|
9837
9878
|
|
|
9838
|
-
},{"../service":
|
|
9879
|
+
},{"../service":164,"http-status":440}],63:[function(require,module,exports){
|
|
9839
9880
|
"use strict";
|
|
9840
9881
|
var __extends = (this && this.__extends) || (function () {
|
|
9841
9882
|
var extendStatics = function (d, b) {
|
|
@@ -9993,7 +10034,7 @@ var MerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
9993
10034
|
}(service_1.Service));
|
|
9994
10035
|
exports.MerchantReturnPolicyService = MerchantReturnPolicyService;
|
|
9995
10036
|
|
|
9996
|
-
},{"../service":
|
|
10037
|
+
},{"../service":164,"http-status":440}],64:[function(require,module,exports){
|
|
9997
10038
|
"use strict";
|
|
9998
10039
|
var __extends = (this && this.__extends) || (function () {
|
|
9999
10040
|
var extendStatics = function (d, b) {
|
|
@@ -10078,7 +10119,7 @@ var MessageService = /** @class */ (function (_super) {
|
|
|
10078
10119
|
}(service_1.Service));
|
|
10079
10120
|
exports.MessageService = MessageService;
|
|
10080
10121
|
|
|
10081
|
-
},{"../service":
|
|
10122
|
+
},{"../service":164,"http-status":440}],65:[function(require,module,exports){
|
|
10082
10123
|
"use strict";
|
|
10083
10124
|
var __extends = (this && this.__extends) || (function () {
|
|
10084
10125
|
var extendStatics = function (d, b) {
|
|
@@ -10205,7 +10246,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
10205
10246
|
}(service_1.Service));
|
|
10206
10247
|
exports.OfferService = OfferService;
|
|
10207
10248
|
|
|
10208
|
-
},{"../service":
|
|
10249
|
+
},{"../service":164,"http-status":440}],66:[function(require,module,exports){
|
|
10209
10250
|
"use strict";
|
|
10210
10251
|
var __extends = (this && this.__extends) || (function () {
|
|
10211
10252
|
var extendStatics = function (d, b) {
|
|
@@ -10434,7 +10475,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
10434
10475
|
}(service_1.Service));
|
|
10435
10476
|
exports.OfferCatalogService = OfferCatalogService;
|
|
10436
10477
|
|
|
10437
|
-
},{"../service":
|
|
10478
|
+
},{"../service":164,"http-status":440}],67:[function(require,module,exports){
|
|
10438
10479
|
"use strict";
|
|
10439
10480
|
var __extends = (this && this.__extends) || (function () {
|
|
10440
10481
|
var extendStatics = function (d, b) {
|
|
@@ -10617,7 +10658,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
10617
10658
|
}(service_1.Service));
|
|
10618
10659
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
10619
10660
|
|
|
10620
|
-
},{"../service":
|
|
10661
|
+
},{"../service":164,"http-status":440}],68:[function(require,module,exports){
|
|
10621
10662
|
"use strict";
|
|
10622
10663
|
var __extends = (this && this.__extends) || (function () {
|
|
10623
10664
|
var extendStatics = function (d, b) {
|
|
@@ -10770,7 +10811,7 @@ var OfferItemConditionService = /** @class */ (function (_super) {
|
|
|
10770
10811
|
}(service_1.Service));
|
|
10771
10812
|
exports.OfferItemConditionService = OfferItemConditionService;
|
|
10772
10813
|
|
|
10773
|
-
},{"../service":
|
|
10814
|
+
},{"../service":164,"http-status":440}],69:[function(require,module,exports){
|
|
10774
10815
|
"use strict";
|
|
10775
10816
|
var __extends = (this && this.__extends) || (function () {
|
|
10776
10817
|
var extendStatics = function (d, b) {
|
|
@@ -10964,7 +11005,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
10964
11005
|
}(service_1.Service));
|
|
10965
11006
|
exports.OrderService = OrderService;
|
|
10966
11007
|
|
|
10967
|
-
},{"../factory":
|
|
11008
|
+
},{"../factory":159,"../service":164,"http-status":440}],70:[function(require,module,exports){
|
|
10968
11009
|
"use strict";
|
|
10969
11010
|
var __extends = (this && this.__extends) || (function () {
|
|
10970
11011
|
var extendStatics = function (d, b) {
|
|
@@ -11061,7 +11102,7 @@ var OwnershipInfoService = /** @class */ (function (_super) {
|
|
|
11061
11102
|
}(service_1.Service));
|
|
11062
11103
|
exports.OwnershipInfoService = OwnershipInfoService;
|
|
11063
11104
|
|
|
11064
|
-
},{"../service":
|
|
11105
|
+
},{"../service":164,"http-status":440}],71:[function(require,module,exports){
|
|
11065
11106
|
"use strict";
|
|
11066
11107
|
var __extends = (this && this.__extends) || (function () {
|
|
11067
11108
|
var extendStatics = function (d, b) {
|
|
@@ -11262,7 +11303,7 @@ var PaymentProductService = /** @class */ (function (_super) {
|
|
|
11262
11303
|
}(service_1.Service));
|
|
11263
11304
|
exports.PaymentProductService = PaymentProductService;
|
|
11264
11305
|
|
|
11265
|
-
},{"../service":
|
|
11306
|
+
},{"../service":164,"http-status":440}],72:[function(require,module,exports){
|
|
11266
11307
|
"use strict";
|
|
11267
11308
|
var __extends = (this && this.__extends) || (function () {
|
|
11268
11309
|
var extendStatics = function (d, b) {
|
|
@@ -11413,7 +11454,7 @@ var PaymentServiceChannelService = /** @class */ (function (_super) {
|
|
|
11413
11454
|
}(service_1.Service));
|
|
11414
11455
|
exports.PaymentServiceChannelService = PaymentServiceChannelService;
|
|
11415
11456
|
|
|
11416
|
-
},{"../service":
|
|
11457
|
+
},{"../service":164,"http-status":440}],73:[function(require,module,exports){
|
|
11417
11458
|
"use strict";
|
|
11418
11459
|
var __extends = (this && this.__extends) || (function () {
|
|
11419
11460
|
var extendStatics = function (d, b) {
|
|
@@ -11519,7 +11560,7 @@ var PendingReservationService = /** @class */ (function (_super) {
|
|
|
11519
11560
|
}(service_1.Service));
|
|
11520
11561
|
exports.PendingReservationService = PendingReservationService;
|
|
11521
11562
|
|
|
11522
|
-
},{"../service":
|
|
11563
|
+
},{"../service":164,"http-status":440}],74:[function(require,module,exports){
|
|
11523
11564
|
"use strict";
|
|
11524
11565
|
var __extends = (this && this.__extends) || (function () {
|
|
11525
11566
|
var extendStatics = function (d, b) {
|
|
@@ -11630,7 +11671,7 @@ var PermissionService = /** @class */ (function (_super) {
|
|
|
11630
11671
|
}(service_1.Service));
|
|
11631
11672
|
exports.PermissionService = PermissionService;
|
|
11632
11673
|
|
|
11633
|
-
},{"../service":
|
|
11674
|
+
},{"../service":164,"http-status":440}],75:[function(require,module,exports){
|
|
11634
11675
|
"use strict";
|
|
11635
11676
|
var __extends = (this && this.__extends) || (function () {
|
|
11636
11677
|
var extendStatics = function (d, b) {
|
|
@@ -11766,7 +11807,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
11766
11807
|
}(service_1.Service));
|
|
11767
11808
|
exports.PermitService = PermitService;
|
|
11768
11809
|
|
|
11769
|
-
},{"../service":
|
|
11810
|
+
},{"../service":164,"http-status":440}],76:[function(require,module,exports){
|
|
11770
11811
|
"use strict";
|
|
11771
11812
|
var __extends = (this && this.__extends) || (function () {
|
|
11772
11813
|
var extendStatics = function (d, b) {
|
|
@@ -12002,7 +12043,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
12002
12043
|
}(service_1.Service));
|
|
12003
12044
|
exports.PersonService = PersonService;
|
|
12004
12045
|
|
|
12005
|
-
},{"../service":
|
|
12046
|
+
},{"../service":164,"http-status":440}],77:[function(require,module,exports){
|
|
12006
12047
|
"use strict";
|
|
12007
12048
|
var __extends = (this && this.__extends) || (function () {
|
|
12008
12049
|
var extendStatics = function (d, b) {
|
|
@@ -12231,7 +12272,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
12231
12272
|
}(service_1.Service));
|
|
12232
12273
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
12233
12274
|
|
|
12234
|
-
},{"../../service":
|
|
12275
|
+
},{"../../service":164,"http-status":440}],78:[function(require,module,exports){
|
|
12235
12276
|
"use strict";
|
|
12236
12277
|
var __extends = (this && this.__extends) || (function () {
|
|
12237
12278
|
var extendStatics = function (d, b) {
|
|
@@ -12734,7 +12775,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
12734
12775
|
}(service_1.Service));
|
|
12735
12776
|
exports.PlaceService = PlaceService;
|
|
12736
12777
|
|
|
12737
|
-
},{"../factory":
|
|
12778
|
+
},{"../factory":159,"../service":164,"http-status":440}],79:[function(require,module,exports){
|
|
12738
12779
|
"use strict";
|
|
12739
12780
|
var __extends = (this && this.__extends) || (function () {
|
|
12740
12781
|
var extendStatics = function (d, b) {
|
|
@@ -12870,7 +12911,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
12870
12911
|
}(service_1.Service));
|
|
12871
12912
|
exports.HasPOSService = HasPOSService;
|
|
12872
12913
|
|
|
12873
|
-
},{"../../factory":
|
|
12914
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],80:[function(require,module,exports){
|
|
12874
12915
|
"use strict";
|
|
12875
12916
|
var __extends = (this && this.__extends) || (function () {
|
|
12876
12917
|
var extendStatics = function (d, b) {
|
|
@@ -13021,7 +13062,7 @@ var PriceSpecificationService = /** @class */ (function (_super) {
|
|
|
13021
13062
|
}(service_1.Service));
|
|
13022
13063
|
exports.PriceSpecificationService = PriceSpecificationService;
|
|
13023
13064
|
|
|
13024
|
-
},{"../service":
|
|
13065
|
+
},{"../service":164,"http-status":440}],81:[function(require,module,exports){
|
|
13025
13066
|
"use strict";
|
|
13026
13067
|
var __extends = (this && this.__extends) || (function () {
|
|
13027
13068
|
var extendStatics = function (d, b) {
|
|
@@ -13219,7 +13260,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
13219
13260
|
}(service_1.Service));
|
|
13220
13261
|
exports.ProductService = ProductService;
|
|
13221
13262
|
|
|
13222
|
-
},{"../service":
|
|
13263
|
+
},{"../service":164,"http-status":440}],82:[function(require,module,exports){
|
|
13223
13264
|
"use strict";
|
|
13224
13265
|
var __extends = (this && this.__extends) || (function () {
|
|
13225
13266
|
var extendStatics = function (d, b) {
|
|
@@ -13353,7 +13394,7 @@ var ProductModelService = /** @class */ (function (_super) {
|
|
|
13353
13394
|
}(service_1.Service));
|
|
13354
13395
|
exports.ProductModelService = ProductModelService;
|
|
13355
13396
|
|
|
13356
|
-
},{"../service":
|
|
13397
|
+
},{"../service":164,"http-status":440}],83:[function(require,module,exports){
|
|
13357
13398
|
"use strict";
|
|
13358
13399
|
var __extends = (this && this.__extends) || (function () {
|
|
13359
13400
|
var extendStatics = function (d, b) {
|
|
@@ -13524,7 +13565,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
13524
13565
|
}(service_1.Service));
|
|
13525
13566
|
exports.ProjectService = ProjectService;
|
|
13526
13567
|
|
|
13527
|
-
},{"../service":
|
|
13568
|
+
},{"../service":164,"http-status":440}],84:[function(require,module,exports){
|
|
13528
13569
|
"use strict";
|
|
13529
13570
|
var __extends = (this && this.__extends) || (function () {
|
|
13530
13571
|
var extendStatics = function (d, b) {
|
|
@@ -13659,7 +13700,7 @@ var ProjectMakesOfferService = /** @class */ (function (_super) {
|
|
|
13659
13700
|
}(service_1.Service));
|
|
13660
13701
|
exports.ProjectMakesOfferService = ProjectMakesOfferService;
|
|
13661
13702
|
|
|
13662
|
-
},{"../service":
|
|
13703
|
+
},{"../service":164,"http-status":440}],85:[function(require,module,exports){
|
|
13663
13704
|
"use strict";
|
|
13664
13705
|
var __extends = (this && this.__extends) || (function () {
|
|
13665
13706
|
var extendStatics = function (d, b) {
|
|
@@ -13748,7 +13789,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
13748
13789
|
}(service_1.Service));
|
|
13749
13790
|
exports.ReservationService = ReservationService;
|
|
13750
13791
|
|
|
13751
|
-
},{"../service":
|
|
13792
|
+
},{"../service":164,"http-status":440}],86:[function(require,module,exports){
|
|
13752
13793
|
"use strict";
|
|
13753
13794
|
var __extends = (this && this.__extends) || (function () {
|
|
13754
13795
|
var extendStatics = function (d, b) {
|
|
@@ -14240,7 +14281,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
14240
14281
|
}(service_1.Service));
|
|
14241
14282
|
exports.SellerService = SellerService;
|
|
14242
14283
|
|
|
14243
|
-
},{"../service":
|
|
14284
|
+
},{"../service":164,"http-status":440}],87:[function(require,module,exports){
|
|
14244
14285
|
"use strict";
|
|
14245
14286
|
var __extends = (this && this.__extends) || (function () {
|
|
14246
14287
|
var extendStatics = function (d, b) {
|
|
@@ -14408,7 +14449,7 @@ var SellerReturnPolicyService = /** @class */ (function (_super) {
|
|
|
14408
14449
|
}(service_1.Service));
|
|
14409
14450
|
exports.SellerReturnPolicyService = SellerReturnPolicyService;
|
|
14410
14451
|
|
|
14411
|
-
},{"../service":
|
|
14452
|
+
},{"../service":164,"http-status":440}],88:[function(require,module,exports){
|
|
14412
14453
|
"use strict";
|
|
14413
14454
|
var __extends = (this && this.__extends) || (function () {
|
|
14414
14455
|
var extendStatics = function (d, b) {
|
|
@@ -14532,7 +14573,7 @@ var TaskService = /** @class */ (function (_super) {
|
|
|
14532
14573
|
}(service_1.Service));
|
|
14533
14574
|
exports.TaskService = TaskService;
|
|
14534
14575
|
|
|
14535
|
-
},{"../service":
|
|
14576
|
+
},{"../service":164,"http-status":440}],89:[function(require,module,exports){
|
|
14536
14577
|
"use strict";
|
|
14537
14578
|
var __extends = (this && this.__extends) || (function () {
|
|
14538
14579
|
var extendStatics = function (d, b) {
|
|
@@ -14617,9 +14658,9 @@ var TicketService = /** @class */ (function (_super) {
|
|
|
14617
14658
|
}(service_1.Service));
|
|
14618
14659
|
exports.TicketService = TicketService;
|
|
14619
14660
|
|
|
14620
|
-
},{"../service":
|
|
14661
|
+
},{"../service":164,"http-status":440}],90:[function(require,module,exports){
|
|
14621
14662
|
arguments[4][28][0].apply(exports,arguments)
|
|
14622
|
-
},{"../service":
|
|
14663
|
+
},{"../service":164,"dup":28}],91:[function(require,module,exports){
|
|
14623
14664
|
"use strict";
|
|
14624
14665
|
var __extends = (this && this.__extends) || (function () {
|
|
14625
14666
|
var extendStatics = function (d, b) {
|
|
@@ -14707,7 +14748,7 @@ var TransactionNumberService = /** @class */ (function (_super) {
|
|
|
14707
14748
|
}(service_1.Service));
|
|
14708
14749
|
exports.TransactionNumberService = TransactionNumberService;
|
|
14709
14750
|
|
|
14710
|
-
},{"../service":
|
|
14751
|
+
},{"../service":164,"http-status":440}],92:[function(require,module,exports){
|
|
14711
14752
|
"use strict";
|
|
14712
14753
|
var __extends = (this && this.__extends) || (function () {
|
|
14713
14754
|
var extendStatics = function (d, b) {
|
|
@@ -14839,7 +14880,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
14839
14880
|
}(service_1.Service));
|
|
14840
14881
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
14841
14882
|
|
|
14842
|
-
},{"../../factory":
|
|
14883
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],93:[function(require,module,exports){
|
|
14843
14884
|
"use strict";
|
|
14844
14885
|
var __extends = (this && this.__extends) || (function () {
|
|
14845
14886
|
var extendStatics = function (d, b) {
|
|
@@ -14971,7 +15012,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
14971
15012
|
}(service_1.Service));
|
|
14972
15013
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
14973
15014
|
|
|
14974
|
-
},{"../../factory":
|
|
15015
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],94:[function(require,module,exports){
|
|
14975
15016
|
"use strict";
|
|
14976
15017
|
var __extends = (this && this.__extends) || (function () {
|
|
14977
15018
|
var extendStatics = function (d, b) {
|
|
@@ -15071,7 +15112,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
15071
15112
|
}(service_1.Service));
|
|
15072
15113
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
15073
15114
|
|
|
15074
|
-
},{"../../factory":
|
|
15115
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],95:[function(require,module,exports){
|
|
15075
15116
|
"use strict";
|
|
15076
15117
|
var __extends = (this && this.__extends) || (function () {
|
|
15077
15118
|
var extendStatics = function (d, b) {
|
|
@@ -15244,7 +15285,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
15244
15285
|
}(service_1.Service));
|
|
15245
15286
|
exports.TripService = TripService;
|
|
15246
15287
|
|
|
15247
|
-
},{"../service":
|
|
15288
|
+
},{"../service":164,"http-status":440}],96:[function(require,module,exports){
|
|
15248
15289
|
"use strict";
|
|
15249
15290
|
var __extends = (this && this.__extends) || (function () {
|
|
15250
15291
|
var extendStatics = function (d, b) {
|
|
@@ -15377,7 +15418,7 @@ var UserPoolService = /** @class */ (function (_super) {
|
|
|
15377
15418
|
}(service_1.Service));
|
|
15378
15419
|
exports.UserPoolService = UserPoolService;
|
|
15379
15420
|
|
|
15380
|
-
},{"../service":
|
|
15421
|
+
},{"../service":164,"http-status":440}],97:[function(require,module,exports){
|
|
15381
15422
|
"use strict";
|
|
15382
15423
|
var __extends = (this && this.__extends) || (function () {
|
|
15383
15424
|
var extendStatics = function (d, b) {
|
|
@@ -15517,7 +15558,7 @@ var WebSiteService = /** @class */ (function (_super) {
|
|
|
15517
15558
|
}(service_1.Service));
|
|
15518
15559
|
exports.WebSiteService = WebSiteService;
|
|
15519
15560
|
|
|
15520
|
-
},{"../service":
|
|
15561
|
+
},{"../service":164,"http-status":440}],98:[function(require,module,exports){
|
|
15521
15562
|
"use strict";
|
|
15522
15563
|
var __assign = (this && this.__assign) || function () {
|
|
15523
15564
|
__assign = Object.assign || function(t) {
|
|
@@ -15671,17 +15712,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
15671
15712
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
15672
15713
|
}
|
|
15673
15714
|
};
|
|
15674
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
15675
|
-
var t = {};
|
|
15676
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15677
|
-
t[p] = s[p];
|
|
15678
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
15679
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
15680
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
15681
|
-
t[p[i]] = s[p[i]];
|
|
15682
|
-
}
|
|
15683
|
-
return t;
|
|
15684
|
-
};
|
|
15685
15715
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15686
15716
|
exports.PaymentService = void 0;
|
|
15687
15717
|
var http_status_1 = require("http-status");
|
|
@@ -15700,15 +15730,17 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15700
15730
|
*/
|
|
15701
15731
|
PaymentService.prototype.checkMovieTicket = function (params) {
|
|
15702
15732
|
return __awaiter(this, void 0, void 0, function () {
|
|
15733
|
+
var object, purpose;
|
|
15703
15734
|
var _this = this;
|
|
15704
15735
|
return __generator(this, function (_a) {
|
|
15736
|
+
object = params.object, purpose = params.purpose;
|
|
15705
15737
|
return [2 /*return*/, this.fetch({
|
|
15706
15738
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.MovieTicket + "/check",
|
|
15707
15739
|
method: 'POST',
|
|
15708
15740
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
15709
|
-
body:
|
|
15741
|
+
body: { object: object, purpose: purpose },
|
|
15710
15742
|
qs: {
|
|
15711
|
-
purpose: { id:
|
|
15743
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15712
15744
|
}
|
|
15713
15745
|
})
|
|
15714
15746
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15722,16 +15754,18 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15722
15754
|
*/
|
|
15723
15755
|
PaymentService.prototype.checkMovieTicketAsync = function (params) {
|
|
15724
15756
|
return __awaiter(this, void 0, void 0, function () {
|
|
15757
|
+
var object, purpose;
|
|
15725
15758
|
var _this = this;
|
|
15726
15759
|
return __generator(this, function (_a) {
|
|
15760
|
+
object = params.object, purpose = params.purpose;
|
|
15727
15761
|
return [2 /*return*/, this.fetch({
|
|
15728
15762
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.MovieTicket + "/check",
|
|
15729
15763
|
method: 'POST',
|
|
15730
15764
|
expectedStatusCodes: [http_status_1.ACCEPTED],
|
|
15731
|
-
body:
|
|
15765
|
+
body: { object: object, purpose: purpose },
|
|
15732
15766
|
qs: {
|
|
15733
15767
|
async: true,
|
|
15734
|
-
purpose: { id:
|
|
15768
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15735
15769
|
}
|
|
15736
15770
|
})
|
|
15737
15771
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15745,15 +15779,21 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15745
15779
|
*/
|
|
15746
15780
|
PaymentService.prototype.authorizeAnyPayment = function (params) {
|
|
15747
15781
|
return __awaiter(this, void 0, void 0, function () {
|
|
15782
|
+
var object, purpose, amount, issuedThrough, paymentMethod, name, additionalProperty, ticketToken;
|
|
15748
15783
|
var _this = this;
|
|
15749
15784
|
return __generator(this, function (_a) {
|
|
15785
|
+
object = params.object, purpose = params.purpose;
|
|
15786
|
+
amount = object.amount, issuedThrough = object.issuedThrough, paymentMethod = object.paymentMethod, name = object.name, additionalProperty = object.additionalProperty, ticketToken = object.ticketToken;
|
|
15750
15787
|
return [2 /*return*/, this.fetch({
|
|
15751
15788
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.FaceToFace + "/authorize",
|
|
15752
15789
|
method: 'POST',
|
|
15753
15790
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
15754
|
-
body:
|
|
15791
|
+
body: {
|
|
15792
|
+
object: __assign(__assign(__assign({ amount: amount, issuedThrough: issuedThrough, paymentMethod: paymentMethod }, (typeof name === 'string') ? { name: name } : undefined), (typeof ticketToken === 'string') ? { ticketToken: ticketToken } : undefined), (Array.isArray(additionalProperty)) ? { additionalProperty: additionalProperty } : undefined),
|
|
15793
|
+
purpose: purpose
|
|
15794
|
+
},
|
|
15755
15795
|
qs: {
|
|
15756
|
-
purpose: { id:
|
|
15796
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15757
15797
|
}
|
|
15758
15798
|
})
|
|
15759
15799
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15767,14 +15807,20 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15767
15807
|
*/
|
|
15768
15808
|
PaymentService.prototype.authorizeCreditCard = function (params, options) {
|
|
15769
15809
|
return __awaiter(this, void 0, void 0, function () {
|
|
15810
|
+
var object, purpose, amount, issuedThrough, paymentMethod, creditCard, method, paymentMethodId, name, additionalProperty, ticketToken;
|
|
15770
15811
|
var _this = this;
|
|
15771
15812
|
return __generator(this, function (_a) {
|
|
15813
|
+
object = params.object, purpose = params.purpose;
|
|
15814
|
+
amount = object.amount, issuedThrough = object.issuedThrough, paymentMethod = object.paymentMethod, creditCard = object.creditCard, method = object.method, paymentMethodId = object.paymentMethodId, name = object.name, additionalProperty = object.additionalProperty, ticketToken = object.ticketToken;
|
|
15772
15815
|
return [2 /*return*/, this.fetch({
|
|
15773
15816
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.CreditCard + "/authorize",
|
|
15774
15817
|
method: 'POST',
|
|
15775
15818
|
expectedStatusCodes: [http_status_1.ACCEPTED, http_status_1.CREATED],
|
|
15776
|
-
body:
|
|
15777
|
-
|
|
15819
|
+
body: {
|
|
15820
|
+
object: __assign(__assign(__assign(__assign(__assign(__assign({ amount: amount, issuedThrough: issuedThrough, paymentMethod: paymentMethod }, (creditCard !== undefined && creditCard !== null) ? { creditCard: creditCard } : undefined), (typeof name === 'string') ? { name: name } : undefined), (typeof method === 'string') ? { method: method } : undefined), (typeof paymentMethodId === 'string') ? { paymentMethodId: paymentMethodId } : undefined), (typeof ticketToken === 'string') ? { ticketToken: ticketToken } : undefined), (Array.isArray(additionalProperty)) ? { additionalProperty: additionalProperty } : undefined),
|
|
15821
|
+
purpose: purpose
|
|
15822
|
+
},
|
|
15823
|
+
qs: __assign(__assign({}, options), { purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15778
15824
|
})
|
|
15779
15825
|
})
|
|
15780
15826
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15788,14 +15834,20 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15788
15834
|
*/
|
|
15789
15835
|
PaymentService.prototype.authorizeMovieTicket = function (params, options) {
|
|
15790
15836
|
return __awaiter(this, void 0, void 0, function () {
|
|
15837
|
+
var object, purpose, issuedThrough, paymentMethod, movieTickets, name, additionalProperty, ticketToken;
|
|
15791
15838
|
var _this = this;
|
|
15792
15839
|
return __generator(this, function (_a) {
|
|
15840
|
+
object = params.object, purpose = params.purpose;
|
|
15841
|
+
issuedThrough = object.issuedThrough, paymentMethod = object.paymentMethod, movieTickets = object.movieTickets, name = object.name, additionalProperty = object.additionalProperty, ticketToken = object.ticketToken;
|
|
15793
15842
|
return [2 /*return*/, this.fetch({
|
|
15794
15843
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.MovieTicket + "/authorize",
|
|
15795
15844
|
method: 'POST',
|
|
15796
15845
|
expectedStatusCodes: [http_status_1.ACCEPTED, http_status_1.CREATED],
|
|
15797
|
-
body:
|
|
15798
|
-
|
|
15846
|
+
body: {
|
|
15847
|
+
object: __assign(__assign(__assign(__assign({ issuedThrough: issuedThrough, paymentMethod: paymentMethod }, (Array.isArray(movieTickets)) ? { movieTickets: movieTickets } : undefined), (typeof name === 'string') ? { name: name } : undefined), (typeof ticketToken === 'string') ? { ticketToken: ticketToken } : undefined), (Array.isArray(additionalProperty)) ? { additionalProperty: additionalProperty } : undefined),
|
|
15848
|
+
purpose: purpose
|
|
15849
|
+
},
|
|
15850
|
+
qs: __assign(__assign({}, options), { purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15799
15851
|
})
|
|
15800
15852
|
})
|
|
15801
15853
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15809,15 +15861,21 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15809
15861
|
*/
|
|
15810
15862
|
PaymentService.prototype.authorizePaymentCard = function (params) {
|
|
15811
15863
|
return __awaiter(this, void 0, void 0, function () {
|
|
15864
|
+
var object, purpose, amount, issuedThrough, paymentMethod, name, additionalProperty, fromLocation, description;
|
|
15812
15865
|
var _this = this;
|
|
15813
15866
|
return __generator(this, function (_a) {
|
|
15867
|
+
object = params.object, purpose = params.purpose;
|
|
15868
|
+
amount = object.amount, issuedThrough = object.issuedThrough, paymentMethod = object.paymentMethod, name = object.name, additionalProperty = object.additionalProperty, fromLocation = object.fromLocation, description = object.description;
|
|
15814
15869
|
return [2 /*return*/, this.fetch({
|
|
15815
15870
|
uri: "/payment/" + factory.product.ProductType.PaymentCard + "/authorize",
|
|
15816
15871
|
method: 'POST',
|
|
15817
15872
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
15818
|
-
body:
|
|
15873
|
+
body: {
|
|
15874
|
+
object: __assign(__assign(__assign(__assign({ amount: amount, issuedThrough: issuedThrough, paymentMethod: paymentMethod }, (typeof fromLocation === 'string') ? { fromLocation: fromLocation } : undefined), (typeof name === 'string') ? { name: name } : undefined), (typeof description === 'string') ? { description: description } : undefined), (Array.isArray(additionalProperty)) ? { additionalProperty: additionalProperty } : undefined),
|
|
15875
|
+
purpose: purpose
|
|
15876
|
+
},
|
|
15819
15877
|
qs: {
|
|
15820
|
-
purpose: { id:
|
|
15878
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15821
15879
|
}
|
|
15822
15880
|
})
|
|
15823
15881
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -15831,15 +15889,19 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15831
15889
|
*/
|
|
15832
15890
|
PaymentService.prototype.publishCreditCardPaymentUrlAsync = function (params) {
|
|
15833
15891
|
return __awaiter(this, void 0, void 0, function () {
|
|
15834
|
-
var object, purpose;
|
|
15892
|
+
var object, purpose, amount, creditCard, issuedThrough, paymentMethod, method, ticketToken;
|
|
15835
15893
|
var _this = this;
|
|
15836
15894
|
return __generator(this, function (_a) {
|
|
15837
15895
|
object = params.object, purpose = params.purpose;
|
|
15896
|
+
amount = object.amount, creditCard = object.creditCard, issuedThrough = object.issuedThrough, paymentMethod = object.paymentMethod, method = object.method, ticketToken = object.ticketToken;
|
|
15838
15897
|
return [2 /*return*/, this.fetch({
|
|
15839
15898
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.CreditCard + "/publishPaymentUrl",
|
|
15840
15899
|
method: 'POST',
|
|
15841
15900
|
expectedStatusCodes: [http_status_1.ACCEPTED],
|
|
15842
|
-
body: {
|
|
15901
|
+
body: {
|
|
15902
|
+
object: __assign(__assign(__assign({ amount: amount, issuedThrough: issuedThrough, paymentMethod: paymentMethod }, (creditCard !== undefined && creditCard !== null) ? { creditCard: creditCard } : undefined), (typeof method === 'string') ? { method: method } : undefined), (typeof ticketToken === 'string') ? { ticketToken: ticketToken } : undefined),
|
|
15903
|
+
purpose: purpose
|
|
15904
|
+
},
|
|
15843
15905
|
qs: {
|
|
15844
15906
|
async: true,
|
|
15845
15907
|
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
@@ -15856,18 +15918,18 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15856
15918
|
*/
|
|
15857
15919
|
PaymentService.prototype.voidAnyPayment = function (params) {
|
|
15858
15920
|
return __awaiter(this, void 0, void 0, function () {
|
|
15859
|
-
var id,
|
|
15921
|
+
var id, purpose;
|
|
15860
15922
|
return __generator(this, function (_a) {
|
|
15861
15923
|
switch (_a.label) {
|
|
15862
15924
|
case 0:
|
|
15863
|
-
id = params.id,
|
|
15925
|
+
id = params.id, purpose = params.purpose;
|
|
15864
15926
|
return [4 /*yield*/, this.fetch({
|
|
15865
15927
|
uri: "/payment/" + factory.service.paymentService.PaymentServiceType.FaceToFace + "/authorize/" + id + "/void",
|
|
15866
15928
|
method: 'PUT',
|
|
15867
15929
|
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
15868
|
-
body:
|
|
15930
|
+
body: { purpose: purpose },
|
|
15869
15931
|
qs: {
|
|
15870
|
-
purpose: { id:
|
|
15932
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15871
15933
|
}
|
|
15872
15934
|
})];
|
|
15873
15935
|
case 1:
|
|
@@ -15882,18 +15944,18 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
15882
15944
|
*/
|
|
15883
15945
|
PaymentService.prototype.voidTransaction = function (params) {
|
|
15884
15946
|
return __awaiter(this, void 0, void 0, function () {
|
|
15885
|
-
var id, object,
|
|
15947
|
+
var id, object, purpose;
|
|
15886
15948
|
return __generator(this, function (_a) {
|
|
15887
15949
|
switch (_a.label) {
|
|
15888
15950
|
case 0:
|
|
15889
|
-
id = params.id, object = params.object,
|
|
15951
|
+
id = params.id, object = params.object, purpose = params.purpose;
|
|
15890
15952
|
return [4 /*yield*/, this.fetch({
|
|
15891
15953
|
uri: "/payment/" + object.typeOf + "/authorize/" + id + "/void",
|
|
15892
15954
|
method: 'PUT',
|
|
15893
15955
|
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
15894
|
-
body:
|
|
15956
|
+
body: { purpose: purpose },
|
|
15895
15957
|
qs: {
|
|
15896
|
-
purpose: { id:
|
|
15958
|
+
purpose: { id: purpose.id } // 追加(2024-04-01~)
|
|
15897
15959
|
}
|
|
15898
15960
|
})];
|
|
15899
15961
|
case 1:
|
|
@@ -16023,7 +16085,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
16023
16085
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
16024
16086
|
body: { purpose: purpose },
|
|
16025
16087
|
qs: {
|
|
16026
|
-
purpose: { id:
|
|
16088
|
+
purpose: { id: purpose.id }
|
|
16027
16089
|
}
|
|
16028
16090
|
})
|
|
16029
16091
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -16044,7 +16106,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
16044
16106
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
16045
16107
|
body: { purpose: purpose, ticketedPermit: ticketedPermit },
|
|
16046
16108
|
qs: {
|
|
16047
|
-
purpose: { id:
|
|
16109
|
+
purpose: { id: purpose.id }
|
|
16048
16110
|
}
|
|
16049
16111
|
})
|
|
16050
16112
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -16065,7 +16127,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
16065
16127
|
expectedStatusCodes: [http_status_1.CREATED],
|
|
16066
16128
|
body: { purpose: purpose, ticketedInvoice: ticketedInvoice },
|
|
16067
16129
|
qs: {
|
|
16068
|
-
purpose: { id:
|
|
16130
|
+
purpose: { id: purpose.id }
|
|
16069
16131
|
}
|
|
16070
16132
|
})
|
|
16071
16133
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -16078,7 +16140,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
16078
16140
|
}(service_1.Service));
|
|
16079
16141
|
exports.PaymentService = PaymentService;
|
|
16080
16142
|
|
|
16081
|
-
},{"../factory":
|
|
16143
|
+
},{"../factory":159,"../service":164,"http-status":440}],100:[function(require,module,exports){
|
|
16082
16144
|
arguments[4][23][0].apply(exports,arguments)
|
|
16083
16145
|
},{"dup":23}],101:[function(require,module,exports){
|
|
16084
16146
|
"use strict";
|
|
@@ -16362,7 +16424,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
16362
16424
|
}(service_1.Service));
|
|
16363
16425
|
exports.OfferService = OfferService;
|
|
16364
16426
|
|
|
16365
|
-
},{"../factory":
|
|
16427
|
+
},{"../factory":159,"../service":164,"http-status":440}],103:[function(require,module,exports){
|
|
16366
16428
|
"use strict";
|
|
16367
16429
|
var __assign = (this && this.__assign) || function () {
|
|
16368
16430
|
__assign = Object.assign || function(t) {
|
|
@@ -16678,7 +16740,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
16678
16740
|
}(service_1.Service));
|
|
16679
16741
|
exports.OfferService = OfferService;
|
|
16680
16742
|
|
|
16681
|
-
},{"../factory":
|
|
16743
|
+
},{"../factory":159,"../service":164,"http-status":440}],105:[function(require,module,exports){
|
|
16682
16744
|
"use strict";
|
|
16683
16745
|
var __extends = (this && this.__extends) || (function () {
|
|
16684
16746
|
var extendStatics = function (d, b) {
|
|
@@ -16828,7 +16890,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
16828
16890
|
}(service_1.Service));
|
|
16829
16891
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
16830
16892
|
|
|
16831
|
-
},{"../../factory":
|
|
16893
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],106:[function(require,module,exports){
|
|
16832
16894
|
"use strict";
|
|
16833
16895
|
var __extends = (this && this.__extends) || (function () {
|
|
16834
16896
|
var extendStatics = function (d, b) {
|
|
@@ -17031,7 +17093,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
17031
17093
|
}(service_1.Service));
|
|
17032
17094
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
17033
17095
|
|
|
17034
|
-
},{"../../factory":
|
|
17096
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],107:[function(require,module,exports){
|
|
17035
17097
|
arguments[4][23][0].apply(exports,arguments)
|
|
17036
17098
|
},{"dup":23}],108:[function(require,module,exports){
|
|
17037
17099
|
"use strict";
|
|
@@ -17199,7 +17261,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
17199
17261
|
}(service_1.Service));
|
|
17200
17262
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
17201
17263
|
|
|
17202
|
-
},{"../../factory":
|
|
17264
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],109:[function(require,module,exports){
|
|
17203
17265
|
"use strict";
|
|
17204
17266
|
var __extends = (this && this.__extends) || (function () {
|
|
17205
17267
|
var extendStatics = function (d, b) {
|
|
@@ -17296,7 +17358,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
17296
17358
|
}(service_1.Service));
|
|
17297
17359
|
exports.CategoryCodeService = CategoryCodeService;
|
|
17298
17360
|
|
|
17299
|
-
},{"../service":
|
|
17361
|
+
},{"../service":164,"http-status":440}],110:[function(require,module,exports){
|
|
17300
17362
|
"use strict";
|
|
17301
17363
|
var __extends = (this && this.__extends) || (function () {
|
|
17302
17364
|
var extendStatics = function (d, b) {
|
|
@@ -17390,7 +17452,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
17390
17452
|
}(service_1.Service));
|
|
17391
17453
|
exports.CreativeWorkService = CreativeWorkService;
|
|
17392
17454
|
|
|
17393
|
-
},{"../service":
|
|
17455
|
+
},{"../service":164,"http-status":440}],111:[function(require,module,exports){
|
|
17394
17456
|
"use strict";
|
|
17395
17457
|
var __extends = (this && this.__extends) || (function () {
|
|
17396
17458
|
var extendStatics = function (d, b) {
|
|
@@ -17487,7 +17549,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
17487
17549
|
}(service_1.Service));
|
|
17488
17550
|
exports.EmailMessageService = EmailMessageService;
|
|
17489
17551
|
|
|
17490
|
-
},{"../service":
|
|
17552
|
+
},{"../service":164,"http-status":440}],112:[function(require,module,exports){
|
|
17491
17553
|
"use strict";
|
|
17492
17554
|
var __extends = (this && this.__extends) || (function () {
|
|
17493
17555
|
var extendStatics = function (d, b) {
|
|
@@ -17779,7 +17841,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
17779
17841
|
}(service_1.Service));
|
|
17780
17842
|
exports.EventService = EventService;
|
|
17781
17843
|
|
|
17782
|
-
},{"../factory":
|
|
17844
|
+
},{"../factory":159,"../service":164,"http-status":440}],113:[function(require,module,exports){
|
|
17783
17845
|
"use strict";
|
|
17784
17846
|
var __extends = (this && this.__extends) || (function () {
|
|
17785
17847
|
var extendStatics = function (d, b) {
|
|
@@ -17864,7 +17926,97 @@ var EventSeriesService = /** @class */ (function (_super) {
|
|
|
17864
17926
|
}(service_1.Service));
|
|
17865
17927
|
exports.EventSeriesService = EventSeriesService;
|
|
17866
17928
|
|
|
17867
|
-
},{"../service":
|
|
17929
|
+
},{"../service":164,"http-status":440}],114:[function(require,module,exports){
|
|
17930
|
+
"use strict";
|
|
17931
|
+
var __extends = (this && this.__extends) || (function () {
|
|
17932
|
+
var extendStatics = function (d, b) {
|
|
17933
|
+
extendStatics = Object.setPrototypeOf ||
|
|
17934
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
17935
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
17936
|
+
return extendStatics(d, b);
|
|
17937
|
+
};
|
|
17938
|
+
return function (d, b) {
|
|
17939
|
+
if (typeof b !== "function" && b !== null)
|
|
17940
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
17941
|
+
extendStatics(d, b);
|
|
17942
|
+
function __() { this.constructor = d; }
|
|
17943
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
17944
|
+
};
|
|
17945
|
+
})();
|
|
17946
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
17947
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
17948
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
17949
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17950
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
17951
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
17952
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
17953
|
+
});
|
|
17954
|
+
};
|
|
17955
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
17956
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
17957
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
17958
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
17959
|
+
function step(op) {
|
|
17960
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
17961
|
+
while (_) try {
|
|
17962
|
+
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;
|
|
17963
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
17964
|
+
switch (op[0]) {
|
|
17965
|
+
case 0: case 1: t = op; break;
|
|
17966
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
17967
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
17968
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
17969
|
+
default:
|
|
17970
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
17971
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
17972
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
17973
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
17974
|
+
if (t[2]) _.ops.pop();
|
|
17975
|
+
_.trys.pop(); continue;
|
|
17976
|
+
}
|
|
17977
|
+
op = body.call(thisArg, _);
|
|
17978
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
17979
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
17980
|
+
}
|
|
17981
|
+
};
|
|
17982
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17983
|
+
exports.PaymentProductService = void 0;
|
|
17984
|
+
var http_status_1 = require("http-status");
|
|
17985
|
+
var service_1 = require("../service");
|
|
17986
|
+
/**
|
|
17987
|
+
* 決済商品サービス
|
|
17988
|
+
*/
|
|
17989
|
+
var PaymentProductService = /** @class */ (function (_super) {
|
|
17990
|
+
__extends(PaymentProductService, _super);
|
|
17991
|
+
function PaymentProductService() {
|
|
17992
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
17993
|
+
}
|
|
17994
|
+
/**
|
|
17995
|
+
* 決済サービスを検索する
|
|
17996
|
+
*/
|
|
17997
|
+
PaymentProductService.prototype.findPaymentServices = function (params) {
|
|
17998
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17999
|
+
var limit, page, typeOf;
|
|
18000
|
+
var _this = this;
|
|
18001
|
+
return __generator(this, function (_a) {
|
|
18002
|
+
limit = params.limit, page = params.page, typeOf = params.typeOf;
|
|
18003
|
+
return [2 /*return*/, this.fetch({
|
|
18004
|
+
uri: '/paymentServices',
|
|
18005
|
+
method: 'GET',
|
|
18006
|
+
qs: { limit: limit, page: page, typeOf: typeOf },
|
|
18007
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
18008
|
+
})
|
|
18009
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
18010
|
+
return [2 /*return*/, response.json()];
|
|
18011
|
+
}); }); })];
|
|
18012
|
+
});
|
|
18013
|
+
});
|
|
18014
|
+
};
|
|
18015
|
+
return PaymentProductService;
|
|
18016
|
+
}(service_1.Service));
|
|
18017
|
+
exports.PaymentProductService = PaymentProductService;
|
|
18018
|
+
|
|
18019
|
+
},{"../service":164,"http-status":440}],115:[function(require,module,exports){
|
|
17868
18020
|
"use strict";
|
|
17869
18021
|
var __extends = (this && this.__extends) || (function () {
|
|
17870
18022
|
var extendStatics = function (d, b) {
|
|
@@ -18074,7 +18226,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
18074
18226
|
}(service_1.Service));
|
|
18075
18227
|
exports.PlaceService = PlaceService;
|
|
18076
18228
|
|
|
18077
|
-
},{"../factory":
|
|
18229
|
+
},{"../factory":159,"../service":164,"http-status":440}],116:[function(require,module,exports){
|
|
18078
18230
|
"use strict";
|
|
18079
18231
|
var __extends = (this && this.__extends) || (function () {
|
|
18080
18232
|
var extendStatics = function (d, b) {
|
|
@@ -18160,7 +18312,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
18160
18312
|
}(service_1.Service));
|
|
18161
18313
|
exports.HasPOSService = HasPOSService;
|
|
18162
18314
|
|
|
18163
|
-
},{"../../factory":
|
|
18315
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],117:[function(require,module,exports){
|
|
18164
18316
|
"use strict";
|
|
18165
18317
|
var __extends = (this && this.__extends) || (function () {
|
|
18166
18318
|
var extendStatics = function (d, b) {
|
|
@@ -18313,7 +18465,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
18313
18465
|
}(service_1.Service));
|
|
18314
18466
|
exports.ProductService = ProductService;
|
|
18315
18467
|
|
|
18316
|
-
},{"../service":
|
|
18468
|
+
},{"../service":164,"http-status":440}],118:[function(require,module,exports){
|
|
18317
18469
|
"use strict";
|
|
18318
18470
|
var __extends = (this && this.__extends) || (function () {
|
|
18319
18471
|
var extendStatics = function (d, b) {
|
|
@@ -18464,7 +18616,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
18464
18616
|
}(service_1.Service));
|
|
18465
18617
|
exports.SellerService = SellerService;
|
|
18466
18618
|
|
|
18467
|
-
},{"../service":
|
|
18619
|
+
},{"../service":164,"http-status":440}],119:[function(require,module,exports){
|
|
18468
18620
|
"use strict";
|
|
18469
18621
|
var __extends = (this && this.__extends) || (function () {
|
|
18470
18622
|
var extendStatics = function (d, b) {
|
|
@@ -18561,7 +18713,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
18561
18713
|
}(service_1.Service));
|
|
18562
18714
|
exports.TripService = TripService;
|
|
18563
18715
|
|
|
18564
|
-
},{"../service":
|
|
18716
|
+
},{"../service":164,"http-status":440}],120:[function(require,module,exports){
|
|
18565
18717
|
"use strict";
|
|
18566
18718
|
var __extends = (this && this.__extends) || (function () {
|
|
18567
18719
|
var extendStatics = function (d, b) {
|
|
@@ -18703,7 +18855,7 @@ var service;
|
|
|
18703
18855
|
service.Seller = Seller;
|
|
18704
18856
|
})(service = exports.service || (exports.service = {}));
|
|
18705
18857
|
|
|
18706
|
-
},{"../service":
|
|
18858
|
+
},{"../service":164,"./service/categoryCode":121,"./service/creativeWork":122,"./service/emailMessage":123,"./service/event":124,"./service/place":125,"./service/place/hasPOS":126,"./service/product":127,"./service/seller":128}],121:[function(require,module,exports){
|
|
18707
18859
|
"use strict";
|
|
18708
18860
|
var __extends = (this && this.__extends) || (function () {
|
|
18709
18861
|
var extendStatics = function (d, b) {
|
|
@@ -18811,7 +18963,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
18811
18963
|
}(service_1.Service));
|
|
18812
18964
|
exports.CategoryCodeService = CategoryCodeService;
|
|
18813
18965
|
|
|
18814
|
-
},{"../../service":
|
|
18966
|
+
},{"../../service":164,"http-status":440}],122:[function(require,module,exports){
|
|
18815
18967
|
"use strict";
|
|
18816
18968
|
var __extends = (this && this.__extends) || (function () {
|
|
18817
18969
|
var extendStatics = function (d, b) {
|
|
@@ -18919,7 +19071,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
18919
19071
|
}(service_1.Service));
|
|
18920
19072
|
exports.CreativeWorkService = CreativeWorkService;
|
|
18921
19073
|
|
|
18922
|
-
},{"../../service":
|
|
19074
|
+
},{"../../service":164,"http-status":440}],123:[function(require,module,exports){
|
|
18923
19075
|
"use strict";
|
|
18924
19076
|
var __extends = (this && this.__extends) || (function () {
|
|
18925
19077
|
var extendStatics = function (d, b) {
|
|
@@ -19027,7 +19179,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
19027
19179
|
}(service_1.Service));
|
|
19028
19180
|
exports.EmailMessageService = EmailMessageService;
|
|
19029
19181
|
|
|
19030
|
-
},{"../../service":
|
|
19182
|
+
},{"../../service":164,"http-status":440}],124:[function(require,module,exports){
|
|
19031
19183
|
"use strict";
|
|
19032
19184
|
var __extends = (this && this.__extends) || (function () {
|
|
19033
19185
|
var extendStatics = function (d, b) {
|
|
@@ -19428,7 +19580,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
19428
19580
|
}(service_1.Service));
|
|
19429
19581
|
exports.EventService = EventService;
|
|
19430
19582
|
|
|
19431
|
-
},{"../../factory":
|
|
19583
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],125:[function(require,module,exports){
|
|
19432
19584
|
"use strict";
|
|
19433
19585
|
var __extends = (this && this.__extends) || (function () {
|
|
19434
19586
|
var extendStatics = function (d, b) {
|
|
@@ -19621,7 +19773,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
19621
19773
|
}(service_1.Service));
|
|
19622
19774
|
exports.PlaceService = PlaceService;
|
|
19623
19775
|
|
|
19624
|
-
},{"../../factory":
|
|
19776
|
+
},{"../../factory":159,"../../service":164,"http-status":440}],126:[function(require,module,exports){
|
|
19625
19777
|
"use strict";
|
|
19626
19778
|
var __extends = (this && this.__extends) || (function () {
|
|
19627
19779
|
var extendStatics = function (d, b) {
|
|
@@ -19721,7 +19873,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
19721
19873
|
}(service_1.Service));
|
|
19722
19874
|
exports.HasPOSService = HasPOSService;
|
|
19723
19875
|
|
|
19724
|
-
},{"../../../factory":
|
|
19876
|
+
},{"../../../factory":159,"../../../service":164,"http-status":440}],127:[function(require,module,exports){
|
|
19725
19877
|
"use strict";
|
|
19726
19878
|
var __extends = (this && this.__extends) || (function () {
|
|
19727
19879
|
var extendStatics = function (d, b) {
|
|
@@ -19867,7 +20019,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
19867
20019
|
}(service_1.Service));
|
|
19868
20020
|
exports.ProductService = ProductService;
|
|
19869
20021
|
|
|
19870
|
-
},{"../../service":
|
|
20022
|
+
},{"../../service":164,"http-status":440}],128:[function(require,module,exports){
|
|
19871
20023
|
"use strict";
|
|
19872
20024
|
var __extends = (this && this.__extends) || (function () {
|
|
19873
20025
|
var extendStatics = function (d, b) {
|
|
@@ -20055,7 +20207,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
20055
20207
|
}(service_1.Service));
|
|
20056
20208
|
exports.SellerService = SellerService;
|
|
20057
20209
|
|
|
20058
|
-
},{"../../service":
|
|
20210
|
+
},{"../../service":164,"http-status":440}],129:[function(require,module,exports){
|
|
20059
20211
|
"use strict";
|
|
20060
20212
|
var __assign = (this && this.__assign) || function () {
|
|
20061
20213
|
__assign = Object.assign || function(t) {
|
|
@@ -20368,7 +20520,7 @@ var CloudAdmin = /** @class */ (function () {
|
|
|
20368
20520
|
}());
|
|
20369
20521
|
exports.CloudAdmin = CloudAdmin;
|
|
20370
20522
|
|
|
20371
|
-
},{"./admin/creativeWork":
|
|
20523
|
+
},{"./admin/creativeWork":130,"./admin/customer":131,"./admin/event":132,"./admin/me":133,"./admin/note":134,"./admin/offer":135,"./admin/offerCatalog":136,"./admin/offerCatalogItem":137,"./admin/order":138,"./admin/product":139,"./admin/reservation":140,"./admin/seller":141}],130:[function(require,module,exports){
|
|
20372
20524
|
"use strict";
|
|
20373
20525
|
var __extends = (this && this.__extends) || (function () {
|
|
20374
20526
|
var extendStatics = function (d, b) {
|
|
@@ -20468,7 +20620,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
20468
20620
|
}(service_1.Service));
|
|
20469
20621
|
exports.CreativeWorkService = CreativeWorkService;
|
|
20470
20622
|
|
|
20471
|
-
},{"../../index":
|
|
20623
|
+
},{"../../index":160,"../../service":164}],131:[function(require,module,exports){
|
|
20472
20624
|
"use strict";
|
|
20473
20625
|
var __extends = (this && this.__extends) || (function () {
|
|
20474
20626
|
var extendStatics = function (d, b) {
|
|
@@ -20578,7 +20730,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
20578
20730
|
}(service_1.Service));
|
|
20579
20731
|
exports.CustomerService = CustomerService;
|
|
20580
20732
|
|
|
20581
|
-
},{"../../index":
|
|
20733
|
+
},{"../../index":160,"../../service":164}],132:[function(require,module,exports){
|
|
20582
20734
|
"use strict";
|
|
20583
20735
|
var __extends = (this && this.__extends) || (function () {
|
|
20584
20736
|
var extendStatics = function (d, b) {
|
|
@@ -20773,7 +20925,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
20773
20925
|
}(service_1.Service));
|
|
20774
20926
|
exports.EventService = EventService;
|
|
20775
20927
|
|
|
20776
|
-
},{"../../factory":
|
|
20928
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],133:[function(require,module,exports){
|
|
20777
20929
|
"use strict";
|
|
20778
20930
|
var __extends = (this && this.__extends) || (function () {
|
|
20779
20931
|
var extendStatics = function (d, b) {
|
|
@@ -20842,7 +20994,7 @@ exports.MeService = void 0;
|
|
|
20842
20994
|
var index_1 = require("../../index");
|
|
20843
20995
|
var service_1 = require("../../service");
|
|
20844
20996
|
/**
|
|
20845
|
-
*
|
|
20997
|
+
* 管理者(自分自身)サービス
|
|
20846
20998
|
*/
|
|
20847
20999
|
var MeService = /** @class */ (function (_super) {
|
|
20848
21000
|
__extends(MeService, _super);
|
|
@@ -20870,11 +21022,32 @@ var MeService = /** @class */ (function (_super) {
|
|
|
20870
21022
|
});
|
|
20871
21023
|
});
|
|
20872
21024
|
};
|
|
21025
|
+
/**
|
|
21026
|
+
* マイ販売者検索
|
|
21027
|
+
*/
|
|
21028
|
+
MeService.prototype.findMySellers = function (params) {
|
|
21029
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
21030
|
+
var _a, auth, endpoint, chevreAdmin, meService;
|
|
21031
|
+
return __generator(this, function (_b) {
|
|
21032
|
+
switch (_b.label) {
|
|
21033
|
+
case 0:
|
|
21034
|
+
_a = this.options, auth = _a.auth, endpoint = _a.endpoint;
|
|
21035
|
+
return [4 /*yield*/, index_1.loadChevreAdmin({ auth: auth, endpoint: endpoint })];
|
|
21036
|
+
case 1:
|
|
21037
|
+
chevreAdmin = _b.sent();
|
|
21038
|
+
return [4 /*yield*/, chevreAdmin.createMeInstance()];
|
|
21039
|
+
case 2:
|
|
21040
|
+
meService = _b.sent();
|
|
21041
|
+
return [2 /*return*/, meService.findMySellers(params)];
|
|
21042
|
+
}
|
|
21043
|
+
});
|
|
21044
|
+
});
|
|
21045
|
+
};
|
|
20873
21046
|
return MeService;
|
|
20874
21047
|
}(service_1.Service));
|
|
20875
21048
|
exports.MeService = MeService;
|
|
20876
21049
|
|
|
20877
|
-
},{"../../index":
|
|
21050
|
+
},{"../../index":160,"../../service":164}],134:[function(require,module,exports){
|
|
20878
21051
|
"use strict";
|
|
20879
21052
|
var __extends = (this && this.__extends) || (function () {
|
|
20880
21053
|
var extendStatics = function (d, b) {
|
|
@@ -21042,7 +21215,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
21042
21215
|
}(service_1.Service));
|
|
21043
21216
|
exports.NoteService = NoteService;
|
|
21044
21217
|
|
|
21045
|
-
},{"../../index":
|
|
21218
|
+
},{"../../index":160,"../../service":164}],135:[function(require,module,exports){
|
|
21046
21219
|
"use strict";
|
|
21047
21220
|
var __extends = (this && this.__extends) || (function () {
|
|
21048
21221
|
var extendStatics = function (d, b) {
|
|
@@ -21231,7 +21404,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
21231
21404
|
}(service_1.Service));
|
|
21232
21405
|
exports.OfferService = OfferService;
|
|
21233
21406
|
|
|
21234
|
-
},{"../../factory":
|
|
21407
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],136:[function(require,module,exports){
|
|
21235
21408
|
"use strict";
|
|
21236
21409
|
var __extends = (this && this.__extends) || (function () {
|
|
21237
21410
|
var extendStatics = function (d, b) {
|
|
@@ -21340,7 +21513,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
21340
21513
|
}(service_1.Service));
|
|
21341
21514
|
exports.OfferCatalogService = OfferCatalogService;
|
|
21342
21515
|
|
|
21343
|
-
},{"../../factory":
|
|
21516
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],137:[function(require,module,exports){
|
|
21344
21517
|
"use strict";
|
|
21345
21518
|
var __extends = (this && this.__extends) || (function () {
|
|
21346
21519
|
var extendStatics = function (d, b) {
|
|
@@ -21475,7 +21648,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
21475
21648
|
}(service_1.Service));
|
|
21476
21649
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
21477
21650
|
|
|
21478
|
-
},{"../../index":
|
|
21651
|
+
},{"../../index":160,"../../service":164}],138:[function(require,module,exports){
|
|
21479
21652
|
"use strict";
|
|
21480
21653
|
var __extends = (this && this.__extends) || (function () {
|
|
21481
21654
|
var extendStatics = function (d, b) {
|
|
@@ -21714,7 +21887,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
21714
21887
|
}(service_1.Service));
|
|
21715
21888
|
exports.OrderService = OrderService;
|
|
21716
21889
|
|
|
21717
|
-
},{"../../factory":
|
|
21890
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],139:[function(require,module,exports){
|
|
21718
21891
|
"use strict";
|
|
21719
21892
|
var __extends = (this && this.__extends) || (function () {
|
|
21720
21893
|
var extendStatics = function (d, b) {
|
|
@@ -21822,7 +21995,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
21822
21995
|
}(service_1.Service));
|
|
21823
21996
|
exports.ProductService = ProductService;
|
|
21824
21997
|
|
|
21825
|
-
},{"../../factory":
|
|
21998
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],140:[function(require,module,exports){
|
|
21826
21999
|
"use strict";
|
|
21827
22000
|
var __extends = (this && this.__extends) || (function () {
|
|
21828
22001
|
var extendStatics = function (d, b) {
|
|
@@ -22050,7 +22223,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
22050
22223
|
}(service_1.Service));
|
|
22051
22224
|
exports.ReservationService = ReservationService;
|
|
22052
22225
|
|
|
22053
|
-
},{"../../factory":
|
|
22226
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],141:[function(require,module,exports){
|
|
22054
22227
|
"use strict";
|
|
22055
22228
|
var __extends = (this && this.__extends) || (function () {
|
|
22056
22229
|
var extendStatics = function (d, b) {
|
|
@@ -22139,7 +22312,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
22139
22312
|
}(service_1.Service));
|
|
22140
22313
|
exports.SellerService = SellerService;
|
|
22141
22314
|
|
|
22142
|
-
},{"../../index":
|
|
22315
|
+
},{"../../index":160,"../../service":164}],142:[function(require,module,exports){
|
|
22143
22316
|
"use strict";
|
|
22144
22317
|
var __assign = (this && this.__assign) || function () {
|
|
22145
22318
|
__assign = Object.assign || function(t) {
|
|
@@ -22316,7 +22489,7 @@ var CloudAsset = /** @class */ (function () {
|
|
|
22316
22489
|
}());
|
|
22317
22490
|
exports.CloudAsset = CloudAsset;
|
|
22318
22491
|
|
|
22319
|
-
},{"../chevreAsset/order/factory":23,"./asset/delivery":
|
|
22492
|
+
},{"../chevreAsset/order/factory":23,"./asset/delivery":143,"./asset/order":144,"./asset/reservation":145,"./asset/token":146,"http-status":440}],143:[function(require,module,exports){
|
|
22320
22493
|
"use strict";
|
|
22321
22494
|
var __extends = (this && this.__extends) || (function () {
|
|
22322
22495
|
var extendStatics = function (d, b) {
|
|
@@ -22423,7 +22596,7 @@ var DeliveryService = /** @class */ (function (_super) {
|
|
|
22423
22596
|
}(service_1.Service));
|
|
22424
22597
|
exports.DeliveryService = DeliveryService;
|
|
22425
22598
|
|
|
22426
|
-
},{"../../index":
|
|
22599
|
+
},{"../../index":160,"../../service":164}],144:[function(require,module,exports){
|
|
22427
22600
|
"use strict";
|
|
22428
22601
|
var __extends = (this && this.__extends) || (function () {
|
|
22429
22602
|
var extendStatics = function (d, b) {
|
|
@@ -22725,7 +22898,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
22725
22898
|
}(service_1.Service));
|
|
22726
22899
|
exports.OrderService = OrderService;
|
|
22727
22900
|
|
|
22728
|
-
},{"../../index":
|
|
22901
|
+
},{"../../index":160,"../../service":164}],145:[function(require,module,exports){
|
|
22729
22902
|
"use strict";
|
|
22730
22903
|
var __extends = (this && this.__extends) || (function () {
|
|
22731
22904
|
var extendStatics = function (d, b) {
|
|
@@ -22851,7 +23024,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
22851
23024
|
}(service_1.Service));
|
|
22852
23025
|
exports.ReservationService = ReservationService;
|
|
22853
23026
|
|
|
22854
|
-
},{"../../index":
|
|
23027
|
+
},{"../../index":160,"../../service":164}],146:[function(require,module,exports){
|
|
22855
23028
|
"use strict";
|
|
22856
23029
|
var __extends = (this && this.__extends) || (function () {
|
|
22857
23030
|
var extendStatics = function (d, b) {
|
|
@@ -22884,7 +23057,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
22884
23057
|
}(service_1.Service));
|
|
22885
23058
|
exports.TokenService = TokenService;
|
|
22886
23059
|
|
|
22887
|
-
},{"../../service":
|
|
23060
|
+
},{"../../service":164}],147:[function(require,module,exports){
|
|
22888
23061
|
"use strict";
|
|
22889
23062
|
var __assign = (this && this.__assign) || function () {
|
|
22890
23063
|
__assign = Object.assign || function(t) {
|
|
@@ -22985,7 +23158,7 @@ var CloudPay = /** @class */ (function () {
|
|
|
22985
23158
|
}());
|
|
22986
23159
|
exports.CloudPay = CloudPay;
|
|
22987
23160
|
|
|
22988
|
-
},{"../chevrePay/payment/factory":100,"./pay/payment":
|
|
23161
|
+
},{"../chevrePay/payment/factory":100,"./pay/payment":148,"http-status":440}],148:[function(require,module,exports){
|
|
22989
23162
|
"use strict";
|
|
22990
23163
|
var __extends = (this && this.__extends) || (function () {
|
|
22991
23164
|
var extendStatics = function (d, b) {
|
|
@@ -23630,7 +23803,346 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
23630
23803
|
}(service_1.Service));
|
|
23631
23804
|
exports.PaymentService = PaymentService;
|
|
23632
23805
|
|
|
23633
|
-
},{"../../factory":
|
|
23806
|
+
},{"../../factory":159,"../../index":160,"../../service":164,"http-status":440}],149:[function(require,module,exports){
|
|
23807
|
+
"use strict";
|
|
23808
|
+
var __assign = (this && this.__assign) || function () {
|
|
23809
|
+
__assign = Object.assign || function(t) {
|
|
23810
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
23811
|
+
s = arguments[i];
|
|
23812
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
23813
|
+
t[p] = s[p];
|
|
23814
|
+
}
|
|
23815
|
+
return t;
|
|
23816
|
+
};
|
|
23817
|
+
return __assign.apply(this, arguments);
|
|
23818
|
+
};
|
|
23819
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
23820
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23821
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
23822
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
23823
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
23824
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23825
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
23826
|
+
});
|
|
23827
|
+
};
|
|
23828
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23829
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23830
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
23831
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
23832
|
+
function step(op) {
|
|
23833
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
23834
|
+
while (_) try {
|
|
23835
|
+
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;
|
|
23836
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
23837
|
+
switch (op[0]) {
|
|
23838
|
+
case 0: case 1: t = op; break;
|
|
23839
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
23840
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23841
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
23842
|
+
default:
|
|
23843
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
23844
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
23845
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
23846
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
23847
|
+
if (t[2]) _.ops.pop();
|
|
23848
|
+
_.trys.pop(); continue;
|
|
23849
|
+
}
|
|
23850
|
+
op = body.call(thisArg, _);
|
|
23851
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
23852
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
23853
|
+
}
|
|
23854
|
+
};
|
|
23855
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23856
|
+
exports.CloudSearch = exports.service = void 0;
|
|
23857
|
+
// tslint:disable:max-classes-per-file
|
|
23858
|
+
var http_status_1 = require("http-status");
|
|
23859
|
+
/**
|
|
23860
|
+
* publicリソース検索サービス群
|
|
23861
|
+
*/
|
|
23862
|
+
var service;
|
|
23863
|
+
(function (service) {
|
|
23864
|
+
var PaymentProduct;
|
|
23865
|
+
(function (PaymentProduct) {
|
|
23866
|
+
})(PaymentProduct = service.PaymentProduct || (service.PaymentProduct = {}));
|
|
23867
|
+
var Product;
|
|
23868
|
+
(function (Product) {
|
|
23869
|
+
})(Product = service.Product || (service.Product = {}));
|
|
23870
|
+
})(service = exports.service || (exports.service = {}));
|
|
23871
|
+
var defaultRetryableStatusCodes = [http_status_1.BAD_GATEWAY, http_status_1.FORBIDDEN, http_status_1.UNAUTHORIZED];
|
|
23872
|
+
/**
|
|
23873
|
+
* publicリソース検索サービス
|
|
23874
|
+
*/
|
|
23875
|
+
var CloudSearch = /** @class */ (function () {
|
|
23876
|
+
function CloudSearch(options) {
|
|
23877
|
+
this.options = options;
|
|
23878
|
+
}
|
|
23879
|
+
/**
|
|
23880
|
+
* 決済商品サービスインスタンス生成
|
|
23881
|
+
*/
|
|
23882
|
+
CloudSearch.prototype.createPaymentProductInstance = function (params) {
|
|
23883
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
23884
|
+
var _a;
|
|
23885
|
+
return __generator(this, function (_b) {
|
|
23886
|
+
switch (_b.label) {
|
|
23887
|
+
case 0:
|
|
23888
|
+
if (!(service.PaymentProduct.svc === undefined)) return [3 /*break*/, 2];
|
|
23889
|
+
_a = service.PaymentProduct;
|
|
23890
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./search/paymentService'); })];
|
|
23891
|
+
case 1:
|
|
23892
|
+
_a.svc = (_b.sent()).PaymentProductService;
|
|
23893
|
+
_b.label = 2;
|
|
23894
|
+
case 2: return [2 /*return*/, new service.PaymentProduct.svc(__assign(__assign(__assign({}, this.options), params), { retryableStatusCodes: defaultRetryableStatusCodes }))];
|
|
23895
|
+
}
|
|
23896
|
+
});
|
|
23897
|
+
});
|
|
23898
|
+
};
|
|
23899
|
+
/**
|
|
23900
|
+
* プロダクトサービスインスタンス生成
|
|
23901
|
+
*/
|
|
23902
|
+
CloudSearch.prototype.createProductInstance = function (params) {
|
|
23903
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
23904
|
+
var _a;
|
|
23905
|
+
return __generator(this, function (_b) {
|
|
23906
|
+
switch (_b.label) {
|
|
23907
|
+
case 0:
|
|
23908
|
+
if (!(service.Product.svc === undefined)) return [3 /*break*/, 2];
|
|
23909
|
+
_a = service.Product;
|
|
23910
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./search/product'); })];
|
|
23911
|
+
case 1:
|
|
23912
|
+
_a.svc = (_b.sent()).ProductService;
|
|
23913
|
+
_b.label = 2;
|
|
23914
|
+
case 2: return [2 /*return*/, new service.Product.svc(__assign(__assign(__assign({}, this.options), params), { retryableStatusCodes: defaultRetryableStatusCodes }))];
|
|
23915
|
+
}
|
|
23916
|
+
});
|
|
23917
|
+
});
|
|
23918
|
+
};
|
|
23919
|
+
return CloudSearch;
|
|
23920
|
+
}());
|
|
23921
|
+
exports.CloudSearch = CloudSearch;
|
|
23922
|
+
|
|
23923
|
+
},{"./search/paymentService":150,"./search/product":151,"http-status":440}],150:[function(require,module,exports){
|
|
23924
|
+
"use strict";
|
|
23925
|
+
var __extends = (this && this.__extends) || (function () {
|
|
23926
|
+
var extendStatics = function (d, b) {
|
|
23927
|
+
extendStatics = Object.setPrototypeOf ||
|
|
23928
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
23929
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
23930
|
+
return extendStatics(d, b);
|
|
23931
|
+
};
|
|
23932
|
+
return function (d, b) {
|
|
23933
|
+
if (typeof b !== "function" && b !== null)
|
|
23934
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
23935
|
+
extendStatics(d, b);
|
|
23936
|
+
function __() { this.constructor = d; }
|
|
23937
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
23938
|
+
};
|
|
23939
|
+
})();
|
|
23940
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
23941
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23942
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
23943
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
23944
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
23945
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23946
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
23947
|
+
});
|
|
23948
|
+
};
|
|
23949
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23950
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23951
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
23952
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
23953
|
+
function step(op) {
|
|
23954
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
23955
|
+
while (_) try {
|
|
23956
|
+
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;
|
|
23957
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
23958
|
+
switch (op[0]) {
|
|
23959
|
+
case 0: case 1: t = op; break;
|
|
23960
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
23961
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23962
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
23963
|
+
default:
|
|
23964
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
23965
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
23966
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
23967
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
23968
|
+
if (t[2]) _.ops.pop();
|
|
23969
|
+
_.trys.pop(); continue;
|
|
23970
|
+
}
|
|
23971
|
+
op = body.call(thisArg, _);
|
|
23972
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
23973
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
23974
|
+
}
|
|
23975
|
+
};
|
|
23976
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23977
|
+
exports.PaymentProductService = void 0;
|
|
23978
|
+
var http_status_1 = require("http-status");
|
|
23979
|
+
var service_1 = require("../../service");
|
|
23980
|
+
/**
|
|
23981
|
+
* 決済商品サービス
|
|
23982
|
+
*/
|
|
23983
|
+
var PaymentProductService = /** @class */ (function (_super) {
|
|
23984
|
+
__extends(PaymentProductService, _super);
|
|
23985
|
+
function PaymentProductService() {
|
|
23986
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
23987
|
+
}
|
|
23988
|
+
// constructor(options: IAdditionalOptions & Pick<IOptions, 'auth' | 'endpoint' | 'transporter' | 'project' | 'defaultPath'>) {
|
|
23989
|
+
// super({ ...options, retryableStatusCodes: [BAD_GATEWAY, FORBIDDEN, UNAUTHORIZED] });
|
|
23990
|
+
// }
|
|
23991
|
+
/**
|
|
23992
|
+
* 決済サービスを検索する
|
|
23993
|
+
*/
|
|
23994
|
+
PaymentProductService.prototype.findPaymentServices = function (params) {
|
|
23995
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
23996
|
+
var limit, page, typeOf;
|
|
23997
|
+
var _this = this;
|
|
23998
|
+
return __generator(this, function (_a) {
|
|
23999
|
+
limit = params.limit, page = params.page, typeOf = params.typeOf;
|
|
24000
|
+
return [2 /*return*/, this.fetch({
|
|
24001
|
+
uri: '/paymentServices',
|
|
24002
|
+
method: 'GET',
|
|
24003
|
+
qs: { limit: limit, page: page, typeOf: typeOf },
|
|
24004
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
24005
|
+
})
|
|
24006
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
24007
|
+
return [2 /*return*/, response.json()];
|
|
24008
|
+
}); }); })];
|
|
24009
|
+
});
|
|
24010
|
+
});
|
|
24011
|
+
};
|
|
24012
|
+
return PaymentProductService;
|
|
24013
|
+
}(service_1.Service));
|
|
24014
|
+
exports.PaymentProductService = PaymentProductService;
|
|
24015
|
+
|
|
24016
|
+
},{"../../service":164,"http-status":440}],151:[function(require,module,exports){
|
|
24017
|
+
"use strict";
|
|
24018
|
+
var __extends = (this && this.__extends) || (function () {
|
|
24019
|
+
var extendStatics = function (d, b) {
|
|
24020
|
+
extendStatics = Object.setPrototypeOf ||
|
|
24021
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
24022
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
24023
|
+
return extendStatics(d, b);
|
|
24024
|
+
};
|
|
24025
|
+
return function (d, b) {
|
|
24026
|
+
if (typeof b !== "function" && b !== null)
|
|
24027
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
24028
|
+
extendStatics(d, b);
|
|
24029
|
+
function __() { this.constructor = d; }
|
|
24030
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24031
|
+
};
|
|
24032
|
+
})();
|
|
24033
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
24034
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
24035
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
24036
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
24037
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
24038
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
24039
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24040
|
+
});
|
|
24041
|
+
};
|
|
24042
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
24043
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24044
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24045
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
24046
|
+
function step(op) {
|
|
24047
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
24048
|
+
while (_) try {
|
|
24049
|
+
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;
|
|
24050
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
24051
|
+
switch (op[0]) {
|
|
24052
|
+
case 0: case 1: t = op; break;
|
|
24053
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
24054
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24055
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
24056
|
+
default:
|
|
24057
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
24058
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
24059
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
24060
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
24061
|
+
if (t[2]) _.ops.pop();
|
|
24062
|
+
_.trys.pop(); continue;
|
|
24063
|
+
}
|
|
24064
|
+
op = body.call(thisArg, _);
|
|
24065
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
24066
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
24067
|
+
}
|
|
24068
|
+
};
|
|
24069
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24070
|
+
exports.ProductService = void 0;
|
|
24071
|
+
var http_status_1 = require("http-status");
|
|
24072
|
+
var service_1 = require("../../service");
|
|
24073
|
+
/**
|
|
24074
|
+
* プロダクトサービス
|
|
24075
|
+
*/
|
|
24076
|
+
var ProductService = /** @class */ (function (_super) {
|
|
24077
|
+
__extends(ProductService, _super);
|
|
24078
|
+
function ProductService() {
|
|
24079
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
24080
|
+
}
|
|
24081
|
+
// constructor(options: IAdditionalOptions & Pick<IOptions, 'auth' | 'endpoint' | 'transporter' | 'project' | 'defaultPath'>) {
|
|
24082
|
+
// super({ ...options, retryableStatusCodes: [BAD_GATEWAY, FORBIDDEN, UNAUTHORIZED] });
|
|
24083
|
+
// }
|
|
24084
|
+
/**
|
|
24085
|
+
* プロダクトタイプ指定で検索する
|
|
24086
|
+
*/
|
|
24087
|
+
ProductService.prototype.search = function (params) {
|
|
24088
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
24089
|
+
var _this = this;
|
|
24090
|
+
return __generator(this, function (_a) {
|
|
24091
|
+
return [2 /*return*/, this.fetch({
|
|
24092
|
+
uri: '/products',
|
|
24093
|
+
method: 'GET',
|
|
24094
|
+
qs: params,
|
|
24095
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
24096
|
+
})
|
|
24097
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
24098
|
+
return [2 /*return*/, response.json()];
|
|
24099
|
+
}); }); })];
|
|
24100
|
+
});
|
|
24101
|
+
});
|
|
24102
|
+
};
|
|
24103
|
+
/**
|
|
24104
|
+
* プロダクトオファー検索
|
|
24105
|
+
*/
|
|
24106
|
+
ProductService.prototype.searchOffers = function (params) {
|
|
24107
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
24108
|
+
var _this = this;
|
|
24109
|
+
return __generator(this, function (_a) {
|
|
24110
|
+
return [2 /*return*/, this.fetch({
|
|
24111
|
+
uri: "/products/" + params.itemOffered.id + "/offers",
|
|
24112
|
+
method: 'GET',
|
|
24113
|
+
expectedStatusCodes: [http_status_1.OK],
|
|
24114
|
+
qs: params
|
|
24115
|
+
})
|
|
24116
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
24117
|
+
return [2 /*return*/, response.json()];
|
|
24118
|
+
}); }); })];
|
|
24119
|
+
});
|
|
24120
|
+
});
|
|
24121
|
+
};
|
|
24122
|
+
/**
|
|
24123
|
+
* 座席モデル検索
|
|
24124
|
+
*/
|
|
24125
|
+
ProductService.prototype.searchProductModels = function (params) {
|
|
24126
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
24127
|
+
var _this = this;
|
|
24128
|
+
return __generator(this, function (_a) {
|
|
24129
|
+
return [2 /*return*/, this.fetch({
|
|
24130
|
+
uri: '/productModels',
|
|
24131
|
+
method: 'GET',
|
|
24132
|
+
qs: params,
|
|
24133
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
24134
|
+
})
|
|
24135
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
24136
|
+
return [2 /*return*/, response.json()];
|
|
24137
|
+
}); }); })];
|
|
24138
|
+
});
|
|
24139
|
+
});
|
|
24140
|
+
};
|
|
24141
|
+
return ProductService;
|
|
24142
|
+
}(service_1.Service));
|
|
24143
|
+
exports.ProductService = ProductService;
|
|
24144
|
+
|
|
24145
|
+
},{"../../service":164,"http-status":440}],152:[function(require,module,exports){
|
|
23634
24146
|
"use strict";
|
|
23635
24147
|
var __assign = (this && this.__assign) || function () {
|
|
23636
24148
|
__assign = Object.assign || function(t) {
|
|
@@ -23731,7 +24243,7 @@ var CloudTxc = /** @class */ (function () {
|
|
|
23731
24243
|
}());
|
|
23732
24244
|
exports.CloudTxc = CloudTxc;
|
|
23733
24245
|
|
|
23734
|
-
},{"./txc/transaction/placeOrder":
|
|
24246
|
+
},{"./txc/transaction/placeOrder":154,"http-status":440}],153:[function(require,module,exports){
|
|
23735
24247
|
"use strict";
|
|
23736
24248
|
var __assign = (this && this.__assign) || function () {
|
|
23737
24249
|
__assign = Object.assign || function(t) {
|
|
@@ -23943,7 +24455,7 @@ function voidAuthorizeOfferAsync(params) {
|
|
|
23943
24455
|
}
|
|
23944
24456
|
exports.voidAuthorizeOfferAsync = voidAuthorizeOfferAsync;
|
|
23945
24457
|
|
|
23946
|
-
},{"../../../factory":
|
|
24458
|
+
},{"../../../factory":159}],154:[function(require,module,exports){
|
|
23947
24459
|
"use strict";
|
|
23948
24460
|
var __extends = (this && this.__extends) || (function () {
|
|
23949
24461
|
var extendStatics = function (d, b) {
|
|
@@ -24180,7 +24692,7 @@ var PlaceOrderCOAService = /** @class */ (function (_super) {
|
|
|
24180
24692
|
}(service_1.Service));
|
|
24181
24693
|
exports.PlaceOrderCOAService = PlaceOrderCOAService;
|
|
24182
24694
|
|
|
24183
|
-
},{"../../../factory":
|
|
24695
|
+
},{"../../../factory":159,"../../../index":160,"../../../service":164,"./forceAsync":153}],155:[function(require,module,exports){
|
|
24184
24696
|
"use strict";
|
|
24185
24697
|
var __assign = (this && this.__assign) || function () {
|
|
24186
24698
|
__assign = Object.assign || function(t) {
|
|
@@ -24326,7 +24838,7 @@ var CloudTxn = /** @class */ (function () {
|
|
|
24326
24838
|
}());
|
|
24327
24839
|
exports.CloudTxn = CloudTxn;
|
|
24328
24840
|
|
|
24329
|
-
},{"../chevreTxn/transaction/placeOrder/factory":107,"./txn/offer":
|
|
24841
|
+
},{"../chevreTxn/transaction/placeOrder/factory":107,"./txn/offer":156,"./txn/transaction/placeOrder":157,"./txn/transaction/returnOrder":158,"http-status":440}],156:[function(require,module,exports){
|
|
24330
24842
|
"use strict";
|
|
24331
24843
|
var __extends = (this && this.__extends) || (function () {
|
|
24332
24844
|
var extendStatics = function (d, b) {
|
|
@@ -24472,7 +24984,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
24472
24984
|
}(service_1.Service));
|
|
24473
24985
|
exports.OfferService = OfferService;
|
|
24474
24986
|
|
|
24475
|
-
},{"../../factory":
|
|
24987
|
+
},{"../../factory":159,"../../index":160,"../../service":164}],157:[function(require,module,exports){
|
|
24476
24988
|
"use strict";
|
|
24477
24989
|
var __extends = (this && this.__extends) || (function () {
|
|
24478
24990
|
var extendStatics = function (d, b) {
|
|
@@ -24739,7 +25251,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
24739
25251
|
}(service_1.Service));
|
|
24740
25252
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
24741
25253
|
|
|
24742
|
-
},{"../../../index":
|
|
25254
|
+
},{"../../../index":160,"../../../service":164,"http-status":440}],158:[function(require,module,exports){
|
|
24743
25255
|
"use strict";
|
|
24744
25256
|
var __extends = (this && this.__extends) || (function () {
|
|
24745
25257
|
var extendStatics = function (d, b) {
|
|
@@ -24904,7 +25416,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
24904
25416
|
}(service_1.Service));
|
|
24905
25417
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
24906
25418
|
|
|
24907
|
-
},{"../../../index":
|
|
25419
|
+
},{"../../../index":160,"../../../service":164}],159:[function(require,module,exports){
|
|
24908
25420
|
"use strict";
|
|
24909
25421
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
24910
25422
|
if (k2 === undefined) k2 = k;
|
|
@@ -24922,7 +25434,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
24922
25434
|
*/
|
|
24923
25435
|
__exportStar(require("@chevre/factory"), exports);
|
|
24924
25436
|
|
|
24925
|
-
},{"@chevre/factory":
|
|
25437
|
+
},{"@chevre/factory":272}],160:[function(require,module,exports){
|
|
24926
25438
|
"use strict";
|
|
24927
25439
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
24928
25440
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -24966,7 +25478,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from) {
|
|
|
24966
25478
|
return to;
|
|
24967
25479
|
};
|
|
24968
25480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24969
|
-
exports.transporters = exports.factory = exports.loadWaiterAdmin = exports.loadCloudTxn = exports.loadCloudTxc = exports.loadCloudPay = exports.loadCloudAsset = exports.loadCloudAdmin = exports.loadService = exports.loadPecorino = exports.loadChevreTxc = exports.loadChevreTxn = exports.loadChevrePay = exports.loadChevreConsole = exports.loadChevreAdmin = exports.loadChevreAsset = exports.loadChevre = void 0;
|
|
25481
|
+
exports.transporters = exports.factory = exports.loadWaiterAdmin = exports.loadCloudTxn = exports.loadCloudTxc = exports.loadCloudPay = exports.loadCloudSearch = exports.loadCloudAsset = exports.loadCloudAdmin = exports.loadService = exports.loadPecorino = exports.loadChevreTxc = exports.loadChevreTxn = exports.loadChevrePay = exports.loadChevreConsole = exports.loadChevreAdmin = exports.loadChevreAsset = exports.loadChevre = void 0;
|
|
24970
25482
|
var factory = require("./factory");
|
|
24971
25483
|
exports.factory = factory;
|
|
24972
25484
|
var transporters = require("./transporters");
|
|
@@ -25222,6 +25734,32 @@ function loadCloudAsset() {
|
|
|
25222
25734
|
});
|
|
25223
25735
|
}
|
|
25224
25736
|
exports.loadCloudAsset = loadCloudAsset;
|
|
25737
|
+
var cloudSearch;
|
|
25738
|
+
// tslint:disable-next-line:no-single-line-block-comment
|
|
25739
|
+
/* istanbul ignore next */
|
|
25740
|
+
/**
|
|
25741
|
+
* publicリソース検索サービス群を読み込む
|
|
25742
|
+
*/
|
|
25743
|
+
function loadCloudSearch() {
|
|
25744
|
+
var params = [];
|
|
25745
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
25746
|
+
params[_i] = arguments[_i];
|
|
25747
|
+
}
|
|
25748
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
25749
|
+
return __generator(this, function (_a) {
|
|
25750
|
+
switch (_a.label) {
|
|
25751
|
+
case 0:
|
|
25752
|
+
if (!(cloudSearch === undefined)) return [3 /*break*/, 2];
|
|
25753
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./cloud/search'); })];
|
|
25754
|
+
case 1:
|
|
25755
|
+
cloudSearch = (_a.sent()).CloudSearch;
|
|
25756
|
+
_a.label = 2;
|
|
25757
|
+
case 2: return [2 /*return*/, new (cloudSearch.bind.apply(cloudSearch, __spreadArray([void 0], params)))()];
|
|
25758
|
+
}
|
|
25759
|
+
});
|
|
25760
|
+
});
|
|
25761
|
+
}
|
|
25762
|
+
exports.loadCloudSearch = loadCloudSearch;
|
|
25225
25763
|
var cloudPay;
|
|
25226
25764
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
25227
25765
|
/* istanbul ignore next */
|
|
@@ -25335,7 +25873,7 @@ exports.loadWaiterAdmin = loadWaiterAdmin;
|
|
|
25335
25873
|
// export class StubAuth extends StubAuthClient { }
|
|
25336
25874
|
// }
|
|
25337
25875
|
|
|
25338
|
-
},{"./chevre":3,"./chevreAdmin":4,"./chevreAsset":21,"./chevreConsole":29,"./chevrePay":98,"./chevreTxc":101,"./chevreTxn":103,"./cinerino/default":
|
|
25876
|
+
},{"./chevre":3,"./chevreAdmin":4,"./chevreAsset":21,"./chevreConsole":29,"./chevrePay":98,"./chevreTxc":101,"./chevreTxn":103,"./cinerino/default":120,"./cloud/admin":129,"./cloud/asset":142,"./cloud/pay":147,"./cloud/search":149,"./cloud/txc":152,"./cloud/txn":155,"./factory":159,"./pecorino":161,"./transporters":165,"./waiterAdmin":166}],161:[function(require,module,exports){
|
|
25339
25877
|
"use strict";
|
|
25340
25878
|
var __extends = (this && this.__extends) || (function () {
|
|
25341
25879
|
var extendStatics = function (d, b) {
|
|
@@ -25388,7 +25926,7 @@ var service;
|
|
|
25388
25926
|
service.AccountTransaction = AccountTransaction;
|
|
25389
25927
|
})(service = exports.service || (exports.service = {}));
|
|
25390
25928
|
|
|
25391
|
-
},{"./factory":
|
|
25929
|
+
},{"./factory":159,"./pecorino/accountTransaction":162,"./pecorino/permit":163}],162:[function(require,module,exports){
|
|
25392
25930
|
"use strict";
|
|
25393
25931
|
var __extends = (this && this.__extends) || (function () {
|
|
25394
25932
|
var extendStatics = function (d, b) {
|
|
@@ -25559,7 +26097,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
25559
26097
|
}(service_1.Service));
|
|
25560
26098
|
exports.AccountTransactionService = AccountTransactionService;
|
|
25561
26099
|
|
|
25562
|
-
},{"../service":
|
|
26100
|
+
},{"../service":164,"http-status":440}],163:[function(require,module,exports){
|
|
25563
26101
|
"use strict";
|
|
25564
26102
|
var __extends = (this && this.__extends) || (function () {
|
|
25565
26103
|
var extendStatics = function (d, b) {
|
|
@@ -25679,7 +26217,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
25679
26217
|
}(service_1.Service));
|
|
25680
26218
|
exports.PermitService = PermitService;
|
|
25681
26219
|
|
|
25682
|
-
},{"../service":
|
|
26220
|
+
},{"../service":164,"http-status":440}],164:[function(require,module,exports){
|
|
25683
26221
|
"use strict";
|
|
25684
26222
|
var __assign = (this && this.__assign) || function () {
|
|
25685
26223
|
__assign = Object.assign || function(t) {
|
|
@@ -25805,7 +26343,7 @@ var Service = /** @class */ (function () {
|
|
|
25805
26343
|
}());
|
|
25806
26344
|
exports.Service = Service;
|
|
25807
26345
|
|
|
25808
|
-
},{"./transporters":
|
|
26346
|
+
},{"./transporters":165,"qs":455}],165:[function(require,module,exports){
|
|
25809
26347
|
"use strict";
|
|
25810
26348
|
var __extends = (this && this.__extends) || (function () {
|
|
25811
26349
|
var extendStatics = function (d, b) {
|
|
@@ -26002,7 +26540,7 @@ var StubTransporter = /** @class */ (function () {
|
|
|
26002
26540
|
}());
|
|
26003
26541
|
exports.StubTransporter = StubTransporter;
|
|
26004
26542
|
|
|
26005
|
-
},{"debug":
|
|
26543
|
+
},{"debug":415,"isomorphic-fetch":443}],166:[function(require,module,exports){
|
|
26006
26544
|
"use strict";
|
|
26007
26545
|
var __assign = (this && this.__assign) || function () {
|
|
26008
26546
|
__assign = Object.assign || function(t) {
|
|
@@ -26107,7 +26645,7 @@ var WaiterAdmin = /** @class */ (function () {
|
|
|
26107
26645
|
}());
|
|
26108
26646
|
exports.WaiterAdmin = WaiterAdmin;
|
|
26109
26647
|
|
|
26110
|
-
},{"./waiterAdmin/rule":
|
|
26648
|
+
},{"./waiterAdmin/rule":167,"./waiterAdmin/ruleSet":168}],167:[function(require,module,exports){
|
|
26111
26649
|
"use strict";
|
|
26112
26650
|
var __extends = (this && this.__extends) || (function () {
|
|
26113
26651
|
var extendStatics = function (d, b) {
|
|
@@ -26195,7 +26733,7 @@ var RuleService = /** @class */ (function (_super) {
|
|
|
26195
26733
|
}(service_1.Service));
|
|
26196
26734
|
exports.RuleService = RuleService;
|
|
26197
26735
|
|
|
26198
|
-
},{"../service":
|
|
26736
|
+
},{"../service":164,"http-status":440}],168:[function(require,module,exports){
|
|
26199
26737
|
"use strict";
|
|
26200
26738
|
var __extends = (this && this.__extends) || (function () {
|
|
26201
26739
|
var extendStatics = function (d, b) {
|
|
@@ -26303,7 +26841,7 @@ var RuleSetService = /** @class */ (function (_super) {
|
|
|
26303
26841
|
}(service_1.Service));
|
|
26304
26842
|
exports.RuleSetService = RuleSetService;
|
|
26305
26843
|
|
|
26306
|
-
},{"../service":
|
|
26844
|
+
},{"../service":164,"http-status":440}],169:[function(require,module,exports){
|
|
26307
26845
|
"use strict";
|
|
26308
26846
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26309
26847
|
/* istanbul ignore file */
|
|
@@ -26659,7 +27197,7 @@ var ImplicitGrantClient = /** @class */ (function (_super) {
|
|
|
26659
27197
|
}(oAuth2client_1.default));
|
|
26660
27198
|
exports.ImplicitGrantClient = ImplicitGrantClient;
|
|
26661
27199
|
|
|
26662
|
-
},{"./implicitGrantClient/error":
|
|
27200
|
+
},{"./implicitGrantClient/error":170,"./implicitGrantClient/popupAuthenticationHandler":172,"./implicitGrantClient/silentAuthenticationHandler":174,"./implicitGrantClient/silentLogoutHandler":175,"./oAuth2client":177,"debug":415,"idtoken-verifier":441,"qs":455}],170:[function(require,module,exports){
|
|
26663
27201
|
"use strict";
|
|
26664
27202
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26665
27203
|
/* istanbul ignore file */
|
|
@@ -26692,7 +27230,7 @@ var AuthorizeError = /** @class */ (function (_super) {
|
|
|
26692
27230
|
}(Error));
|
|
26693
27231
|
exports.AuthorizeError = AuthorizeError;
|
|
26694
27232
|
|
|
26695
|
-
},{}],
|
|
27233
|
+
},{}],171:[function(require,module,exports){
|
|
26696
27234
|
"use strict";
|
|
26697
27235
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26698
27236
|
/* istanbul ignore file */
|
|
@@ -26778,7 +27316,7 @@ var IframeHandler = /** @class */ (function () {
|
|
|
26778
27316
|
}());
|
|
26779
27317
|
exports.default = IframeHandler;
|
|
26780
27318
|
|
|
26781
|
-
},{"debug":
|
|
27319
|
+
},{"debug":415}],172:[function(require,module,exports){
|
|
26782
27320
|
"use strict";
|
|
26783
27321
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26784
27322
|
/* istanbul ignore file */
|
|
@@ -26888,7 +27426,7 @@ var PopupAuthenticationHandler = /** @class */ (function () {
|
|
|
26888
27426
|
}());
|
|
26889
27427
|
exports.default = PopupAuthenticationHandler;
|
|
26890
27428
|
|
|
26891
|
-
},{"./error":
|
|
27429
|
+
},{"./error":170,"./popupHandler":173}],173:[function(require,module,exports){
|
|
26892
27430
|
"use strict";
|
|
26893
27431
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26894
27432
|
/* istanbul ignore file */
|
|
@@ -26974,7 +27512,7 @@ var PopupHandler = /** @class */ (function () {
|
|
|
26974
27512
|
}());
|
|
26975
27513
|
exports.default = PopupHandler;
|
|
26976
27514
|
|
|
26977
|
-
},{"debug":
|
|
27515
|
+
},{"debug":415}],174:[function(require,module,exports){
|
|
26978
27516
|
"use strict";
|
|
26979
27517
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
26980
27518
|
/* istanbul ignore file */
|
|
@@ -27084,7 +27622,7 @@ var SilentAuthenticationHandler = /** @class */ (function () {
|
|
|
27084
27622
|
}());
|
|
27085
27623
|
exports.default = SilentAuthenticationHandler;
|
|
27086
27624
|
|
|
27087
|
-
},{"./error":
|
|
27625
|
+
},{"./error":170,"./iframeHandler":171}],175:[function(require,module,exports){
|
|
27088
27626
|
"use strict";
|
|
27089
27627
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
27090
27628
|
/* istanbul ignore file */
|
|
@@ -27194,7 +27732,7 @@ var SilentLogoutHandler = /** @class */ (function () {
|
|
|
27194
27732
|
}());
|
|
27195
27733
|
exports.default = SilentLogoutHandler;
|
|
27196
27734
|
|
|
27197
|
-
},{"./error":
|
|
27735
|
+
},{"./error":170,"./iframeHandler":171}],176:[function(require,module,exports){
|
|
27198
27736
|
"use strict";
|
|
27199
27737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27200
27738
|
exports.LoginTicket = void 0;
|
|
@@ -27223,9 +27761,20 @@ var LoginTicket = /** @class */ (function () {
|
|
|
27223
27761
|
}());
|
|
27224
27762
|
exports.LoginTicket = LoginTicket;
|
|
27225
27763
|
|
|
27226
|
-
},{}],
|
|
27764
|
+
},{}],177:[function(require,module,exports){
|
|
27227
27765
|
(function (Buffer){
|
|
27228
27766
|
"use strict";
|
|
27767
|
+
var __assign = (this && this.__assign) || function () {
|
|
27768
|
+
__assign = Object.assign || function(t) {
|
|
27769
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
27770
|
+
s = arguments[i];
|
|
27771
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
27772
|
+
t[p] = s[p];
|
|
27773
|
+
}
|
|
27774
|
+
return t;
|
|
27775
|
+
};
|
|
27776
|
+
return __assign.apply(this, arguments);
|
|
27777
|
+
};
|
|
27229
27778
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
27230
27779
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27231
27780
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -27297,6 +27846,7 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27297
27846
|
// TODO add minimum validation
|
|
27298
27847
|
this.options = options;
|
|
27299
27848
|
this.credentials = {};
|
|
27849
|
+
this.events = {};
|
|
27300
27850
|
}
|
|
27301
27851
|
OAuth2client.BASE64URLENCODE = function (str) {
|
|
27302
27852
|
return str.toString('base64')
|
|
@@ -27415,12 +27965,22 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27415
27965
|
throw new Error('No refresh token is set.');
|
|
27416
27966
|
}
|
|
27417
27967
|
return [2 /*return*/, this.refreshToken(this.credentials.refresh_token)
|
|
27418
|
-
.then(function (
|
|
27419
|
-
|
|
27420
|
-
|
|
27421
|
-
|
|
27422
|
-
|
|
27423
|
-
|
|
27968
|
+
.then(function (refreshTokenResult) { return __awaiter(_this, void 0, void 0, function () {
|
|
27969
|
+
return __generator(this, function (_a) {
|
|
27970
|
+
switch (_a.label) {
|
|
27971
|
+
case 0:
|
|
27972
|
+
// tokens.refresh_token = this.credentials.refresh_token;
|
|
27973
|
+
debug('setting credentials...', refreshTokenResult);
|
|
27974
|
+
this.credentials = __assign(__assign({}, refreshTokenResult), { refresh_token: this.credentials.refresh_token });
|
|
27975
|
+
if (!(typeof this.events.onTokenRefreshed === 'function')) return [3 /*break*/, 2];
|
|
27976
|
+
return [4 /*yield*/, this.events.onTokenRefreshed(this.credentials)];
|
|
27977
|
+
case 1:
|
|
27978
|
+
_a.sent();
|
|
27979
|
+
_a.label = 2;
|
|
27980
|
+
case 2: return [2 /*return*/, this.credentials];
|
|
27981
|
+
}
|
|
27982
|
+
});
|
|
27983
|
+
}); })];
|
|
27424
27984
|
});
|
|
27425
27985
|
});
|
|
27426
27986
|
};
|
|
@@ -27566,6 +28126,12 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27566
28126
|
// return this.verifySignedJwt(options.idToken, options.audience, OAuth2Client.ISSUERS_);
|
|
27567
28127
|
return this.verifySignedJwt(this.credentials.id_token, options.audience);
|
|
27568
28128
|
};
|
|
28129
|
+
/**
|
|
28130
|
+
* トークン更新イベントハンドラを登録する
|
|
28131
|
+
*/
|
|
28132
|
+
OAuth2client.prototype.onTokenRefreshed = function (params) {
|
|
28133
|
+
this.events.onTokenRefreshed = params;
|
|
28134
|
+
};
|
|
27569
28135
|
/**
|
|
27570
28136
|
* Provides a request implementation with OAuth 2.0 flow.
|
|
27571
28137
|
* If credentials have a refresh_token, in cases of HTTP
|
|
@@ -27631,7 +28197,7 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27631
28197
|
debug('fetching...', options);
|
|
27632
28198
|
return [2 /*return*/, fetch("https://" + this.options.domain + OAuth2client.OAUTH2_TOKEN_URI, options)
|
|
27633
28199
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
27634
|
-
var body, body,
|
|
28200
|
+
var body, body, result, refreshTokenResponse, access_token, id_token, expires_in, token_type;
|
|
27635
28201
|
return __generator(this, function (_a) {
|
|
27636
28202
|
switch (_a.label) {
|
|
27637
28203
|
case 0:
|
|
@@ -27647,17 +28213,29 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27647
28213
|
body = _a.sent();
|
|
27648
28214
|
throw new Error(body);
|
|
27649
28215
|
case 4: return [3 /*break*/, 7];
|
|
27650
|
-
case 5:
|
|
28216
|
+
case 5:
|
|
28217
|
+
result = void 0;
|
|
28218
|
+
return [4 /*yield*/, response.json()];
|
|
27651
28219
|
case 6:
|
|
27652
|
-
|
|
28220
|
+
refreshTokenResponse = _a.sent();
|
|
27653
28221
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
27654
28222
|
/* istanbul ignore else */
|
|
27655
|
-
if (
|
|
27656
|
-
|
|
27657
|
-
|
|
27658
|
-
|
|
28223
|
+
if (refreshTokenResponse !== undefined && typeof refreshTokenResponse.expires_in === 'number') {
|
|
28224
|
+
access_token = refreshTokenResponse.access_token, id_token = refreshTokenResponse.id_token, expires_in = refreshTokenResponse.expires_in, token_type = refreshTokenResponse.token_type;
|
|
28225
|
+
result = {
|
|
28226
|
+
access_token: access_token, id_token: id_token, token_type: token_type,
|
|
28227
|
+
// tslint:disable-next-line:no-magic-numbers
|
|
28228
|
+
expiry_date: ((new Date()).getTime() + (expires_in * 1000))
|
|
28229
|
+
};
|
|
28230
|
+
// delete tokens.expires_in;
|
|
27659
28231
|
}
|
|
27660
|
-
|
|
28232
|
+
else {
|
|
28233
|
+
// 想定していないリフレッシュトークンレスポンスはログ出力
|
|
28234
|
+
// tslint:disable-next-line:no-console
|
|
28235
|
+
console.error('unexpected refreshToken response:', refreshTokenResponse);
|
|
28236
|
+
throw new Error('unexpected refreshToken response.');
|
|
28237
|
+
}
|
|
28238
|
+
return [2 /*return*/, result];
|
|
27661
28239
|
case 7: return [2 /*return*/];
|
|
27662
28240
|
}
|
|
27663
28241
|
});
|
|
@@ -27753,7 +28331,7 @@ var OAuth2client = /** @class */ (function () {
|
|
|
27753
28331
|
exports.default = OAuth2client;
|
|
27754
28332
|
|
|
27755
28333
|
}).call(this,require("buffer").Buffer)
|
|
27756
|
-
},{"../abstract/transporters":
|
|
28334
|
+
},{"../abstract/transporters":165,"./loginTicket":176,"buffer":406,"crypto":405,"debug":415,"http-status":440,"isomorphic-fetch":443,"querystring":461}],178:[function(require,module,exports){
|
|
27757
28335
|
"use strict";
|
|
27758
28336
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27759
28337
|
exports.createAuthInstance = exports.transporters = exports.factory = exports.loadService = exports.loadCloudTxn = exports.loadCloudTxc = exports.loadCloudPay = exports.loadCloudAsset = exports.loadCloudAdmin = void 0;
|
|
@@ -27780,7 +28358,7 @@ function createAuthInstance(options) {
|
|
|
27780
28358
|
}
|
|
27781
28359
|
exports.createAuthInstance = createAuthInstance;
|
|
27782
28360
|
|
|
27783
|
-
},{"./abstract":2,"./auth/implicitGrantClient":
|
|
28361
|
+
},{"./abstract":2,"./auth/implicitGrantClient":169}],179:[function(require,module,exports){
|
|
27784
28362
|
"use strict";
|
|
27785
28363
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27786
28364
|
exports.transactionType = exports.transaction = exports.action = void 0;
|
|
@@ -27814,9 +28392,9 @@ var transaction;
|
|
|
27814
28392
|
})(transaction = exports.transaction || (exports.transaction = {}));
|
|
27815
28393
|
exports.transactionType = transactionType_1.AccountTransactionType;
|
|
27816
28394
|
|
|
27817
|
-
},{"./account/action/moneyTransfer":
|
|
28395
|
+
},{"./account/action/moneyTransfer":182,"./account/transaction/deposit":184,"./account/transaction/transfer":185,"./account/transaction/withdraw":186,"./account/transactionType":183}],180:[function(require,module,exports){
|
|
27818
28396
|
arguments[4][23][0].apply(exports,arguments)
|
|
27819
|
-
},{"dup":23}],
|
|
28397
|
+
},{"dup":23}],181:[function(require,module,exports){
|
|
27820
28398
|
"use strict";
|
|
27821
28399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27822
28400
|
exports.AccountType = void 0;
|
|
@@ -27837,9 +28415,9 @@ var AccountType;
|
|
|
27837
28415
|
AccountType["Transactional"] = "Transactional";
|
|
27838
28416
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
27839
28417
|
|
|
27840
|
-
},{}],
|
|
28418
|
+
},{}],182:[function(require,module,exports){
|
|
27841
28419
|
arguments[4][23][0].apply(exports,arguments)
|
|
27842
|
-
},{"dup":23}],
|
|
28420
|
+
},{"dup":23}],183:[function(require,module,exports){
|
|
27843
28421
|
"use strict";
|
|
27844
28422
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27845
28423
|
exports.AccountTransactionType = void 0;
|
|
@@ -27862,13 +28440,13 @@ var AccountTransactionType;
|
|
|
27862
28440
|
AccountTransactionType["Transfer"] = "Transfer";
|
|
27863
28441
|
})(AccountTransactionType = exports.AccountTransactionType || (exports.AccountTransactionType = {}));
|
|
27864
28442
|
|
|
27865
|
-
},{}],
|
|
28443
|
+
},{}],184:[function(require,module,exports){
|
|
27866
28444
|
arguments[4][23][0].apply(exports,arguments)
|
|
27867
|
-
},{"dup":23}],
|
|
28445
|
+
},{"dup":23}],185:[function(require,module,exports){
|
|
27868
28446
|
arguments[4][23][0].apply(exports,arguments)
|
|
27869
|
-
},{"dup":23}],
|
|
28447
|
+
},{"dup":23}],186:[function(require,module,exports){
|
|
27870
28448
|
arguments[4][23][0].apply(exports,arguments)
|
|
27871
|
-
},{"dup":23}],
|
|
28449
|
+
},{"dup":23}],187:[function(require,module,exports){
|
|
27872
28450
|
"use strict";
|
|
27873
28451
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27874
28452
|
exports.ActionStatusType = void 0;
|
|
@@ -27884,7 +28462,7 @@ var ActionStatusType;
|
|
|
27884
28462
|
ActionStatusType["CanceledActionStatus"] = "CanceledActionStatus";
|
|
27885
28463
|
})(ActionStatusType = exports.ActionStatusType || (exports.ActionStatusType = {}));
|
|
27886
28464
|
|
|
27887
|
-
},{}],
|
|
28465
|
+
},{}],188:[function(require,module,exports){
|
|
27888
28466
|
"use strict";
|
|
27889
28467
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27890
28468
|
exports.ActionType = void 0;
|
|
@@ -27916,7 +28494,7 @@ var ActionType;
|
|
|
27916
28494
|
ActionType["UseAction"] = "UseAction";
|
|
27917
28495
|
})(ActionType = exports.ActionType || (exports.ActionType = {}));
|
|
27918
28496
|
|
|
27919
|
-
},{}],
|
|
28497
|
+
},{}],189:[function(require,module,exports){
|
|
27920
28498
|
"use strict";
|
|
27921
28499
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27922
28500
|
exports.FlgMember = void 0;
|
|
@@ -27935,11 +28513,11 @@ var FlgMember;
|
|
|
27935
28513
|
FlgMember["Member"] = "1";
|
|
27936
28514
|
})(FlgMember = exports.FlgMember || (exports.FlgMember = {}));
|
|
27937
28515
|
|
|
27938
|
-
},{}],
|
|
28516
|
+
},{}],190:[function(require,module,exports){
|
|
27939
28517
|
arguments[4][23][0].apply(exports,arguments)
|
|
27940
|
-
},{"dup":23}],
|
|
28518
|
+
},{"dup":23}],191:[function(require,module,exports){
|
|
27941
28519
|
arguments[4][23][0].apply(exports,arguments)
|
|
27942
|
-
},{"dup":23}],
|
|
28520
|
+
},{"dup":23}],192:[function(require,module,exports){
|
|
27943
28521
|
"use strict";
|
|
27944
28522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27945
28523
|
exports.ObjectType = void 0;
|
|
@@ -27948,11 +28526,11 @@ var ObjectType;
|
|
|
27948
28526
|
ObjectType["SeatReservation"] = "SeatReservation";
|
|
27949
28527
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
27950
28528
|
|
|
27951
|
-
},{}],
|
|
28529
|
+
},{}],193:[function(require,module,exports){
|
|
27952
28530
|
arguments[4][23][0].apply(exports,arguments)
|
|
27953
|
-
},{"dup":23}],
|
|
28531
|
+
},{"dup":23}],194:[function(require,module,exports){
|
|
27954
28532
|
arguments[4][23][0].apply(exports,arguments)
|
|
27955
|
-
},{"dup":23}],
|
|
28533
|
+
},{"dup":23}],195:[function(require,module,exports){
|
|
27956
28534
|
"use strict";
|
|
27957
28535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27958
28536
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -27966,15 +28544,15 @@ var ServiceIdentifier;
|
|
|
27966
28544
|
ServiceIdentifier["Chevre"] = "Chevre";
|
|
27967
28545
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
27968
28546
|
|
|
27969
|
-
},{}],
|
|
28547
|
+
},{}],196:[function(require,module,exports){
|
|
27970
28548
|
arguments[4][23][0].apply(exports,arguments)
|
|
27971
|
-
},{"dup":23}],
|
|
28549
|
+
},{"dup":23}],197:[function(require,module,exports){
|
|
27972
28550
|
arguments[4][23][0].apply(exports,arguments)
|
|
27973
|
-
},{"dup":23}],
|
|
28551
|
+
},{"dup":23}],198:[function(require,module,exports){
|
|
27974
28552
|
arguments[4][23][0].apply(exports,arguments)
|
|
27975
|
-
},{"dup":23}],
|
|
28553
|
+
},{"dup":23}],199:[function(require,module,exports){
|
|
27976
28554
|
arguments[4][23][0].apply(exports,arguments)
|
|
27977
|
-
},{"dup":23}],
|
|
28555
|
+
},{"dup":23}],200:[function(require,module,exports){
|
|
27978
28556
|
"use strict";
|
|
27979
28557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27980
28558
|
exports.ObjectType = void 0;
|
|
@@ -27983,15 +28561,7 @@ var ObjectType;
|
|
|
27983
28561
|
ObjectType["Ticket"] = "Ticket";
|
|
27984
28562
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
27985
28563
|
|
|
27986
|
-
},{}],
|
|
27987
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
27988
|
-
},{"dup":23}],198:[function(require,module,exports){
|
|
27989
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
27990
|
-
},{"dup":23}],199:[function(require,module,exports){
|
|
27991
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
27992
|
-
},{"dup":23}],200:[function(require,module,exports){
|
|
27993
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
27994
|
-
},{"dup":23}],201:[function(require,module,exports){
|
|
28564
|
+
},{}],201:[function(require,module,exports){
|
|
27995
28565
|
arguments[4][23][0].apply(exports,arguments)
|
|
27996
28566
|
},{"dup":23}],202:[function(require,module,exports){
|
|
27997
28567
|
arguments[4][23][0].apply(exports,arguments)
|
|
@@ -28006,6 +28576,14 @@ arguments[4][23][0].apply(exports,arguments)
|
|
|
28006
28576
|
},{"dup":23}],207:[function(require,module,exports){
|
|
28007
28577
|
arguments[4][23][0].apply(exports,arguments)
|
|
28008
28578
|
},{"dup":23}],208:[function(require,module,exports){
|
|
28579
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28580
|
+
},{"dup":23}],209:[function(require,module,exports){
|
|
28581
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28582
|
+
},{"dup":23}],210:[function(require,module,exports){
|
|
28583
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28584
|
+
},{"dup":23}],211:[function(require,module,exports){
|
|
28585
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28586
|
+
},{"dup":23}],212:[function(require,module,exports){
|
|
28009
28587
|
"use strict";
|
|
28010
28588
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28011
28589
|
exports.ObjectType = void 0;
|
|
@@ -28014,15 +28592,7 @@ var ObjectType;
|
|
|
28014
28592
|
ObjectType["PointAward"] = "PointAward";
|
|
28015
28593
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
28016
28594
|
|
|
28017
|
-
},{}],
|
|
28018
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
28019
|
-
},{"dup":23}],210:[function(require,module,exports){
|
|
28020
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
28021
|
-
},{"dup":23}],211:[function(require,module,exports){
|
|
28022
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
28023
|
-
},{"dup":23}],212:[function(require,module,exports){
|
|
28024
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
28025
|
-
},{"dup":23}],213:[function(require,module,exports){
|
|
28595
|
+
},{}],213:[function(require,module,exports){
|
|
28026
28596
|
arguments[4][23][0].apply(exports,arguments)
|
|
28027
28597
|
},{"dup":23}],214:[function(require,module,exports){
|
|
28028
28598
|
arguments[4][23][0].apply(exports,arguments)
|
|
@@ -28039,6 +28609,14 @@ arguments[4][23][0].apply(exports,arguments)
|
|
|
28039
28609
|
},{"dup":23}],220:[function(require,module,exports){
|
|
28040
28610
|
arguments[4][23][0].apply(exports,arguments)
|
|
28041
28611
|
},{"dup":23}],221:[function(require,module,exports){
|
|
28612
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28613
|
+
},{"dup":23}],222:[function(require,module,exports){
|
|
28614
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28615
|
+
},{"dup":23}],223:[function(require,module,exports){
|
|
28616
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28617
|
+
},{"dup":23}],224:[function(require,module,exports){
|
|
28618
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
28619
|
+
},{"dup":23}],225:[function(require,module,exports){
|
|
28042
28620
|
"use strict";
|
|
28043
28621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28044
28622
|
exports.AggregationType = void 0;
|
|
@@ -28061,7 +28639,7 @@ var AggregationType;
|
|
|
28061
28639
|
AggregationType["AggregateUseAction"] = "AggregateUseAction";
|
|
28062
28640
|
})(AggregationType = exports.AggregationType || (exports.AggregationType = {}));
|
|
28063
28641
|
|
|
28064
|
-
},{}],
|
|
28642
|
+
},{}],226:[function(require,module,exports){
|
|
28065
28643
|
"use strict";
|
|
28066
28644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28067
28645
|
exports.AssetTransactionType = void 0;
|
|
@@ -28101,21 +28679,21 @@ var AssetTransactionType;
|
|
|
28101
28679
|
AssetTransactionType["COAReserveTransaction"] = "COAReserveTransaction";
|
|
28102
28680
|
})(AssetTransactionType = exports.AssetTransactionType || (exports.AssetTransactionType = {}));
|
|
28103
28681
|
|
|
28104
|
-
},{}],
|
|
28682
|
+
},{}],227:[function(require,module,exports){
|
|
28105
28683
|
arguments[4][23][0].apply(exports,arguments)
|
|
28106
|
-
},{"dup":23}],
|
|
28684
|
+
},{"dup":23}],228:[function(require,module,exports){
|
|
28107
28685
|
arguments[4][23][0].apply(exports,arguments)
|
|
28108
|
-
},{"dup":23}],
|
|
28686
|
+
},{"dup":23}],229:[function(require,module,exports){
|
|
28109
28687
|
arguments[4][23][0].apply(exports,arguments)
|
|
28110
|
-
},{"dup":23}],
|
|
28688
|
+
},{"dup":23}],230:[function(require,module,exports){
|
|
28111
28689
|
arguments[4][23][0].apply(exports,arguments)
|
|
28112
|
-
},{"dup":23}],
|
|
28690
|
+
},{"dup":23}],231:[function(require,module,exports){
|
|
28113
28691
|
arguments[4][23][0].apply(exports,arguments)
|
|
28114
|
-
},{"dup":23}],
|
|
28692
|
+
},{"dup":23}],232:[function(require,module,exports){
|
|
28115
28693
|
arguments[4][23][0].apply(exports,arguments)
|
|
28116
|
-
},{"dup":23}],
|
|
28694
|
+
},{"dup":23}],233:[function(require,module,exports){
|
|
28117
28695
|
arguments[4][23][0].apply(exports,arguments)
|
|
28118
|
-
},{"dup":23}],
|
|
28696
|
+
},{"dup":23}],234:[function(require,module,exports){
|
|
28119
28697
|
"use strict";
|
|
28120
28698
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28121
28699
|
exports.CategorySetIdentifier = void 0;
|
|
@@ -28171,7 +28749,7 @@ var CategorySetIdentifier;
|
|
|
28171
28749
|
CategorySetIdentifier["VideoFormatType"] = "VideoFormatType";
|
|
28172
28750
|
})(CategorySetIdentifier = exports.CategorySetIdentifier || (exports.CategorySetIdentifier = {}));
|
|
28173
28751
|
|
|
28174
|
-
},{}],
|
|
28752
|
+
},{}],235:[function(require,module,exports){
|
|
28175
28753
|
"use strict";
|
|
28176
28754
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28177
28755
|
exports.CertificationStatusEnumeration = void 0;
|
|
@@ -28181,11 +28759,11 @@ var CertificationStatusEnumeration;
|
|
|
28181
28759
|
CertificationStatusEnumeration["CertificationInactive"] = "CertificationInactive";
|
|
28182
28760
|
})(CertificationStatusEnumeration = exports.CertificationStatusEnumeration || (exports.CertificationStatusEnumeration = {}));
|
|
28183
28761
|
|
|
28184
|
-
},{}],
|
|
28762
|
+
},{}],236:[function(require,module,exports){
|
|
28185
28763
|
arguments[4][23][0].apply(exports,arguments)
|
|
28186
|
-
},{"dup":23}],
|
|
28764
|
+
},{"dup":23}],237:[function(require,module,exports){
|
|
28187
28765
|
arguments[4][23][0].apply(exports,arguments)
|
|
28188
|
-
},{"dup":23}],
|
|
28766
|
+
},{"dup":23}],238:[function(require,module,exports){
|
|
28189
28767
|
"use strict";
|
|
28190
28768
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28191
28769
|
exports.CreativeWorkType = void 0;
|
|
@@ -28204,15 +28782,15 @@ var CreativeWorkType;
|
|
|
28204
28782
|
CreativeWorkType["WebSite"] = "WebSite";
|
|
28205
28783
|
})(CreativeWorkType = exports.CreativeWorkType || (exports.CreativeWorkType = {}));
|
|
28206
28784
|
|
|
28207
|
-
},{}],
|
|
28785
|
+
},{}],239:[function(require,module,exports){
|
|
28208
28786
|
arguments[4][23][0].apply(exports,arguments)
|
|
28209
|
-
},{"dup":23}],
|
|
28787
|
+
},{"dup":23}],240:[function(require,module,exports){
|
|
28210
28788
|
arguments[4][23][0].apply(exports,arguments)
|
|
28211
|
-
},{"dup":23}],
|
|
28789
|
+
},{"dup":23}],241:[function(require,module,exports){
|
|
28212
28790
|
arguments[4][23][0].apply(exports,arguments)
|
|
28213
|
-
},{"dup":23}],
|
|
28791
|
+
},{"dup":23}],242:[function(require,module,exports){
|
|
28214
28792
|
arguments[4][23][0].apply(exports,arguments)
|
|
28215
|
-
},{"dup":23}],
|
|
28793
|
+
},{"dup":23}],243:[function(require,module,exports){
|
|
28216
28794
|
"use strict";
|
|
28217
28795
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28218
28796
|
exports.AboutIdentifier = void 0;
|
|
@@ -28224,15 +28802,15 @@ var AboutIdentifier;
|
|
|
28224
28802
|
AboutIdentifier["OnEventStatusChanged"] = "OnEventStatusChanged";
|
|
28225
28803
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
28226
28804
|
|
|
28227
|
-
},{}],
|
|
28805
|
+
},{}],244:[function(require,module,exports){
|
|
28228
28806
|
arguments[4][23][0].apply(exports,arguments)
|
|
28229
|
-
},{"dup":23}],
|
|
28807
|
+
},{"dup":23}],245:[function(require,module,exports){
|
|
28230
28808
|
arguments[4][23][0].apply(exports,arguments)
|
|
28231
|
-
},{"dup":23}],
|
|
28809
|
+
},{"dup":23}],246:[function(require,module,exports){
|
|
28232
28810
|
arguments[4][23][0].apply(exports,arguments)
|
|
28233
|
-
},{"dup":23}],
|
|
28811
|
+
},{"dup":23}],247:[function(require,module,exports){
|
|
28234
28812
|
arguments[4][23][0].apply(exports,arguments)
|
|
28235
|
-
},{"dup":23}],
|
|
28813
|
+
},{"dup":23}],248:[function(require,module,exports){
|
|
28236
28814
|
"use strict";
|
|
28237
28815
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28238
28816
|
exports.Video = exports.Text = exports.Multipart = exports.Model = exports.Message = exports.Image = exports.Example = exports.Font = exports.Audio = exports.Application = void 0;
|
|
@@ -28275,9 +28853,9 @@ var Video;
|
|
|
28275
28853
|
(function (Video) {
|
|
28276
28854
|
})(Video = exports.Video || (exports.Video = {}));
|
|
28277
28855
|
|
|
28278
|
-
},{}],
|
|
28856
|
+
},{}],249:[function(require,module,exports){
|
|
28279
28857
|
arguments[4][23][0].apply(exports,arguments)
|
|
28280
|
-
},{"dup":23}],
|
|
28858
|
+
},{"dup":23}],250:[function(require,module,exports){
|
|
28281
28859
|
"use strict";
|
|
28282
28860
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28283
28861
|
exports.ErrorCode = void 0;
|
|
@@ -28300,7 +28878,7 @@ var ErrorCode;
|
|
|
28300
28878
|
ErrorCode["Unknown"] = "Unknown";
|
|
28301
28879
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
28302
28880
|
|
|
28303
|
-
},{}],
|
|
28881
|
+
},{}],251:[function(require,module,exports){
|
|
28304
28882
|
"use strict";
|
|
28305
28883
|
var __extends = (this && this.__extends) || (function () {
|
|
28306
28884
|
var extendStatics = function (d, b) {
|
|
@@ -28346,7 +28924,7 @@ var AlreadyInUseError = /** @class */ (function (_super) {
|
|
|
28346
28924
|
}(chevre_1.ChevreError));
|
|
28347
28925
|
exports.AlreadyInUseError = AlreadyInUseError;
|
|
28348
28926
|
|
|
28349
|
-
},{"../errorCode":
|
|
28927
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],252:[function(require,module,exports){
|
|
28350
28928
|
"use strict";
|
|
28351
28929
|
var __extends = (this && this.__extends) || (function () {
|
|
28352
28930
|
var extendStatics = function (d, b) {
|
|
@@ -28391,7 +28969,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
28391
28969
|
}(chevre_1.ChevreError));
|
|
28392
28970
|
exports.ArgumentError = ArgumentError;
|
|
28393
28971
|
|
|
28394
|
-
},{"../errorCode":
|
|
28972
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],253:[function(require,module,exports){
|
|
28395
28973
|
"use strict";
|
|
28396
28974
|
var __extends = (this && this.__extends) || (function () {
|
|
28397
28975
|
var extendStatics = function (d, b) {
|
|
@@ -28436,7 +29014,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
28436
29014
|
}(chevre_1.ChevreError));
|
|
28437
29015
|
exports.ArgumentNullError = ArgumentNullError;
|
|
28438
29016
|
|
|
28439
|
-
},{"../errorCode":
|
|
29017
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],254:[function(require,module,exports){
|
|
28440
29018
|
"use strict";
|
|
28441
29019
|
var __extends = (this && this.__extends) || (function () {
|
|
28442
29020
|
var extendStatics = function (d, b) {
|
|
@@ -28475,7 +29053,7 @@ var ChevreError = /** @class */ (function (_super) {
|
|
|
28475
29053
|
}(Error));
|
|
28476
29054
|
exports.ChevreError = ChevreError;
|
|
28477
29055
|
|
|
28478
|
-
},{"setprototypeof":
|
|
29056
|
+
},{"setprototypeof":463}],255:[function(require,module,exports){
|
|
28479
29057
|
"use strict";
|
|
28480
29058
|
var __extends = (this && this.__extends) || (function () {
|
|
28481
29059
|
var extendStatics = function (d, b) {
|
|
@@ -28519,7 +29097,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
28519
29097
|
}(chevre_1.ChevreError));
|
|
28520
29098
|
exports.ForbiddenError = ForbiddenError;
|
|
28521
29099
|
|
|
28522
|
-
},{"../errorCode":
|
|
29100
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],256:[function(require,module,exports){
|
|
28523
29101
|
"use strict";
|
|
28524
29102
|
var __extends = (this && this.__extends) || (function () {
|
|
28525
29103
|
var extendStatics = function (d, b) {
|
|
@@ -28563,7 +29141,7 @@ var GatewayTimeoutError = /** @class */ (function (_super) {
|
|
|
28563
29141
|
}(chevre_1.ChevreError));
|
|
28564
29142
|
exports.GatewayTimeoutError = GatewayTimeoutError;
|
|
28565
29143
|
|
|
28566
|
-
},{"../errorCode":
|
|
29144
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],257:[function(require,module,exports){
|
|
28567
29145
|
"use strict";
|
|
28568
29146
|
var __extends = (this && this.__extends) || (function () {
|
|
28569
29147
|
var extendStatics = function (d, b) {
|
|
@@ -28607,7 +29185,7 @@ var InternalError = /** @class */ (function (_super) {
|
|
|
28607
29185
|
}(chevre_1.ChevreError));
|
|
28608
29186
|
exports.InternalError = InternalError;
|
|
28609
29187
|
|
|
28610
|
-
},{"../errorCode":
|
|
29188
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],258:[function(require,module,exports){
|
|
28611
29189
|
"use strict";
|
|
28612
29190
|
var __extends = (this && this.__extends) || (function () {
|
|
28613
29191
|
var extendStatics = function (d, b) {
|
|
@@ -28652,7 +29230,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
28652
29230
|
}(chevre_1.ChevreError));
|
|
28653
29231
|
exports.NotFoundError = NotFoundError;
|
|
28654
29232
|
|
|
28655
|
-
},{"../errorCode":
|
|
29233
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],259:[function(require,module,exports){
|
|
28656
29234
|
"use strict";
|
|
28657
29235
|
var __extends = (this && this.__extends) || (function () {
|
|
28658
29236
|
var extendStatics = function (d, b) {
|
|
@@ -28696,7 +29274,7 @@ var NotImplementedError = /** @class */ (function (_super) {
|
|
|
28696
29274
|
}(chevre_1.ChevreError));
|
|
28697
29275
|
exports.NotImplementedError = NotImplementedError;
|
|
28698
29276
|
|
|
28699
|
-
},{"../errorCode":
|
|
29277
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],260:[function(require,module,exports){
|
|
28700
29278
|
"use strict";
|
|
28701
29279
|
var __extends = (this && this.__extends) || (function () {
|
|
28702
29280
|
var extendStatics = function (d, b) {
|
|
@@ -28740,7 +29318,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
28740
29318
|
}(chevre_1.ChevreError));
|
|
28741
29319
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
28742
29320
|
|
|
28743
|
-
},{"../errorCode":
|
|
29321
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],261:[function(require,module,exports){
|
|
28744
29322
|
"use strict";
|
|
28745
29323
|
var __extends = (this && this.__extends) || (function () {
|
|
28746
29324
|
var extendStatics = function (d, b) {
|
|
@@ -28784,7 +29362,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
28784
29362
|
}(chevre_1.ChevreError));
|
|
28785
29363
|
exports.ServiceUnavailableError = ServiceUnavailableError;
|
|
28786
29364
|
|
|
28787
|
-
},{"../errorCode":
|
|
29365
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],262:[function(require,module,exports){
|
|
28788
29366
|
"use strict";
|
|
28789
29367
|
var __extends = (this && this.__extends) || (function () {
|
|
28790
29368
|
var extendStatics = function (d, b) {
|
|
@@ -28828,7 +29406,7 @@ var UnauthorizedError = /** @class */ (function (_super) {
|
|
|
28828
29406
|
}(chevre_1.ChevreError));
|
|
28829
29407
|
exports.UnauthorizedError = UnauthorizedError;
|
|
28830
29408
|
|
|
28831
|
-
},{"../errorCode":
|
|
29409
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],263:[function(require,module,exports){
|
|
28832
29410
|
"use strict";
|
|
28833
29411
|
var __extends = (this && this.__extends) || (function () {
|
|
28834
29412
|
var extendStatics = function (d, b) {
|
|
@@ -28872,7 +29450,7 @@ var UnknownError = /** @class */ (function (_super) {
|
|
|
28872
29450
|
}(chevre_1.ChevreError));
|
|
28873
29451
|
exports.UnknownError = UnknownError;
|
|
28874
29452
|
|
|
28875
|
-
},{"../errorCode":
|
|
29453
|
+
},{"../errorCode":250,"./chevre":254,"setprototypeof":463}],264:[function(require,module,exports){
|
|
28876
29454
|
"use strict";
|
|
28877
29455
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28878
29456
|
exports.Unknown = exports.Unauthorized = exports.ServiceUnavailable = exports.RateLimitExceeded = exports.NotImplemented = exports.NotFound = exports.Internal = exports.GatewayTimeout = exports.Forbidden = exports.Chevre = exports.ArgumentNull = exports.Argument = exports.AlreadyInUse = void 0;
|
|
@@ -28906,7 +29484,7 @@ Object.defineProperty(exports, "Unauthorized", { enumerable: true, get: function
|
|
|
28906
29484
|
var unknown_1 = require("./error/unknown");
|
|
28907
29485
|
Object.defineProperty(exports, "Unknown", { enumerable: true, get: function () { return unknown_1.UnknownError; } });
|
|
28908
29486
|
|
|
28909
|
-
},{"./error/alreadyInUse":
|
|
29487
|
+
},{"./error/alreadyInUse":251,"./error/argument":252,"./error/argumentNull":253,"./error/chevre":254,"./error/forbidden":255,"./error/gatewayTimeout":256,"./error/internal":257,"./error/notFound":258,"./error/notImplemented":259,"./error/rateLimitExceeded":260,"./error/serviceUnavailable":261,"./error/unauthorized":262,"./error/unknown":263}],265:[function(require,module,exports){
|
|
28910
29488
|
"use strict";
|
|
28911
29489
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28912
29490
|
exports.EventStatusType = void 0;
|
|
@@ -28921,7 +29499,7 @@ var EventStatusType;
|
|
|
28921
29499
|
EventStatusType["EventScheduled"] = "EventScheduled";
|
|
28922
29500
|
})(EventStatusType = exports.EventStatusType || (exports.EventStatusType = {}));
|
|
28923
29501
|
|
|
28924
|
-
},{}],
|
|
29502
|
+
},{}],266:[function(require,module,exports){
|
|
28925
29503
|
"use strict";
|
|
28926
29504
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28927
29505
|
exports.EventType = void 0;
|
|
@@ -28935,17 +29513,17 @@ var EventType;
|
|
|
28935
29513
|
EventType["ScreeningEventSeries"] = "ScreeningEventSeries";
|
|
28936
29514
|
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
28937
29515
|
|
|
28938
|
-
},{}],
|
|
29516
|
+
},{}],267:[function(require,module,exports){
|
|
28939
29517
|
arguments[4][23][0].apply(exports,arguments)
|
|
28940
|
-
},{"dup":23}],
|
|
29518
|
+
},{"dup":23}],268:[function(require,module,exports){
|
|
28941
29519
|
arguments[4][23][0].apply(exports,arguments)
|
|
28942
|
-
},{"dup":23}],
|
|
29520
|
+
},{"dup":23}],269:[function(require,module,exports){
|
|
28943
29521
|
arguments[4][23][0].apply(exports,arguments)
|
|
28944
|
-
},{"dup":23}],
|
|
29522
|
+
},{"dup":23}],270:[function(require,module,exports){
|
|
28945
29523
|
arguments[4][23][0].apply(exports,arguments)
|
|
28946
|
-
},{"dup":23}],
|
|
29524
|
+
},{"dup":23}],271:[function(require,module,exports){
|
|
28947
29525
|
arguments[4][23][0].apply(exports,arguments)
|
|
28948
|
-
},{"dup":23}],
|
|
29526
|
+
},{"dup":23}],272:[function(require,module,exports){
|
|
28949
29527
|
"use strict";
|
|
28950
29528
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28951
29529
|
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.notification = exports.monetaryAmount = exports.merchantReturnPolicy = exports.language = exports.itemAvailability = exports.invoice = exports.identityProvider = exports.iam = exports.eventType = exports.eventStatusType = exports.entryPoint = exports.encodingFormat = exports.eventOffer = exports.event = exports.customer = exports.creativeWorkType = exports.creativeWork = exports.clientUser = exports.CertificationStatusEnumeration = exports.categoryCode = exports.authorization = exports.aggregateOffer = exports.aggregation = exports.advanceBookingRequirement = exports.additionalProperty = exports.accountType = exports.accountTitle = exports.action = exports.actionType = exports.actionStatusType = exports.account = exports.errorCode = exports.errors = exports.waiter = exports.cognito = void 0;
|
|
@@ -29497,9 +30075,9 @@ exports.assetTransactionType = assetTransactionType_1.AssetTransactionType;
|
|
|
29497
30075
|
exports.unitCode = unitCode_1.UnitCode;
|
|
29498
30076
|
exports.unitPriceOffer = UnitPriceOfferFactory;
|
|
29499
30077
|
|
|
29500
|
-
},{"./account":
|
|
30078
|
+
},{"./account":179,"./accountTitle":180,"./accountType":181,"./action/accept/coaOffer":189,"./action/accept/pay":190,"./action/authorize/invoice":191,"./action/authorize/offer/eventService":192,"./action/authorize/offer/moneyTransfer":193,"./action/authorize/offer/product":194,"./action/authorize/paymentMethod/any":195,"./action/authorize/ticketedObject":196,"./action/cancel/coaReserve":197,"./action/cancel/reservation":198,"./action/check/paymentMethod/movieTicket":199,"./action/check/token":200,"./action/consume/use/reservation":201,"./action/interact/confirm/moneyTransfer":202,"./action/interact/confirm/pay":203,"./action/interact/confirm/registerService":204,"./action/interact/confirm/reservation":205,"./action/interact/inform":206,"./action/interact/register/service":207,"./action/reserve":208,"./action/trade/order":209,"./action/trade/pay":210,"./action/trade/refund":211,"./action/transfer/give/pointAward":212,"./action/transfer/moneyTransfer":213,"./action/transfer/return/invoice":214,"./action/transfer/return/moneyTransfer":215,"./action/transfer/return/order":216,"./action/transfer/return/pointAward":217,"./action/transfer/return/reserveTransaction":218,"./action/transfer/send/message/email":219,"./action/transfer/send/order":220,"./action/update/delete/member":221,"./action/update/replace":222,"./actionStatusType":187,"./actionType":188,"./additionalProperty":223,"./advanceBookingRequirement":224,"./aggregation":225,"./assetTransaction/cancelReservation":227,"./assetTransaction/moneyTransfer":228,"./assetTransaction/pay":229,"./assetTransaction/refund":230,"./assetTransaction/registerService":231,"./assetTransaction/reserve":232,"./assetTransactionType":226,"./authorization":233,"./categoryCode":234,"./certificationStatusEnumeration":235,"./clientUser":236,"./cognito":237,"./creativeWork/certification/softwareApplication":239,"./creativeWork/certification/webApplication":240,"./creativeWork/certification/webSite":241,"./creativeWork/comment":242,"./creativeWork/message/email":243,"./creativeWork/movie":244,"./creativeWork/noteDigitalDocument":245,"./creativeWork/softwareApplication/webApplication":246,"./creativeWorkType":238,"./customer":247,"./encodingFormat":248,"./entryPoint":249,"./errorCode":250,"./errors":264,"./event/anyEvent":267,"./event/screeningEvent":268,"./event/screeningEventSeries":269,"./eventStatusType":265,"./eventType":266,"./iam":270,"./identityProvider":271,"./invoice":273,"./itemAvailability":274,"./language":275,"./merchantReturnPolicy":276,"./monetaryAmount":277,"./notification/accountTitle":278,"./notification/categoryCode":279,"./notification/creativeWork":280,"./notification/event":281,"./notification/offer":282,"./notification/offerCatalog":283,"./notification/order":284,"./notification/payAction":285,"./notification/person":286,"./notification/place":287,"./notification/product":288,"./notification/refundAction":289,"./notification/reservation":290,"./notification/transaction":291,"./offer":292,"./offer/aggregateOffer":296,"./offer/eventOffer":297,"./offerCatalog":293,"./offerItemCondition":294,"./offerType":295,"./order":298,"./orderStatus":299,"./organization":300,"./organizationType":301,"./ownershipInfo":302,"./paymentMethod/paymentCard/creditCard":303,"./paymentMethod/paymentCard/movieTicket":304,"./paymentStatusType":305,"./permit":306,"./person":307,"./personType":308,"./place/busStop":310,"./place/movieTheater":311,"./place/screeningRoom":312,"./place/screeningRoomSection":313,"./place/seat":314,"./placeType":309,"./potentialAction":315,"./priceCurrency":316,"./priceSpecification/unitPriceSpecification":318,"./priceSpecificationType":317,"./product":319,"./programMembership":320,"./project":321,"./propertyValue":322,"./propertyValue/locationFeatureSpecification":323,"./qualitativeValue":324,"./quantitativeValue":325,"./recipe":326,"./report/accountingReport":327,"./reservation/busReservation":330,"./reservation/event":331,"./reservationStatusType":328,"./reservationType":329,"./role":332,"./role/organizationRole":333,"./schedule":334,"./seller":335,"./sellerReturnPolicy":336,"./service/paymentService":338,"./service/webAPI":339,"./serviceChannel":337,"./sortType":340,"./task/acceptCOAOffer":343,"./task/accountMoneyTransfer":344,"./task/aggregateOffers":345,"./task/aggregateOnSystem":346,"./task/aggregateScreeningEvent":347,"./task/authorizePayment":348,"./task/cancelAccountMoneyTransfer":349,"./task/cancelMoneyTransfer":350,"./task/cancelPendingReservation":351,"./task/cancelReservation":352,"./task/checkMovieTicket":353,"./task/checkResource":354,"./task/confirmReserveTransaction":355,"./task/createAccountingReport":356,"./task/createEvent":357,"./task/deletePerson":358,"./task/deleteTransaction":359,"./task/handleNotification":360,"./task/importEventCapacitiesFromCOA":361,"./task/importEventsFromCOA":362,"./task/importOffersFromCOA":363,"./task/invalidatePaymentUrl":364,"./task/moneyTransfer":365,"./task/onAuthorizationCreated":366,"./task/onEventChanged":367,"./task/onResourceUpdated":368,"./task/pay":369,"./task/publishPaymentUrl":370,"./task/refund":371,"./task/registerService":372,"./task/reserve":373,"./task/sendEmailMessage":374,"./task/triggerWebhook":375,"./task/useReservation":376,"./task/voidPayment":377,"./taskName":341,"./taskStatus":342,"./thing":378,"./transaction/moneyTransfer":381,"./transaction/placeOrder":382,"./transaction/returnOrder":383,"./transactionStatusType":379,"./transactionType":380,"./trip/busTrip":385,"./tripType":384,"./unitCode":386,"./unitPriceOffer":387,"@waiter/factory":403}],273:[function(require,module,exports){
|
|
29501
30079
|
arguments[4][23][0].apply(exports,arguments)
|
|
29502
|
-
},{"dup":23}],
|
|
30080
|
+
},{"dup":23}],274:[function(require,module,exports){
|
|
29503
30081
|
"use strict";
|
|
29504
30082
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29505
30083
|
exports.ItemAvailability = void 0;
|
|
@@ -29519,9 +30097,9 @@ var ItemAvailability;
|
|
|
29519
30097
|
ItemAvailability["SoldOut"] = "SoldOut";
|
|
29520
30098
|
})(ItemAvailability = exports.ItemAvailability || (exports.ItemAvailability = {}));
|
|
29521
30099
|
|
|
29522
|
-
},{}],
|
|
30100
|
+
},{}],275:[function(require,module,exports){
|
|
29523
30101
|
arguments[4][23][0].apply(exports,arguments)
|
|
29524
|
-
},{"dup":23}],
|
|
30102
|
+
},{"dup":23}],276:[function(require,module,exports){
|
|
29525
30103
|
"use strict";
|
|
29526
30104
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29527
30105
|
exports.MerchantReturnEnumeration = exports.ReturnFeesEnumeration = exports.RefundTypeEnumeration = void 0;
|
|
@@ -29572,15 +30150,7 @@ var MerchantReturnEnumeration;
|
|
|
29572
30150
|
MerchantReturnEnumeration["MerchantReturnUnspecified"] = "MerchantReturnUnspecified";
|
|
29573
30151
|
})(MerchantReturnEnumeration = exports.MerchantReturnEnumeration || (exports.MerchantReturnEnumeration = {}));
|
|
29574
30152
|
|
|
29575
|
-
},{}],
|
|
29576
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
29577
|
-
},{"dup":23}],274:[function(require,module,exports){
|
|
29578
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
29579
|
-
},{"dup":23}],275:[function(require,module,exports){
|
|
29580
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
29581
|
-
},{"dup":23}],276:[function(require,module,exports){
|
|
29582
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
29583
|
-
},{"dup":23}],277:[function(require,module,exports){
|
|
30153
|
+
},{}],277:[function(require,module,exports){
|
|
29584
30154
|
arguments[4][23][0].apply(exports,arguments)
|
|
29585
30155
|
},{"dup":23}],278:[function(require,module,exports){
|
|
29586
30156
|
arguments[4][23][0].apply(exports,arguments)
|
|
@@ -29601,6 +30171,14 @@ arguments[4][23][0].apply(exports,arguments)
|
|
|
29601
30171
|
},{"dup":23}],286:[function(require,module,exports){
|
|
29602
30172
|
arguments[4][23][0].apply(exports,arguments)
|
|
29603
30173
|
},{"dup":23}],287:[function(require,module,exports){
|
|
30174
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30175
|
+
},{"dup":23}],288:[function(require,module,exports){
|
|
30176
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30177
|
+
},{"dup":23}],289:[function(require,module,exports){
|
|
30178
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30179
|
+
},{"dup":23}],290:[function(require,module,exports){
|
|
30180
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30181
|
+
},{"dup":23}],291:[function(require,module,exports){
|
|
29604
30182
|
"use strict";
|
|
29605
30183
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29606
30184
|
// id: string;
|
|
@@ -29612,11 +30190,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29612
30190
|
// ...(transaction.endDate !== undefined) ? { endDate: transaction.endDate } : undefined
|
|
29613
30191
|
// }
|
|
29614
30192
|
|
|
29615
|
-
},{}],
|
|
30193
|
+
},{}],292:[function(require,module,exports){
|
|
29616
30194
|
arguments[4][23][0].apply(exports,arguments)
|
|
29617
|
-
},{"dup":23}],
|
|
30195
|
+
},{"dup":23}],293:[function(require,module,exports){
|
|
29618
30196
|
arguments[4][23][0].apply(exports,arguments)
|
|
29619
|
-
},{"dup":23}],
|
|
30197
|
+
},{"dup":23}],294:[function(require,module,exports){
|
|
29620
30198
|
"use strict";
|
|
29621
30199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29622
30200
|
exports.OfferItemCondition = void 0;
|
|
@@ -29629,7 +30207,7 @@ var OfferItemCondition;
|
|
|
29629
30207
|
OfferItemCondition["NewCondition"] = "NewCondition";
|
|
29630
30208
|
})(OfferItemCondition = exports.OfferItemCondition || (exports.OfferItemCondition = {}));
|
|
29631
30209
|
|
|
29632
|
-
},{}],
|
|
30210
|
+
},{}],295:[function(require,module,exports){
|
|
29633
30211
|
"use strict";
|
|
29634
30212
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29635
30213
|
exports.OfferType = void 0;
|
|
@@ -29642,11 +30220,11 @@ var OfferType;
|
|
|
29642
30220
|
OfferType["AggregateOffer"] = "AggregateOffer";
|
|
29643
30221
|
})(OfferType = exports.OfferType || (exports.OfferType = {}));
|
|
29644
30222
|
|
|
29645
|
-
},{}],
|
|
30223
|
+
},{}],296:[function(require,module,exports){
|
|
29646
30224
|
arguments[4][23][0].apply(exports,arguments)
|
|
29647
|
-
},{"dup":23}],
|
|
30225
|
+
},{"dup":23}],297:[function(require,module,exports){
|
|
29648
30226
|
arguments[4][23][0].apply(exports,arguments)
|
|
29649
|
-
},{"dup":23}],
|
|
30227
|
+
},{"dup":23}],298:[function(require,module,exports){
|
|
29650
30228
|
"use strict";
|
|
29651
30229
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29652
30230
|
exports.OrderType = void 0;
|
|
@@ -29655,7 +30233,7 @@ var OrderType;
|
|
|
29655
30233
|
OrderType["Order"] = "Order";
|
|
29656
30234
|
})(OrderType = exports.OrderType || (exports.OrderType = {}));
|
|
29657
30235
|
|
|
29658
|
-
},{}],
|
|
30236
|
+
},{}],299:[function(require,module,exports){
|
|
29659
30237
|
"use strict";
|
|
29660
30238
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29661
30239
|
exports.OrderStatus = void 0;
|
|
@@ -29674,9 +30252,9 @@ var OrderStatus;
|
|
|
29674
30252
|
OrderStatus["OrderReturned"] = "OrderReturned";
|
|
29675
30253
|
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));
|
|
29676
30254
|
|
|
29677
|
-
},{}],
|
|
30255
|
+
},{}],300:[function(require,module,exports){
|
|
29678
30256
|
arguments[4][23][0].apply(exports,arguments)
|
|
29679
|
-
},{"dup":23}],
|
|
30257
|
+
},{"dup":23}],301:[function(require,module,exports){
|
|
29680
30258
|
"use strict";
|
|
29681
30259
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29682
30260
|
exports.OrganizationType = void 0;
|
|
@@ -29701,13 +30279,13 @@ var OrganizationType;
|
|
|
29701
30279
|
OrganizationType["Project"] = "Project";
|
|
29702
30280
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
29703
30281
|
|
|
29704
|
-
},{}],
|
|
30282
|
+
},{}],302:[function(require,module,exports){
|
|
29705
30283
|
arguments[4][23][0].apply(exports,arguments)
|
|
29706
|
-
},{"dup":23}],
|
|
30284
|
+
},{"dup":23}],303:[function(require,module,exports){
|
|
29707
30285
|
arguments[4][23][0].apply(exports,arguments)
|
|
29708
|
-
},{"dup":23}],
|
|
30286
|
+
},{"dup":23}],304:[function(require,module,exports){
|
|
29709
30287
|
arguments[4][23][0].apply(exports,arguments)
|
|
29710
|
-
},{"dup":23}],
|
|
30288
|
+
},{"dup":23}],305:[function(require,module,exports){
|
|
29711
30289
|
"use strict";
|
|
29712
30290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29713
30291
|
exports.PaymentStatusType = void 0;
|
|
@@ -29723,7 +30301,7 @@ var PaymentStatusType;
|
|
|
29723
30301
|
PaymentStatusType["PaymentPastDue"] = "PaymentPastDue";
|
|
29724
30302
|
})(PaymentStatusType = exports.PaymentStatusType || (exports.PaymentStatusType = {}));
|
|
29725
30303
|
|
|
29726
|
-
},{}],
|
|
30304
|
+
},{}],306:[function(require,module,exports){
|
|
29727
30305
|
"use strict";
|
|
29728
30306
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29729
30307
|
exports.PermitType = void 0;
|
|
@@ -29732,9 +30310,9 @@ var PermitType;
|
|
|
29732
30310
|
PermitType["Permit"] = "Permit";
|
|
29733
30311
|
})(PermitType = exports.PermitType || (exports.PermitType = {}));
|
|
29734
30312
|
|
|
29735
|
-
},{}],
|
|
30313
|
+
},{}],307:[function(require,module,exports){
|
|
29736
30314
|
arguments[4][23][0].apply(exports,arguments)
|
|
29737
|
-
},{"dup":23}],
|
|
30315
|
+
},{"dup":23}],308:[function(require,module,exports){
|
|
29738
30316
|
"use strict";
|
|
29739
30317
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29740
30318
|
exports.PersonType = void 0;
|
|
@@ -29746,7 +30324,7 @@ var PersonType;
|
|
|
29746
30324
|
PersonType["Person"] = "Person";
|
|
29747
30325
|
})(PersonType = exports.PersonType || (exports.PersonType = {}));
|
|
29748
30326
|
|
|
29749
|
-
},{}],
|
|
30327
|
+
},{}],309:[function(require,module,exports){
|
|
29750
30328
|
"use strict";
|
|
29751
30329
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29752
30330
|
exports.PlaceType = void 0;
|
|
@@ -29764,19 +30342,19 @@ var PlaceType;
|
|
|
29764
30342
|
PlaceType["Seat"] = "Seat";
|
|
29765
30343
|
})(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
|
|
29766
30344
|
|
|
29767
|
-
},{}],
|
|
30345
|
+
},{}],310:[function(require,module,exports){
|
|
29768
30346
|
arguments[4][23][0].apply(exports,arguments)
|
|
29769
|
-
},{"dup":23}],
|
|
30347
|
+
},{"dup":23}],311:[function(require,module,exports){
|
|
29770
30348
|
arguments[4][23][0].apply(exports,arguments)
|
|
29771
|
-
},{"dup":23}],
|
|
30349
|
+
},{"dup":23}],312:[function(require,module,exports){
|
|
29772
30350
|
arguments[4][23][0].apply(exports,arguments)
|
|
29773
|
-
},{"dup":23}],
|
|
30351
|
+
},{"dup":23}],313:[function(require,module,exports){
|
|
29774
30352
|
arguments[4][23][0].apply(exports,arguments)
|
|
29775
|
-
},{"dup":23}],
|
|
30353
|
+
},{"dup":23}],314:[function(require,module,exports){
|
|
29776
30354
|
arguments[4][23][0].apply(exports,arguments)
|
|
29777
|
-
},{"dup":23}],
|
|
30355
|
+
},{"dup":23}],315:[function(require,module,exports){
|
|
29778
30356
|
arguments[4][23][0].apply(exports,arguments)
|
|
29779
|
-
},{"dup":23}],
|
|
30357
|
+
},{"dup":23}],316:[function(require,module,exports){
|
|
29780
30358
|
"use strict";
|
|
29781
30359
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29782
30360
|
exports.PriceCurrency = void 0;
|
|
@@ -29790,7 +30368,7 @@ var PriceCurrency;
|
|
|
29790
30368
|
PriceCurrency["JPY"] = "JPY";
|
|
29791
30369
|
})(PriceCurrency = exports.PriceCurrency || (exports.PriceCurrency = {}));
|
|
29792
30370
|
|
|
29793
|
-
},{}],
|
|
30371
|
+
},{}],317:[function(require,module,exports){
|
|
29794
30372
|
"use strict";
|
|
29795
30373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29796
30374
|
exports.PriceSpecificationType = void 0;
|
|
@@ -29821,9 +30399,9 @@ var PriceSpecificationType;
|
|
|
29821
30399
|
PriceSpecificationType["UnitPriceSpecification"] = "UnitPriceSpecification";
|
|
29822
30400
|
})(PriceSpecificationType = exports.PriceSpecificationType || (exports.PriceSpecificationType = {}));
|
|
29823
30401
|
|
|
29824
|
-
},{}],
|
|
30402
|
+
},{}],318:[function(require,module,exports){
|
|
29825
30403
|
arguments[4][23][0].apply(exports,arguments)
|
|
29826
|
-
},{"dup":23}],
|
|
30404
|
+
},{"dup":23}],319:[function(require,module,exports){
|
|
29827
30405
|
"use strict";
|
|
29828
30406
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29829
30407
|
exports.ProductType = void 0;
|
|
@@ -29854,7 +30432,7 @@ var ProductType;
|
|
|
29854
30432
|
ProductType["Transportation"] = "Transportation";
|
|
29855
30433
|
})(ProductType = exports.ProductType || (exports.ProductType = {}));
|
|
29856
30434
|
|
|
29857
|
-
},{}],
|
|
30435
|
+
},{}],320:[function(require,module,exports){
|
|
29858
30436
|
"use strict";
|
|
29859
30437
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29860
30438
|
exports.ProgramMembershipType = void 0;
|
|
@@ -29863,9 +30441,9 @@ var ProgramMembershipType;
|
|
|
29863
30441
|
ProgramMembershipType["ProgramMembership"] = "ProgramMembership";
|
|
29864
30442
|
})(ProgramMembershipType = exports.ProgramMembershipType || (exports.ProgramMembershipType = {}));
|
|
29865
30443
|
|
|
29866
|
-
},{}],
|
|
30444
|
+
},{}],321:[function(require,module,exports){
|
|
29867
30445
|
arguments[4][23][0].apply(exports,arguments)
|
|
29868
|
-
},{"dup":23}],
|
|
30446
|
+
},{"dup":23}],322:[function(require,module,exports){
|
|
29869
30447
|
"use strict";
|
|
29870
30448
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29871
30449
|
exports.PropertyValueType = void 0;
|
|
@@ -29874,11 +30452,11 @@ var PropertyValueType;
|
|
|
29874
30452
|
PropertyValueType["LocationFeatureSpecification"] = "LocationFeatureSpecification";
|
|
29875
30453
|
})(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
|
|
29876
30454
|
|
|
29877
|
-
},{}],
|
|
30455
|
+
},{}],323:[function(require,module,exports){
|
|
29878
30456
|
arguments[4][23][0].apply(exports,arguments)
|
|
29879
|
-
},{"dup":23}],
|
|
30457
|
+
},{"dup":23}],324:[function(require,module,exports){
|
|
29880
30458
|
arguments[4][23][0].apply(exports,arguments)
|
|
29881
|
-
},{"dup":23}],
|
|
30459
|
+
},{"dup":23}],325:[function(require,module,exports){
|
|
29882
30460
|
"use strict";
|
|
29883
30461
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29884
30462
|
exports.StringValue = void 0;
|
|
@@ -29887,7 +30465,7 @@ var StringValue;
|
|
|
29887
30465
|
StringValue["Infinity"] = "Infinity";
|
|
29888
30466
|
})(StringValue = exports.StringValue || (exports.StringValue = {}));
|
|
29889
30467
|
|
|
29890
|
-
},{}],
|
|
30468
|
+
},{}],326:[function(require,module,exports){
|
|
29891
30469
|
"use strict";
|
|
29892
30470
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29893
30471
|
exports.StepIdentifier = exports.RecipeCategory = void 0;
|
|
@@ -29925,9 +30503,9 @@ var StepIdentifier;
|
|
|
29925
30503
|
StepIdentifier["sendMultiple"] = "sendMultiple";
|
|
29926
30504
|
})(StepIdentifier = exports.StepIdentifier || (exports.StepIdentifier = {}));
|
|
29927
30505
|
|
|
29928
|
-
},{}],
|
|
30506
|
+
},{}],327:[function(require,module,exports){
|
|
29929
30507
|
arguments[4][23][0].apply(exports,arguments)
|
|
29930
|
-
},{"dup":23}],
|
|
30508
|
+
},{"dup":23}],328:[function(require,module,exports){
|
|
29931
30509
|
"use strict";
|
|
29932
30510
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29933
30511
|
exports.ReservationStatusType = void 0;
|
|
@@ -29954,7 +30532,7 @@ var ReservationStatusType;
|
|
|
29954
30532
|
ReservationStatusType["ReservationPending"] = "ReservationPending";
|
|
29955
30533
|
})(ReservationStatusType = exports.ReservationStatusType || (exports.ReservationStatusType = {}));
|
|
29956
30534
|
|
|
29957
|
-
},{}],
|
|
30535
|
+
},{}],329:[function(require,module,exports){
|
|
29958
30536
|
"use strict";
|
|
29959
30537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29960
30538
|
exports.ReservationType = void 0;
|
|
@@ -29968,11 +30546,11 @@ var ReservationType;
|
|
|
29968
30546
|
ReservationType["ReservationPackage"] = "ReservationPackage";
|
|
29969
30547
|
})(ReservationType = exports.ReservationType || (exports.ReservationType = {}));
|
|
29970
30548
|
|
|
29971
|
-
},{}],
|
|
30549
|
+
},{}],330:[function(require,module,exports){
|
|
29972
30550
|
arguments[4][23][0].apply(exports,arguments)
|
|
29973
|
-
},{"dup":23}],
|
|
30551
|
+
},{"dup":23}],331:[function(require,module,exports){
|
|
29974
30552
|
arguments[4][23][0].apply(exports,arguments)
|
|
29975
|
-
},{"dup":23}],
|
|
30553
|
+
},{"dup":23}],332:[function(require,module,exports){
|
|
29976
30554
|
"use strict";
|
|
29977
30555
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29978
30556
|
exports.RoleType = void 0;
|
|
@@ -29981,7 +30559,7 @@ var RoleType;
|
|
|
29981
30559
|
RoleType["OrganizationRole"] = "OrganizationRole";
|
|
29982
30560
|
})(RoleType = exports.RoleType || (exports.RoleType = {}));
|
|
29983
30561
|
|
|
29984
|
-
},{}],
|
|
30562
|
+
},{}],333:[function(require,module,exports){
|
|
29985
30563
|
"use strict";
|
|
29986
30564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29987
30565
|
exports.RoleName = void 0;
|
|
@@ -30043,7 +30621,7 @@ var RoleName;
|
|
|
30043
30621
|
RoleName["AdminInventoryManager"] = "admin.inventoryManager";
|
|
30044
30622
|
})(RoleName = exports.RoleName || (exports.RoleName = {}));
|
|
30045
30623
|
|
|
30046
|
-
},{}],
|
|
30624
|
+
},{}],334:[function(require,module,exports){
|
|
30047
30625
|
"use strict";
|
|
30048
30626
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30049
30627
|
// export interface ISchedule4ttts extends Pick<IEventWithSchedule, 'id' | 'offers' | 'project' | 'superEvent'> {
|
|
@@ -30072,13 +30650,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
30072
30650
|
// days: number;
|
|
30073
30651
|
// }
|
|
30074
30652
|
|
|
30075
|
-
},{}],
|
|
30653
|
+
},{}],335:[function(require,module,exports){
|
|
30076
30654
|
arguments[4][23][0].apply(exports,arguments)
|
|
30077
|
-
},{"dup":23}],
|
|
30655
|
+
},{"dup":23}],336:[function(require,module,exports){
|
|
30078
30656
|
arguments[4][23][0].apply(exports,arguments)
|
|
30079
|
-
},{"dup":23}],
|
|
30657
|
+
},{"dup":23}],337:[function(require,module,exports){
|
|
30080
30658
|
arguments[4][23][0].apply(exports,arguments)
|
|
30081
|
-
},{"dup":23}],
|
|
30659
|
+
},{"dup":23}],338:[function(require,module,exports){
|
|
30082
30660
|
"use strict";
|
|
30083
30661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30084
30662
|
exports.PaymentServiceType = void 0;
|
|
@@ -30090,7 +30668,7 @@ var PaymentServiceType;
|
|
|
30090
30668
|
PaymentServiceType["PaymentCard"] = "PaymentCard";
|
|
30091
30669
|
})(PaymentServiceType = exports.PaymentServiceType || (exports.PaymentServiceType = {}));
|
|
30092
30670
|
|
|
30093
|
-
},{}],
|
|
30671
|
+
},{}],339:[function(require,module,exports){
|
|
30094
30672
|
"use strict";
|
|
30095
30673
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30096
30674
|
exports.Identifier = void 0;
|
|
@@ -30100,7 +30678,7 @@ var Identifier;
|
|
|
30100
30678
|
Identifier["Chevre"] = "Chevre";
|
|
30101
30679
|
})(Identifier = exports.Identifier || (exports.Identifier = {}));
|
|
30102
30680
|
|
|
30103
|
-
},{}],
|
|
30681
|
+
},{}],340:[function(require,module,exports){
|
|
30104
30682
|
"use strict";
|
|
30105
30683
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30106
30684
|
exports.SortType = void 0;
|
|
@@ -30113,7 +30691,7 @@ var SortType;
|
|
|
30113
30691
|
SortType[SortType["Descending"] = -1] = "Descending";
|
|
30114
30692
|
})(SortType = exports.SortType || (exports.SortType = {}));
|
|
30115
30693
|
|
|
30116
|
-
},{}],
|
|
30694
|
+
},{}],341:[function(require,module,exports){
|
|
30117
30695
|
"use strict";
|
|
30118
30696
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30119
30697
|
exports.TaskName = void 0;
|
|
@@ -30259,7 +30837,7 @@ var TaskName;
|
|
|
30259
30837
|
TaskName["VoidReserveTransaction"] = "voidReserveTransaction";
|
|
30260
30838
|
})(TaskName = exports.TaskName || (exports.TaskName = {}));
|
|
30261
30839
|
|
|
30262
|
-
},{}],
|
|
30840
|
+
},{}],342:[function(require,module,exports){
|
|
30263
30841
|
"use strict";
|
|
30264
30842
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30265
30843
|
exports.TaskStatus = void 0;
|
|
@@ -30291,15 +30869,7 @@ var TaskStatus;
|
|
|
30291
30869
|
TaskStatus["Expired"] = "Expired";
|
|
30292
30870
|
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
30293
30871
|
|
|
30294
|
-
},{}],
|
|
30295
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30296
|
-
},{"dup":23}],340:[function(require,module,exports){
|
|
30297
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30298
|
-
},{"dup":23}],341:[function(require,module,exports){
|
|
30299
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30300
|
-
},{"dup":23}],342:[function(require,module,exports){
|
|
30301
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30302
|
-
},{"dup":23}],343:[function(require,module,exports){
|
|
30872
|
+
},{}],343:[function(require,module,exports){
|
|
30303
30873
|
arguments[4][23][0].apply(exports,arguments)
|
|
30304
30874
|
},{"dup":23}],344:[function(require,module,exports){
|
|
30305
30875
|
arguments[4][23][0].apply(exports,arguments)
|
|
@@ -30324,6 +30894,14 @@ arguments[4][23][0].apply(exports,arguments)
|
|
|
30324
30894
|
},{"dup":23}],354:[function(require,module,exports){
|
|
30325
30895
|
arguments[4][23][0].apply(exports,arguments)
|
|
30326
30896
|
},{"dup":23}],355:[function(require,module,exports){
|
|
30897
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30898
|
+
},{"dup":23}],356:[function(require,module,exports){
|
|
30899
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30900
|
+
},{"dup":23}],357:[function(require,module,exports){
|
|
30901
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30902
|
+
},{"dup":23}],358:[function(require,module,exports){
|
|
30903
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30904
|
+
},{"dup":23}],359:[function(require,module,exports){
|
|
30327
30905
|
"use strict";
|
|
30328
30906
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30329
30907
|
exports.SpecifyingMethod = void 0;
|
|
@@ -30336,15 +30914,7 @@ var SpecifyingMethod;
|
|
|
30336
30914
|
SpecifyingMethod["AgentId"] = "AgentId";
|
|
30337
30915
|
})(SpecifyingMethod = exports.SpecifyingMethod || (exports.SpecifyingMethod = {}));
|
|
30338
30916
|
|
|
30339
|
-
},{}],
|
|
30340
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30341
|
-
},{"dup":23}],357:[function(require,module,exports){
|
|
30342
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30343
|
-
},{"dup":23}],358:[function(require,module,exports){
|
|
30344
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30345
|
-
},{"dup":23}],359:[function(require,module,exports){
|
|
30346
|
-
arguments[4][23][0].apply(exports,arguments)
|
|
30347
|
-
},{"dup":23}],360:[function(require,module,exports){
|
|
30917
|
+
},{}],360:[function(require,module,exports){
|
|
30348
30918
|
arguments[4][23][0].apply(exports,arguments)
|
|
30349
30919
|
},{"dup":23}],361:[function(require,module,exports){
|
|
30350
30920
|
arguments[4][23][0].apply(exports,arguments)
|
|
@@ -30375,6 +30945,14 @@ arguments[4][23][0].apply(exports,arguments)
|
|
|
30375
30945
|
},{"dup":23}],374:[function(require,module,exports){
|
|
30376
30946
|
arguments[4][23][0].apply(exports,arguments)
|
|
30377
30947
|
},{"dup":23}],375:[function(require,module,exports){
|
|
30948
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30949
|
+
},{"dup":23}],376:[function(require,module,exports){
|
|
30950
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30951
|
+
},{"dup":23}],377:[function(require,module,exports){
|
|
30952
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30953
|
+
},{"dup":23}],378:[function(require,module,exports){
|
|
30954
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
30955
|
+
},{"dup":23}],379:[function(require,module,exports){
|
|
30378
30956
|
"use strict";
|
|
30379
30957
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30380
30958
|
exports.TransactionStatusType = void 0;
|
|
@@ -30389,7 +30967,7 @@ var TransactionStatusType;
|
|
|
30389
30967
|
TransactionStatusType["Expired"] = "Expired";
|
|
30390
30968
|
})(TransactionStatusType = exports.TransactionStatusType || (exports.TransactionStatusType = {}));
|
|
30391
30969
|
|
|
30392
|
-
},{}],
|
|
30970
|
+
},{}],380:[function(require,module,exports){
|
|
30393
30971
|
"use strict";
|
|
30394
30972
|
/**
|
|
30395
30973
|
* 取引タイプ
|
|
@@ -30412,11 +30990,11 @@ var TransactionType;
|
|
|
30412
30990
|
TransactionType["ReturnOrder"] = "ReturnOrder";
|
|
30413
30991
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
30414
30992
|
|
|
30415
|
-
},{}],
|
|
30993
|
+
},{}],381:[function(require,module,exports){
|
|
30416
30994
|
arguments[4][23][0].apply(exports,arguments)
|
|
30417
|
-
},{"dup":23}],
|
|
30995
|
+
},{"dup":23}],382:[function(require,module,exports){
|
|
30418
30996
|
arguments[4][23][0].apply(exports,arguments)
|
|
30419
|
-
},{"dup":23}],
|
|
30997
|
+
},{"dup":23}],383:[function(require,module,exports){
|
|
30420
30998
|
"use strict";
|
|
30421
30999
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30422
31000
|
exports.Reason = void 0;
|
|
@@ -30435,7 +31013,7 @@ var Reason;
|
|
|
30435
31013
|
Reason["Seller"] = "Seller";
|
|
30436
31014
|
})(Reason = exports.Reason || (exports.Reason = {}));
|
|
30437
31015
|
|
|
30438
|
-
},{}],
|
|
31016
|
+
},{}],384:[function(require,module,exports){
|
|
30439
31017
|
"use strict";
|
|
30440
31018
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30441
31019
|
exports.TripType = void 0;
|
|
@@ -30448,9 +31026,9 @@ var TripType;
|
|
|
30448
31026
|
TripType["Trip"] = "Trip";
|
|
30449
31027
|
})(TripType = exports.TripType || (exports.TripType = {}));
|
|
30450
31028
|
|
|
30451
|
-
},{}],
|
|
31029
|
+
},{}],385:[function(require,module,exports){
|
|
30452
31030
|
arguments[4][23][0].apply(exports,arguments)
|
|
30453
|
-
},{"dup":23}],
|
|
31031
|
+
},{"dup":23}],386:[function(require,module,exports){
|
|
30454
31032
|
"use strict";
|
|
30455
31033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30456
31034
|
exports.UnitCode = void 0;
|
|
@@ -30477,11 +31055,11 @@ var UnitCode;
|
|
|
30477
31055
|
UnitCode["Sec"] = "SEC";
|
|
30478
31056
|
})(UnitCode = exports.UnitCode || (exports.UnitCode = {}));
|
|
30479
31057
|
|
|
30480
|
-
},{}],
|
|
31058
|
+
},{}],387:[function(require,module,exports){
|
|
30481
31059
|
arguments[4][23][0].apply(exports,arguments)
|
|
30482
|
-
},{"dup":23}],
|
|
31060
|
+
},{"dup":23}],388:[function(require,module,exports){
|
|
30483
31061
|
arguments[4][23][0].apply(exports,arguments)
|
|
30484
|
-
},{"dup":23}],
|
|
31062
|
+
},{"dup":23}],389:[function(require,module,exports){
|
|
30485
31063
|
"use strict";
|
|
30486
31064
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30487
31065
|
/**
|
|
@@ -30500,7 +31078,7 @@ var ErrorCode;
|
|
|
30500
31078
|
ErrorCode["Unauthorized"] = "Unauthorized";
|
|
30501
31079
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
30502
31080
|
|
|
30503
|
-
},{}],
|
|
31081
|
+
},{}],390:[function(require,module,exports){
|
|
30504
31082
|
"use strict";
|
|
30505
31083
|
var __extends = (this && this.__extends) || (function () {
|
|
30506
31084
|
var extendStatics = function (d, b) {
|
|
@@ -30541,7 +31119,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
30541
31119
|
}(waiter_1.WaiterError));
|
|
30542
31120
|
exports.ArgumentError = ArgumentError;
|
|
30543
31121
|
|
|
30544
|
-
},{"../errorCode":
|
|
31122
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],391:[function(require,module,exports){
|
|
30545
31123
|
"use strict";
|
|
30546
31124
|
var __extends = (this && this.__extends) || (function () {
|
|
30547
31125
|
var extendStatics = function (d, b) {
|
|
@@ -30582,7 +31160,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
30582
31160
|
}(waiter_1.WaiterError));
|
|
30583
31161
|
exports.ArgumentNullError = ArgumentNullError;
|
|
30584
31162
|
|
|
30585
|
-
},{"../errorCode":
|
|
31163
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],392:[function(require,module,exports){
|
|
30586
31164
|
"use strict";
|
|
30587
31165
|
var __extends = (this && this.__extends) || (function () {
|
|
30588
31166
|
var extendStatics = function (d, b) {
|
|
@@ -30622,7 +31200,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
30622
31200
|
}(waiter_1.WaiterError));
|
|
30623
31201
|
exports.ForbiddenError = ForbiddenError;
|
|
30624
31202
|
|
|
30625
|
-
},{"../errorCode":
|
|
31203
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],393:[function(require,module,exports){
|
|
30626
31204
|
"use strict";
|
|
30627
31205
|
var __extends = (this && this.__extends) || (function () {
|
|
30628
31206
|
var extendStatics = function (d, b) {
|
|
@@ -30663,7 +31241,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
30663
31241
|
}(waiter_1.WaiterError));
|
|
30664
31242
|
exports.NotFoundError = NotFoundError;
|
|
30665
31243
|
|
|
30666
|
-
},{"../errorCode":
|
|
31244
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],394:[function(require,module,exports){
|
|
30667
31245
|
"use strict";
|
|
30668
31246
|
var __extends = (this && this.__extends) || (function () {
|
|
30669
31247
|
var extendStatics = function (d, b) {
|
|
@@ -30703,7 +31281,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
30703
31281
|
}(waiter_1.WaiterError));
|
|
30704
31282
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
30705
31283
|
|
|
30706
|
-
},{"../errorCode":
|
|
31284
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],395:[function(require,module,exports){
|
|
30707
31285
|
"use strict";
|
|
30708
31286
|
var __extends = (this && this.__extends) || (function () {
|
|
30709
31287
|
var extendStatics = function (d, b) {
|
|
@@ -30743,7 +31321,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
30743
31321
|
}(waiter_1.WaiterError));
|
|
30744
31322
|
exports.ServiceUnavailableError = ServiceUnavailableError;
|
|
30745
31323
|
|
|
30746
|
-
},{"../errorCode":
|
|
31324
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],396:[function(require,module,exports){
|
|
30747
31325
|
"use strict";
|
|
30748
31326
|
var __extends = (this && this.__extends) || (function () {
|
|
30749
31327
|
var extendStatics = function (d, b) {
|
|
@@ -30783,7 +31361,7 @@ var UnauthorizedError = /** @class */ (function (_super) {
|
|
|
30783
31361
|
}(waiter_1.WaiterError));
|
|
30784
31362
|
exports.UnauthorizedError = UnauthorizedError;
|
|
30785
31363
|
|
|
30786
|
-
},{"../errorCode":
|
|
31364
|
+
},{"../errorCode":389,"./waiter":397,"setprototypeof":463}],397:[function(require,module,exports){
|
|
30787
31365
|
"use strict";
|
|
30788
31366
|
var __extends = (this && this.__extends) || (function () {
|
|
30789
31367
|
var extendStatics = function (d, b) {
|
|
@@ -30816,7 +31394,7 @@ var WaiterError = /** @class */ (function (_super) {
|
|
|
30816
31394
|
}(Error));
|
|
30817
31395
|
exports.WaiterError = WaiterError;
|
|
30818
31396
|
|
|
30819
|
-
},{}],
|
|
31397
|
+
},{}],398:[function(require,module,exports){
|
|
30820
31398
|
"use strict";
|
|
30821
31399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30822
31400
|
/**
|
|
@@ -30839,15 +31417,15 @@ exports.Unauthorized = unauthorized_1.UnauthorizedError;
|
|
|
30839
31417
|
var waiter_1 = require("./error/waiter");
|
|
30840
31418
|
exports.Waiter = waiter_1.WaiterError;
|
|
30841
31419
|
|
|
30842
|
-
},{"./error/argument":
|
|
31420
|
+
},{"./error/argument":390,"./error/argumentNull":391,"./error/forbidden":392,"./error/notFound":393,"./error/rateLimitExceeded":394,"./error/serviceUnavailable":395,"./error/unauthorized":396,"./error/waiter":397}],399:[function(require,module,exports){
|
|
30843
31421
|
arguments[4][23][0].apply(exports,arguments)
|
|
30844
|
-
},{"dup":23}],
|
|
31422
|
+
},{"dup":23}],400:[function(require,module,exports){
|
|
30845
31423
|
arguments[4][23][0].apply(exports,arguments)
|
|
30846
|
-
},{"dup":23}],
|
|
31424
|
+
},{"dup":23}],401:[function(require,module,exports){
|
|
30847
31425
|
arguments[4][23][0].apply(exports,arguments)
|
|
30848
|
-
},{"dup":23}],
|
|
31426
|
+
},{"dup":23}],402:[function(require,module,exports){
|
|
30849
31427
|
arguments[4][23][0].apply(exports,arguments)
|
|
30850
|
-
},{"dup":23}],
|
|
31428
|
+
},{"dup":23}],403:[function(require,module,exports){
|
|
30851
31429
|
"use strict";
|
|
30852
31430
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30853
31431
|
/**
|
|
@@ -30868,7 +31446,7 @@ exports.rule = rule;
|
|
|
30868
31446
|
var ruleSet = require("./factory/ruleSet");
|
|
30869
31447
|
exports.ruleSet = ruleSet;
|
|
30870
31448
|
|
|
30871
|
-
},{"./factory/client":
|
|
31449
|
+
},{"./factory/client":388,"./factory/errorCode":389,"./factory/errors":398,"./factory/passport":399,"./factory/project":400,"./factory/rule":401,"./factory/ruleSet":402}],404:[function(require,module,exports){
|
|
30872
31450
|
'use strict'
|
|
30873
31451
|
|
|
30874
31452
|
exports.byteLength = byteLength
|
|
@@ -31020,9 +31598,9 @@ function fromByteArray (uint8) {
|
|
|
31020
31598
|
return parts.join('')
|
|
31021
31599
|
}
|
|
31022
31600
|
|
|
31023
|
-
},{}],
|
|
31601
|
+
},{}],405:[function(require,module,exports){
|
|
31024
31602
|
|
|
31025
|
-
},{}],
|
|
31603
|
+
},{}],406:[function(require,module,exports){
|
|
31026
31604
|
(function (Buffer){
|
|
31027
31605
|
/*!
|
|
31028
31606
|
* The buffer module from node.js, for the browser.
|
|
@@ -32803,7 +33381,7 @@ function numberIsNaN (obj) {
|
|
|
32803
33381
|
}
|
|
32804
33382
|
|
|
32805
33383
|
}).call(this,require("buffer").Buffer)
|
|
32806
|
-
},{"base64-js":
|
|
33384
|
+
},{"base64-js":404,"buffer":406,"ieee754":442}],407:[function(require,module,exports){
|
|
32807
33385
|
'use strict';
|
|
32808
33386
|
|
|
32809
33387
|
var bind = require('function-bind');
|
|
@@ -32815,19 +33393,19 @@ var $reflectApply = require('./reflectApply');
|
|
|
32815
33393
|
/** @type {import('./actualApply')} */
|
|
32816
33394
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
32817
33395
|
|
|
32818
|
-
},{"./functionApply":
|
|
33396
|
+
},{"./functionApply":408,"./functionCall":409,"./reflectApply":411,"function-bind":429}],408:[function(require,module,exports){
|
|
32819
33397
|
'use strict';
|
|
32820
33398
|
|
|
32821
33399
|
/** @type {import('./functionApply')} */
|
|
32822
33400
|
module.exports = Function.prototype.apply;
|
|
32823
33401
|
|
|
32824
|
-
},{}],
|
|
33402
|
+
},{}],409:[function(require,module,exports){
|
|
32825
33403
|
'use strict';
|
|
32826
33404
|
|
|
32827
33405
|
/** @type {import('./functionCall')} */
|
|
32828
33406
|
module.exports = Function.prototype.call;
|
|
32829
33407
|
|
|
32830
|
-
},{}],
|
|
33408
|
+
},{}],410:[function(require,module,exports){
|
|
32831
33409
|
'use strict';
|
|
32832
33410
|
|
|
32833
33411
|
var bind = require('function-bind');
|
|
@@ -32844,13 +33422,13 @@ module.exports = function callBindBasic(args) {
|
|
|
32844
33422
|
return $actualApply(bind, $call, args);
|
|
32845
33423
|
};
|
|
32846
33424
|
|
|
32847
|
-
},{"./actualApply":
|
|
33425
|
+
},{"./actualApply":407,"./functionCall":409,"es-errors/type":425,"function-bind":429}],411:[function(require,module,exports){
|
|
32848
33426
|
'use strict';
|
|
32849
33427
|
|
|
32850
33428
|
/** @type {import('./reflectApply')} */
|
|
32851
33429
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
32852
33430
|
|
|
32853
|
-
},{}],
|
|
33431
|
+
},{}],412:[function(require,module,exports){
|
|
32854
33432
|
'use strict';
|
|
32855
33433
|
|
|
32856
33434
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -32867,7 +33445,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
32867
33445
|
return intrinsic;
|
|
32868
33446
|
};
|
|
32869
33447
|
|
|
32870
|
-
},{"./":
|
|
33448
|
+
},{"./":413,"get-intrinsic":430}],413:[function(require,module,exports){
|
|
32871
33449
|
'use strict';
|
|
32872
33450
|
|
|
32873
33451
|
var bind = require('function-bind');
|
|
@@ -32904,7 +33482,7 @@ if ($defineProperty) {
|
|
|
32904
33482
|
module.exports.apply = applyBind;
|
|
32905
33483
|
}
|
|
32906
33484
|
|
|
32907
|
-
},{"es-define-property":
|
|
33485
|
+
},{"es-define-property":419,"es-errors/type":425,"function-bind":429,"get-intrinsic":430,"set-function-length":462}],414:[function(require,module,exports){
|
|
32908
33486
|
/**
|
|
32909
33487
|
* Helpers.
|
|
32910
33488
|
*/
|
|
@@ -33068,7 +33646,7 @@ function plural(ms, msAbs, n, name) {
|
|
|
33068
33646
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
33069
33647
|
}
|
|
33070
33648
|
|
|
33071
|
-
},{}],
|
|
33649
|
+
},{}],415:[function(require,module,exports){
|
|
33072
33650
|
(function (process){
|
|
33073
33651
|
"use strict";
|
|
33074
33652
|
|
|
@@ -33252,7 +33830,7 @@ formatters.j = function (v) {
|
|
|
33252
33830
|
|
|
33253
33831
|
|
|
33254
33832
|
}).call(this,require('_process'))
|
|
33255
|
-
},{"./common":
|
|
33833
|
+
},{"./common":416,"_process":453}],416:[function(require,module,exports){
|
|
33256
33834
|
"use strict";
|
|
33257
33835
|
|
|
33258
33836
|
/**
|
|
@@ -33503,7 +34081,7 @@ function setup(env) {
|
|
|
33503
34081
|
module.exports = setup;
|
|
33504
34082
|
|
|
33505
34083
|
|
|
33506
|
-
},{"ms":
|
|
34084
|
+
},{"ms":414}],417:[function(require,module,exports){
|
|
33507
34085
|
'use strict';
|
|
33508
34086
|
|
|
33509
34087
|
var $defineProperty = require('es-define-property');
|
|
@@ -33561,7 +34139,7 @@ module.exports = function defineDataProperty(
|
|
|
33561
34139
|
}
|
|
33562
34140
|
};
|
|
33563
34141
|
|
|
33564
|
-
},{"es-define-property":
|
|
34142
|
+
},{"es-define-property":419,"es-errors/syntax":424,"es-errors/type":425,"gopd":435}],418:[function(require,module,exports){
|
|
33565
34143
|
'use strict';
|
|
33566
34144
|
|
|
33567
34145
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -33593,7 +34171,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
33593
34171
|
}
|
|
33594
34172
|
: false;
|
|
33595
34173
|
|
|
33596
|
-
},{"call-bind-apply-helpers":
|
|
34174
|
+
},{"call-bind-apply-helpers":410,"gopd":435}],419:[function(require,module,exports){
|
|
33597
34175
|
'use strict';
|
|
33598
34176
|
|
|
33599
34177
|
/** @type {import('.')} */
|
|
@@ -33609,55 +34187,55 @@ if ($defineProperty) {
|
|
|
33609
34187
|
|
|
33610
34188
|
module.exports = $defineProperty;
|
|
33611
34189
|
|
|
33612
|
-
},{}],
|
|
34190
|
+
},{}],420:[function(require,module,exports){
|
|
33613
34191
|
'use strict';
|
|
33614
34192
|
|
|
33615
34193
|
/** @type {import('./eval')} */
|
|
33616
34194
|
module.exports = EvalError;
|
|
33617
34195
|
|
|
33618
|
-
},{}],
|
|
34196
|
+
},{}],421:[function(require,module,exports){
|
|
33619
34197
|
'use strict';
|
|
33620
34198
|
|
|
33621
34199
|
/** @type {import('.')} */
|
|
33622
34200
|
module.exports = Error;
|
|
33623
34201
|
|
|
33624
|
-
},{}],
|
|
34202
|
+
},{}],422:[function(require,module,exports){
|
|
33625
34203
|
'use strict';
|
|
33626
34204
|
|
|
33627
34205
|
/** @type {import('./range')} */
|
|
33628
34206
|
module.exports = RangeError;
|
|
33629
34207
|
|
|
33630
|
-
},{}],
|
|
34208
|
+
},{}],423:[function(require,module,exports){
|
|
33631
34209
|
'use strict';
|
|
33632
34210
|
|
|
33633
34211
|
/** @type {import('./ref')} */
|
|
33634
34212
|
module.exports = ReferenceError;
|
|
33635
34213
|
|
|
33636
|
-
},{}],
|
|
34214
|
+
},{}],424:[function(require,module,exports){
|
|
33637
34215
|
'use strict';
|
|
33638
34216
|
|
|
33639
34217
|
/** @type {import('./syntax')} */
|
|
33640
34218
|
module.exports = SyntaxError;
|
|
33641
34219
|
|
|
33642
|
-
},{}],
|
|
34220
|
+
},{}],425:[function(require,module,exports){
|
|
33643
34221
|
'use strict';
|
|
33644
34222
|
|
|
33645
34223
|
/** @type {import('./type')} */
|
|
33646
34224
|
module.exports = TypeError;
|
|
33647
34225
|
|
|
33648
|
-
},{}],
|
|
34226
|
+
},{}],426:[function(require,module,exports){
|
|
33649
34227
|
'use strict';
|
|
33650
34228
|
|
|
33651
34229
|
/** @type {import('./uri')} */
|
|
33652
34230
|
module.exports = URIError;
|
|
33653
34231
|
|
|
33654
|
-
},{}],
|
|
34232
|
+
},{}],427:[function(require,module,exports){
|
|
33655
34233
|
'use strict';
|
|
33656
34234
|
|
|
33657
34235
|
/** @type {import('.')} */
|
|
33658
34236
|
module.exports = Object;
|
|
33659
34237
|
|
|
33660
|
-
},{}],
|
|
34238
|
+
},{}],428:[function(require,module,exports){
|
|
33661
34239
|
'use strict';
|
|
33662
34240
|
|
|
33663
34241
|
/* eslint no-invalid-this: 1 */
|
|
@@ -33743,14 +34321,14 @@ module.exports = function bind(that) {
|
|
|
33743
34321
|
return bound;
|
|
33744
34322
|
};
|
|
33745
34323
|
|
|
33746
|
-
},{}],
|
|
34324
|
+
},{}],429:[function(require,module,exports){
|
|
33747
34325
|
'use strict';
|
|
33748
34326
|
|
|
33749
34327
|
var implementation = require('./implementation');
|
|
33750
34328
|
|
|
33751
34329
|
module.exports = Function.prototype.bind || implementation;
|
|
33752
34330
|
|
|
33753
|
-
},{"./implementation":
|
|
34331
|
+
},{"./implementation":428}],430:[function(require,module,exports){
|
|
33754
34332
|
'use strict';
|
|
33755
34333
|
|
|
33756
34334
|
var undefined;
|
|
@@ -34130,7 +34708,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
34130
34708
|
return value;
|
|
34131
34709
|
};
|
|
34132
34710
|
|
|
34133
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
34711
|
+
},{"call-bind-apply-helpers/functionApply":408,"call-bind-apply-helpers/functionCall":409,"es-define-property":419,"es-errors":421,"es-errors/eval":420,"es-errors/range":422,"es-errors/ref":423,"es-errors/syntax":424,"es-errors/type":425,"es-errors/uri":426,"es-object-atoms":427,"function-bind":429,"get-proto":433,"get-proto/Object.getPrototypeOf":431,"get-proto/Reflect.getPrototypeOf":432,"gopd":435,"has-symbols":437,"hasown":439,"math-intrinsics/abs":444,"math-intrinsics/floor":445,"math-intrinsics/max":447,"math-intrinsics/min":448,"math-intrinsics/pow":449,"math-intrinsics/round":450,"math-intrinsics/sign":451}],431:[function(require,module,exports){
|
|
34134
34712
|
'use strict';
|
|
34135
34713
|
|
|
34136
34714
|
var $Object = require('es-object-atoms');
|
|
@@ -34138,13 +34716,13 @@ var $Object = require('es-object-atoms');
|
|
|
34138
34716
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
34139
34717
|
module.exports = $Object.getPrototypeOf || null;
|
|
34140
34718
|
|
|
34141
|
-
},{"es-object-atoms":
|
|
34719
|
+
},{"es-object-atoms":427}],432:[function(require,module,exports){
|
|
34142
34720
|
'use strict';
|
|
34143
34721
|
|
|
34144
34722
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
34145
34723
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
34146
34724
|
|
|
34147
|
-
},{}],
|
|
34725
|
+
},{}],433:[function(require,module,exports){
|
|
34148
34726
|
'use strict';
|
|
34149
34727
|
|
|
34150
34728
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -34173,13 +34751,13 @@ module.exports = reflectGetProto
|
|
|
34173
34751
|
}
|
|
34174
34752
|
: null;
|
|
34175
34753
|
|
|
34176
|
-
},{"./Object.getPrototypeOf":
|
|
34754
|
+
},{"./Object.getPrototypeOf":431,"./Reflect.getPrototypeOf":432,"dunder-proto/get":418}],434:[function(require,module,exports){
|
|
34177
34755
|
'use strict';
|
|
34178
34756
|
|
|
34179
34757
|
/** @type {import('./gOPD')} */
|
|
34180
34758
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
34181
34759
|
|
|
34182
|
-
},{}],
|
|
34760
|
+
},{}],435:[function(require,module,exports){
|
|
34183
34761
|
'use strict';
|
|
34184
34762
|
|
|
34185
34763
|
/** @type {import('.')} */
|
|
@@ -34196,7 +34774,7 @@ if ($gOPD) {
|
|
|
34196
34774
|
|
|
34197
34775
|
module.exports = $gOPD;
|
|
34198
34776
|
|
|
34199
|
-
},{"./gOPD":
|
|
34777
|
+
},{"./gOPD":434}],436:[function(require,module,exports){
|
|
34200
34778
|
'use strict';
|
|
34201
34779
|
|
|
34202
34780
|
var $defineProperty = require('es-define-property');
|
|
@@ -34220,7 +34798,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
34220
34798
|
|
|
34221
34799
|
module.exports = hasPropertyDescriptors;
|
|
34222
34800
|
|
|
34223
|
-
},{"es-define-property":
|
|
34801
|
+
},{"es-define-property":419}],437:[function(require,module,exports){
|
|
34224
34802
|
'use strict';
|
|
34225
34803
|
|
|
34226
34804
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -34236,7 +34814,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
34236
34814
|
return hasSymbolSham();
|
|
34237
34815
|
};
|
|
34238
34816
|
|
|
34239
|
-
},{"./shams":
|
|
34817
|
+
},{"./shams":438}],438:[function(require,module,exports){
|
|
34240
34818
|
'use strict';
|
|
34241
34819
|
|
|
34242
34820
|
/** @type {import('./shams')} */
|
|
@@ -34283,7 +34861,7 @@ module.exports = function hasSymbols() {
|
|
|
34283
34861
|
return true;
|
|
34284
34862
|
};
|
|
34285
34863
|
|
|
34286
|
-
},{}],
|
|
34864
|
+
},{}],439:[function(require,module,exports){
|
|
34287
34865
|
'use strict';
|
|
34288
34866
|
|
|
34289
34867
|
var call = Function.prototype.call;
|
|
@@ -34293,7 +34871,7 @@ var bind = require('function-bind');
|
|
|
34293
34871
|
/** @type {import('.')} */
|
|
34294
34872
|
module.exports = bind.call(call, $hasOwn);
|
|
34295
34873
|
|
|
34296
|
-
},{"function-bind":
|
|
34874
|
+
},{"function-bind":429}],440:[function(require,module,exports){
|
|
34297
34875
|
// Generated by CoffeeScript 2.7.0
|
|
34298
34876
|
// # node-http-status
|
|
34299
34877
|
|
|
@@ -34924,13 +35502,13 @@ module.exports = {
|
|
|
34924
35502
|
}
|
|
34925
35503
|
};
|
|
34926
35504
|
|
|
34927
|
-
},{}],
|
|
35505
|
+
},{}],441:[function(require,module,exports){
|
|
34928
35506
|
(function (process,global){
|
|
34929
35507
|
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;
|
|
34930
35508
|
|
|
34931
35509
|
|
|
34932
35510
|
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
34933
|
-
},{"_process":
|
|
35511
|
+
},{"_process":453}],442:[function(require,module,exports){
|
|
34934
35512
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
34935
35513
|
var e, m
|
|
34936
35514
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -35016,7 +35594,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
35016
35594
|
buffer[offset + i - d] |= s * 128
|
|
35017
35595
|
}
|
|
35018
35596
|
|
|
35019
|
-
},{}],
|
|
35597
|
+
},{}],443:[function(require,module,exports){
|
|
35020
35598
|
// the whatwg-fetch polyfill installs the fetch() function
|
|
35021
35599
|
// on the global object (window or self)
|
|
35022
35600
|
//
|
|
@@ -35024,19 +35602,19 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
35024
35602
|
require('whatwg-fetch');
|
|
35025
35603
|
module.exports = self.fetch.bind(self);
|
|
35026
35604
|
|
|
35027
|
-
},{"whatwg-fetch":
|
|
35605
|
+
},{"whatwg-fetch":465}],444:[function(require,module,exports){
|
|
35028
35606
|
'use strict';
|
|
35029
35607
|
|
|
35030
35608
|
/** @type {import('./abs')} */
|
|
35031
35609
|
module.exports = Math.abs;
|
|
35032
35610
|
|
|
35033
|
-
},{}],
|
|
35611
|
+
},{}],445:[function(require,module,exports){
|
|
35034
35612
|
'use strict';
|
|
35035
35613
|
|
|
35036
35614
|
/** @type {import('./floor')} */
|
|
35037
35615
|
module.exports = Math.floor;
|
|
35038
35616
|
|
|
35039
|
-
},{}],
|
|
35617
|
+
},{}],446:[function(require,module,exports){
|
|
35040
35618
|
'use strict';
|
|
35041
35619
|
|
|
35042
35620
|
/** @type {import('./isNaN')} */
|
|
@@ -35044,31 +35622,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
35044
35622
|
return a !== a;
|
|
35045
35623
|
};
|
|
35046
35624
|
|
|
35047
|
-
},{}],
|
|
35625
|
+
},{}],447:[function(require,module,exports){
|
|
35048
35626
|
'use strict';
|
|
35049
35627
|
|
|
35050
35628
|
/** @type {import('./max')} */
|
|
35051
35629
|
module.exports = Math.max;
|
|
35052
35630
|
|
|
35053
|
-
},{}],
|
|
35631
|
+
},{}],448:[function(require,module,exports){
|
|
35054
35632
|
'use strict';
|
|
35055
35633
|
|
|
35056
35634
|
/** @type {import('./min')} */
|
|
35057
35635
|
module.exports = Math.min;
|
|
35058
35636
|
|
|
35059
|
-
},{}],
|
|
35637
|
+
},{}],449:[function(require,module,exports){
|
|
35060
35638
|
'use strict';
|
|
35061
35639
|
|
|
35062
35640
|
/** @type {import('./pow')} */
|
|
35063
35641
|
module.exports = Math.pow;
|
|
35064
35642
|
|
|
35065
|
-
},{}],
|
|
35643
|
+
},{}],450:[function(require,module,exports){
|
|
35066
35644
|
'use strict';
|
|
35067
35645
|
|
|
35068
35646
|
/** @type {import('./round')} */
|
|
35069
35647
|
module.exports = Math.round;
|
|
35070
35648
|
|
|
35071
|
-
},{}],
|
|
35649
|
+
},{}],451:[function(require,module,exports){
|
|
35072
35650
|
'use strict';
|
|
35073
35651
|
|
|
35074
35652
|
var $isNaN = require('./isNaN');
|
|
@@ -35081,7 +35659,7 @@ module.exports = function sign(number) {
|
|
|
35081
35659
|
return number < 0 ? -1 : +1;
|
|
35082
35660
|
};
|
|
35083
35661
|
|
|
35084
|
-
},{"./isNaN":
|
|
35662
|
+
},{"./isNaN":446}],452:[function(require,module,exports){
|
|
35085
35663
|
(function (global){
|
|
35086
35664
|
var hasMap = typeof Map === 'function' && Map.prototype;
|
|
35087
35665
|
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
|
|
@@ -35612,7 +36190,7 @@ function arrObjKeys(obj, inspect) {
|
|
|
35612
36190
|
}
|
|
35613
36191
|
|
|
35614
36192
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
35615
|
-
},{"./util.inspect":
|
|
36193
|
+
},{"./util.inspect":405}],453:[function(require,module,exports){
|
|
35616
36194
|
// shim for using process in browser
|
|
35617
36195
|
var process = module.exports = {};
|
|
35618
36196
|
|
|
@@ -35798,7 +36376,7 @@ process.chdir = function (dir) {
|
|
|
35798
36376
|
};
|
|
35799
36377
|
process.umask = function() { return 0; };
|
|
35800
36378
|
|
|
35801
|
-
},{}],
|
|
36379
|
+
},{}],454:[function(require,module,exports){
|
|
35802
36380
|
'use strict';
|
|
35803
36381
|
|
|
35804
36382
|
var replace = String.prototype.replace;
|
|
@@ -35823,7 +36401,7 @@ module.exports = {
|
|
|
35823
36401
|
RFC3986: Format.RFC3986
|
|
35824
36402
|
};
|
|
35825
36403
|
|
|
35826
|
-
},{}],
|
|
36404
|
+
},{}],455:[function(require,module,exports){
|
|
35827
36405
|
'use strict';
|
|
35828
36406
|
|
|
35829
36407
|
var stringify = require('./stringify');
|
|
@@ -35836,7 +36414,7 @@ module.exports = {
|
|
|
35836
36414
|
stringify: stringify
|
|
35837
36415
|
};
|
|
35838
36416
|
|
|
35839
|
-
},{"./formats":
|
|
36417
|
+
},{"./formats":454,"./parse":456,"./stringify":457}],456:[function(require,module,exports){
|
|
35840
36418
|
'use strict';
|
|
35841
36419
|
|
|
35842
36420
|
var utils = require('./utils');
|
|
@@ -36126,7 +36704,7 @@ module.exports = function (str, opts) {
|
|
|
36126
36704
|
return utils.compact(obj);
|
|
36127
36705
|
};
|
|
36128
36706
|
|
|
36129
|
-
},{"./utils":
|
|
36707
|
+
},{"./utils":458}],457:[function(require,module,exports){
|
|
36130
36708
|
'use strict';
|
|
36131
36709
|
|
|
36132
36710
|
var getSideChannel = require('side-channel');
|
|
@@ -36479,7 +37057,7 @@ module.exports = function (object, opts) {
|
|
|
36479
37057
|
return joined.length > 0 ? prefix + joined : '';
|
|
36480
37058
|
};
|
|
36481
37059
|
|
|
36482
|
-
},{"./formats":
|
|
37060
|
+
},{"./formats":454,"./utils":458,"side-channel":464}],458:[function(require,module,exports){
|
|
36483
37061
|
'use strict';
|
|
36484
37062
|
|
|
36485
37063
|
var formats = require('./formats');
|
|
@@ -36746,7 +37324,7 @@ module.exports = {
|
|
|
36746
37324
|
merge: merge
|
|
36747
37325
|
};
|
|
36748
37326
|
|
|
36749
|
-
},{"./formats":
|
|
37327
|
+
},{"./formats":454}],459:[function(require,module,exports){
|
|
36750
37328
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
36751
37329
|
//
|
|
36752
37330
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -36832,7 +37410,7 @@ var isArray = Array.isArray || function (xs) {
|
|
|
36832
37410
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
|
36833
37411
|
};
|
|
36834
37412
|
|
|
36835
|
-
},{}],
|
|
37413
|
+
},{}],460:[function(require,module,exports){
|
|
36836
37414
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
36837
37415
|
//
|
|
36838
37416
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -36919,13 +37497,13 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
36919
37497
|
return res;
|
|
36920
37498
|
};
|
|
36921
37499
|
|
|
36922
|
-
},{}],
|
|
37500
|
+
},{}],461:[function(require,module,exports){
|
|
36923
37501
|
'use strict';
|
|
36924
37502
|
|
|
36925
37503
|
exports.decode = exports.parse = require('./decode');
|
|
36926
37504
|
exports.encode = exports.stringify = require('./encode');
|
|
36927
37505
|
|
|
36928
|
-
},{"./decode":
|
|
37506
|
+
},{"./decode":459,"./encode":460}],462:[function(require,module,exports){
|
|
36929
37507
|
'use strict';
|
|
36930
37508
|
|
|
36931
37509
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -36969,7 +37547,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
36969
37547
|
return fn;
|
|
36970
37548
|
};
|
|
36971
37549
|
|
|
36972
|
-
},{"define-data-property":
|
|
37550
|
+
},{"define-data-property":417,"es-errors/type":425,"get-intrinsic":430,"gopd":435,"has-property-descriptors":436}],463:[function(require,module,exports){
|
|
36973
37551
|
'use strict'
|
|
36974
37552
|
/* eslint no-proto: 0 */
|
|
36975
37553
|
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
|
@@ -36988,7 +37566,7 @@ function mixinProperties (obj, proto) {
|
|
|
36988
37566
|
return obj
|
|
36989
37567
|
}
|
|
36990
37568
|
|
|
36991
|
-
},{}],
|
|
37569
|
+
},{}],464:[function(require,module,exports){
|
|
36992
37570
|
'use strict';
|
|
36993
37571
|
|
|
36994
37572
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -37119,7 +37697,7 @@ module.exports = function getSideChannel() {
|
|
|
37119
37697
|
return channel;
|
|
37120
37698
|
};
|
|
37121
37699
|
|
|
37122
|
-
},{"call-bind/callBound":
|
|
37700
|
+
},{"call-bind/callBound":412,"es-errors/type":425,"get-intrinsic":430,"object-inspect":452}],465:[function(require,module,exports){
|
|
37123
37701
|
(function (global){
|
|
37124
37702
|
(function (global, factory) {
|
|
37125
37703
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|