@cinerino/sdk 5.13.0-alpha.2 → 5.13.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 +497 -498
- package/example/src/transaction/processPlaceOrderByCash.ts +5 -4
- package/lib/abstract/{service → admin}/customer.d.ts +2 -2
- package/lib/abstract/{service → admin}/customer.js +3 -12
- package/lib/abstract/admin.d.ts +9 -0
- package/lib/abstract/admin.js +20 -0
- package/lib/abstract/default.d.ts +0 -6
- package/lib/abstract/default.js +0 -12
- package/lib/bundle.js +467 -469
- package/package.json +2 -2
|
@@ -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":96}],3:[function(require,module,exports){
|
|
22
22
|
"use strict";
|
|
23
23
|
var __assign = (this && this.__assign) || function () {
|
|
24
24
|
__assign = Object.assign || function(t) {
|
|
@@ -74,6 +74,9 @@ var service;
|
|
|
74
74
|
var CreativeWork;
|
|
75
75
|
(function (CreativeWork) {
|
|
76
76
|
})(CreativeWork = service.CreativeWork || (service.CreativeWork = {}));
|
|
77
|
+
var Customer;
|
|
78
|
+
(function (Customer) {
|
|
79
|
+
})(Customer = service.Customer || (service.Customer = {}));
|
|
77
80
|
var Event;
|
|
78
81
|
(function (Event) {
|
|
79
82
|
})(Event = service.Event || (service.Event = {}));
|
|
@@ -127,6 +130,23 @@ var Admin = /** @class */ (function () {
|
|
|
127
130
|
});
|
|
128
131
|
});
|
|
129
132
|
};
|
|
133
|
+
Admin.prototype.createCustomerInstance = function (params) {
|
|
134
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
135
|
+
var _a;
|
|
136
|
+
return __generator(this, function (_b) {
|
|
137
|
+
switch (_b.label) {
|
|
138
|
+
case 0:
|
|
139
|
+
if (!(service.Customer.svc === undefined)) return [3 /*break*/, 2];
|
|
140
|
+
_a = service.Customer;
|
|
141
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./admin/customer'); })];
|
|
142
|
+
case 1:
|
|
143
|
+
_a.svc = (_b.sent()).CustomerService;
|
|
144
|
+
_b.label = 2;
|
|
145
|
+
case 2: return [2 /*return*/, new service.Customer.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: '/admin' }))];
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
};
|
|
130
150
|
Admin.prototype.createEventInstance = function (params) {
|
|
131
151
|
return __awaiter(this, void 0, void 0, function () {
|
|
132
152
|
var _a;
|
|
@@ -284,7 +304,7 @@ var Admin = /** @class */ (function () {
|
|
|
284
304
|
}());
|
|
285
305
|
exports.Admin = Admin;
|
|
286
306
|
|
|
287
|
-
},{"./admin/creativeWork":4,"./admin/
|
|
307
|
+
},{"./admin/creativeWork":4,"./admin/customer":5,"./admin/event":6,"./admin/me":7,"./admin/note":8,"./admin/offer":9,"./admin/offerCatalog":10,"./admin/offerCatalogItem":11,"./admin/order":12,"./admin/product":13,"./admin/reservation":14}],4:[function(require,module,exports){
|
|
288
308
|
"use strict";
|
|
289
309
|
var __extends = (this && this.__extends) || (function () {
|
|
290
310
|
var extendStatics = function (d, b) {
|
|
@@ -377,7 +397,113 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
377
397
|
}(service_1.Service));
|
|
378
398
|
exports.CreativeWorkService = CreativeWorkService;
|
|
379
399
|
|
|
380
|
-
},{"../service":
|
|
400
|
+
},{"../service":100,"http-status":330}],5:[function(require,module,exports){
|
|
401
|
+
"use strict";
|
|
402
|
+
var __extends = (this && this.__extends) || (function () {
|
|
403
|
+
var extendStatics = function (d, b) {
|
|
404
|
+
extendStatics = Object.setPrototypeOf ||
|
|
405
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
406
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
407
|
+
return extendStatics(d, b);
|
|
408
|
+
};
|
|
409
|
+
return function (d, b) {
|
|
410
|
+
if (typeof b !== "function" && b !== null)
|
|
411
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
412
|
+
extendStatics(d, b);
|
|
413
|
+
function __() { this.constructor = d; }
|
|
414
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
415
|
+
};
|
|
416
|
+
})();
|
|
417
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
418
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
419
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
420
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
421
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
422
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
423
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
424
|
+
});
|
|
425
|
+
};
|
|
426
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
427
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
428
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
429
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
430
|
+
function step(op) {
|
|
431
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
432
|
+
while (_) try {
|
|
433
|
+
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;
|
|
434
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
435
|
+
switch (op[0]) {
|
|
436
|
+
case 0: case 1: t = op; break;
|
|
437
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
438
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
439
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
440
|
+
default:
|
|
441
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
442
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
443
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
444
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
445
|
+
if (t[2]) _.ops.pop();
|
|
446
|
+
_.trys.pop(); continue;
|
|
447
|
+
}
|
|
448
|
+
op = body.call(thisArg, _);
|
|
449
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
450
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
451
|
+
}
|
|
452
|
+
};
|
|
453
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
454
|
+
exports.CustomerService = void 0;
|
|
455
|
+
var http_status_1 = require("http-status");
|
|
456
|
+
var service_1 = require("../service");
|
|
457
|
+
/**
|
|
458
|
+
* 顧客サービス
|
|
459
|
+
*/
|
|
460
|
+
var CustomerService = /** @class */ (function (_super) {
|
|
461
|
+
__extends(CustomerService, _super);
|
|
462
|
+
function CustomerService() {
|
|
463
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* 顧客取得
|
|
467
|
+
*/
|
|
468
|
+
CustomerService.prototype.findById = function (params) {
|
|
469
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
470
|
+
var _this = this;
|
|
471
|
+
return __generator(this, function (_a) {
|
|
472
|
+
return [2 /*return*/, this.fetch({
|
|
473
|
+
uri: "/customers/" + params.id,
|
|
474
|
+
method: 'GET',
|
|
475
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
476
|
+
})
|
|
477
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
478
|
+
return [2 /*return*/, response.json()];
|
|
479
|
+
}); }); })];
|
|
480
|
+
});
|
|
481
|
+
});
|
|
482
|
+
};
|
|
483
|
+
/**
|
|
484
|
+
* 顧客検索
|
|
485
|
+
*/
|
|
486
|
+
CustomerService.prototype.search = function (params) {
|
|
487
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
488
|
+
var _this = this;
|
|
489
|
+
return __generator(this, function (_a) {
|
|
490
|
+
return [2 /*return*/, this.fetch({
|
|
491
|
+
uri: '/customers',
|
|
492
|
+
method: 'GET',
|
|
493
|
+
qs: params,
|
|
494
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
495
|
+
})
|
|
496
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
497
|
+
return [2 /*return*/, response.json()];
|
|
498
|
+
}); }); })];
|
|
499
|
+
});
|
|
500
|
+
});
|
|
501
|
+
};
|
|
502
|
+
return CustomerService;
|
|
503
|
+
}(service_1.Service));
|
|
504
|
+
exports.CustomerService = CustomerService;
|
|
505
|
+
|
|
506
|
+
},{"../service":100,"http-status":330}],6:[function(require,module,exports){
|
|
381
507
|
"use strict";
|
|
382
508
|
var __extends = (this && this.__extends) || (function () {
|
|
383
509
|
var extendStatics = function (d, b) {
|
|
@@ -513,7 +639,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
513
639
|
}(service_1.Service));
|
|
514
640
|
exports.EventService = EventService;
|
|
515
641
|
|
|
516
|
-
},{"../factory":
|
|
642
|
+
},{"../factory":95,"../service":100,"http-status":330}],7:[function(require,module,exports){
|
|
517
643
|
"use strict";
|
|
518
644
|
var __extends = (this && this.__extends) || (function () {
|
|
519
645
|
var extendStatics = function (d, b) {
|
|
@@ -612,7 +738,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
612
738
|
}(service_1.Service));
|
|
613
739
|
exports.MeService = MeService;
|
|
614
740
|
|
|
615
|
-
},{"../service":
|
|
741
|
+
},{"../service":100,"http-status":330}],8:[function(require,module,exports){
|
|
616
742
|
"use strict";
|
|
617
743
|
var __extends = (this && this.__extends) || (function () {
|
|
618
744
|
var extendStatics = function (d, b) {
|
|
@@ -752,7 +878,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
752
878
|
}(service_1.Service));
|
|
753
879
|
exports.NoteService = NoteService;
|
|
754
880
|
|
|
755
|
-
},{"../service":
|
|
881
|
+
},{"../service":100,"http-status":330}],9:[function(require,module,exports){
|
|
756
882
|
"use strict";
|
|
757
883
|
var __extends = (this && this.__extends) || (function () {
|
|
758
884
|
var extendStatics = function (d, b) {
|
|
@@ -866,7 +992,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
866
992
|
}(service_1.Service));
|
|
867
993
|
exports.OfferService = OfferService;
|
|
868
994
|
|
|
869
|
-
},{"../service":
|
|
995
|
+
},{"../service":100,"http-status":330}],10:[function(require,module,exports){
|
|
870
996
|
"use strict";
|
|
871
997
|
var __extends = (this && this.__extends) || (function () {
|
|
872
998
|
var extendStatics = function (d, b) {
|
|
@@ -960,7 +1086,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
960
1086
|
}(service_1.Service));
|
|
961
1087
|
exports.OfferCatalogService = OfferCatalogService;
|
|
962
1088
|
|
|
963
|
-
},{"../service":
|
|
1089
|
+
},{"../service":100,"http-status":330}],11:[function(require,module,exports){
|
|
964
1090
|
"use strict";
|
|
965
1091
|
var __extends = (this && this.__extends) || (function () {
|
|
966
1092
|
var extendStatics = function (d, b) {
|
|
@@ -1070,7 +1196,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
1070
1196
|
}(service_1.Service));
|
|
1071
1197
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
1072
1198
|
|
|
1073
|
-
},{"../service":
|
|
1199
|
+
},{"../service":100,"http-status":330}],12:[function(require,module,exports){
|
|
1074
1200
|
"use strict";
|
|
1075
1201
|
var __extends = (this && this.__extends) || (function () {
|
|
1076
1202
|
var extendStatics = function (d, b) {
|
|
@@ -1242,7 +1368,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
1242
1368
|
}(service_1.Service));
|
|
1243
1369
|
exports.OrderService = OrderService;
|
|
1244
1370
|
|
|
1245
|
-
},{"../service":
|
|
1371
|
+
},{"../service":100,"http-status":330}],13:[function(require,module,exports){
|
|
1246
1372
|
"use strict";
|
|
1247
1373
|
var __extends = (this && this.__extends) || (function () {
|
|
1248
1374
|
var extendStatics = function (d, b) {
|
|
@@ -1335,7 +1461,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
1335
1461
|
}(service_1.Service));
|
|
1336
1462
|
exports.ProductService = ProductService;
|
|
1337
1463
|
|
|
1338
|
-
},{"../service":
|
|
1464
|
+
},{"../service":100,"http-status":330}],14:[function(require,module,exports){
|
|
1339
1465
|
"use strict";
|
|
1340
1466
|
var __extends = (this && this.__extends) || (function () {
|
|
1341
1467
|
var extendStatics = function (d, b) {
|
|
@@ -1453,7 +1579,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
1453
1579
|
});
|
|
1454
1580
|
};
|
|
1455
1581
|
/**
|
|
1456
|
-
*
|
|
1582
|
+
* 予約に対する使用アクション検索
|
|
1457
1583
|
*/
|
|
1458
1584
|
ReservationService.prototype.searchUseActions = function (params) {
|
|
1459
1585
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -1462,21 +1588,12 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
1462
1588
|
return [2 /*return*/, this.fetch({
|
|
1463
1589
|
uri: "/reservations/" + String(params.object.id) + "/actions/use",
|
|
1464
1590
|
method: 'GET',
|
|
1465
|
-
qs: params,
|
|
1591
|
+
// qs: params,
|
|
1466
1592
|
expectedStatusCodes: [http_status_1.OK]
|
|
1467
1593
|
})
|
|
1468
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
switch (_b.label) {
|
|
1472
|
-
case 0:
|
|
1473
|
-
_a = {};
|
|
1474
|
-
return [4 /*yield*/, response.json()];
|
|
1475
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1476
|
-
_a)];
|
|
1477
|
-
}
|
|
1478
|
-
});
|
|
1479
|
-
}); })];
|
|
1594
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1595
|
+
return [2 /*return*/, response.json()];
|
|
1596
|
+
}); }); })];
|
|
1480
1597
|
});
|
|
1481
1598
|
});
|
|
1482
1599
|
};
|
|
@@ -1505,7 +1622,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
1505
1622
|
}(service_1.Service));
|
|
1506
1623
|
exports.ReservationService = ReservationService;
|
|
1507
1624
|
|
|
1508
|
-
},{"../factory":
|
|
1625
|
+
},{"../factory":95,"../service":100,"http-status":330}],15:[function(require,module,exports){
|
|
1509
1626
|
"use strict";
|
|
1510
1627
|
var __assign = (this && this.__assign) || function () {
|
|
1511
1628
|
__assign = Object.assign || function(t) {
|
|
@@ -1877,7 +1994,7 @@ var Chevre = /** @class */ (function () {
|
|
|
1877
1994
|
}());
|
|
1878
1995
|
exports.Chevre = Chevre;
|
|
1879
1996
|
|
|
1880
|
-
},{"./chevre/categoryCode":
|
|
1997
|
+
},{"./chevre/categoryCode":78,"./chevre/creativeWork":79,"./chevre/emailMessage":80,"./chevre/event":81,"./chevre/order":82,"./chevre/permit":84,"./chevre/person":85,"./chevre/person/ownershipInfo":86,"./chevre/place":87,"./chevre/place/hasPOS":88,"./chevre/product":89,"./chevre/reservation":90,"./chevre/seller":91,"./chevre/token":92,"./chevre/trip":93}],16:[function(require,module,exports){
|
|
1881
1998
|
"use strict";
|
|
1882
1999
|
var __assign = (this && this.__assign) || function () {
|
|
1883
2000
|
__assign = Object.assign || function(t) {
|
|
@@ -3022,7 +3139,7 @@ var ChevreAdmin = /** @class */ (function () {
|
|
|
3022
3139
|
}());
|
|
3023
3140
|
exports.ChevreAdmin = ChevreAdmin;
|
|
3024
3141
|
|
|
3025
|
-
},{"./chevreAdmin/account":
|
|
3142
|
+
},{"./chevreAdmin/account":17,"./chevreAdmin/accountTitle":18,"./chevreAdmin/accountTransaction":19,"./chevreAdmin/accountingReport":20,"./chevreAdmin/action":21,"./chevreAdmin/additionalProperty":22,"./chevreAdmin/aggregateOffer":23,"./chevreAdmin/aggregation":24,"./chevreAdmin/assetTransaction":25,"./chevreAdmin/assetTransaction/cancelReservation":26,"./chevreAdmin/assetTransaction/moneyTransfer":27,"./chevreAdmin/assetTransaction/pay":28,"./chevreAdmin/assetTransaction/refund":29,"./chevreAdmin/assetTransaction/registerService":30,"./chevreAdmin/assetTransaction/reserve":31,"./chevreAdmin/authorization":32,"./chevreAdmin/categoryCode":33,"./chevreAdmin/comment":34,"./chevreAdmin/creativeWork":35,"./chevreAdmin/customer":36,"./chevreAdmin/emailMessage":37,"./chevreAdmin/event":38,"./chevreAdmin/iam":39,"./chevreAdmin/me":40,"./chevreAdmin/merchantReturnPolicy":41,"./chevreAdmin/note":42,"./chevreAdmin/offer":43,"./chevreAdmin/offerCatalog":44,"./chevreAdmin/offerCatalogItem":45,"./chevreAdmin/offerItemCondition":46,"./chevreAdmin/order":47,"./chevreAdmin/ownershipInfo":48,"./chevreAdmin/paymentService":49,"./chevreAdmin/permission":50,"./chevreAdmin/permit":51,"./chevreAdmin/person":52,"./chevreAdmin/person/ownershipInfo":53,"./chevreAdmin/place":54,"./chevreAdmin/place/hasPOS":55,"./chevreAdmin/priceSpecification":56,"./chevreAdmin/product":57,"./chevreAdmin/project":58,"./chevreAdmin/projectMakesOffer":59,"./chevreAdmin/reservation":60,"./chevreAdmin/seller":61,"./chevreAdmin/task":62,"./chevreAdmin/token":63,"./chevreAdmin/transaction/moneyTransfer":65,"./chevreAdmin/transaction/placeOrder":66,"./chevreAdmin/transaction/returnOrder":67,"./chevreAdmin/transactionNumber":64,"./chevreAdmin/trip":68,"./chevreAdmin/userPool":69}],17:[function(require,module,exports){
|
|
3026
3143
|
"use strict";
|
|
3027
3144
|
var __extends = (this && this.__extends) || (function () {
|
|
3028
3145
|
var extendStatics = function (d, b) {
|
|
@@ -3159,7 +3276,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
3159
3276
|
}(service_1.Service));
|
|
3160
3277
|
exports.AccountService = AccountService;
|
|
3161
3278
|
|
|
3162
|
-
},{"../service":
|
|
3279
|
+
},{"../service":100,"http-status":330}],18:[function(require,module,exports){
|
|
3163
3280
|
"use strict";
|
|
3164
3281
|
var __extends = (this && this.__extends) || (function () {
|
|
3165
3282
|
var extendStatics = function (d, b) {
|
|
@@ -3496,7 +3613,7 @@ var AccountTitleService = /** @class */ (function (_super) {
|
|
|
3496
3613
|
}(service_1.Service));
|
|
3497
3614
|
exports.AccountTitleService = AccountTitleService;
|
|
3498
3615
|
|
|
3499
|
-
},{"../factory":
|
|
3616
|
+
},{"../factory":95,"../service":100,"http-status":330}],19:[function(require,module,exports){
|
|
3500
3617
|
"use strict";
|
|
3501
3618
|
var __extends = (this && this.__extends) || (function () {
|
|
3502
3619
|
var extendStatics = function (d, b) {
|
|
@@ -3593,7 +3710,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
3593
3710
|
}(service_1.Service));
|
|
3594
3711
|
exports.AccountTransactionService = AccountTransactionService;
|
|
3595
3712
|
|
|
3596
|
-
},{"../service":
|
|
3713
|
+
},{"../service":100,"http-status":330}],20:[function(require,module,exports){
|
|
3597
3714
|
"use strict";
|
|
3598
3715
|
var __extends = (this && this.__extends) || (function () {
|
|
3599
3716
|
var extendStatics = function (d, b) {
|
|
@@ -3690,7 +3807,7 @@ var AccountingReportService = /** @class */ (function (_super) {
|
|
|
3690
3807
|
}(service_1.Service));
|
|
3691
3808
|
exports.AccountingReportService = AccountingReportService;
|
|
3692
3809
|
|
|
3693
|
-
},{"../service":
|
|
3810
|
+
},{"../service":100,"http-status":330}],21:[function(require,module,exports){
|
|
3694
3811
|
"use strict";
|
|
3695
3812
|
var __extends = (this && this.__extends) || (function () {
|
|
3696
3813
|
var extendStatics = function (d, b) {
|
|
@@ -3803,7 +3920,7 @@ var ActionService = /** @class */ (function (_super) {
|
|
|
3803
3920
|
}(service_1.Service));
|
|
3804
3921
|
exports.ActionService = ActionService;
|
|
3805
3922
|
|
|
3806
|
-
},{"../service":
|
|
3923
|
+
},{"../service":100,"http-status":330}],22:[function(require,module,exports){
|
|
3807
3924
|
"use strict";
|
|
3808
3925
|
var __extends = (this && this.__extends) || (function () {
|
|
3809
3926
|
var extendStatics = function (d, b) {
|
|
@@ -3967,7 +4084,7 @@ var AdditionalPropertyService = /** @class */ (function (_super) {
|
|
|
3967
4084
|
}(service_1.Service));
|
|
3968
4085
|
exports.AdditionalPropertyService = AdditionalPropertyService;
|
|
3969
4086
|
|
|
3970
|
-
},{"../service":
|
|
4087
|
+
},{"../service":100,"http-status":330}],23:[function(require,module,exports){
|
|
3971
4088
|
"use strict";
|
|
3972
4089
|
var __extends = (this && this.__extends) || (function () {
|
|
3973
4090
|
var extendStatics = function (d, b) {
|
|
@@ -4083,7 +4200,7 @@ var AggregateOfferService = /** @class */ (function (_super) {
|
|
|
4083
4200
|
}(service_1.Service));
|
|
4084
4201
|
exports.AggregateOfferService = AggregateOfferService;
|
|
4085
4202
|
|
|
4086
|
-
},{"../service":
|
|
4203
|
+
},{"../service":100,"http-status":330}],24:[function(require,module,exports){
|
|
4087
4204
|
"use strict";
|
|
4088
4205
|
var __extends = (this && this.__extends) || (function () {
|
|
4089
4206
|
var extendStatics = function (d, b) {
|
|
@@ -4188,7 +4305,7 @@ var AggregationService = /** @class */ (function (_super) {
|
|
|
4188
4305
|
}(service_1.Service));
|
|
4189
4306
|
exports.AggregationService = AggregationService;
|
|
4190
4307
|
|
|
4191
|
-
},{"../service":
|
|
4308
|
+
},{"../service":100,"http-status":330}],25:[function(require,module,exports){
|
|
4192
4309
|
"use strict";
|
|
4193
4310
|
var __extends = (this && this.__extends) || (function () {
|
|
4194
4311
|
var extendStatics = function (d, b) {
|
|
@@ -4285,7 +4402,7 @@ var AssetTransactionService = /** @class */ (function (_super) {
|
|
|
4285
4402
|
}(service_1.Service));
|
|
4286
4403
|
exports.AssetTransactionService = AssetTransactionService;
|
|
4287
4404
|
|
|
4288
|
-
},{"../service":
|
|
4405
|
+
},{"../service":100,"http-status":330}],26:[function(require,module,exports){
|
|
4289
4406
|
"use strict";
|
|
4290
4407
|
var __extends = (this && this.__extends) || (function () {
|
|
4291
4408
|
var extendStatics = function (d, b) {
|
|
@@ -4447,7 +4564,7 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
4447
4564
|
}(service_1.Service));
|
|
4448
4565
|
exports.CancelReservationAssetTransactionService = CancelReservationAssetTransactionService;
|
|
4449
4566
|
|
|
4450
|
-
},{"../../service":
|
|
4567
|
+
},{"../../service":100,"http-status":330}],27:[function(require,module,exports){
|
|
4451
4568
|
"use strict";
|
|
4452
4569
|
var __extends = (this && this.__extends) || (function () {
|
|
4453
4570
|
var extendStatics = function (d, b) {
|
|
@@ -4583,7 +4700,7 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4583
4700
|
}(service_1.Service));
|
|
4584
4701
|
exports.MoneyTransferAssetTransactionService = MoneyTransferAssetTransactionService;
|
|
4585
4702
|
|
|
4586
|
-
},{"../../factory":
|
|
4703
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],28:[function(require,module,exports){
|
|
4587
4704
|
"use strict";
|
|
4588
4705
|
var __extends = (this && this.__extends) || (function () {
|
|
4589
4706
|
var extendStatics = function (d, b) {
|
|
@@ -4808,7 +4925,7 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4808
4925
|
}(service_1.Service));
|
|
4809
4926
|
exports.PayAssetTransactionService = PayAssetTransactionService;
|
|
4810
4927
|
|
|
4811
|
-
},{"../../factory":
|
|
4928
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],29:[function(require,module,exports){
|
|
4812
4929
|
"use strict";
|
|
4813
4930
|
var __extends = (this && this.__extends) || (function () {
|
|
4814
4931
|
var extendStatics = function (d, b) {
|
|
@@ -4955,7 +5072,7 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4955
5072
|
}(service_1.Service));
|
|
4956
5073
|
exports.RefundAssetTransactionService = RefundAssetTransactionService;
|
|
4957
5074
|
|
|
4958
|
-
},{"../../factory":
|
|
5075
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],30:[function(require,module,exports){
|
|
4959
5076
|
"use strict";
|
|
4960
5077
|
var __extends = (this && this.__extends) || (function () {
|
|
4961
5078
|
var extendStatics = function (d, b) {
|
|
@@ -5102,7 +5219,7 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
5102
5219
|
}(service_1.Service));
|
|
5103
5220
|
exports.RegisterServiceAssetTransactionService = RegisterServiceAssetTransactionService;
|
|
5104
5221
|
|
|
5105
|
-
},{"../../factory":
|
|
5222
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],31:[function(require,module,exports){
|
|
5106
5223
|
"use strict";
|
|
5107
5224
|
var __extends = (this && this.__extends) || (function () {
|
|
5108
5225
|
var extendStatics = function (d, b) {
|
|
@@ -5266,7 +5383,7 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
5266
5383
|
}(service_1.Service));
|
|
5267
5384
|
exports.ReserveAssetTransactionService = ReserveAssetTransactionService;
|
|
5268
5385
|
|
|
5269
|
-
},{"../../service":
|
|
5386
|
+
},{"../../service":100,"http-status":330}],32:[function(require,module,exports){
|
|
5270
5387
|
"use strict";
|
|
5271
5388
|
var __extends = (this && this.__extends) || (function () {
|
|
5272
5389
|
var extendStatics = function (d, b) {
|
|
@@ -5382,7 +5499,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
5382
5499
|
}(service_1.Service));
|
|
5383
5500
|
exports.AuthorizationService = AuthorizationService;
|
|
5384
5501
|
|
|
5385
|
-
},{"../service":
|
|
5502
|
+
},{"../service":100,"http-status":330}],33:[function(require,module,exports){
|
|
5386
5503
|
"use strict";
|
|
5387
5504
|
var __extends = (this && this.__extends) || (function () {
|
|
5388
5505
|
var extendStatics = function (d, b) {
|
|
@@ -5546,7 +5663,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
5546
5663
|
}(service_1.Service));
|
|
5547
5664
|
exports.CategoryCodeService = CategoryCodeService;
|
|
5548
5665
|
|
|
5549
|
-
},{"../service":
|
|
5666
|
+
},{"../service":100,"http-status":330}],34:[function(require,module,exports){
|
|
5550
5667
|
"use strict";
|
|
5551
5668
|
var __extends = (this && this.__extends) || (function () {
|
|
5552
5669
|
var extendStatics = function (d, b) {
|
|
@@ -5662,7 +5779,7 @@ var CommentService = /** @class */ (function (_super) {
|
|
|
5662
5779
|
}(service_1.Service));
|
|
5663
5780
|
exports.CommentService = CommentService;
|
|
5664
5781
|
|
|
5665
|
-
},{"../service":
|
|
5782
|
+
},{"../service":100,"http-status":330}],35:[function(require,module,exports){
|
|
5666
5783
|
"use strict";
|
|
5667
5784
|
var __extends = (this && this.__extends) || (function () {
|
|
5668
5785
|
var extendStatics = function (d, b) {
|
|
@@ -5840,7 +5957,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
5840
5957
|
}(service_1.Service));
|
|
5841
5958
|
exports.CreativeWorkService = CreativeWorkService;
|
|
5842
5959
|
|
|
5843
|
-
},{"../service":
|
|
5960
|
+
},{"../service":100,"http-status":330}],36:[function(require,module,exports){
|
|
5844
5961
|
"use strict";
|
|
5845
5962
|
var __extends = (this && this.__extends) || (function () {
|
|
5846
5963
|
var extendStatics = function (d, b) {
|
|
@@ -6027,7 +6144,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
6027
6144
|
}(service_1.Service));
|
|
6028
6145
|
exports.CustomerService = CustomerService;
|
|
6029
6146
|
|
|
6030
|
-
},{"../service":
|
|
6147
|
+
},{"../service":100,"http-status":330}],37:[function(require,module,exports){
|
|
6031
6148
|
"use strict";
|
|
6032
6149
|
var __extends = (this && this.__extends) || (function () {
|
|
6033
6150
|
var extendStatics = function (d, b) {
|
|
@@ -6201,7 +6318,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
6201
6318
|
}(service_1.Service));
|
|
6202
6319
|
exports.EmailMessageService = EmailMessageService;
|
|
6203
6320
|
|
|
6204
|
-
},{"../service":
|
|
6321
|
+
},{"../service":100,"http-status":330}],38:[function(require,module,exports){
|
|
6205
6322
|
"use strict";
|
|
6206
6323
|
var __extends = (this && this.__extends) || (function () {
|
|
6207
6324
|
var extendStatics = function (d, b) {
|
|
@@ -6494,7 +6611,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
6494
6611
|
}(service_1.Service));
|
|
6495
6612
|
exports.EventService = EventService;
|
|
6496
6613
|
|
|
6497
|
-
},{"../factory":
|
|
6614
|
+
},{"../factory":95,"../service":100,"http-status":330}],39:[function(require,module,exports){
|
|
6498
6615
|
"use strict";
|
|
6499
6616
|
var __extends = (this && this.__extends) || (function () {
|
|
6500
6617
|
var extendStatics = function (d, b) {
|
|
@@ -6831,7 +6948,7 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
6831
6948
|
}(service_1.Service));
|
|
6832
6949
|
exports.IAMService = IAMService;
|
|
6833
6950
|
|
|
6834
|
-
},{"../service":
|
|
6951
|
+
},{"../service":100,"http-status":330}],40:[function(require,module,exports){
|
|
6835
6952
|
"use strict";
|
|
6836
6953
|
var __extends = (this && this.__extends) || (function () {
|
|
6837
6954
|
var extendStatics = function (d, b) {
|
|
@@ -6957,7 +7074,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
6957
7074
|
}(service_1.Service));
|
|
6958
7075
|
exports.MeService = MeService;
|
|
6959
7076
|
|
|
6960
|
-
},{"../service":
|
|
7077
|
+
},{"../service":100,"http-status":330}],41:[function(require,module,exports){
|
|
6961
7078
|
"use strict";
|
|
6962
7079
|
var __extends = (this && this.__extends) || (function () {
|
|
6963
7080
|
var extendStatics = function (d, b) {
|
|
@@ -7115,7 +7232,7 @@ var MerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
7115
7232
|
}(service_1.Service));
|
|
7116
7233
|
exports.MerchantReturnPolicyService = MerchantReturnPolicyService;
|
|
7117
7234
|
|
|
7118
|
-
},{"../service":
|
|
7235
|
+
},{"../service":100,"http-status":330}],42:[function(require,module,exports){
|
|
7119
7236
|
"use strict";
|
|
7120
7237
|
var __extends = (this && this.__extends) || (function () {
|
|
7121
7238
|
var extendStatics = function (d, b) {
|
|
@@ -7237,7 +7354,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
7237
7354
|
}(service_1.Service));
|
|
7238
7355
|
exports.NoteService = NoteService;
|
|
7239
7356
|
|
|
7240
|
-
},{"../service":
|
|
7357
|
+
},{"../service":100,"http-status":330}],43:[function(require,module,exports){
|
|
7241
7358
|
"use strict";
|
|
7242
7359
|
var __extends = (this && this.__extends) || (function () {
|
|
7243
7360
|
var extendStatics = function (d, b) {
|
|
@@ -7382,7 +7499,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
7382
7499
|
}(service_1.Service));
|
|
7383
7500
|
exports.OfferService = OfferService;
|
|
7384
7501
|
|
|
7385
|
-
},{"../service":
|
|
7502
|
+
},{"../service":100,"http-status":330}],44:[function(require,module,exports){
|
|
7386
7503
|
"use strict";
|
|
7387
7504
|
var __extends = (this && this.__extends) || (function () {
|
|
7388
7505
|
var extendStatics = function (d, b) {
|
|
@@ -7629,7 +7746,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
7629
7746
|
}(service_1.Service));
|
|
7630
7747
|
exports.OfferCatalogService = OfferCatalogService;
|
|
7631
7748
|
|
|
7632
|
-
},{"../service":
|
|
7749
|
+
},{"../service":100,"http-status":330}],45:[function(require,module,exports){
|
|
7633
7750
|
"use strict";
|
|
7634
7751
|
var __extends = (this && this.__extends) || (function () {
|
|
7635
7752
|
var extendStatics = function (d, b) {
|
|
@@ -7830,7 +7947,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
7830
7947
|
}(service_1.Service));
|
|
7831
7948
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
7832
7949
|
|
|
7833
|
-
},{"../service":
|
|
7950
|
+
},{"../service":100,"http-status":330}],46:[function(require,module,exports){
|
|
7834
7951
|
"use strict";
|
|
7835
7952
|
var __extends = (this && this.__extends) || (function () {
|
|
7836
7953
|
var extendStatics = function (d, b) {
|
|
@@ -7988,7 +8105,7 @@ var OfferItemConditionService = /** @class */ (function (_super) {
|
|
|
7988
8105
|
}(service_1.Service));
|
|
7989
8106
|
exports.OfferItemConditionService = OfferItemConditionService;
|
|
7990
8107
|
|
|
7991
|
-
},{"../service":
|
|
8108
|
+
},{"../service":100,"http-status":330}],47:[function(require,module,exports){
|
|
7992
8109
|
"use strict";
|
|
7993
8110
|
var __extends = (this && this.__extends) || (function () {
|
|
7994
8111
|
var extendStatics = function (d, b) {
|
|
@@ -8277,7 +8394,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
8277
8394
|
}(service_1.Service));
|
|
8278
8395
|
exports.OrderService = OrderService;
|
|
8279
8396
|
|
|
8280
|
-
},{"../factory":
|
|
8397
|
+
},{"../factory":95,"../service":100,"http-status":330}],48:[function(require,module,exports){
|
|
8281
8398
|
"use strict";
|
|
8282
8399
|
var __extends = (this && this.__extends) || (function () {
|
|
8283
8400
|
var extendStatics = function (d, b) {
|
|
@@ -8374,7 +8491,7 @@ var OwnershipInfoService = /** @class */ (function (_super) {
|
|
|
8374
8491
|
}(service_1.Service));
|
|
8375
8492
|
exports.OwnershipInfoService = OwnershipInfoService;
|
|
8376
8493
|
|
|
8377
|
-
},{"../service":
|
|
8494
|
+
},{"../service":100,"http-status":330}],49:[function(require,module,exports){
|
|
8378
8495
|
"use strict";
|
|
8379
8496
|
var __extends = (this && this.__extends) || (function () {
|
|
8380
8497
|
var extendStatics = function (d, b) {
|
|
@@ -8552,7 +8669,7 @@ var PaymentProductService = /** @class */ (function (_super) {
|
|
|
8552
8669
|
}(service_1.Service));
|
|
8553
8670
|
exports.PaymentProductService = PaymentProductService;
|
|
8554
8671
|
|
|
8555
|
-
},{"../service":
|
|
8672
|
+
},{"../service":100,"http-status":330}],50:[function(require,module,exports){
|
|
8556
8673
|
"use strict";
|
|
8557
8674
|
var __extends = (this && this.__extends) || (function () {
|
|
8558
8675
|
var extendStatics = function (d, b) {
|
|
@@ -8640,7 +8757,7 @@ var PermissionService = /** @class */ (function (_super) {
|
|
|
8640
8757
|
}(service_1.Service));
|
|
8641
8758
|
exports.PermissionService = PermissionService;
|
|
8642
8759
|
|
|
8643
|
-
},{"../service":
|
|
8760
|
+
},{"../service":100,"http-status":330}],51:[function(require,module,exports){
|
|
8644
8761
|
"use strict";
|
|
8645
8762
|
var __extends = (this && this.__extends) || (function () {
|
|
8646
8763
|
var extendStatics = function (d, b) {
|
|
@@ -8796,7 +8913,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
8796
8913
|
}(service_1.Service));
|
|
8797
8914
|
exports.PermitService = PermitService;
|
|
8798
8915
|
|
|
8799
|
-
},{"../service":
|
|
8916
|
+
},{"../service":100,"http-status":330}],52:[function(require,module,exports){
|
|
8800
8917
|
"use strict";
|
|
8801
8918
|
var __extends = (this && this.__extends) || (function () {
|
|
8802
8919
|
var extendStatics = function (d, b) {
|
|
@@ -9032,7 +9149,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
9032
9149
|
}(service_1.Service));
|
|
9033
9150
|
exports.PersonService = PersonService;
|
|
9034
9151
|
|
|
9035
|
-
},{"../service":
|
|
9152
|
+
},{"../service":100,"http-status":330}],53:[function(require,module,exports){
|
|
9036
9153
|
"use strict";
|
|
9037
9154
|
var __extends = (this && this.__extends) || (function () {
|
|
9038
9155
|
var extendStatics = function (d, b) {
|
|
@@ -9283,7 +9400,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
9283
9400
|
}(service_1.Service));
|
|
9284
9401
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
9285
9402
|
|
|
9286
|
-
},{"../../service":
|
|
9403
|
+
},{"../../service":100,"http-status":330}],54:[function(require,module,exports){
|
|
9287
9404
|
"use strict";
|
|
9288
9405
|
var __extends = (this && this.__extends) || (function () {
|
|
9289
9406
|
var extendStatics = function (d, b) {
|
|
@@ -9786,7 +9903,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
9786
9903
|
}(service_1.Service));
|
|
9787
9904
|
exports.PlaceService = PlaceService;
|
|
9788
9905
|
|
|
9789
|
-
},{"../factory":
|
|
9906
|
+
},{"../factory":95,"../service":100,"http-status":330}],55:[function(require,module,exports){
|
|
9790
9907
|
"use strict";
|
|
9791
9908
|
var __extends = (this && this.__extends) || (function () {
|
|
9792
9909
|
var extendStatics = function (d, b) {
|
|
@@ -9922,7 +10039,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
9922
10039
|
}(service_1.Service));
|
|
9923
10040
|
exports.HasPOSService = HasPOSService;
|
|
9924
10041
|
|
|
9925
|
-
},{"../../factory":
|
|
10042
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],56:[function(require,module,exports){
|
|
9926
10043
|
"use strict";
|
|
9927
10044
|
var __extends = (this && this.__extends) || (function () {
|
|
9928
10045
|
var extendStatics = function (d, b) {
|
|
@@ -10086,7 +10203,7 @@ var PriceSpecificationService = /** @class */ (function (_super) {
|
|
|
10086
10203
|
}(service_1.Service));
|
|
10087
10204
|
exports.PriceSpecificationService = PriceSpecificationService;
|
|
10088
10205
|
|
|
10089
|
-
},{"../service":
|
|
10206
|
+
},{"../service":100,"http-status":330}],57:[function(require,module,exports){
|
|
10090
10207
|
"use strict";
|
|
10091
10208
|
var __extends = (this && this.__extends) || (function () {
|
|
10092
10209
|
var extendStatics = function (d, b) {
|
|
@@ -10304,7 +10421,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
10304
10421
|
}(service_1.Service));
|
|
10305
10422
|
exports.ProductService = ProductService;
|
|
10306
10423
|
|
|
10307
|
-
},{"../service":
|
|
10424
|
+
},{"../service":100,"http-status":330}],58:[function(require,module,exports){
|
|
10308
10425
|
"use strict";
|
|
10309
10426
|
var __extends = (this && this.__extends) || (function () {
|
|
10310
10427
|
var extendStatics = function (d, b) {
|
|
@@ -10475,7 +10592,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
10475
10592
|
}(service_1.Service));
|
|
10476
10593
|
exports.ProjectService = ProjectService;
|
|
10477
10594
|
|
|
10478
|
-
},{"../service":
|
|
10595
|
+
},{"../service":100,"http-status":330}],59:[function(require,module,exports){
|
|
10479
10596
|
"use strict";
|
|
10480
10597
|
var __extends = (this && this.__extends) || (function () {
|
|
10481
10598
|
var extendStatics = function (d, b) {
|
|
@@ -10610,7 +10727,7 @@ var ProjectMakesOfferService = /** @class */ (function (_super) {
|
|
|
10610
10727
|
}(service_1.Service));
|
|
10611
10728
|
exports.ProjectMakesOfferService = ProjectMakesOfferService;
|
|
10612
10729
|
|
|
10613
|
-
},{"../service":
|
|
10730
|
+
},{"../service":100,"http-status":330}],60:[function(require,module,exports){
|
|
10614
10731
|
"use strict";
|
|
10615
10732
|
var __extends = (this && this.__extends) || (function () {
|
|
10616
10733
|
var extendStatics = function (d, b) {
|
|
@@ -10663,6 +10780,17 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
10663
10780
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
10664
10781
|
}
|
|
10665
10782
|
};
|
|
10783
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
10784
|
+
var t = {};
|
|
10785
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
10786
|
+
t[p] = s[p];
|
|
10787
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
10788
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
10789
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
10790
|
+
t[p[i]] = s[p[i]];
|
|
10791
|
+
}
|
|
10792
|
+
return t;
|
|
10793
|
+
};
|
|
10666
10794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10667
10795
|
exports.ReservationService = void 0;
|
|
10668
10796
|
var http_status_1 = require("http-status");
|
|
@@ -10749,29 +10877,28 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
10749
10877
|
/**
|
|
10750
10878
|
* 予約に対する使用アクション検索
|
|
10751
10879
|
*/
|
|
10752
|
-
ReservationService.prototype.searchUseActions = function (params
|
|
10880
|
+
ReservationService.prototype.searchUseActions = function (params
|
|
10881
|
+
// & {
|
|
10882
|
+
// $projection?: {
|
|
10883
|
+
// [key in keyof IUseAction]?: 0;
|
|
10884
|
+
// };
|
|
10885
|
+
// }
|
|
10886
|
+
) {
|
|
10753
10887
|
var _a;
|
|
10754
10888
|
return __awaiter(this, void 0, void 0, function () {
|
|
10889
|
+
var object, queryParams;
|
|
10755
10890
|
var _this = this;
|
|
10756
10891
|
return __generator(this, function (_b) {
|
|
10892
|
+
object = params.object, queryParams = __rest(params, ["object"]);
|
|
10757
10893
|
return [2 /*return*/, this.fetch({
|
|
10758
10894
|
uri: "/reservations/" + String((_a = params.object) === null || _a === void 0 ? void 0 : _a.id) + "/actions/use",
|
|
10759
10895
|
method: 'GET',
|
|
10760
|
-
qs:
|
|
10896
|
+
qs: queryParams,
|
|
10761
10897
|
expectedStatusCodes: [http_status_1.OK]
|
|
10762
10898
|
})
|
|
10763
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
switch (_b.label) {
|
|
10767
|
-
case 0:
|
|
10768
|
-
_a = {};
|
|
10769
|
-
return [4 /*yield*/, response.json()];
|
|
10770
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
10771
|
-
_a)];
|
|
10772
|
-
}
|
|
10773
|
-
});
|
|
10774
|
-
}); })];
|
|
10899
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
10900
|
+
return [2 /*return*/, response.json()];
|
|
10901
|
+
}); }); })];
|
|
10775
10902
|
});
|
|
10776
10903
|
});
|
|
10777
10904
|
};
|
|
@@ -10779,7 +10906,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
10779
10906
|
}(service_1.Service));
|
|
10780
10907
|
exports.ReservationService = ReservationService;
|
|
10781
10908
|
|
|
10782
|
-
},{"../service":
|
|
10909
|
+
},{"../service":100,"http-status":330}],61:[function(require,module,exports){
|
|
10783
10910
|
"use strict";
|
|
10784
10911
|
var __extends = (this && this.__extends) || (function () {
|
|
10785
10912
|
var extendStatics = function (d, b) {
|
|
@@ -11297,7 +11424,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
11297
11424
|
}(service_1.Service));
|
|
11298
11425
|
exports.SellerService = SellerService;
|
|
11299
11426
|
|
|
11300
|
-
},{"../service":
|
|
11427
|
+
},{"../service":100,"http-status":330}],62:[function(require,module,exports){
|
|
11301
11428
|
"use strict";
|
|
11302
11429
|
var __extends = (this && this.__extends) || (function () {
|
|
11303
11430
|
var extendStatics = function (d, b) {
|
|
@@ -11431,7 +11558,7 @@ var TaskService = /** @class */ (function (_super) {
|
|
|
11431
11558
|
}(service_1.Service));
|
|
11432
11559
|
exports.TaskService = TaskService;
|
|
11433
11560
|
|
|
11434
|
-
},{"../service":
|
|
11561
|
+
},{"../service":100,"http-status":330}],63:[function(require,module,exports){
|
|
11435
11562
|
"use strict";
|
|
11436
11563
|
var __extends = (this && this.__extends) || (function () {
|
|
11437
11564
|
var extendStatics = function (d, b) {
|
|
@@ -11519,7 +11646,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
11519
11646
|
}(service_1.Service));
|
|
11520
11647
|
exports.TokenService = TokenService;
|
|
11521
11648
|
|
|
11522
|
-
},{"../service":
|
|
11649
|
+
},{"../service":100,"http-status":330}],64:[function(require,module,exports){
|
|
11523
11650
|
"use strict";
|
|
11524
11651
|
var __extends = (this && this.__extends) || (function () {
|
|
11525
11652
|
var extendStatics = function (d, b) {
|
|
@@ -11607,7 +11734,7 @@ var TransactionNumberService = /** @class */ (function (_super) {
|
|
|
11607
11734
|
}(service_1.Service));
|
|
11608
11735
|
exports.TransactionNumberService = TransactionNumberService;
|
|
11609
11736
|
|
|
11610
|
-
},{"../service":
|
|
11737
|
+
},{"../service":100,"http-status":330}],65:[function(require,module,exports){
|
|
11611
11738
|
"use strict";
|
|
11612
11739
|
var __extends = (this && this.__extends) || (function () {
|
|
11613
11740
|
var extendStatics = function (d, b) {
|
|
@@ -11739,7 +11866,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
11739
11866
|
}(service_1.Service));
|
|
11740
11867
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
11741
11868
|
|
|
11742
|
-
},{"../../factory":
|
|
11869
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],66:[function(require,module,exports){
|
|
11743
11870
|
"use strict";
|
|
11744
11871
|
var __extends = (this && this.__extends) || (function () {
|
|
11745
11872
|
var extendStatics = function (d, b) {
|
|
@@ -11871,7 +11998,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
11871
11998
|
}(service_1.Service));
|
|
11872
11999
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
11873
12000
|
|
|
11874
|
-
},{"../../factory":
|
|
12001
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],67:[function(require,module,exports){
|
|
11875
12002
|
"use strict";
|
|
11876
12003
|
var __extends = (this && this.__extends) || (function () {
|
|
11877
12004
|
var extendStatics = function (d, b) {
|
|
@@ -11971,7 +12098,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
11971
12098
|
}(service_1.Service));
|
|
11972
12099
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
11973
12100
|
|
|
11974
|
-
},{"../../factory":
|
|
12101
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],68:[function(require,module,exports){
|
|
11975
12102
|
"use strict";
|
|
11976
12103
|
var __extends = (this && this.__extends) || (function () {
|
|
11977
12104
|
var extendStatics = function (d, b) {
|
|
@@ -12144,7 +12271,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
12144
12271
|
}(service_1.Service));
|
|
12145
12272
|
exports.TripService = TripService;
|
|
12146
12273
|
|
|
12147
|
-
},{"../service":
|
|
12274
|
+
},{"../service":100,"http-status":330}],69:[function(require,module,exports){
|
|
12148
12275
|
"use strict";
|
|
12149
12276
|
var __extends = (this && this.__extends) || (function () {
|
|
12150
12277
|
var extendStatics = function (d, b) {
|
|
@@ -12277,7 +12404,7 @@ var UserPoolService = /** @class */ (function (_super) {
|
|
|
12277
12404
|
}(service_1.Service));
|
|
12278
12405
|
exports.UserPoolService = UserPoolService;
|
|
12279
12406
|
|
|
12280
|
-
},{"../service":
|
|
12407
|
+
},{"../service":100,"http-status":330}],70:[function(require,module,exports){
|
|
12281
12408
|
"use strict";
|
|
12282
12409
|
var __assign = (this && this.__assign) || function () {
|
|
12283
12410
|
__assign = Object.assign || function(t) {
|
|
@@ -12448,7 +12575,7 @@ var ChevreTxn = /** @class */ (function () {
|
|
|
12448
12575
|
}());
|
|
12449
12576
|
exports.ChevreTxn = ChevreTxn;
|
|
12450
12577
|
|
|
12451
|
-
},{"./chevreTxn/offer":
|
|
12578
|
+
},{"./chevreTxn/offer":71,"./chevreTxn/payment":72,"./chevreTxn/transaction/moneyTransfer":74,"./chevreTxn/transaction/placeOrder":75,"./chevreTxn/transaction/returnOrder":77}],71:[function(require,module,exports){
|
|
12452
12579
|
"use strict";
|
|
12453
12580
|
var __extends = (this && this.__extends) || (function () {
|
|
12454
12581
|
var extendStatics = function (d, b) {
|
|
@@ -12674,7 +12801,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
12674
12801
|
}(service_1.Service));
|
|
12675
12802
|
exports.OfferService = OfferService;
|
|
12676
12803
|
|
|
12677
|
-
},{"../factory":
|
|
12804
|
+
},{"../factory":95,"../service":100,"http-status":330}],72:[function(require,module,exports){
|
|
12678
12805
|
"use strict";
|
|
12679
12806
|
var __extends = (this && this.__extends) || (function () {
|
|
12680
12807
|
var extendStatics = function (d, b) {
|
|
@@ -12915,11 +13042,11 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
12915
13042
|
}(service_1.Service));
|
|
12916
13043
|
exports.PaymentService = PaymentService;
|
|
12917
13044
|
|
|
12918
|
-
},{"../factory":
|
|
13045
|
+
},{"../factory":95,"../service":100,"http-status":330}],73:[function(require,module,exports){
|
|
12919
13046
|
"use strict";
|
|
12920
13047
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12921
13048
|
|
|
12922
|
-
},{}],
|
|
13049
|
+
},{}],74:[function(require,module,exports){
|
|
12923
13050
|
"use strict";
|
|
12924
13051
|
var __extends = (this && this.__extends) || (function () {
|
|
12925
13052
|
var extendStatics = function (d, b) {
|
|
@@ -13069,7 +13196,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
13069
13196
|
}(service_1.Service));
|
|
13070
13197
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
13071
13198
|
|
|
13072
|
-
},{"../../factory":
|
|
13199
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],75:[function(require,module,exports){
|
|
13073
13200
|
"use strict";
|
|
13074
13201
|
var __extends = (this && this.__extends) || (function () {
|
|
13075
13202
|
var extendStatics = function (d, b) {
|
|
@@ -13272,9 +13399,9 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13272
13399
|
}(service_1.Service));
|
|
13273
13400
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
13274
13401
|
|
|
13275
|
-
},{"../../factory":
|
|
13276
|
-
arguments[4][
|
|
13277
|
-
},{"dup":
|
|
13402
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],76:[function(require,module,exports){
|
|
13403
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
13404
|
+
},{"dup":73}],77:[function(require,module,exports){
|
|
13278
13405
|
"use strict";
|
|
13279
13406
|
var __extends = (this && this.__extends) || (function () {
|
|
13280
13407
|
var extendStatics = function (d, b) {
|
|
@@ -13440,7 +13567,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13440
13567
|
}(service_1.Service));
|
|
13441
13568
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
13442
13569
|
|
|
13443
|
-
},{"../../factory":
|
|
13570
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],78:[function(require,module,exports){
|
|
13444
13571
|
"use strict";
|
|
13445
13572
|
var __extends = (this && this.__extends) || (function () {
|
|
13446
13573
|
var extendStatics = function (d, b) {
|
|
@@ -13537,7 +13664,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
13537
13664
|
}(service_1.Service));
|
|
13538
13665
|
exports.CategoryCodeService = CategoryCodeService;
|
|
13539
13666
|
|
|
13540
|
-
},{"../service":
|
|
13667
|
+
},{"../service":100,"http-status":330}],79:[function(require,module,exports){
|
|
13541
13668
|
"use strict";
|
|
13542
13669
|
var __extends = (this && this.__extends) || (function () {
|
|
13543
13670
|
var extendStatics = function (d, b) {
|
|
@@ -13631,7 +13758,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
13631
13758
|
}(service_1.Service));
|
|
13632
13759
|
exports.CreativeWorkService = CreativeWorkService;
|
|
13633
13760
|
|
|
13634
|
-
},{"../service":
|
|
13761
|
+
},{"../service":100,"http-status":330}],80:[function(require,module,exports){
|
|
13635
13762
|
"use strict";
|
|
13636
13763
|
var __extends = (this && this.__extends) || (function () {
|
|
13637
13764
|
var extendStatics = function (d, b) {
|
|
@@ -13728,7 +13855,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
13728
13855
|
}(service_1.Service));
|
|
13729
13856
|
exports.EmailMessageService = EmailMessageService;
|
|
13730
13857
|
|
|
13731
|
-
},{"../service":
|
|
13858
|
+
},{"../service":100,"http-status":330}],81:[function(require,module,exports){
|
|
13732
13859
|
"use strict";
|
|
13733
13860
|
var __extends = (this && this.__extends) || (function () {
|
|
13734
13861
|
var extendStatics = function (d, b) {
|
|
@@ -13987,7 +14114,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
13987
14114
|
}(service_1.Service));
|
|
13988
14115
|
exports.EventService = EventService;
|
|
13989
14116
|
|
|
13990
|
-
},{"../service":
|
|
14117
|
+
},{"../service":100,"http-status":330}],82:[function(require,module,exports){
|
|
13991
14118
|
"use strict";
|
|
13992
14119
|
var __extends = (this && this.__extends) || (function () {
|
|
13993
14120
|
var extendStatics = function (d, b) {
|
|
@@ -14228,9 +14355,9 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
14228
14355
|
}(service_1.Service));
|
|
14229
14356
|
exports.OrderService = OrderService;
|
|
14230
14357
|
|
|
14231
|
-
},{"../factory":
|
|
14232
|
-
arguments[4][
|
|
14233
|
-
},{"dup":
|
|
14358
|
+
},{"../factory":95,"../service":100,"http-status":330}],83:[function(require,module,exports){
|
|
14359
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
14360
|
+
},{"dup":73}],84:[function(require,module,exports){
|
|
14234
14361
|
"use strict";
|
|
14235
14362
|
var __extends = (this && this.__extends) || (function () {
|
|
14236
14363
|
var extendStatics = function (d, b) {
|
|
@@ -14358,7 +14485,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
14358
14485
|
}(service_1.Service));
|
|
14359
14486
|
exports.PermitService = PermitService;
|
|
14360
14487
|
|
|
14361
|
-
},{"../service":
|
|
14488
|
+
},{"../service":100,"http-status":330}],85:[function(require,module,exports){
|
|
14362
14489
|
"use strict";
|
|
14363
14490
|
var __extends = (this && this.__extends) || (function () {
|
|
14364
14491
|
var extendStatics = function (d, b) {
|
|
@@ -14547,9 +14674,9 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
14547
14674
|
}(service_1.Service));
|
|
14548
14675
|
exports.PersonService = PersonService;
|
|
14549
14676
|
|
|
14550
|
-
},{"../service":
|
|
14551
|
-
arguments[4][
|
|
14552
|
-
},{"../../service":
|
|
14677
|
+
},{"../service":100,"http-status":330}],86:[function(require,module,exports){
|
|
14678
|
+
arguments[4][53][0].apply(exports,arguments)
|
|
14679
|
+
},{"../../service":100,"dup":53,"http-status":330}],87:[function(require,module,exports){
|
|
14553
14680
|
"use strict";
|
|
14554
14681
|
var __extends = (this && this.__extends) || (function () {
|
|
14555
14682
|
var extendStatics = function (d, b) {
|
|
@@ -14759,7 +14886,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
14759
14886
|
}(service_1.Service));
|
|
14760
14887
|
exports.PlaceService = PlaceService;
|
|
14761
14888
|
|
|
14762
|
-
},{"../factory":
|
|
14889
|
+
},{"../factory":95,"../service":100,"http-status":330}],88:[function(require,module,exports){
|
|
14763
14890
|
"use strict";
|
|
14764
14891
|
var __extends = (this && this.__extends) || (function () {
|
|
14765
14892
|
var extendStatics = function (d, b) {
|
|
@@ -14845,7 +14972,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
14845
14972
|
}(service_1.Service));
|
|
14846
14973
|
exports.HasPOSService = HasPOSService;
|
|
14847
14974
|
|
|
14848
|
-
},{"../../factory":
|
|
14975
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],89:[function(require,module,exports){
|
|
14849
14976
|
"use strict";
|
|
14850
14977
|
var __extends = (this && this.__extends) || (function () {
|
|
14851
14978
|
var extendStatics = function (d, b) {
|
|
@@ -14974,7 +15101,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
14974
15101
|
}(service_1.Service));
|
|
14975
15102
|
exports.ProductService = ProductService;
|
|
14976
15103
|
|
|
14977
|
-
},{"../service":
|
|
15104
|
+
},{"../service":100,"http-status":330}],90:[function(require,module,exports){
|
|
14978
15105
|
"use strict";
|
|
14979
15106
|
var __extends = (this && this.__extends) || (function () {
|
|
14980
15107
|
var extendStatics = function (d, b) {
|
|
@@ -15082,7 +15209,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
15082
15209
|
}(service_1.Service));
|
|
15083
15210
|
exports.ReservationService = ReservationService;
|
|
15084
15211
|
|
|
15085
|
-
},{"../service":
|
|
15212
|
+
},{"../service":100,"http-status":330}],91:[function(require,module,exports){
|
|
15086
15213
|
"use strict";
|
|
15087
15214
|
var __extends = (this && this.__extends) || (function () {
|
|
15088
15215
|
var extendStatics = function (d, b) {
|
|
@@ -15254,9 +15381,9 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
15254
15381
|
}(service_1.Service));
|
|
15255
15382
|
exports.SellerService = SellerService;
|
|
15256
15383
|
|
|
15257
|
-
},{"../service":
|
|
15258
|
-
arguments[4][
|
|
15259
|
-
},{"../service":
|
|
15384
|
+
},{"../service":100,"http-status":330}],92:[function(require,module,exports){
|
|
15385
|
+
arguments[4][63][0].apply(exports,arguments)
|
|
15386
|
+
},{"../service":100,"dup":63,"http-status":330}],93:[function(require,module,exports){
|
|
15260
15387
|
"use strict";
|
|
15261
15388
|
var __extends = (this && this.__extends) || (function () {
|
|
15262
15389
|
var extendStatics = function (d, b) {
|
|
@@ -15353,7 +15480,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
15353
15480
|
}(service_1.Service));
|
|
15354
15481
|
exports.TripService = TripService;
|
|
15355
15482
|
|
|
15356
|
-
},{"../service":
|
|
15483
|
+
},{"../service":100,"http-status":330}],94:[function(require,module,exports){
|
|
15357
15484
|
"use strict";
|
|
15358
15485
|
var __extends = (this && this.__extends) || (function () {
|
|
15359
15486
|
var extendStatics = function (d, b) {
|
|
@@ -15382,7 +15509,6 @@ var PaymentServiceFactory = require("./chevreTxn/payment/factory");
|
|
|
15382
15509
|
var PlaceOrderTransactionServiceFactory = require("./chevreTxn/transaction/placeOrder/factory");
|
|
15383
15510
|
var categoryCode_1 = require("./service/categoryCode");
|
|
15384
15511
|
var creativeWork_1 = require("./service/creativeWork");
|
|
15385
|
-
var customer_1 = require("./service/customer");
|
|
15386
15512
|
var delivery_1 = require("./service/delivery");
|
|
15387
15513
|
var emailMessage_1 = require("./service/emailMessage");
|
|
15388
15514
|
var event_1 = require("./service/event");
|
|
@@ -15440,17 +15566,6 @@ var service;
|
|
|
15440
15566
|
return CreativeWork;
|
|
15441
15567
|
}(creativeWork_1.CreativeWorkService));
|
|
15442
15568
|
service.CreativeWork = CreativeWork;
|
|
15443
|
-
/**
|
|
15444
|
-
* 顧客サービス
|
|
15445
|
-
*/
|
|
15446
|
-
var Customer = /** @class */ (function (_super) {
|
|
15447
|
-
__extends(Customer, _super);
|
|
15448
|
-
function Customer() {
|
|
15449
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
15450
|
-
}
|
|
15451
|
-
return Customer;
|
|
15452
|
-
}(customer_1.CustomerService));
|
|
15453
|
-
service.Customer = Customer;
|
|
15454
15569
|
/**
|
|
15455
15570
|
* 配送サービス
|
|
15456
15571
|
*/
|
|
@@ -15695,7 +15810,7 @@ var service;
|
|
|
15695
15810
|
service.txn = transaction;
|
|
15696
15811
|
})(service = exports.service || (exports.service = {}));
|
|
15697
15812
|
|
|
15698
|
-
},{"./chevre/order/factory":
|
|
15813
|
+
},{"./chevre/order/factory":83,"./chevreTxn/payment/factory":73,"./chevreTxn/transaction/placeOrder/factory":76,"./service":100,"./service/categoryCode":101,"./service/creativeWork":102,"./service/delivery":103,"./service/emailMessage":104,"./service/event":105,"./service/offer":106,"./service/order":107,"./service/payment":108,"./service/permit":109,"./service/person":110,"./service/person/ownershipInfo":111,"./service/place":112,"./service/place/hasPOS":113,"./service/product":114,"./service/reservation":115,"./service/seller":116,"./service/token":117,"./service/transaction/moneyTransfer":118,"./service/transaction/placeOrder":119,"./service/transaction/placeOrder4sskts":120,"./service/transaction/returnOrder":121}],95:[function(require,module,exports){
|
|
15699
15814
|
"use strict";
|
|
15700
15815
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15701
15816
|
if (k2 === undefined) k2 = k;
|
|
@@ -15713,7 +15828,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15713
15828
|
*/
|
|
15714
15829
|
__exportStar(require("@chevre/factory"), exports);
|
|
15715
15830
|
|
|
15716
|
-
},{"@chevre/factory":214}],
|
|
15831
|
+
},{"@chevre/factory":214}],96:[function(require,module,exports){
|
|
15717
15832
|
"use strict";
|
|
15718
15833
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15719
15834
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -15927,7 +16042,7 @@ exports.loadWaiterAdmin = loadWaiterAdmin;
|
|
|
15927
16042
|
// export class StubAuth extends StubAuthClient { }
|
|
15928
16043
|
// }
|
|
15929
16044
|
|
|
15930
|
-
},{"./admin":3,"./chevre":
|
|
16045
|
+
},{"./admin":3,"./chevre":15,"./chevreAdmin":16,"./chevreTxn":70,"./default":94,"./factory":95,"./pecorino":97,"./transporters":122,"./waiterAdmin":123}],97:[function(require,module,exports){
|
|
15931
16046
|
"use strict";
|
|
15932
16047
|
var __extends = (this && this.__extends) || (function () {
|
|
15933
16048
|
var extendStatics = function (d, b) {
|
|
@@ -15980,7 +16095,7 @@ var service;
|
|
|
15980
16095
|
service.AccountTransaction = AccountTransaction;
|
|
15981
16096
|
})(service = exports.service || (exports.service = {}));
|
|
15982
16097
|
|
|
15983
|
-
},{"./factory":
|
|
16098
|
+
},{"./factory":95,"./pecorino/accountTransaction":98,"./pecorino/permit":99}],98:[function(require,module,exports){
|
|
15984
16099
|
"use strict";
|
|
15985
16100
|
var __extends = (this && this.__extends) || (function () {
|
|
15986
16101
|
var extendStatics = function (d, b) {
|
|
@@ -16151,7 +16266,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
16151
16266
|
}(service_1.Service));
|
|
16152
16267
|
exports.AccountTransactionService = AccountTransactionService;
|
|
16153
16268
|
|
|
16154
|
-
},{"../service":
|
|
16269
|
+
},{"../service":100,"http-status":330}],99:[function(require,module,exports){
|
|
16155
16270
|
"use strict";
|
|
16156
16271
|
var __extends = (this && this.__extends) || (function () {
|
|
16157
16272
|
var extendStatics = function (d, b) {
|
|
@@ -16271,7 +16386,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
16271
16386
|
}(service_1.Service));
|
|
16272
16387
|
exports.PermitService = PermitService;
|
|
16273
16388
|
|
|
16274
|
-
},{"../service":
|
|
16389
|
+
},{"../service":100,"http-status":330}],100:[function(require,module,exports){
|
|
16275
16390
|
"use strict";
|
|
16276
16391
|
var __assign = (this && this.__assign) || function () {
|
|
16277
16392
|
__assign = Object.assign || function(t) {
|
|
@@ -16394,9 +16509,9 @@ var Service = /** @class */ (function () {
|
|
|
16394
16509
|
}());
|
|
16395
16510
|
exports.Service = Service;
|
|
16396
16511
|
|
|
16397
|
-
},{"./transporters":122,"qs":337}],
|
|
16398
|
-
arguments[4][
|
|
16399
|
-
},{"../service":
|
|
16512
|
+
},{"./transporters":122,"qs":337}],101:[function(require,module,exports){
|
|
16513
|
+
arguments[4][78][0].apply(exports,arguments)
|
|
16514
|
+
},{"../service":100,"dup":78,"http-status":330}],102:[function(require,module,exports){
|
|
16400
16515
|
"use strict";
|
|
16401
16516
|
var __extends = (this && this.__extends) || (function () {
|
|
16402
16517
|
var extendStatics = function (d, b) {
|
|
@@ -16493,122 +16608,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
16493
16608
|
}(service_1.Service));
|
|
16494
16609
|
exports.CreativeWorkService = CreativeWorkService;
|
|
16495
16610
|
|
|
16496
|
-
},{"../service":
|
|
16497
|
-
"use strict";
|
|
16498
|
-
var __extends = (this && this.__extends) || (function () {
|
|
16499
|
-
var extendStatics = function (d, b) {
|
|
16500
|
-
extendStatics = Object.setPrototypeOf ||
|
|
16501
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
16502
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
16503
|
-
return extendStatics(d, b);
|
|
16504
|
-
};
|
|
16505
|
-
return function (d, b) {
|
|
16506
|
-
if (typeof b !== "function" && b !== null)
|
|
16507
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
16508
|
-
extendStatics(d, b);
|
|
16509
|
-
function __() { this.constructor = d; }
|
|
16510
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
16511
|
-
};
|
|
16512
|
-
})();
|
|
16513
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
16514
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
16515
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16516
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
16517
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
16518
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
16519
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
16520
|
-
});
|
|
16521
|
-
};
|
|
16522
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
16523
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
16524
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
16525
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
16526
|
-
function step(op) {
|
|
16527
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
16528
|
-
while (_) try {
|
|
16529
|
-
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;
|
|
16530
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
16531
|
-
switch (op[0]) {
|
|
16532
|
-
case 0: case 1: t = op; break;
|
|
16533
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
16534
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
16535
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
16536
|
-
default:
|
|
16537
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
16538
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
16539
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
16540
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
16541
|
-
if (t[2]) _.ops.pop();
|
|
16542
|
-
_.trys.pop(); continue;
|
|
16543
|
-
}
|
|
16544
|
-
op = body.call(thisArg, _);
|
|
16545
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
16546
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
16547
|
-
}
|
|
16548
|
-
};
|
|
16549
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16550
|
-
exports.CustomerService = void 0;
|
|
16551
|
-
var http_status_1 = require("http-status");
|
|
16552
|
-
var service_1 = require("../service");
|
|
16553
|
-
/**
|
|
16554
|
-
* 顧客サービス
|
|
16555
|
-
*/
|
|
16556
|
-
var CustomerService = /** @class */ (function (_super) {
|
|
16557
|
-
__extends(CustomerService, _super);
|
|
16558
|
-
function CustomerService() {
|
|
16559
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
16560
|
-
}
|
|
16561
|
-
/**
|
|
16562
|
-
* 顧客取得
|
|
16563
|
-
*/
|
|
16564
|
-
CustomerService.prototype.findById = function (params) {
|
|
16565
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16566
|
-
var _this = this;
|
|
16567
|
-
return __generator(this, function (_a) {
|
|
16568
|
-
return [2 /*return*/, this.fetch({
|
|
16569
|
-
uri: "/customers/" + params.id,
|
|
16570
|
-
method: 'GET',
|
|
16571
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16572
|
-
})
|
|
16573
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16574
|
-
return [2 /*return*/, response.json()];
|
|
16575
|
-
}); }); })];
|
|
16576
|
-
});
|
|
16577
|
-
});
|
|
16578
|
-
};
|
|
16579
|
-
/**
|
|
16580
|
-
* 顧客検索
|
|
16581
|
-
*/
|
|
16582
|
-
CustomerService.prototype.search = function (params) {
|
|
16583
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16584
|
-
var _this = this;
|
|
16585
|
-
return __generator(this, function (_a) {
|
|
16586
|
-
return [2 /*return*/, this.fetch({
|
|
16587
|
-
uri: '/customers',
|
|
16588
|
-
method: 'GET',
|
|
16589
|
-
qs: params,
|
|
16590
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16591
|
-
})
|
|
16592
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
16593
|
-
var _a;
|
|
16594
|
-
return __generator(this, function (_b) {
|
|
16595
|
-
switch (_b.label) {
|
|
16596
|
-
case 0:
|
|
16597
|
-
_a = {};
|
|
16598
|
-
return [4 /*yield*/, response.json()];
|
|
16599
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
16600
|
-
_a)];
|
|
16601
|
-
}
|
|
16602
|
-
});
|
|
16603
|
-
}); })];
|
|
16604
|
-
});
|
|
16605
|
-
});
|
|
16606
|
-
};
|
|
16607
|
-
return CustomerService;
|
|
16608
|
-
}(service_1.Service));
|
|
16609
|
-
exports.CustomerService = CustomerService;
|
|
16610
|
-
|
|
16611
|
-
},{"../service":99,"http-status":330}],103:[function(require,module,exports){
|
|
16611
|
+
},{"../service":100,"http-status":330}],103:[function(require,module,exports){
|
|
16612
16612
|
"use strict";
|
|
16613
16613
|
var __extends = (this && this.__extends) || (function () {
|
|
16614
16614
|
var extendStatics = function (d, b) {
|
|
@@ -16700,9 +16700,9 @@ var DeliveryService = /** @class */ (function (_super) {
|
|
|
16700
16700
|
}(service_1.Service));
|
|
16701
16701
|
exports.DeliveryService = DeliveryService;
|
|
16702
16702
|
|
|
16703
|
-
},{"../service":
|
|
16704
|
-
arguments[4][
|
|
16705
|
-
},{"../service":
|
|
16703
|
+
},{"../service":100,"http-status":330}],104:[function(require,module,exports){
|
|
16704
|
+
arguments[4][80][0].apply(exports,arguments)
|
|
16705
|
+
},{"../service":100,"dup":80,"http-status":330}],105:[function(require,module,exports){
|
|
16706
16706
|
"use strict";
|
|
16707
16707
|
var __extends = (this && this.__extends) || (function () {
|
|
16708
16708
|
var extendStatics = function (d, b) {
|
|
@@ -16986,7 +16986,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16986
16986
|
}(service_1.Service));
|
|
16987
16987
|
exports.EventService = EventService;
|
|
16988
16988
|
|
|
16989
|
-
},{"../service":
|
|
16989
|
+
},{"../service":100,"http-status":330}],106:[function(require,module,exports){
|
|
16990
16990
|
"use strict";
|
|
16991
16991
|
var __extends = (this && this.__extends) || (function () {
|
|
16992
16992
|
var extendStatics = function (d, b) {
|
|
@@ -17121,7 +17121,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
17121
17121
|
}(service_1.Service));
|
|
17122
17122
|
exports.OfferService = OfferService;
|
|
17123
17123
|
|
|
17124
|
-
},{"../factory":
|
|
17124
|
+
},{"../factory":95,"../service":100,"http-status":330}],107:[function(require,module,exports){
|
|
17125
17125
|
"use strict";
|
|
17126
17126
|
var __extends = (this && this.__extends) || (function () {
|
|
17127
17127
|
var extendStatics = function (d, b) {
|
|
@@ -17328,7 +17328,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
17328
17328
|
}(service_1.Service));
|
|
17329
17329
|
exports.OrderService = OrderService;
|
|
17330
17330
|
|
|
17331
|
-
},{"../service":
|
|
17331
|
+
},{"../service":100,"http-status":330}],108:[function(require,module,exports){
|
|
17332
17332
|
"use strict";
|
|
17333
17333
|
var __extends = (this && this.__extends) || (function () {
|
|
17334
17334
|
var extendStatics = function (d, b) {
|
|
@@ -17571,7 +17571,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
17571
17571
|
}(service_1.Service));
|
|
17572
17572
|
exports.PaymentService = PaymentService;
|
|
17573
17573
|
|
|
17574
|
-
},{"../factory":
|
|
17574
|
+
},{"../factory":95,"../service":100,"http-status":330}],109:[function(require,module,exports){
|
|
17575
17575
|
"use strict";
|
|
17576
17576
|
var __extends = (this && this.__extends) || (function () {
|
|
17577
17577
|
var extendStatics = function (d, b) {
|
|
@@ -17680,7 +17680,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
17680
17680
|
}(service_1.Service));
|
|
17681
17681
|
exports.PermitService = PermitService;
|
|
17682
17682
|
|
|
17683
|
-
},{"../service":
|
|
17683
|
+
},{"../service":100,"http-status":330}],110:[function(require,module,exports){
|
|
17684
17684
|
"use strict";
|
|
17685
17685
|
var __extends = (this && this.__extends) || (function () {
|
|
17686
17686
|
var extendStatics = function (d, b) {
|
|
@@ -17848,7 +17848,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
17848
17848
|
}(service_1.Service));
|
|
17849
17849
|
exports.PersonService = PersonService;
|
|
17850
17850
|
|
|
17851
|
-
},{"../service":
|
|
17851
|
+
},{"../service":100,"http-status":330}],111:[function(require,module,exports){
|
|
17852
17852
|
"use strict";
|
|
17853
17853
|
var __extends = (this && this.__extends) || (function () {
|
|
17854
17854
|
var extendStatics = function (d, b) {
|
|
@@ -18193,7 +18193,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
18193
18193
|
}(service_1.Service));
|
|
18194
18194
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
18195
18195
|
|
|
18196
|
-
},{"../../factory":
|
|
18196
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],112:[function(require,module,exports){
|
|
18197
18197
|
"use strict";
|
|
18198
18198
|
var __extends = (this && this.__extends) || (function () {
|
|
18199
18199
|
var extendStatics = function (d, b) {
|
|
@@ -18375,7 +18375,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
18375
18375
|
}(service_1.Service));
|
|
18376
18376
|
exports.PlaceService = PlaceService;
|
|
18377
18377
|
|
|
18378
|
-
},{"../factory":
|
|
18378
|
+
},{"../factory":95,"../service":100,"http-status":330}],113:[function(require,module,exports){
|
|
18379
18379
|
"use strict";
|
|
18380
18380
|
var __extends = (this && this.__extends) || (function () {
|
|
18381
18381
|
var extendStatics = function (d, b) {
|
|
@@ -18464,7 +18464,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
18464
18464
|
}(service_1.Service));
|
|
18465
18465
|
exports.HasPOSService = HasPOSService;
|
|
18466
18466
|
|
|
18467
|
-
},{"../../factory":
|
|
18467
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],114:[function(require,module,exports){
|
|
18468
18468
|
"use strict";
|
|
18469
18469
|
var __extends = (this && this.__extends) || (function () {
|
|
18470
18470
|
var extendStatics = function (d, b) {
|
|
@@ -18580,15 +18580,15 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
18580
18580
|
}(service_1.Service));
|
|
18581
18581
|
exports.ProductService = ProductService;
|
|
18582
18582
|
|
|
18583
|
-
},{"../service":
|
|
18584
|
-
arguments[4][89][0].apply(exports,arguments)
|
|
18585
|
-
},{"../service":99,"dup":89,"http-status":330}],116:[function(require,module,exports){
|
|
18583
|
+
},{"../service":100,"http-status":330}],115:[function(require,module,exports){
|
|
18586
18584
|
arguments[4][90][0].apply(exports,arguments)
|
|
18587
|
-
},{"../service":
|
|
18588
|
-
arguments[4][
|
|
18589
|
-
},{"../service":
|
|
18590
|
-
arguments[4][
|
|
18591
|
-
},{"
|
|
18585
|
+
},{"../service":100,"dup":90,"http-status":330}],116:[function(require,module,exports){
|
|
18586
|
+
arguments[4][91][0].apply(exports,arguments)
|
|
18587
|
+
},{"../service":100,"dup":91,"http-status":330}],117:[function(require,module,exports){
|
|
18588
|
+
arguments[4][63][0].apply(exports,arguments)
|
|
18589
|
+
},{"../service":100,"dup":63,"http-status":330}],118:[function(require,module,exports){
|
|
18590
|
+
arguments[4][74][0].apply(exports,arguments)
|
|
18591
|
+
},{"../../factory":95,"../../service":100,"dup":74,"http-status":330}],119:[function(require,module,exports){
|
|
18592
18592
|
"use strict";
|
|
18593
18593
|
var __extends = (this && this.__extends) || (function () {
|
|
18594
18594
|
var extendStatics = function (d, b) {
|
|
@@ -18790,7 +18790,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
18790
18790
|
}(service_1.Service));
|
|
18791
18791
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
18792
18792
|
|
|
18793
|
-
},{"../../factory":
|
|
18793
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],120:[function(require,module,exports){
|
|
18794
18794
|
"use strict";
|
|
18795
18795
|
var __extends = (this && this.__extends) || (function () {
|
|
18796
18796
|
var extendStatics = function (d, b) {
|
|
@@ -19089,7 +19089,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
19089
19089
|
}(service_1.Service));
|
|
19090
19090
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
19091
19091
|
|
|
19092
|
-
},{"../../factory":
|
|
19092
|
+
},{"../../factory":95,"../../service":100,"http-status":330}],122:[function(require,module,exports){
|
|
19093
19093
|
"use strict";
|
|
19094
19094
|
var __extends = (this && this.__extends) || (function () {
|
|
19095
19095
|
var extendStatics = function (d, b) {
|
|
@@ -19479,7 +19479,7 @@ var RuleService = /** @class */ (function (_super) {
|
|
|
19479
19479
|
}(service_1.Service));
|
|
19480
19480
|
exports.RuleService = RuleService;
|
|
19481
19481
|
|
|
19482
|
-
},{"../service":
|
|
19482
|
+
},{"../service":100,"http-status":330}],125:[function(require,module,exports){
|
|
19483
19483
|
"use strict";
|
|
19484
19484
|
var __extends = (this && this.__extends) || (function () {
|
|
19485
19485
|
var extendStatics = function (d, b) {
|
|
@@ -19587,7 +19587,7 @@ var RuleSetService = /** @class */ (function (_super) {
|
|
|
19587
19587
|
}(service_1.Service));
|
|
19588
19588
|
exports.RuleSetService = RuleSetService;
|
|
19589
19589
|
|
|
19590
|
-
},{"../service":
|
|
19590
|
+
},{"../service":100,"http-status":330}],126:[function(require,module,exports){
|
|
19591
19591
|
"use strict";
|
|
19592
19592
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
19593
19593
|
/* istanbul ignore file */
|
|
@@ -21074,8 +21074,8 @@ var transaction;
|
|
|
21074
21074
|
exports.transactionType = transactionType_1.AccountTransactionType;
|
|
21075
21075
|
|
|
21076
21076
|
},{"./account/action/moneyTransfer":139,"./account/transaction/deposit":141,"./account/transaction/transfer":142,"./account/transaction/withdraw":143,"./account/transactionType":140}],137:[function(require,module,exports){
|
|
21077
|
-
arguments[4][
|
|
21078
|
-
},{"dup":
|
|
21077
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21078
|
+
},{"dup":73}],138:[function(require,module,exports){
|
|
21079
21079
|
"use strict";
|
|
21080
21080
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21081
21081
|
exports.AccountType = void 0;
|
|
@@ -21097,8 +21097,8 @@ var AccountType;
|
|
|
21097
21097
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
21098
21098
|
|
|
21099
21099
|
},{}],139:[function(require,module,exports){
|
|
21100
|
-
arguments[4][
|
|
21101
|
-
},{"dup":
|
|
21100
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21101
|
+
},{"dup":73}],140:[function(require,module,exports){
|
|
21102
21102
|
"use strict";
|
|
21103
21103
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21104
21104
|
exports.AccountTransactionType = void 0;
|
|
@@ -21122,12 +21122,12 @@ var AccountTransactionType;
|
|
|
21122
21122
|
})(AccountTransactionType = exports.AccountTransactionType || (exports.AccountTransactionType = {}));
|
|
21123
21123
|
|
|
21124
21124
|
},{}],141:[function(require,module,exports){
|
|
21125
|
-
arguments[4][
|
|
21126
|
-
},{"dup":
|
|
21127
|
-
arguments[4][
|
|
21128
|
-
},{"dup":
|
|
21129
|
-
arguments[4][
|
|
21130
|
-
},{"dup":
|
|
21125
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21126
|
+
},{"dup":73}],142:[function(require,module,exports){
|
|
21127
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21128
|
+
},{"dup":73}],143:[function(require,module,exports){
|
|
21129
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21130
|
+
},{"dup":73}],144:[function(require,module,exports){
|
|
21131
21131
|
"use strict";
|
|
21132
21132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21133
21133
|
exports.ActionStatusType = void 0;
|
|
@@ -21194,10 +21194,10 @@ var ObjectType;
|
|
|
21194
21194
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21195
21195
|
|
|
21196
21196
|
},{}],148:[function(require,module,exports){
|
|
21197
|
-
arguments[4][
|
|
21198
|
-
},{"dup":
|
|
21199
|
-
arguments[4][
|
|
21200
|
-
},{"dup":
|
|
21197
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21198
|
+
},{"dup":73}],149:[function(require,module,exports){
|
|
21199
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21200
|
+
},{"dup":73}],150:[function(require,module,exports){
|
|
21201
21201
|
"use strict";
|
|
21202
21202
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21203
21203
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -21212,10 +21212,10 @@ var ServiceIdentifier;
|
|
|
21212
21212
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
21213
21213
|
|
|
21214
21214
|
},{}],151:[function(require,module,exports){
|
|
21215
|
-
arguments[4][
|
|
21216
|
-
},{"dup":
|
|
21217
|
-
arguments[4][
|
|
21218
|
-
},{"dup":
|
|
21215
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21216
|
+
},{"dup":73}],152:[function(require,module,exports){
|
|
21217
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21218
|
+
},{"dup":73}],153:[function(require,module,exports){
|
|
21219
21219
|
"use strict";
|
|
21220
21220
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21221
21221
|
exports.ObjectType = void 0;
|
|
@@ -21225,28 +21225,28 @@ var ObjectType;
|
|
|
21225
21225
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21226
21226
|
|
|
21227
21227
|
},{}],154:[function(require,module,exports){
|
|
21228
|
-
arguments[4][
|
|
21229
|
-
},{"dup":
|
|
21230
|
-
arguments[4][
|
|
21231
|
-
},{"dup":
|
|
21232
|
-
arguments[4][
|
|
21233
|
-
},{"dup":
|
|
21234
|
-
arguments[4][
|
|
21235
|
-
},{"dup":
|
|
21236
|
-
arguments[4][
|
|
21237
|
-
},{"dup":
|
|
21238
|
-
arguments[4][
|
|
21239
|
-
},{"dup":
|
|
21240
|
-
arguments[4][
|
|
21241
|
-
},{"dup":
|
|
21242
|
-
arguments[4][
|
|
21243
|
-
},{"dup":
|
|
21244
|
-
arguments[4][
|
|
21245
|
-
},{"dup":
|
|
21246
|
-
arguments[4][
|
|
21247
|
-
},{"dup":
|
|
21248
|
-
arguments[4][
|
|
21249
|
-
},{"dup":
|
|
21228
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21229
|
+
},{"dup":73}],155:[function(require,module,exports){
|
|
21230
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21231
|
+
},{"dup":73}],156:[function(require,module,exports){
|
|
21232
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21233
|
+
},{"dup":73}],157:[function(require,module,exports){
|
|
21234
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21235
|
+
},{"dup":73}],158:[function(require,module,exports){
|
|
21236
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21237
|
+
},{"dup":73}],159:[function(require,module,exports){
|
|
21238
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21239
|
+
},{"dup":73}],160:[function(require,module,exports){
|
|
21240
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21241
|
+
},{"dup":73}],161:[function(require,module,exports){
|
|
21242
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21243
|
+
},{"dup":73}],162:[function(require,module,exports){
|
|
21244
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21245
|
+
},{"dup":73}],163:[function(require,module,exports){
|
|
21246
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21247
|
+
},{"dup":73}],164:[function(require,module,exports){
|
|
21248
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21249
|
+
},{"dup":73}],165:[function(require,module,exports){
|
|
21250
21250
|
"use strict";
|
|
21251
21251
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21252
21252
|
exports.ObjectType = void 0;
|
|
@@ -21254,26 +21254,26 @@ var point_1 = require("../../authorize/award/point");
|
|
|
21254
21254
|
exports.ObjectType = point_1.ObjectType;
|
|
21255
21255
|
|
|
21256
21256
|
},{"../../authorize/award/point":146}],166:[function(require,module,exports){
|
|
21257
|
-
arguments[4][
|
|
21258
|
-
},{"dup":
|
|
21259
|
-
arguments[4][
|
|
21260
|
-
},{"dup":
|
|
21261
|
-
arguments[4][
|
|
21262
|
-
},{"dup":
|
|
21263
|
-
arguments[4][
|
|
21264
|
-
},{"dup":
|
|
21265
|
-
arguments[4][
|
|
21266
|
-
},{"dup":
|
|
21267
|
-
arguments[4][
|
|
21268
|
-
},{"dup":
|
|
21269
|
-
arguments[4][
|
|
21270
|
-
},{"dup":
|
|
21271
|
-
arguments[4][
|
|
21272
|
-
},{"dup":
|
|
21273
|
-
arguments[4][
|
|
21274
|
-
},{"dup":
|
|
21275
|
-
arguments[4][
|
|
21276
|
-
},{"dup":
|
|
21257
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21258
|
+
},{"dup":73}],167:[function(require,module,exports){
|
|
21259
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21260
|
+
},{"dup":73}],168:[function(require,module,exports){
|
|
21261
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21262
|
+
},{"dup":73}],169:[function(require,module,exports){
|
|
21263
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21264
|
+
},{"dup":73}],170:[function(require,module,exports){
|
|
21265
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21266
|
+
},{"dup":73}],171:[function(require,module,exports){
|
|
21267
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21268
|
+
},{"dup":73}],172:[function(require,module,exports){
|
|
21269
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21270
|
+
},{"dup":73}],173:[function(require,module,exports){
|
|
21271
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21272
|
+
},{"dup":73}],174:[function(require,module,exports){
|
|
21273
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21274
|
+
},{"dup":73}],175:[function(require,module,exports){
|
|
21275
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21276
|
+
},{"dup":73}],176:[function(require,module,exports){
|
|
21277
21277
|
"use strict";
|
|
21278
21278
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21279
21279
|
exports.AssetTransactionType = void 0;
|
|
@@ -21291,12 +21291,11 @@ var AssetTransactionType;
|
|
|
21291
21291
|
*/
|
|
21292
21292
|
AssetTransactionType["Reserve"] = "Reserve";
|
|
21293
21293
|
/**
|
|
21294
|
-
*
|
|
21294
|
+
* 予約取消
|
|
21295
21295
|
*/
|
|
21296
21296
|
AssetTransactionType["CancelReservation"] = "CancelReservation";
|
|
21297
21297
|
/**
|
|
21298
21298
|
* 決済
|
|
21299
|
-
* PaymentMethod: PaymentCard,CreditCard...
|
|
21300
21299
|
*/
|
|
21301
21300
|
AssetTransactionType["Pay"] = "Pay";
|
|
21302
21301
|
/**
|
|
@@ -21311,20 +21310,20 @@ var AssetTransactionType;
|
|
|
21311
21310
|
})(AssetTransactionType = exports.AssetTransactionType || (exports.AssetTransactionType = {}));
|
|
21312
21311
|
|
|
21313
21312
|
},{}],177:[function(require,module,exports){
|
|
21314
|
-
arguments[4][
|
|
21315
|
-
},{"dup":
|
|
21316
|
-
arguments[4][
|
|
21317
|
-
},{"dup":
|
|
21318
|
-
arguments[4][
|
|
21319
|
-
},{"dup":
|
|
21320
|
-
arguments[4][
|
|
21321
|
-
},{"dup":
|
|
21322
|
-
arguments[4][
|
|
21323
|
-
},{"dup":
|
|
21324
|
-
arguments[4][
|
|
21325
|
-
},{"dup":
|
|
21326
|
-
arguments[4][
|
|
21327
|
-
},{"dup":
|
|
21313
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21314
|
+
},{"dup":73}],178:[function(require,module,exports){
|
|
21315
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21316
|
+
},{"dup":73}],179:[function(require,module,exports){
|
|
21317
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21318
|
+
},{"dup":73}],180:[function(require,module,exports){
|
|
21319
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21320
|
+
},{"dup":73}],181:[function(require,module,exports){
|
|
21321
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21322
|
+
},{"dup":73}],182:[function(require,module,exports){
|
|
21323
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21324
|
+
},{"dup":73}],183:[function(require,module,exports){
|
|
21325
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21326
|
+
},{"dup":73}],184:[function(require,module,exports){
|
|
21328
21327
|
"use strict";
|
|
21329
21328
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21330
21329
|
exports.CategorySetIdentifier = void 0;
|
|
@@ -21389,8 +21388,8 @@ var CategorySetIdentifier;
|
|
|
21389
21388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21390
21389
|
|
|
21391
21390
|
},{}],186:[function(require,module,exports){
|
|
21392
|
-
arguments[4][
|
|
21393
|
-
},{"dup":
|
|
21391
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21392
|
+
},{"dup":73}],187:[function(require,module,exports){
|
|
21394
21393
|
"use strict";
|
|
21395
21394
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21396
21395
|
exports.CreativeWorkType = void 0;
|
|
@@ -21407,8 +21406,8 @@ var CreativeWorkType;
|
|
|
21407
21406
|
})(CreativeWorkType = exports.CreativeWorkType || (exports.CreativeWorkType = {}));
|
|
21408
21407
|
|
|
21409
21408
|
},{}],188:[function(require,module,exports){
|
|
21410
|
-
arguments[4][
|
|
21411
|
-
},{"dup":
|
|
21409
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21410
|
+
},{"dup":73}],189:[function(require,module,exports){
|
|
21412
21411
|
"use strict";
|
|
21413
21412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21414
21413
|
exports.AboutIdentifier = void 0;
|
|
@@ -21421,14 +21420,14 @@ var AboutIdentifier;
|
|
|
21421
21420
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
21422
21421
|
|
|
21423
21422
|
},{}],190:[function(require,module,exports){
|
|
21424
|
-
arguments[4][
|
|
21425
|
-
},{"dup":
|
|
21426
|
-
arguments[4][
|
|
21427
|
-
},{"dup":
|
|
21428
|
-
arguments[4][
|
|
21429
|
-
},{"dup":
|
|
21430
|
-
arguments[4][
|
|
21431
|
-
},{"dup":
|
|
21423
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21424
|
+
},{"dup":73}],191:[function(require,module,exports){
|
|
21425
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21426
|
+
},{"dup":73}],192:[function(require,module,exports){
|
|
21427
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21428
|
+
},{"dup":73}],193:[function(require,module,exports){
|
|
21429
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
21430
|
+
},{"dup":73}],194:[function(require,module,exports){
|
|
21432
21431
|
"use strict";
|
|
21433
21432
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21434
21433
|
exports.Video = exports.Text = exports.Multipart = exports.Model = exports.Message = exports.Image = exports.Example = exports.Font = exports.Audio = exports.Application = void 0;
|
|
@@ -22036,12 +22035,12 @@ var EventType;
|
|
|
22036
22035
|
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
22037
22036
|
|
|
22038
22037
|
},{}],210:[function(require,module,exports){
|
|
22039
|
-
arguments[4][
|
|
22040
|
-
},{"dup":
|
|
22041
|
-
arguments[4][
|
|
22042
|
-
},{"dup":
|
|
22043
|
-
arguments[4][
|
|
22044
|
-
},{"dup":
|
|
22038
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22039
|
+
},{"dup":73}],211:[function(require,module,exports){
|
|
22040
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22041
|
+
},{"dup":73}],212:[function(require,module,exports){
|
|
22042
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22043
|
+
},{"dup":73}],213:[function(require,module,exports){
|
|
22045
22044
|
"use strict";
|
|
22046
22045
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22047
22046
|
exports.RoleType = void 0;
|
|
@@ -22487,8 +22486,8 @@ exports.unitCode = unitCode_1.UnitCode;
|
|
|
22487
22486
|
exports.unitPriceOffer = UnitPriceOfferFactory;
|
|
22488
22487
|
|
|
22489
22488
|
},{"./account":136,"./accountTitle":137,"./accountType":138,"./action/authorize/award/point":146,"./action/authorize/offer/eventService":147,"./action/authorize/offer/moneyTransfer":148,"./action/authorize/offer/product":149,"./action/authorize/paymentMethod/any":150,"./action/cancel/reservation":151,"./action/check/paymentMethod/movieTicket":152,"./action/check/token":153,"./action/consume/use/reservation":154,"./action/interact/confirm/moneyTransfer":155,"./action/interact/confirm/pay":156,"./action/interact/confirm/registerService":157,"./action/interact/confirm/reservation":158,"./action/interact/inform":159,"./action/interact/register/service":160,"./action/reserve":161,"./action/trade/order":162,"./action/trade/pay":163,"./action/trade/refund":164,"./action/transfer/give/pointAward":165,"./action/transfer/moneyTransfer":166,"./action/transfer/return/moneyTransfer":167,"./action/transfer/return/order":168,"./action/transfer/return/paymentMethod":169,"./action/transfer/return/pointAward":170,"./action/transfer/return/reserveTransaction":171,"./action/transfer/send/message/email":172,"./action/transfer/send/order":173,"./action/update/delete/member":174,"./actionStatusType":144,"./actionType":145,"./additionalProperty":175,"./assetTransaction/cancelReservation":177,"./assetTransaction/moneyTransfer":178,"./assetTransaction/pay":179,"./assetTransaction/refund":180,"./assetTransaction/registerService":181,"./assetTransaction/reserve":182,"./assetTransactionType":176,"./authorization":183,"./categoryCode":184,"./clientUser":185,"./cognito":186,"./creativeWork/comment":188,"./creativeWork/message/email":189,"./creativeWork/movie":190,"./creativeWork/noteDigitalDocument":191,"./creativeWork/softwareApplication/webApplication":192,"./creativeWorkType":187,"./customer":193,"./encodingFormat":194,"./errorCode":195,"./errors":207,"./event/anyEvent":210,"./event/screeningEvent":211,"./event/screeningEventSeries":212,"./eventStatusType":208,"./eventType":209,"./iam":213,"./invoice":215,"./itemAvailability":216,"./language":217,"./merchantReturnPolicy":218,"./monetaryAmount":219,"./offer":220,"./offer/aggregateOffer":224,"./offerCatalog":221,"./offerItemCondition":222,"./offerType":223,"./order":225,"./orderStatus":226,"./organization":227,"./organizationType":228,"./ownershipInfo":229,"./paymentMethod/paymentCard/creditCard":230,"./paymentMethod/paymentCard/movieTicket":231,"./paymentStatusType":232,"./permit":233,"./person":234,"./personType":235,"./place/busStop":237,"./place/movieTheater":238,"./place/screeningRoom":239,"./place/screeningRoomSection":240,"./place/seat":241,"./placeType":236,"./priceCurrency":242,"./priceSpecification/unitPriceSpecification":244,"./priceSpecificationType":243,"./product":245,"./programMembership":246,"./project":247,"./propertyValue":248,"./propertyValue/locationFeatureSpecification":249,"./qualitativeValue":250,"./quantitativeValue":251,"./report/accountingReport":252,"./reservation/busReservation":255,"./reservation/event":256,"./reservationStatusType":253,"./reservationType":254,"./seller":257,"./service/paymentService":258,"./service/webAPI":259,"./sortType":260,"./task/accountMoneyTransfer":263,"./task/aggregateScreeningEvent":264,"./task/aggregateUseActionsOnEvent":265,"./task/cancelAccountMoneyTransfer":266,"./task/cancelMoneyTransfer":267,"./task/cancelPendingReservation":268,"./task/cancelReservation":269,"./task/confirmReserveTransaction":270,"./task/createAccountingReport":271,"./task/createEvent":272,"./task/deleteTransaction":273,"./task/importEventCapacitiesFromCOA":274,"./task/importEventsFromCOA":275,"./task/importOffersFromCOA":276,"./task/moneyTransfer":277,"./task/onAuthorizationCreated":278,"./task/onEventChanged":279,"./task/onResourceUpdated":280,"./task/pay":281,"./task/refund":282,"./task/registerService":283,"./task/reserve":284,"./task/sendEmailMessage":285,"./task/triggerWebhook":286,"./task/useReservation":287,"./task/voidPayment":288,"./taskName":261,"./taskStatus":262,"./thing":289,"./transaction/moneyTransfer":293,"./transaction/placeOrder":294,"./transaction/returnOrder":295,"./transactionStatusType":290,"./transactionTasksExportationStatus":291,"./transactionType":292,"./trip/busTrip":297,"./tripType":296,"./unitCode":298,"./unitPriceOffer":299,"@waiter/factory":315}],215:[function(require,module,exports){
|
|
22490
|
-
arguments[4][
|
|
22491
|
-
},{"dup":
|
|
22489
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22490
|
+
},{"dup":73}],216:[function(require,module,exports){
|
|
22492
22491
|
"use strict";
|
|
22493
22492
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22494
22493
|
exports.ItemAvailability = void 0;
|
|
@@ -22509,8 +22508,8 @@ var ItemAvailability;
|
|
|
22509
22508
|
})(ItemAvailability = exports.ItemAvailability || (exports.ItemAvailability = {}));
|
|
22510
22509
|
|
|
22511
22510
|
},{}],217:[function(require,module,exports){
|
|
22512
|
-
arguments[4][
|
|
22513
|
-
},{"dup":
|
|
22511
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22512
|
+
},{"dup":73}],218:[function(require,module,exports){
|
|
22514
22513
|
"use strict";
|
|
22515
22514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22516
22515
|
exports.MerchantReturnEnumeration = exports.ReturnFeesEnumeration = exports.RefundTypeEnumeration = void 0;
|
|
@@ -22562,14 +22561,14 @@ var MerchantReturnEnumeration;
|
|
|
22562
22561
|
})(MerchantReturnEnumeration = exports.MerchantReturnEnumeration || (exports.MerchantReturnEnumeration = {}));
|
|
22563
22562
|
|
|
22564
22563
|
},{}],219:[function(require,module,exports){
|
|
22565
|
-
arguments[4][
|
|
22566
|
-
},{"dup":
|
|
22567
|
-
arguments[4][
|
|
22568
|
-
},{"dup":
|
|
22569
|
-
arguments[4][
|
|
22570
|
-
},{"dup":
|
|
22571
|
-
arguments[4][
|
|
22572
|
-
},{"dup":
|
|
22564
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22565
|
+
},{"dup":73}],220:[function(require,module,exports){
|
|
22566
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22567
|
+
},{"dup":73}],221:[function(require,module,exports){
|
|
22568
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22569
|
+
},{"dup":73}],222:[function(require,module,exports){
|
|
22570
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22571
|
+
},{"dup":73}],223:[function(require,module,exports){
|
|
22573
22572
|
"use strict";
|
|
22574
22573
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22575
22574
|
exports.OfferType = void 0;
|
|
@@ -22583,8 +22582,8 @@ var OfferType;
|
|
|
22583
22582
|
})(OfferType = exports.OfferType || (exports.OfferType = {}));
|
|
22584
22583
|
|
|
22585
22584
|
},{}],224:[function(require,module,exports){
|
|
22586
|
-
arguments[4][
|
|
22587
|
-
},{"dup":
|
|
22585
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22586
|
+
},{"dup":73}],225:[function(require,module,exports){
|
|
22588
22587
|
"use strict";
|
|
22589
22588
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22590
22589
|
exports.OrderType = void 0;
|
|
@@ -22613,8 +22612,8 @@ var OrderStatus;
|
|
|
22613
22612
|
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));
|
|
22614
22613
|
|
|
22615
22614
|
},{}],227:[function(require,module,exports){
|
|
22616
|
-
arguments[4][
|
|
22617
|
-
},{"dup":
|
|
22615
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22616
|
+
},{"dup":73}],228:[function(require,module,exports){
|
|
22618
22617
|
"use strict";
|
|
22619
22618
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22620
22619
|
exports.OrganizationType = void 0;
|
|
@@ -22640,12 +22639,12 @@ var OrganizationType;
|
|
|
22640
22639
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
22641
22640
|
|
|
22642
22641
|
},{}],229:[function(require,module,exports){
|
|
22643
|
-
arguments[4][
|
|
22644
|
-
},{"dup":
|
|
22645
|
-
arguments[4][
|
|
22646
|
-
},{"dup":
|
|
22647
|
-
arguments[4][
|
|
22648
|
-
},{"dup":
|
|
22642
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22643
|
+
},{"dup":73}],230:[function(require,module,exports){
|
|
22644
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22645
|
+
},{"dup":73}],231:[function(require,module,exports){
|
|
22646
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22647
|
+
},{"dup":73}],232:[function(require,module,exports){
|
|
22649
22648
|
"use strict";
|
|
22650
22649
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22651
22650
|
exports.PaymentStatusType = void 0;
|
|
@@ -22671,8 +22670,8 @@ var PermitType;
|
|
|
22671
22670
|
})(PermitType = exports.PermitType || (exports.PermitType = {}));
|
|
22672
22671
|
|
|
22673
22672
|
},{}],234:[function(require,module,exports){
|
|
22674
|
-
arguments[4][
|
|
22675
|
-
},{"dup":
|
|
22673
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22674
|
+
},{"dup":73}],235:[function(require,module,exports){
|
|
22676
22675
|
"use strict";
|
|
22677
22676
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22678
22677
|
exports.PersonType = void 0;
|
|
@@ -22703,16 +22702,16 @@ var PlaceType;
|
|
|
22703
22702
|
})(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
|
|
22704
22703
|
|
|
22705
22704
|
},{}],237:[function(require,module,exports){
|
|
22706
|
-
arguments[4][
|
|
22707
|
-
},{"dup":
|
|
22708
|
-
arguments[4][
|
|
22709
|
-
},{"dup":
|
|
22710
|
-
arguments[4][
|
|
22711
|
-
},{"dup":
|
|
22712
|
-
arguments[4][
|
|
22713
|
-
},{"dup":
|
|
22714
|
-
arguments[4][
|
|
22715
|
-
},{"dup":
|
|
22705
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22706
|
+
},{"dup":73}],238:[function(require,module,exports){
|
|
22707
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22708
|
+
},{"dup":73}],239:[function(require,module,exports){
|
|
22709
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22710
|
+
},{"dup":73}],240:[function(require,module,exports){
|
|
22711
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22712
|
+
},{"dup":73}],241:[function(require,module,exports){
|
|
22713
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22714
|
+
},{"dup":73}],242:[function(require,module,exports){
|
|
22716
22715
|
"use strict";
|
|
22717
22716
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22718
22717
|
exports.PriceCurrency = void 0;
|
|
@@ -22758,8 +22757,8 @@ var PriceSpecificationType;
|
|
|
22758
22757
|
})(PriceSpecificationType = exports.PriceSpecificationType || (exports.PriceSpecificationType = {}));
|
|
22759
22758
|
|
|
22760
22759
|
},{}],244:[function(require,module,exports){
|
|
22761
|
-
arguments[4][
|
|
22762
|
-
},{"dup":
|
|
22760
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22761
|
+
},{"dup":73}],245:[function(require,module,exports){
|
|
22763
22762
|
"use strict";
|
|
22764
22763
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22765
22764
|
exports.ProductType = void 0;
|
|
@@ -22800,8 +22799,8 @@ var ProgramMembershipType;
|
|
|
22800
22799
|
})(ProgramMembershipType = exports.ProgramMembershipType || (exports.ProgramMembershipType = {}));
|
|
22801
22800
|
|
|
22802
22801
|
},{}],247:[function(require,module,exports){
|
|
22803
|
-
arguments[4][
|
|
22804
|
-
},{"dup":
|
|
22802
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22803
|
+
},{"dup":73}],248:[function(require,module,exports){
|
|
22805
22804
|
"use strict";
|
|
22806
22805
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22807
22806
|
exports.PropertyValueType = void 0;
|
|
@@ -22811,10 +22810,10 @@ var PropertyValueType;
|
|
|
22811
22810
|
})(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
|
|
22812
22811
|
|
|
22813
22812
|
},{}],249:[function(require,module,exports){
|
|
22814
|
-
arguments[4][
|
|
22815
|
-
},{"dup":
|
|
22816
|
-
arguments[4][
|
|
22817
|
-
},{"dup":
|
|
22813
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22814
|
+
},{"dup":73}],250:[function(require,module,exports){
|
|
22815
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22816
|
+
},{"dup":73}],251:[function(require,module,exports){
|
|
22818
22817
|
"use strict";
|
|
22819
22818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22820
22819
|
exports.StringValue = void 0;
|
|
@@ -22824,8 +22823,8 @@ var StringValue;
|
|
|
22824
22823
|
})(StringValue = exports.StringValue || (exports.StringValue = {}));
|
|
22825
22824
|
|
|
22826
22825
|
},{}],252:[function(require,module,exports){
|
|
22827
|
-
arguments[4][
|
|
22828
|
-
},{"dup":
|
|
22826
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22827
|
+
},{"dup":73}],253:[function(require,module,exports){
|
|
22829
22828
|
"use strict";
|
|
22830
22829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22831
22830
|
exports.ReservationStatusType = void 0;
|
|
@@ -22867,12 +22866,12 @@ var ReservationType;
|
|
|
22867
22866
|
})(ReservationType = exports.ReservationType || (exports.ReservationType = {}));
|
|
22868
22867
|
|
|
22869
22868
|
},{}],255:[function(require,module,exports){
|
|
22870
|
-
arguments[4][
|
|
22871
|
-
},{"dup":
|
|
22872
|
-
arguments[4][
|
|
22873
|
-
},{"dup":
|
|
22874
|
-
arguments[4][
|
|
22875
|
-
},{"dup":
|
|
22869
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22870
|
+
},{"dup":73}],256:[function(require,module,exports){
|
|
22871
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22872
|
+
},{"dup":73}],257:[function(require,module,exports){
|
|
22873
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
22874
|
+
},{"dup":73}],258:[function(require,module,exports){
|
|
22876
22875
|
"use strict";
|
|
22877
22876
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22878
22877
|
exports.PaymentServiceType = void 0;
|
|
@@ -23060,26 +23059,26 @@ var TaskStatus;
|
|
|
23060
23059
|
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
23061
23060
|
|
|
23062
23061
|
},{}],263:[function(require,module,exports){
|
|
23063
|
-
arguments[4][
|
|
23064
|
-
},{"dup":
|
|
23065
|
-
arguments[4][
|
|
23066
|
-
},{"dup":
|
|
23067
|
-
arguments[4][
|
|
23068
|
-
},{"dup":
|
|
23069
|
-
arguments[4][
|
|
23070
|
-
},{"dup":
|
|
23071
|
-
arguments[4][
|
|
23072
|
-
},{"dup":
|
|
23073
|
-
arguments[4][
|
|
23074
|
-
},{"dup":
|
|
23075
|
-
arguments[4][
|
|
23076
|
-
},{"dup":
|
|
23077
|
-
arguments[4][
|
|
23078
|
-
},{"dup":
|
|
23079
|
-
arguments[4][
|
|
23080
|
-
},{"dup":
|
|
23081
|
-
arguments[4][
|
|
23082
|
-
},{"dup":
|
|
23062
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23063
|
+
},{"dup":73}],264:[function(require,module,exports){
|
|
23064
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23065
|
+
},{"dup":73}],265:[function(require,module,exports){
|
|
23066
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23067
|
+
},{"dup":73}],266:[function(require,module,exports){
|
|
23068
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23069
|
+
},{"dup":73}],267:[function(require,module,exports){
|
|
23070
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23071
|
+
},{"dup":73}],268:[function(require,module,exports){
|
|
23072
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23073
|
+
},{"dup":73}],269:[function(require,module,exports){
|
|
23074
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23075
|
+
},{"dup":73}],270:[function(require,module,exports){
|
|
23076
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23077
|
+
},{"dup":73}],271:[function(require,module,exports){
|
|
23078
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23079
|
+
},{"dup":73}],272:[function(require,module,exports){
|
|
23080
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23081
|
+
},{"dup":73}],273:[function(require,module,exports){
|
|
23083
23082
|
"use strict";
|
|
23084
23083
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23085
23084
|
exports.SpecifyingMethod = void 0;
|
|
@@ -23093,38 +23092,38 @@ var SpecifyingMethod;
|
|
|
23093
23092
|
})(SpecifyingMethod = exports.SpecifyingMethod || (exports.SpecifyingMethod = {}));
|
|
23094
23093
|
|
|
23095
23094
|
},{}],274:[function(require,module,exports){
|
|
23096
|
-
arguments[4][
|
|
23097
|
-
},{"dup":
|
|
23098
|
-
arguments[4][
|
|
23099
|
-
},{"dup":
|
|
23100
|
-
arguments[4][
|
|
23101
|
-
},{"dup":
|
|
23102
|
-
arguments[4][
|
|
23103
|
-
},{"dup":
|
|
23104
|
-
arguments[4][
|
|
23105
|
-
},{"dup":
|
|
23106
|
-
arguments[4][
|
|
23107
|
-
},{"dup":
|
|
23108
|
-
arguments[4][
|
|
23109
|
-
},{"dup":
|
|
23110
|
-
arguments[4][
|
|
23111
|
-
},{"dup":
|
|
23112
|
-
arguments[4][
|
|
23113
|
-
},{"dup":
|
|
23114
|
-
arguments[4][
|
|
23115
|
-
},{"dup":
|
|
23116
|
-
arguments[4][
|
|
23117
|
-
},{"dup":
|
|
23118
|
-
arguments[4][
|
|
23119
|
-
},{"dup":
|
|
23120
|
-
arguments[4][
|
|
23121
|
-
},{"dup":
|
|
23122
|
-
arguments[4][
|
|
23123
|
-
},{"dup":
|
|
23124
|
-
arguments[4][
|
|
23125
|
-
},{"dup":
|
|
23126
|
-
arguments[4][
|
|
23127
|
-
},{"dup":
|
|
23095
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23096
|
+
},{"dup":73}],275:[function(require,module,exports){
|
|
23097
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23098
|
+
},{"dup":73}],276:[function(require,module,exports){
|
|
23099
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23100
|
+
},{"dup":73}],277:[function(require,module,exports){
|
|
23101
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23102
|
+
},{"dup":73}],278:[function(require,module,exports){
|
|
23103
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23104
|
+
},{"dup":73}],279:[function(require,module,exports){
|
|
23105
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23106
|
+
},{"dup":73}],280:[function(require,module,exports){
|
|
23107
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23108
|
+
},{"dup":73}],281:[function(require,module,exports){
|
|
23109
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23110
|
+
},{"dup":73}],282:[function(require,module,exports){
|
|
23111
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23112
|
+
},{"dup":73}],283:[function(require,module,exports){
|
|
23113
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23114
|
+
},{"dup":73}],284:[function(require,module,exports){
|
|
23115
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23116
|
+
},{"dup":73}],285:[function(require,module,exports){
|
|
23117
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23118
|
+
},{"dup":73}],286:[function(require,module,exports){
|
|
23119
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23120
|
+
},{"dup":73}],287:[function(require,module,exports){
|
|
23121
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23122
|
+
},{"dup":73}],288:[function(require,module,exports){
|
|
23123
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23124
|
+
},{"dup":73}],289:[function(require,module,exports){
|
|
23125
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23126
|
+
},{"dup":73}],290:[function(require,module,exports){
|
|
23128
23127
|
"use strict";
|
|
23129
23128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23130
23129
|
exports.TransactionStatusType = void 0;
|
|
@@ -23186,10 +23185,10 @@ var TransactionType;
|
|
|
23186
23185
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
23187
23186
|
|
|
23188
23187
|
},{}],293:[function(require,module,exports){
|
|
23189
|
-
arguments[4][
|
|
23190
|
-
},{"dup":
|
|
23191
|
-
arguments[4][
|
|
23192
|
-
},{"dup":
|
|
23188
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23189
|
+
},{"dup":73}],294:[function(require,module,exports){
|
|
23190
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23191
|
+
},{"dup":73}],295:[function(require,module,exports){
|
|
23193
23192
|
"use strict";
|
|
23194
23193
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23195
23194
|
exports.Reason = void 0;
|
|
@@ -23222,8 +23221,8 @@ var TripType;
|
|
|
23222
23221
|
})(TripType = exports.TripType || (exports.TripType = {}));
|
|
23223
23222
|
|
|
23224
23223
|
},{}],297:[function(require,module,exports){
|
|
23225
|
-
arguments[4][
|
|
23226
|
-
},{"dup":
|
|
23224
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23225
|
+
},{"dup":73}],298:[function(require,module,exports){
|
|
23227
23226
|
"use strict";
|
|
23228
23227
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23229
23228
|
exports.UnitCode = void 0;
|
|
@@ -23251,10 +23250,10 @@ var UnitCode;
|
|
|
23251
23250
|
})(UnitCode = exports.UnitCode || (exports.UnitCode = {}));
|
|
23252
23251
|
|
|
23253
23252
|
},{}],299:[function(require,module,exports){
|
|
23254
|
-
arguments[4][
|
|
23255
|
-
},{"dup":
|
|
23256
|
-
arguments[4][
|
|
23257
|
-
},{"dup":
|
|
23253
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23254
|
+
},{"dup":73}],300:[function(require,module,exports){
|
|
23255
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23256
|
+
},{"dup":73}],301:[function(require,module,exports){
|
|
23258
23257
|
"use strict";
|
|
23259
23258
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23260
23259
|
/**
|
|
@@ -23613,14 +23612,14 @@ var waiter_1 = require("./error/waiter");
|
|
|
23613
23612
|
exports.Waiter = waiter_1.WaiterError;
|
|
23614
23613
|
|
|
23615
23614
|
},{"./error/argument":302,"./error/argumentNull":303,"./error/forbidden":304,"./error/notFound":305,"./error/rateLimitExceeded":306,"./error/serviceUnavailable":307,"./error/unauthorized":308,"./error/waiter":309}],311:[function(require,module,exports){
|
|
23616
|
-
arguments[4][
|
|
23617
|
-
},{"dup":
|
|
23618
|
-
arguments[4][
|
|
23619
|
-
},{"dup":
|
|
23620
|
-
arguments[4][
|
|
23621
|
-
},{"dup":
|
|
23622
|
-
arguments[4][
|
|
23623
|
-
},{"dup":
|
|
23615
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23616
|
+
},{"dup":73}],312:[function(require,module,exports){
|
|
23617
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23618
|
+
},{"dup":73}],313:[function(require,module,exports){
|
|
23619
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23620
|
+
},{"dup":73}],314:[function(require,module,exports){
|
|
23621
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
23622
|
+
},{"dup":73}],315:[function(require,module,exports){
|
|
23624
23623
|
"use strict";
|
|
23625
23624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23626
23625
|
/**
|