@cinerino/sdk 5.12.0-alpha.1 → 5.12.0-alpha.2
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/src/cancelReservations.ts +3 -2
- package/lib/abstract/admin/order.d.ts +47 -0
- package/lib/abstract/admin/order.js +170 -0
- package/lib/abstract/admin/reservation.d.ts +68 -0
- package/lib/abstract/admin/reservation.js +166 -0
- package/lib/abstract/admin.d.ts +18 -0
- package/lib/abstract/admin.js +40 -0
- package/lib/abstract/default.d.ts +0 -4
- package/lib/abstract/default.js +0 -6
- package/lib/abstract/service/order.d.ts +2 -41
- package/lib/abstract/service/order.js +0 -103
- package/lib/abstract/service/reservation.d.ts +1 -62
- package/lib/abstract/service/reservation.js +0 -99
- package/lib/bundle.js +748 -680
- package/package.json +2 -2
- /package/lib/abstract/{service → admin}/reservation/factory.d.ts +0 -0
- /package/lib/abstract/{service → admin}/reservation/factory.js +0 -0
package/lib/bundle.js
CHANGED
|
@@ -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":95}],3:[function(require,module,exports){
|
|
22
22
|
"use strict";
|
|
23
23
|
var __assign = (this && this.__assign) || function () {
|
|
24
24
|
__assign = Object.assign || function(t) {
|
|
@@ -92,9 +92,15 @@ var service;
|
|
|
92
92
|
var OfferCatalogItem;
|
|
93
93
|
(function (OfferCatalogItem) {
|
|
94
94
|
})(OfferCatalogItem = service.OfferCatalogItem || (service.OfferCatalogItem = {}));
|
|
95
|
+
var Order;
|
|
96
|
+
(function (Order) {
|
|
97
|
+
})(Order = service.Order || (service.Order = {}));
|
|
95
98
|
var Product;
|
|
96
99
|
(function (Product) {
|
|
97
100
|
})(Product = service.Product || (service.Product = {}));
|
|
101
|
+
var Reservation;
|
|
102
|
+
(function (Reservation) {
|
|
103
|
+
})(Reservation = service.Reservation || (service.Reservation = {}));
|
|
98
104
|
})(service = exports.service || (exports.service = {}));
|
|
99
105
|
/**
|
|
100
106
|
* 管理サービス
|
|
@@ -222,6 +228,23 @@ var Admin = /** @class */ (function () {
|
|
|
222
228
|
});
|
|
223
229
|
});
|
|
224
230
|
};
|
|
231
|
+
Admin.prototype.createOrderInstance = function (params) {
|
|
232
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
233
|
+
var _a;
|
|
234
|
+
return __generator(this, function (_b) {
|
|
235
|
+
switch (_b.label) {
|
|
236
|
+
case 0:
|
|
237
|
+
if (!(service.Order.svc === undefined)) return [3 /*break*/, 2];
|
|
238
|
+
_a = service.Order;
|
|
239
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./admin/order'); })];
|
|
240
|
+
case 1:
|
|
241
|
+
_a.svc = (_b.sent()).OrderService;
|
|
242
|
+
_b.label = 2;
|
|
243
|
+
case 2: return [2 /*return*/, new service.Order.svc(__assign(__assign({}, this.options), params))];
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
});
|
|
247
|
+
};
|
|
225
248
|
Admin.prototype.createProductInstance = function (params) {
|
|
226
249
|
return __awaiter(this, void 0, void 0, function () {
|
|
227
250
|
var _a;
|
|
@@ -239,11 +262,28 @@ var Admin = /** @class */ (function () {
|
|
|
239
262
|
});
|
|
240
263
|
});
|
|
241
264
|
};
|
|
265
|
+
Admin.prototype.createReservationInstance = function (params) {
|
|
266
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
267
|
+
var _a;
|
|
268
|
+
return __generator(this, function (_b) {
|
|
269
|
+
switch (_b.label) {
|
|
270
|
+
case 0:
|
|
271
|
+
if (!(service.Reservation.svc === undefined)) return [3 /*break*/, 2];
|
|
272
|
+
_a = service.Reservation;
|
|
273
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./admin/reservation'); })];
|
|
274
|
+
case 1:
|
|
275
|
+
_a.svc = (_b.sent()).ReservationService;
|
|
276
|
+
_b.label = 2;
|
|
277
|
+
case 2: return [2 /*return*/, new service.Reservation.svc(__assign(__assign({}, this.options), params))];
|
|
278
|
+
}
|
|
279
|
+
});
|
|
280
|
+
});
|
|
281
|
+
};
|
|
242
282
|
return Admin;
|
|
243
283
|
}());
|
|
244
284
|
exports.Admin = Admin;
|
|
245
285
|
|
|
246
|
-
},{"./admin/creativeWork":4,"./admin/event":5,"./admin/me":6,"./admin/note":7,"./admin/offer":8,"./admin/offerCatalog":9,"./admin/offerCatalogItem":10,"./admin/product":
|
|
286
|
+
},{"./admin/creativeWork":4,"./admin/event":5,"./admin/me":6,"./admin/note":7,"./admin/offer":8,"./admin/offerCatalog":9,"./admin/offerCatalogItem":10,"./admin/order":11,"./admin/product":12,"./admin/reservation":13}],4:[function(require,module,exports){
|
|
247
287
|
"use strict";
|
|
248
288
|
var __extends = (this && this.__extends) || (function () {
|
|
249
289
|
var extendStatics = function (d, b) {
|
|
@@ -336,7 +376,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
336
376
|
}(service_1.Service));
|
|
337
377
|
exports.CreativeWorkService = CreativeWorkService;
|
|
338
378
|
|
|
339
|
-
},{"../service":
|
|
379
|
+
},{"../service":99,"http-status":330}],5:[function(require,module,exports){
|
|
340
380
|
"use strict";
|
|
341
381
|
var __extends = (this && this.__extends) || (function () {
|
|
342
382
|
var extendStatics = function (d, b) {
|
|
@@ -472,7 +512,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
472
512
|
}(service_1.Service));
|
|
473
513
|
exports.EventService = EventService;
|
|
474
514
|
|
|
475
|
-
},{"../factory":
|
|
515
|
+
},{"../factory":94,"../service":99,"http-status":330}],6:[function(require,module,exports){
|
|
476
516
|
"use strict";
|
|
477
517
|
var __extends = (this && this.__extends) || (function () {
|
|
478
518
|
var extendStatics = function (d, b) {
|
|
@@ -571,7 +611,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
571
611
|
}(service_1.Service));
|
|
572
612
|
exports.MeService = MeService;
|
|
573
613
|
|
|
574
|
-
},{"../service":
|
|
614
|
+
},{"../service":99,"http-status":330}],7:[function(require,module,exports){
|
|
575
615
|
"use strict";
|
|
576
616
|
var __extends = (this && this.__extends) || (function () {
|
|
577
617
|
var extendStatics = function (d, b) {
|
|
@@ -711,7 +751,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
711
751
|
}(service_1.Service));
|
|
712
752
|
exports.NoteService = NoteService;
|
|
713
753
|
|
|
714
|
-
},{"../service":
|
|
754
|
+
},{"../service":99,"http-status":330}],8:[function(require,module,exports){
|
|
715
755
|
"use strict";
|
|
716
756
|
var __extends = (this && this.__extends) || (function () {
|
|
717
757
|
var extendStatics = function (d, b) {
|
|
@@ -825,7 +865,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
825
865
|
}(service_1.Service));
|
|
826
866
|
exports.OfferService = OfferService;
|
|
827
867
|
|
|
828
|
-
},{"../service":
|
|
868
|
+
},{"../service":99,"http-status":330}],9:[function(require,module,exports){
|
|
829
869
|
"use strict";
|
|
830
870
|
var __extends = (this && this.__extends) || (function () {
|
|
831
871
|
var extendStatics = function (d, b) {
|
|
@@ -919,7 +959,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
919
959
|
}(service_1.Service));
|
|
920
960
|
exports.OfferCatalogService = OfferCatalogService;
|
|
921
961
|
|
|
922
|
-
},{"../service":
|
|
962
|
+
},{"../service":99,"http-status":330}],10:[function(require,module,exports){
|
|
923
963
|
"use strict";
|
|
924
964
|
var __extends = (this && this.__extends) || (function () {
|
|
925
965
|
var extendStatics = function (d, b) {
|
|
@@ -1029,7 +1069,179 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
1029
1069
|
}(service_1.Service));
|
|
1030
1070
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
1031
1071
|
|
|
1032
|
-
},{"../service":
|
|
1072
|
+
},{"../service":99,"http-status":330}],11:[function(require,module,exports){
|
|
1073
|
+
"use strict";
|
|
1074
|
+
var __extends = (this && this.__extends) || (function () {
|
|
1075
|
+
var extendStatics = function (d, b) {
|
|
1076
|
+
extendStatics = Object.setPrototypeOf ||
|
|
1077
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
1078
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
1079
|
+
return extendStatics(d, b);
|
|
1080
|
+
};
|
|
1081
|
+
return function (d, b) {
|
|
1082
|
+
if (typeof b !== "function" && b !== null)
|
|
1083
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
1084
|
+
extendStatics(d, b);
|
|
1085
|
+
function __() { this.constructor = d; }
|
|
1086
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1087
|
+
};
|
|
1088
|
+
})();
|
|
1089
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
1090
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
1091
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
1092
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
1093
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
1094
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
1095
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
1096
|
+
});
|
|
1097
|
+
};
|
|
1098
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
1099
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
1100
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
1101
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
1102
|
+
function step(op) {
|
|
1103
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
1104
|
+
while (_) try {
|
|
1105
|
+
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;
|
|
1106
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
1107
|
+
switch (op[0]) {
|
|
1108
|
+
case 0: case 1: t = op; break;
|
|
1109
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
1110
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
1111
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
1112
|
+
default:
|
|
1113
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
1114
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
1115
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
1116
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
1117
|
+
if (t[2]) _.ops.pop();
|
|
1118
|
+
_.trys.pop(); continue;
|
|
1119
|
+
}
|
|
1120
|
+
op = body.call(thisArg, _);
|
|
1121
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
1122
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1123
|
+
}
|
|
1124
|
+
};
|
|
1125
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1126
|
+
exports.OrderService = void 0;
|
|
1127
|
+
var http_status_1 = require("http-status");
|
|
1128
|
+
var service_1 = require("../service");
|
|
1129
|
+
/**
|
|
1130
|
+
* 注文サービス
|
|
1131
|
+
*/
|
|
1132
|
+
var OrderService = /** @class */ (function (_super) {
|
|
1133
|
+
__extends(OrderService, _super);
|
|
1134
|
+
function OrderService() {
|
|
1135
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1136
|
+
}
|
|
1137
|
+
/**
|
|
1138
|
+
* 注文取得
|
|
1139
|
+
*/
|
|
1140
|
+
OrderService.prototype.findByOrderNumber = function (params) {
|
|
1141
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1142
|
+
var _this = this;
|
|
1143
|
+
return __generator(this, function (_a) {
|
|
1144
|
+
return [2 /*return*/, this.fetch({
|
|
1145
|
+
uri: "/orders/" + params.orderNumber,
|
|
1146
|
+
method: 'GET',
|
|
1147
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1148
|
+
})
|
|
1149
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1150
|
+
return [2 /*return*/, response.json()];
|
|
1151
|
+
}); }); })];
|
|
1152
|
+
});
|
|
1153
|
+
});
|
|
1154
|
+
};
|
|
1155
|
+
/**
|
|
1156
|
+
* 注文を検索する
|
|
1157
|
+
*/
|
|
1158
|
+
OrderService.prototype.search = function (params) {
|
|
1159
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1160
|
+
var _this = this;
|
|
1161
|
+
return __generator(this, function (_a) {
|
|
1162
|
+
return [2 /*return*/, this.fetch({
|
|
1163
|
+
uri: '/orders',
|
|
1164
|
+
method: 'GET',
|
|
1165
|
+
qs: params,
|
|
1166
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1167
|
+
})
|
|
1168
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1169
|
+
var _a;
|
|
1170
|
+
return __generator(this, function (_b) {
|
|
1171
|
+
switch (_b.label) {
|
|
1172
|
+
case 0:
|
|
1173
|
+
_a = {};
|
|
1174
|
+
return [4 /*yield*/, response.json()];
|
|
1175
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1176
|
+
_a)];
|
|
1177
|
+
}
|
|
1178
|
+
});
|
|
1179
|
+
}); })];
|
|
1180
|
+
});
|
|
1181
|
+
});
|
|
1182
|
+
};
|
|
1183
|
+
/**
|
|
1184
|
+
* 返品者検索
|
|
1185
|
+
*/
|
|
1186
|
+
OrderService.prototype.findReturner = function (params) {
|
|
1187
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1188
|
+
var _this = this;
|
|
1189
|
+
return __generator(this, function (_a) {
|
|
1190
|
+
return [2 /*return*/, this.fetch({
|
|
1191
|
+
uri: "/orders/" + params.orderNumber + "/returner",
|
|
1192
|
+
method: 'GET',
|
|
1193
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1194
|
+
})
|
|
1195
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1196
|
+
return [2 /*return*/, response.json()];
|
|
1197
|
+
}); }); })];
|
|
1198
|
+
});
|
|
1199
|
+
});
|
|
1200
|
+
};
|
|
1201
|
+
/**
|
|
1202
|
+
* 注文オファー検索
|
|
1203
|
+
*/
|
|
1204
|
+
OrderService.prototype.searchAcceptedOffersByOrderNumber = function (params, conditions) {
|
|
1205
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1206
|
+
var _this = this;
|
|
1207
|
+
return __generator(this, function (_a) {
|
|
1208
|
+
return [2 /*return*/, this.fetch({
|
|
1209
|
+
uri: "/orders/" + params.orderNumber + "/acceptedOffers",
|
|
1210
|
+
method: 'GET',
|
|
1211
|
+
expectedStatusCodes: [http_status_1.OK],
|
|
1212
|
+
qs: conditions
|
|
1213
|
+
})
|
|
1214
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1215
|
+
return [2 /*return*/, response.json()];
|
|
1216
|
+
}); }); })];
|
|
1217
|
+
});
|
|
1218
|
+
});
|
|
1219
|
+
};
|
|
1220
|
+
/**
|
|
1221
|
+
* 変更可能な属性を更新する
|
|
1222
|
+
*/
|
|
1223
|
+
OrderService.prototype.updateChangeableAttributes = function (params) {
|
|
1224
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1225
|
+
return __generator(this, function (_a) {
|
|
1226
|
+
switch (_a.label) {
|
|
1227
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1228
|
+
uri: "/orders/" + params.orderNumber,
|
|
1229
|
+
method: 'PATCH',
|
|
1230
|
+
body: params,
|
|
1231
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1232
|
+
})];
|
|
1233
|
+
case 1:
|
|
1234
|
+
_a.sent();
|
|
1235
|
+
return [2 /*return*/];
|
|
1236
|
+
}
|
|
1237
|
+
});
|
|
1238
|
+
});
|
|
1239
|
+
};
|
|
1240
|
+
return OrderService;
|
|
1241
|
+
}(service_1.Service));
|
|
1242
|
+
exports.OrderService = OrderService;
|
|
1243
|
+
|
|
1244
|
+
},{"../service":99,"http-status":330}],12:[function(require,module,exports){
|
|
1033
1245
|
"use strict";
|
|
1034
1246
|
var __extends = (this && this.__extends) || (function () {
|
|
1035
1247
|
var extendStatics = function (d, b) {
|
|
@@ -1122,7 +1334,175 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
1122
1334
|
}(service_1.Service));
|
|
1123
1335
|
exports.ProductService = ProductService;
|
|
1124
1336
|
|
|
1125
|
-
},{"../service":
|
|
1337
|
+
},{"../service":99,"http-status":330}],13:[function(require,module,exports){
|
|
1338
|
+
"use strict";
|
|
1339
|
+
var __extends = (this && this.__extends) || (function () {
|
|
1340
|
+
var extendStatics = function (d, b) {
|
|
1341
|
+
extendStatics = Object.setPrototypeOf ||
|
|
1342
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
1343
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
1344
|
+
return extendStatics(d, b);
|
|
1345
|
+
};
|
|
1346
|
+
return function (d, b) {
|
|
1347
|
+
if (typeof b !== "function" && b !== null)
|
|
1348
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
1349
|
+
extendStatics(d, b);
|
|
1350
|
+
function __() { this.constructor = d; }
|
|
1351
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1352
|
+
};
|
|
1353
|
+
})();
|
|
1354
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
1355
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
1356
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
1357
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
1358
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
1359
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
1360
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
1361
|
+
});
|
|
1362
|
+
};
|
|
1363
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
1364
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
1365
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
1366
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
1367
|
+
function step(op) {
|
|
1368
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
1369
|
+
while (_) try {
|
|
1370
|
+
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;
|
|
1371
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
1372
|
+
switch (op[0]) {
|
|
1373
|
+
case 0: case 1: t = op; break;
|
|
1374
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
1375
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
1376
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
1377
|
+
default:
|
|
1378
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
1379
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
1380
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
1381
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
1382
|
+
if (t[2]) _.ops.pop();
|
|
1383
|
+
_.trys.pop(); continue;
|
|
1384
|
+
}
|
|
1385
|
+
op = body.call(thisArg, _);
|
|
1386
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
1387
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1388
|
+
}
|
|
1389
|
+
};
|
|
1390
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1391
|
+
exports.ReservationService = void 0;
|
|
1392
|
+
var http_status_1 = require("http-status");
|
|
1393
|
+
var factory = require("../factory");
|
|
1394
|
+
var service_1 = require("../service");
|
|
1395
|
+
/**
|
|
1396
|
+
* 予約サービス
|
|
1397
|
+
*/
|
|
1398
|
+
var ReservationService = /** @class */ (function (_super) {
|
|
1399
|
+
__extends(ReservationService, _super);
|
|
1400
|
+
function ReservationService() {
|
|
1401
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1402
|
+
}
|
|
1403
|
+
/**
|
|
1404
|
+
* 予約検索
|
|
1405
|
+
*/
|
|
1406
|
+
ReservationService.prototype.search = function (params) {
|
|
1407
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1408
|
+
var _this = this;
|
|
1409
|
+
return __generator(this, function (_a) {
|
|
1410
|
+
return [2 /*return*/, this.fetch({
|
|
1411
|
+
uri: '/reservations',
|
|
1412
|
+
method: 'GET',
|
|
1413
|
+
qs: params,
|
|
1414
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1415
|
+
})
|
|
1416
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1417
|
+
var _a;
|
|
1418
|
+
return __generator(this, function (_b) {
|
|
1419
|
+
switch (_b.label) {
|
|
1420
|
+
case 0:
|
|
1421
|
+
_a = {};
|
|
1422
|
+
return [4 /*yield*/, response.json()];
|
|
1423
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1424
|
+
_a)];
|
|
1425
|
+
}
|
|
1426
|
+
});
|
|
1427
|
+
}); })];
|
|
1428
|
+
});
|
|
1429
|
+
});
|
|
1430
|
+
};
|
|
1431
|
+
/**
|
|
1432
|
+
* 予約を使用する
|
|
1433
|
+
* 注文コードから取得したトークンを利用して、予約に入場記録を追加します
|
|
1434
|
+
*/
|
|
1435
|
+
ReservationService.prototype.useByToken = function (params) {
|
|
1436
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1437
|
+
return __generator(this, function (_a) {
|
|
1438
|
+
switch (_a.label) {
|
|
1439
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1440
|
+
uri: '/reservations/use',
|
|
1441
|
+
method: 'POST',
|
|
1442
|
+
body: params,
|
|
1443
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1444
|
+
})];
|
|
1445
|
+
case 1:
|
|
1446
|
+
_a.sent();
|
|
1447
|
+
return [2 /*return*/];
|
|
1448
|
+
}
|
|
1449
|
+
});
|
|
1450
|
+
});
|
|
1451
|
+
};
|
|
1452
|
+
/**
|
|
1453
|
+
* 予約に対する入場アクションを検索する
|
|
1454
|
+
*/
|
|
1455
|
+
ReservationService.prototype.searchUseActions = function (params) {
|
|
1456
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1457
|
+
var _this = this;
|
|
1458
|
+
return __generator(this, function (_a) {
|
|
1459
|
+
return [2 /*return*/, this.fetch({
|
|
1460
|
+
uri: "/reservations/" + String(params.object.id) + "/actions/use",
|
|
1461
|
+
method: 'GET',
|
|
1462
|
+
qs: params,
|
|
1463
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1464
|
+
})
|
|
1465
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1466
|
+
var _a;
|
|
1467
|
+
return __generator(this, function (_b) {
|
|
1468
|
+
switch (_b.label) {
|
|
1469
|
+
case 0:
|
|
1470
|
+
_a = {};
|
|
1471
|
+
return [4 /*yield*/, response.json()];
|
|
1472
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1473
|
+
_a)];
|
|
1474
|
+
}
|
|
1475
|
+
});
|
|
1476
|
+
}); })];
|
|
1477
|
+
});
|
|
1478
|
+
});
|
|
1479
|
+
};
|
|
1480
|
+
/**
|
|
1481
|
+
* 予約取消
|
|
1482
|
+
* 再定義(2023-08-01~)
|
|
1483
|
+
*/
|
|
1484
|
+
ReservationService.prototype.cancel = function (params) {
|
|
1485
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1486
|
+
return __generator(this, function (_a) {
|
|
1487
|
+
switch (_a.label) {
|
|
1488
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1489
|
+
uri: "/reservations/" + String(params.object.id) + "/" + factory.reservationStatusType.ReservationCancelled,
|
|
1490
|
+
method: 'PUT',
|
|
1491
|
+
body: params,
|
|
1492
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1493
|
+
})];
|
|
1494
|
+
case 1:
|
|
1495
|
+
_a.sent();
|
|
1496
|
+
return [2 /*return*/];
|
|
1497
|
+
}
|
|
1498
|
+
});
|
|
1499
|
+
});
|
|
1500
|
+
};
|
|
1501
|
+
return ReservationService;
|
|
1502
|
+
}(service_1.Service));
|
|
1503
|
+
exports.ReservationService = ReservationService;
|
|
1504
|
+
|
|
1505
|
+
},{"../factory":94,"../service":99,"http-status":330}],14:[function(require,module,exports){
|
|
1126
1506
|
"use strict";
|
|
1127
1507
|
var __assign = (this && this.__assign) || function () {
|
|
1128
1508
|
__assign = Object.assign || function(t) {
|
|
@@ -1494,7 +1874,7 @@ var Chevre = /** @class */ (function () {
|
|
|
1494
1874
|
}());
|
|
1495
1875
|
exports.Chevre = Chevre;
|
|
1496
1876
|
|
|
1497
|
-
},{"./chevre/categoryCode":
|
|
1877
|
+
},{"./chevre/categoryCode":15,"./chevre/creativeWork":16,"./chevre/emailMessage":17,"./chevre/event":18,"./chevre/order":19,"./chevre/permit":21,"./chevre/person":22,"./chevre/person/ownershipInfo":23,"./chevre/place":24,"./chevre/place/hasPOS":25,"./chevre/product":26,"./chevre/reservation":27,"./chevre/seller":28,"./chevre/token":29,"./chevre/trip":30}],15:[function(require,module,exports){
|
|
1498
1878
|
"use strict";
|
|
1499
1879
|
var __extends = (this && this.__extends) || (function () {
|
|
1500
1880
|
var extendStatics = function (d, b) {
|
|
@@ -1591,7 +1971,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
1591
1971
|
}(service_1.Service));
|
|
1592
1972
|
exports.CategoryCodeService = CategoryCodeService;
|
|
1593
1973
|
|
|
1594
|
-
},{"../service":
|
|
1974
|
+
},{"../service":99,"http-status":330}],16:[function(require,module,exports){
|
|
1595
1975
|
"use strict";
|
|
1596
1976
|
var __extends = (this && this.__extends) || (function () {
|
|
1597
1977
|
var extendStatics = function (d, b) {
|
|
@@ -1685,7 +2065,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
1685
2065
|
}(service_1.Service));
|
|
1686
2066
|
exports.CreativeWorkService = CreativeWorkService;
|
|
1687
2067
|
|
|
1688
|
-
},{"../service":
|
|
2068
|
+
},{"../service":99,"http-status":330}],17:[function(require,module,exports){
|
|
1689
2069
|
"use strict";
|
|
1690
2070
|
var __extends = (this && this.__extends) || (function () {
|
|
1691
2071
|
var extendStatics = function (d, b) {
|
|
@@ -1782,7 +2162,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
1782
2162
|
}(service_1.Service));
|
|
1783
2163
|
exports.EmailMessageService = EmailMessageService;
|
|
1784
2164
|
|
|
1785
|
-
},{"../service":
|
|
2165
|
+
},{"../service":99,"http-status":330}],18:[function(require,module,exports){
|
|
1786
2166
|
"use strict";
|
|
1787
2167
|
var __extends = (this && this.__extends) || (function () {
|
|
1788
2168
|
var extendStatics = function (d, b) {
|
|
@@ -2041,7 +2421,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
2041
2421
|
}(service_1.Service));
|
|
2042
2422
|
exports.EventService = EventService;
|
|
2043
2423
|
|
|
2044
|
-
},{"../service":
|
|
2424
|
+
},{"../service":99,"http-status":330}],19:[function(require,module,exports){
|
|
2045
2425
|
"use strict";
|
|
2046
2426
|
var __extends = (this && this.__extends) || (function () {
|
|
2047
2427
|
var extendStatics = function (d, b) {
|
|
@@ -2282,11 +2662,11 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
2282
2662
|
}(service_1.Service));
|
|
2283
2663
|
exports.OrderService = OrderService;
|
|
2284
2664
|
|
|
2285
|
-
},{"../factory":
|
|
2665
|
+
},{"../factory":94,"../service":99,"http-status":330}],20:[function(require,module,exports){
|
|
2286
2666
|
"use strict";
|
|
2287
2667
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2288
2668
|
|
|
2289
|
-
},{}],
|
|
2669
|
+
},{}],21:[function(require,module,exports){
|
|
2290
2670
|
"use strict";
|
|
2291
2671
|
var __extends = (this && this.__extends) || (function () {
|
|
2292
2672
|
var extendStatics = function (d, b) {
|
|
@@ -2414,7 +2794,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
2414
2794
|
}(service_1.Service));
|
|
2415
2795
|
exports.PermitService = PermitService;
|
|
2416
2796
|
|
|
2417
|
-
},{"../service":
|
|
2797
|
+
},{"../service":99,"http-status":330}],22:[function(require,module,exports){
|
|
2418
2798
|
"use strict";
|
|
2419
2799
|
var __extends = (this && this.__extends) || (function () {
|
|
2420
2800
|
var extendStatics = function (d, b) {
|
|
@@ -2603,7 +2983,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
2603
2983
|
}(service_1.Service));
|
|
2604
2984
|
exports.PersonService = PersonService;
|
|
2605
2985
|
|
|
2606
|
-
},{"../service":
|
|
2986
|
+
},{"../service":99,"http-status":330}],23:[function(require,module,exports){
|
|
2607
2987
|
"use strict";
|
|
2608
2988
|
var __extends = (this && this.__extends) || (function () {
|
|
2609
2989
|
var extendStatics = function (d, b) {
|
|
@@ -2854,7 +3234,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
2854
3234
|
}(service_1.Service));
|
|
2855
3235
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
2856
3236
|
|
|
2857
|
-
},{"../../service":
|
|
3237
|
+
},{"../../service":99,"http-status":330}],24:[function(require,module,exports){
|
|
2858
3238
|
"use strict";
|
|
2859
3239
|
var __extends = (this && this.__extends) || (function () {
|
|
2860
3240
|
var extendStatics = function (d, b) {
|
|
@@ -3064,7 +3444,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
3064
3444
|
}(service_1.Service));
|
|
3065
3445
|
exports.PlaceService = PlaceService;
|
|
3066
3446
|
|
|
3067
|
-
},{"../factory":
|
|
3447
|
+
},{"../factory":94,"../service":99,"http-status":330}],25:[function(require,module,exports){
|
|
3068
3448
|
"use strict";
|
|
3069
3449
|
var __extends = (this && this.__extends) || (function () {
|
|
3070
3450
|
var extendStatics = function (d, b) {
|
|
@@ -3150,7 +3530,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
3150
3530
|
}(service_1.Service));
|
|
3151
3531
|
exports.HasPOSService = HasPOSService;
|
|
3152
3532
|
|
|
3153
|
-
},{"../../factory":
|
|
3533
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],26:[function(require,module,exports){
|
|
3154
3534
|
"use strict";
|
|
3155
3535
|
var __extends = (this && this.__extends) || (function () {
|
|
3156
3536
|
var extendStatics = function (d, b) {
|
|
@@ -3279,7 +3659,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
3279
3659
|
}(service_1.Service));
|
|
3280
3660
|
exports.ProductService = ProductService;
|
|
3281
3661
|
|
|
3282
|
-
},{"../service":
|
|
3662
|
+
},{"../service":99,"http-status":330}],27:[function(require,module,exports){
|
|
3283
3663
|
"use strict";
|
|
3284
3664
|
var __extends = (this && this.__extends) || (function () {
|
|
3285
3665
|
var extendStatics = function (d, b) {
|
|
@@ -3368,9 +3748,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
3368
3748
|
}(service_1.Service));
|
|
3369
3749
|
exports.ReservationService = ReservationService;
|
|
3370
3750
|
|
|
3371
|
-
},{"../service":
|
|
3372
|
-
arguments[4][18][0].apply(exports,arguments)
|
|
3373
|
-
},{"dup":18}],27:[function(require,module,exports){
|
|
3751
|
+
},{"../service":99,"http-status":330}],28:[function(require,module,exports){
|
|
3374
3752
|
"use strict";
|
|
3375
3753
|
var __extends = (this && this.__extends) || (function () {
|
|
3376
3754
|
var extendStatics = function (d, b) {
|
|
@@ -3542,7 +3920,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
3542
3920
|
}(service_1.Service));
|
|
3543
3921
|
exports.SellerService = SellerService;
|
|
3544
3922
|
|
|
3545
|
-
},{"../service":
|
|
3923
|
+
},{"../service":99,"http-status":330}],29:[function(require,module,exports){
|
|
3546
3924
|
"use strict";
|
|
3547
3925
|
var __extends = (this && this.__extends) || (function () {
|
|
3548
3926
|
var extendStatics = function (d, b) {
|
|
@@ -3630,7 +4008,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
3630
4008
|
}(service_1.Service));
|
|
3631
4009
|
exports.TokenService = TokenService;
|
|
3632
4010
|
|
|
3633
|
-
},{"../service":
|
|
4011
|
+
},{"../service":99,"http-status":330}],30:[function(require,module,exports){
|
|
3634
4012
|
"use strict";
|
|
3635
4013
|
var __extends = (this && this.__extends) || (function () {
|
|
3636
4014
|
var extendStatics = function (d, b) {
|
|
@@ -3727,7 +4105,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
3727
4105
|
}(service_1.Service));
|
|
3728
4106
|
exports.TripService = TripService;
|
|
3729
4107
|
|
|
3730
|
-
},{"../service":
|
|
4108
|
+
},{"../service":99,"http-status":330}],31:[function(require,module,exports){
|
|
3731
4109
|
"use strict";
|
|
3732
4110
|
var __assign = (this && this.__assign) || function () {
|
|
3733
4111
|
__assign = Object.assign || function(t) {
|
|
@@ -4872,7 +5250,7 @@ var ChevreAdmin = /** @class */ (function () {
|
|
|
4872
5250
|
}());
|
|
4873
5251
|
exports.ChevreAdmin = ChevreAdmin;
|
|
4874
5252
|
|
|
4875
|
-
},{"./chevreAdmin/account":
|
|
5253
|
+
},{"./chevreAdmin/account":32,"./chevreAdmin/accountTitle":33,"./chevreAdmin/accountTransaction":34,"./chevreAdmin/accountingReport":35,"./chevreAdmin/action":36,"./chevreAdmin/additionalProperty":37,"./chevreAdmin/aggregateOffer":38,"./chevreAdmin/aggregation":39,"./chevreAdmin/assetTransaction":40,"./chevreAdmin/assetTransaction/cancelReservation":41,"./chevreAdmin/assetTransaction/moneyTransfer":42,"./chevreAdmin/assetTransaction/pay":43,"./chevreAdmin/assetTransaction/refund":44,"./chevreAdmin/assetTransaction/registerService":45,"./chevreAdmin/assetTransaction/reserve":46,"./chevreAdmin/authorization":47,"./chevreAdmin/categoryCode":48,"./chevreAdmin/comment":49,"./chevreAdmin/creativeWork":50,"./chevreAdmin/customer":51,"./chevreAdmin/emailMessage":52,"./chevreAdmin/event":53,"./chevreAdmin/iam":54,"./chevreAdmin/me":55,"./chevreAdmin/merchantReturnPolicy":56,"./chevreAdmin/note":57,"./chevreAdmin/offer":58,"./chevreAdmin/offerCatalog":59,"./chevreAdmin/offerCatalogItem":60,"./chevreAdmin/offerItemCondition":61,"./chevreAdmin/order":62,"./chevreAdmin/ownershipInfo":63,"./chevreAdmin/paymentService":64,"./chevreAdmin/permission":65,"./chevreAdmin/permit":66,"./chevreAdmin/person":67,"./chevreAdmin/person/ownershipInfo":68,"./chevreAdmin/place":69,"./chevreAdmin/place/hasPOS":70,"./chevreAdmin/priceSpecification":71,"./chevreAdmin/product":72,"./chevreAdmin/project":73,"./chevreAdmin/projectMakesOffer":74,"./chevreAdmin/reservation":75,"./chevreAdmin/seller":76,"./chevreAdmin/task":77,"./chevreAdmin/token":78,"./chevreAdmin/transaction/moneyTransfer":79,"./chevreAdmin/transaction/placeOrder":80,"./chevreAdmin/transaction/returnOrder":81,"./chevreAdmin/transactionNumber":82,"./chevreAdmin/trip":83,"./chevreAdmin/userPool":84}],32:[function(require,module,exports){
|
|
4876
5254
|
"use strict";
|
|
4877
5255
|
var __extends = (this && this.__extends) || (function () {
|
|
4878
5256
|
var extendStatics = function (d, b) {
|
|
@@ -5009,7 +5387,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
5009
5387
|
}(service_1.Service));
|
|
5010
5388
|
exports.AccountService = AccountService;
|
|
5011
5389
|
|
|
5012
|
-
},{"../service":
|
|
5390
|
+
},{"../service":99,"http-status":330}],33:[function(require,module,exports){
|
|
5013
5391
|
"use strict";
|
|
5014
5392
|
var __extends = (this && this.__extends) || (function () {
|
|
5015
5393
|
var extendStatics = function (d, b) {
|
|
@@ -5346,7 +5724,7 @@ var AccountTitleService = /** @class */ (function (_super) {
|
|
|
5346
5724
|
}(service_1.Service));
|
|
5347
5725
|
exports.AccountTitleService = AccountTitleService;
|
|
5348
5726
|
|
|
5349
|
-
},{"../factory":
|
|
5727
|
+
},{"../factory":94,"../service":99,"http-status":330}],34:[function(require,module,exports){
|
|
5350
5728
|
"use strict";
|
|
5351
5729
|
var __extends = (this && this.__extends) || (function () {
|
|
5352
5730
|
var extendStatics = function (d, b) {
|
|
@@ -5443,7 +5821,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
5443
5821
|
}(service_1.Service));
|
|
5444
5822
|
exports.AccountTransactionService = AccountTransactionService;
|
|
5445
5823
|
|
|
5446
|
-
},{"../service":
|
|
5824
|
+
},{"../service":99,"http-status":330}],35:[function(require,module,exports){
|
|
5447
5825
|
"use strict";
|
|
5448
5826
|
var __extends = (this && this.__extends) || (function () {
|
|
5449
5827
|
var extendStatics = function (d, b) {
|
|
@@ -5540,7 +5918,7 @@ var AccountingReportService = /** @class */ (function (_super) {
|
|
|
5540
5918
|
}(service_1.Service));
|
|
5541
5919
|
exports.AccountingReportService = AccountingReportService;
|
|
5542
5920
|
|
|
5543
|
-
},{"../service":
|
|
5921
|
+
},{"../service":99,"http-status":330}],36:[function(require,module,exports){
|
|
5544
5922
|
"use strict";
|
|
5545
5923
|
var __extends = (this && this.__extends) || (function () {
|
|
5546
5924
|
var extendStatics = function (d, b) {
|
|
@@ -5653,7 +6031,7 @@ var ActionService = /** @class */ (function (_super) {
|
|
|
5653
6031
|
}(service_1.Service));
|
|
5654
6032
|
exports.ActionService = ActionService;
|
|
5655
6033
|
|
|
5656
|
-
},{"../service":
|
|
6034
|
+
},{"../service":99,"http-status":330}],37:[function(require,module,exports){
|
|
5657
6035
|
"use strict";
|
|
5658
6036
|
var __extends = (this && this.__extends) || (function () {
|
|
5659
6037
|
var extendStatics = function (d, b) {
|
|
@@ -5817,7 +6195,7 @@ var AdditionalPropertyService = /** @class */ (function (_super) {
|
|
|
5817
6195
|
}(service_1.Service));
|
|
5818
6196
|
exports.AdditionalPropertyService = AdditionalPropertyService;
|
|
5819
6197
|
|
|
5820
|
-
},{"../service":
|
|
6198
|
+
},{"../service":99,"http-status":330}],38:[function(require,module,exports){
|
|
5821
6199
|
"use strict";
|
|
5822
6200
|
var __extends = (this && this.__extends) || (function () {
|
|
5823
6201
|
var extendStatics = function (d, b) {
|
|
@@ -5933,7 +6311,7 @@ var AggregateOfferService = /** @class */ (function (_super) {
|
|
|
5933
6311
|
}(service_1.Service));
|
|
5934
6312
|
exports.AggregateOfferService = AggregateOfferService;
|
|
5935
6313
|
|
|
5936
|
-
},{"../service":
|
|
6314
|
+
},{"../service":99,"http-status":330}],39:[function(require,module,exports){
|
|
5937
6315
|
"use strict";
|
|
5938
6316
|
var __extends = (this && this.__extends) || (function () {
|
|
5939
6317
|
var extendStatics = function (d, b) {
|
|
@@ -6038,7 +6416,7 @@ var AggregationService = /** @class */ (function (_super) {
|
|
|
6038
6416
|
}(service_1.Service));
|
|
6039
6417
|
exports.AggregationService = AggregationService;
|
|
6040
6418
|
|
|
6041
|
-
},{"../service":
|
|
6419
|
+
},{"../service":99,"http-status":330}],40:[function(require,module,exports){
|
|
6042
6420
|
"use strict";
|
|
6043
6421
|
var __extends = (this && this.__extends) || (function () {
|
|
6044
6422
|
var extendStatics = function (d, b) {
|
|
@@ -6135,7 +6513,7 @@ var AssetTransactionService = /** @class */ (function (_super) {
|
|
|
6135
6513
|
}(service_1.Service));
|
|
6136
6514
|
exports.AssetTransactionService = AssetTransactionService;
|
|
6137
6515
|
|
|
6138
|
-
},{"../service":
|
|
6516
|
+
},{"../service":99,"http-status":330}],41:[function(require,module,exports){
|
|
6139
6517
|
"use strict";
|
|
6140
6518
|
var __extends = (this && this.__extends) || (function () {
|
|
6141
6519
|
var extendStatics = function (d, b) {
|
|
@@ -6297,7 +6675,7 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
6297
6675
|
}(service_1.Service));
|
|
6298
6676
|
exports.CancelReservationAssetTransactionService = CancelReservationAssetTransactionService;
|
|
6299
6677
|
|
|
6300
|
-
},{"../../service":
|
|
6678
|
+
},{"../../service":99,"http-status":330}],42:[function(require,module,exports){
|
|
6301
6679
|
"use strict";
|
|
6302
6680
|
var __extends = (this && this.__extends) || (function () {
|
|
6303
6681
|
var extendStatics = function (d, b) {
|
|
@@ -6433,7 +6811,7 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6433
6811
|
}(service_1.Service));
|
|
6434
6812
|
exports.MoneyTransferAssetTransactionService = MoneyTransferAssetTransactionService;
|
|
6435
6813
|
|
|
6436
|
-
},{"../../factory":
|
|
6814
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],43:[function(require,module,exports){
|
|
6437
6815
|
"use strict";
|
|
6438
6816
|
var __extends = (this && this.__extends) || (function () {
|
|
6439
6817
|
var extendStatics = function (d, b) {
|
|
@@ -6658,7 +7036,7 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6658
7036
|
}(service_1.Service));
|
|
6659
7037
|
exports.PayAssetTransactionService = PayAssetTransactionService;
|
|
6660
7038
|
|
|
6661
|
-
},{"../../factory":
|
|
7039
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],44:[function(require,module,exports){
|
|
6662
7040
|
"use strict";
|
|
6663
7041
|
var __extends = (this && this.__extends) || (function () {
|
|
6664
7042
|
var extendStatics = function (d, b) {
|
|
@@ -6805,7 +7183,7 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6805
7183
|
}(service_1.Service));
|
|
6806
7184
|
exports.RefundAssetTransactionService = RefundAssetTransactionService;
|
|
6807
7185
|
|
|
6808
|
-
},{"../../factory":
|
|
7186
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],45:[function(require,module,exports){
|
|
6809
7187
|
"use strict";
|
|
6810
7188
|
var __extends = (this && this.__extends) || (function () {
|
|
6811
7189
|
var extendStatics = function (d, b) {
|
|
@@ -6952,7 +7330,7 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
6952
7330
|
}(service_1.Service));
|
|
6953
7331
|
exports.RegisterServiceAssetTransactionService = RegisterServiceAssetTransactionService;
|
|
6954
7332
|
|
|
6955
|
-
},{"../../factory":
|
|
7333
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],46:[function(require,module,exports){
|
|
6956
7334
|
"use strict";
|
|
6957
7335
|
var __extends = (this && this.__extends) || (function () {
|
|
6958
7336
|
var extendStatics = function (d, b) {
|
|
@@ -7116,7 +7494,7 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
7116
7494
|
}(service_1.Service));
|
|
7117
7495
|
exports.ReserveAssetTransactionService = ReserveAssetTransactionService;
|
|
7118
7496
|
|
|
7119
|
-
},{"../../service":
|
|
7497
|
+
},{"../../service":99,"http-status":330}],47:[function(require,module,exports){
|
|
7120
7498
|
"use strict";
|
|
7121
7499
|
var __extends = (this && this.__extends) || (function () {
|
|
7122
7500
|
var extendStatics = function (d, b) {
|
|
@@ -7232,7 +7610,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
7232
7610
|
}(service_1.Service));
|
|
7233
7611
|
exports.AuthorizationService = AuthorizationService;
|
|
7234
7612
|
|
|
7235
|
-
},{"../service":
|
|
7613
|
+
},{"../service":99,"http-status":330}],48:[function(require,module,exports){
|
|
7236
7614
|
"use strict";
|
|
7237
7615
|
var __extends = (this && this.__extends) || (function () {
|
|
7238
7616
|
var extendStatics = function (d, b) {
|
|
@@ -7396,7 +7774,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
7396
7774
|
}(service_1.Service));
|
|
7397
7775
|
exports.CategoryCodeService = CategoryCodeService;
|
|
7398
7776
|
|
|
7399
|
-
},{"../service":
|
|
7777
|
+
},{"../service":99,"http-status":330}],49:[function(require,module,exports){
|
|
7400
7778
|
"use strict";
|
|
7401
7779
|
var __extends = (this && this.__extends) || (function () {
|
|
7402
7780
|
var extendStatics = function (d, b) {
|
|
@@ -7512,7 +7890,7 @@ var CommentService = /** @class */ (function (_super) {
|
|
|
7512
7890
|
}(service_1.Service));
|
|
7513
7891
|
exports.CommentService = CommentService;
|
|
7514
7892
|
|
|
7515
|
-
},{"../service":
|
|
7893
|
+
},{"../service":99,"http-status":330}],50:[function(require,module,exports){
|
|
7516
7894
|
"use strict";
|
|
7517
7895
|
var __extends = (this && this.__extends) || (function () {
|
|
7518
7896
|
var extendStatics = function (d, b) {
|
|
@@ -7690,7 +8068,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
7690
8068
|
}(service_1.Service));
|
|
7691
8069
|
exports.CreativeWorkService = CreativeWorkService;
|
|
7692
8070
|
|
|
7693
|
-
},{"../service":
|
|
8071
|
+
},{"../service":99,"http-status":330}],51:[function(require,module,exports){
|
|
7694
8072
|
"use strict";
|
|
7695
8073
|
var __extends = (this && this.__extends) || (function () {
|
|
7696
8074
|
var extendStatics = function (d, b) {
|
|
@@ -7877,7 +8255,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
7877
8255
|
}(service_1.Service));
|
|
7878
8256
|
exports.CustomerService = CustomerService;
|
|
7879
8257
|
|
|
7880
|
-
},{"../service":
|
|
8258
|
+
},{"../service":99,"http-status":330}],52:[function(require,module,exports){
|
|
7881
8259
|
"use strict";
|
|
7882
8260
|
var __extends = (this && this.__extends) || (function () {
|
|
7883
8261
|
var extendStatics = function (d, b) {
|
|
@@ -8051,7 +8429,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
8051
8429
|
}(service_1.Service));
|
|
8052
8430
|
exports.EmailMessageService = EmailMessageService;
|
|
8053
8431
|
|
|
8054
|
-
},{"../service":
|
|
8432
|
+
},{"../service":99,"http-status":330}],53:[function(require,module,exports){
|
|
8055
8433
|
"use strict";
|
|
8056
8434
|
var __extends = (this && this.__extends) || (function () {
|
|
8057
8435
|
var extendStatics = function (d, b) {
|
|
@@ -8344,7 +8722,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
8344
8722
|
}(service_1.Service));
|
|
8345
8723
|
exports.EventService = EventService;
|
|
8346
8724
|
|
|
8347
|
-
},{"../factory":
|
|
8725
|
+
},{"../factory":94,"../service":99,"http-status":330}],54:[function(require,module,exports){
|
|
8348
8726
|
"use strict";
|
|
8349
8727
|
var __extends = (this && this.__extends) || (function () {
|
|
8350
8728
|
var extendStatics = function (d, b) {
|
|
@@ -8681,7 +9059,7 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
8681
9059
|
}(service_1.Service));
|
|
8682
9060
|
exports.IAMService = IAMService;
|
|
8683
9061
|
|
|
8684
|
-
},{"../service":
|
|
9062
|
+
},{"../service":99,"http-status":330}],55:[function(require,module,exports){
|
|
8685
9063
|
"use strict";
|
|
8686
9064
|
var __extends = (this && this.__extends) || (function () {
|
|
8687
9065
|
var extendStatics = function (d, b) {
|
|
@@ -8807,7 +9185,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
8807
9185
|
}(service_1.Service));
|
|
8808
9186
|
exports.MeService = MeService;
|
|
8809
9187
|
|
|
8810
|
-
},{"../service":
|
|
9188
|
+
},{"../service":99,"http-status":330}],56:[function(require,module,exports){
|
|
8811
9189
|
"use strict";
|
|
8812
9190
|
var __extends = (this && this.__extends) || (function () {
|
|
8813
9191
|
var extendStatics = function (d, b) {
|
|
@@ -8965,7 +9343,7 @@ var MerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
8965
9343
|
}(service_1.Service));
|
|
8966
9344
|
exports.MerchantReturnPolicyService = MerchantReturnPolicyService;
|
|
8967
9345
|
|
|
8968
|
-
},{"../service":
|
|
9346
|
+
},{"../service":99,"http-status":330}],57:[function(require,module,exports){
|
|
8969
9347
|
"use strict";
|
|
8970
9348
|
var __extends = (this && this.__extends) || (function () {
|
|
8971
9349
|
var extendStatics = function (d, b) {
|
|
@@ -9087,7 +9465,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
9087
9465
|
}(service_1.Service));
|
|
9088
9466
|
exports.NoteService = NoteService;
|
|
9089
9467
|
|
|
9090
|
-
},{"../service":
|
|
9468
|
+
},{"../service":99,"http-status":330}],58:[function(require,module,exports){
|
|
9091
9469
|
"use strict";
|
|
9092
9470
|
var __extends = (this && this.__extends) || (function () {
|
|
9093
9471
|
var extendStatics = function (d, b) {
|
|
@@ -9232,7 +9610,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
9232
9610
|
}(service_1.Service));
|
|
9233
9611
|
exports.OfferService = OfferService;
|
|
9234
9612
|
|
|
9235
|
-
},{"../service":
|
|
9613
|
+
},{"../service":99,"http-status":330}],59:[function(require,module,exports){
|
|
9236
9614
|
"use strict";
|
|
9237
9615
|
var __extends = (this && this.__extends) || (function () {
|
|
9238
9616
|
var extendStatics = function (d, b) {
|
|
@@ -9479,7 +9857,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
9479
9857
|
}(service_1.Service));
|
|
9480
9858
|
exports.OfferCatalogService = OfferCatalogService;
|
|
9481
9859
|
|
|
9482
|
-
},{"../service":
|
|
9860
|
+
},{"../service":99,"http-status":330}],60:[function(require,module,exports){
|
|
9483
9861
|
"use strict";
|
|
9484
9862
|
var __extends = (this && this.__extends) || (function () {
|
|
9485
9863
|
var extendStatics = function (d, b) {
|
|
@@ -9680,7 +10058,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
9680
10058
|
}(service_1.Service));
|
|
9681
10059
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
9682
10060
|
|
|
9683
|
-
},{"../service":
|
|
10061
|
+
},{"../service":99,"http-status":330}],61:[function(require,module,exports){
|
|
9684
10062
|
"use strict";
|
|
9685
10063
|
var __extends = (this && this.__extends) || (function () {
|
|
9686
10064
|
var extendStatics = function (d, b) {
|
|
@@ -9838,7 +10216,7 @@ var OfferItemConditionService = /** @class */ (function (_super) {
|
|
|
9838
10216
|
}(service_1.Service));
|
|
9839
10217
|
exports.OfferItemConditionService = OfferItemConditionService;
|
|
9840
10218
|
|
|
9841
|
-
},{"../service":
|
|
10219
|
+
},{"../service":99,"http-status":330}],62:[function(require,module,exports){
|
|
9842
10220
|
"use strict";
|
|
9843
10221
|
var __extends = (this && this.__extends) || (function () {
|
|
9844
10222
|
var extendStatics = function (d, b) {
|
|
@@ -10127,7 +10505,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
10127
10505
|
}(service_1.Service));
|
|
10128
10506
|
exports.OrderService = OrderService;
|
|
10129
10507
|
|
|
10130
|
-
},{"../factory":
|
|
10508
|
+
},{"../factory":94,"../service":99,"http-status":330}],63:[function(require,module,exports){
|
|
10131
10509
|
"use strict";
|
|
10132
10510
|
var __extends = (this && this.__extends) || (function () {
|
|
10133
10511
|
var extendStatics = function (d, b) {
|
|
@@ -10224,7 +10602,7 @@ var OwnershipInfoService = /** @class */ (function (_super) {
|
|
|
10224
10602
|
}(service_1.Service));
|
|
10225
10603
|
exports.OwnershipInfoService = OwnershipInfoService;
|
|
10226
10604
|
|
|
10227
|
-
},{"../service":
|
|
10605
|
+
},{"../service":99,"http-status":330}],64:[function(require,module,exports){
|
|
10228
10606
|
"use strict";
|
|
10229
10607
|
var __extends = (this && this.__extends) || (function () {
|
|
10230
10608
|
var extendStatics = function (d, b) {
|
|
@@ -10402,7 +10780,7 @@ var PaymentProductService = /** @class */ (function (_super) {
|
|
|
10402
10780
|
}(service_1.Service));
|
|
10403
10781
|
exports.PaymentProductService = PaymentProductService;
|
|
10404
10782
|
|
|
10405
|
-
},{"../service":
|
|
10783
|
+
},{"../service":99,"http-status":330}],65:[function(require,module,exports){
|
|
10406
10784
|
"use strict";
|
|
10407
10785
|
var __extends = (this && this.__extends) || (function () {
|
|
10408
10786
|
var extendStatics = function (d, b) {
|
|
@@ -10490,7 +10868,7 @@ var PermissionService = /** @class */ (function (_super) {
|
|
|
10490
10868
|
}(service_1.Service));
|
|
10491
10869
|
exports.PermissionService = PermissionService;
|
|
10492
10870
|
|
|
10493
|
-
},{"../service":
|
|
10871
|
+
},{"../service":99,"http-status":330}],66:[function(require,module,exports){
|
|
10494
10872
|
"use strict";
|
|
10495
10873
|
var __extends = (this && this.__extends) || (function () {
|
|
10496
10874
|
var extendStatics = function (d, b) {
|
|
@@ -10646,7 +11024,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
10646
11024
|
}(service_1.Service));
|
|
10647
11025
|
exports.PermitService = PermitService;
|
|
10648
11026
|
|
|
10649
|
-
},{"../service":
|
|
11027
|
+
},{"../service":99,"http-status":330}],67:[function(require,module,exports){
|
|
10650
11028
|
"use strict";
|
|
10651
11029
|
var __extends = (this && this.__extends) || (function () {
|
|
10652
11030
|
var extendStatics = function (d, b) {
|
|
@@ -10882,9 +11260,9 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
10882
11260
|
}(service_1.Service));
|
|
10883
11261
|
exports.PersonService = PersonService;
|
|
10884
11262
|
|
|
10885
|
-
},{"../service":
|
|
10886
|
-
arguments[4][
|
|
10887
|
-
},{"../../service":
|
|
11263
|
+
},{"../service":99,"http-status":330}],68:[function(require,module,exports){
|
|
11264
|
+
arguments[4][23][0].apply(exports,arguments)
|
|
11265
|
+
},{"../../service":99,"dup":23,"http-status":330}],69:[function(require,module,exports){
|
|
10888
11266
|
"use strict";
|
|
10889
11267
|
var __extends = (this && this.__extends) || (function () {
|
|
10890
11268
|
var extendStatics = function (d, b) {
|
|
@@ -11387,7 +11765,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
11387
11765
|
}(service_1.Service));
|
|
11388
11766
|
exports.PlaceService = PlaceService;
|
|
11389
11767
|
|
|
11390
|
-
},{"../factory":
|
|
11768
|
+
},{"../factory":94,"../service":99,"http-status":330}],70:[function(require,module,exports){
|
|
11391
11769
|
"use strict";
|
|
11392
11770
|
var __extends = (this && this.__extends) || (function () {
|
|
11393
11771
|
var extendStatics = function (d, b) {
|
|
@@ -11523,7 +11901,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
11523
11901
|
}(service_1.Service));
|
|
11524
11902
|
exports.HasPOSService = HasPOSService;
|
|
11525
11903
|
|
|
11526
|
-
},{"../../factory":
|
|
11904
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],71:[function(require,module,exports){
|
|
11527
11905
|
"use strict";
|
|
11528
11906
|
var __extends = (this && this.__extends) || (function () {
|
|
11529
11907
|
var extendStatics = function (d, b) {
|
|
@@ -11687,7 +12065,7 @@ var PriceSpecificationService = /** @class */ (function (_super) {
|
|
|
11687
12065
|
}(service_1.Service));
|
|
11688
12066
|
exports.PriceSpecificationService = PriceSpecificationService;
|
|
11689
12067
|
|
|
11690
|
-
},{"../service":
|
|
12068
|
+
},{"../service":99,"http-status":330}],72:[function(require,module,exports){
|
|
11691
12069
|
"use strict";
|
|
11692
12070
|
var __extends = (this && this.__extends) || (function () {
|
|
11693
12071
|
var extendStatics = function (d, b) {
|
|
@@ -11905,7 +12283,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
11905
12283
|
}(service_1.Service));
|
|
11906
12284
|
exports.ProductService = ProductService;
|
|
11907
12285
|
|
|
11908
|
-
},{"../service":
|
|
12286
|
+
},{"../service":99,"http-status":330}],73:[function(require,module,exports){
|
|
11909
12287
|
"use strict";
|
|
11910
12288
|
var __extends = (this && this.__extends) || (function () {
|
|
11911
12289
|
var extendStatics = function (d, b) {
|
|
@@ -12076,7 +12454,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
12076
12454
|
}(service_1.Service));
|
|
12077
12455
|
exports.ProjectService = ProjectService;
|
|
12078
12456
|
|
|
12079
|
-
},{"../service":
|
|
12457
|
+
},{"../service":99,"http-status":330}],74:[function(require,module,exports){
|
|
12080
12458
|
"use strict";
|
|
12081
12459
|
var __extends = (this && this.__extends) || (function () {
|
|
12082
12460
|
var extendStatics = function (d, b) {
|
|
@@ -12211,7 +12589,7 @@ var ProjectMakesOfferService = /** @class */ (function (_super) {
|
|
|
12211
12589
|
}(service_1.Service));
|
|
12212
12590
|
exports.ProjectMakesOfferService = ProjectMakesOfferService;
|
|
12213
12591
|
|
|
12214
|
-
},{"../service":
|
|
12592
|
+
},{"../service":99,"http-status":330}],75:[function(require,module,exports){
|
|
12215
12593
|
"use strict";
|
|
12216
12594
|
var __extends = (this && this.__extends) || (function () {
|
|
12217
12595
|
var extendStatics = function (d, b) {
|
|
@@ -12384,7 +12762,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
12384
12762
|
}(service_1.Service));
|
|
12385
12763
|
exports.ReservationService = ReservationService;
|
|
12386
12764
|
|
|
12387
|
-
},{"../service":
|
|
12765
|
+
},{"../service":99,"http-status":330}],76:[function(require,module,exports){
|
|
12388
12766
|
"use strict";
|
|
12389
12767
|
var __extends = (this && this.__extends) || (function () {
|
|
12390
12768
|
var extendStatics = function (d, b) {
|
|
@@ -12902,7 +13280,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
12902
13280
|
}(service_1.Service));
|
|
12903
13281
|
exports.SellerService = SellerService;
|
|
12904
13282
|
|
|
12905
|
-
},{"../service":
|
|
13283
|
+
},{"../service":99,"http-status":330}],77:[function(require,module,exports){
|
|
12906
13284
|
"use strict";
|
|
12907
13285
|
var __extends = (this && this.__extends) || (function () {
|
|
12908
13286
|
var extendStatics = function (d, b) {
|
|
@@ -13036,9 +13414,9 @@ var TaskService = /** @class */ (function (_super) {
|
|
|
13036
13414
|
}(service_1.Service));
|
|
13037
13415
|
exports.TaskService = TaskService;
|
|
13038
13416
|
|
|
13039
|
-
},{"../service":
|
|
13040
|
-
arguments[4][
|
|
13041
|
-
},{"../service":
|
|
13417
|
+
},{"../service":99,"http-status":330}],78:[function(require,module,exports){
|
|
13418
|
+
arguments[4][29][0].apply(exports,arguments)
|
|
13419
|
+
},{"../service":99,"dup":29,"http-status":330}],79:[function(require,module,exports){
|
|
13042
13420
|
"use strict";
|
|
13043
13421
|
var __extends = (this && this.__extends) || (function () {
|
|
13044
13422
|
var extendStatics = function (d, b) {
|
|
@@ -13170,7 +13548,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
13170
13548
|
}(service_1.Service));
|
|
13171
13549
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
13172
13550
|
|
|
13173
|
-
},{"../../factory":
|
|
13551
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],80:[function(require,module,exports){
|
|
13174
13552
|
"use strict";
|
|
13175
13553
|
var __extends = (this && this.__extends) || (function () {
|
|
13176
13554
|
var extendStatics = function (d, b) {
|
|
@@ -13302,7 +13680,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13302
13680
|
}(service_1.Service));
|
|
13303
13681
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
13304
13682
|
|
|
13305
|
-
},{"../../factory":
|
|
13683
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],81:[function(require,module,exports){
|
|
13306
13684
|
"use strict";
|
|
13307
13685
|
var __extends = (this && this.__extends) || (function () {
|
|
13308
13686
|
var extendStatics = function (d, b) {
|
|
@@ -13402,7 +13780,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13402
13780
|
}(service_1.Service));
|
|
13403
13781
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
13404
13782
|
|
|
13405
|
-
},{"../../factory":
|
|
13783
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],82:[function(require,module,exports){
|
|
13406
13784
|
"use strict";
|
|
13407
13785
|
var __extends = (this && this.__extends) || (function () {
|
|
13408
13786
|
var extendStatics = function (d, b) {
|
|
@@ -13490,7 +13868,7 @@ var TransactionNumberService = /** @class */ (function (_super) {
|
|
|
13490
13868
|
}(service_1.Service));
|
|
13491
13869
|
exports.TransactionNumberService = TransactionNumberService;
|
|
13492
13870
|
|
|
13493
|
-
},{"../service":
|
|
13871
|
+
},{"../service":99,"http-status":330}],83:[function(require,module,exports){
|
|
13494
13872
|
"use strict";
|
|
13495
13873
|
var __extends = (this && this.__extends) || (function () {
|
|
13496
13874
|
var extendStatics = function (d, b) {
|
|
@@ -13663,7 +14041,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
13663
14041
|
}(service_1.Service));
|
|
13664
14042
|
exports.TripService = TripService;
|
|
13665
14043
|
|
|
13666
|
-
},{"../service":
|
|
14044
|
+
},{"../service":99,"http-status":330}],84:[function(require,module,exports){
|
|
13667
14045
|
"use strict";
|
|
13668
14046
|
var __extends = (this && this.__extends) || (function () {
|
|
13669
14047
|
var extendStatics = function (d, b) {
|
|
@@ -13796,7 +14174,7 @@ var UserPoolService = /** @class */ (function (_super) {
|
|
|
13796
14174
|
}(service_1.Service));
|
|
13797
14175
|
exports.UserPoolService = UserPoolService;
|
|
13798
14176
|
|
|
13799
|
-
},{"../service":
|
|
14177
|
+
},{"../service":99,"http-status":330}],85:[function(require,module,exports){
|
|
13800
14178
|
"use strict";
|
|
13801
14179
|
var __assign = (this && this.__assign) || function () {
|
|
13802
14180
|
__assign = Object.assign || function(t) {
|
|
@@ -13967,7 +14345,7 @@ var ChevreTxn = /** @class */ (function () {
|
|
|
13967
14345
|
}());
|
|
13968
14346
|
exports.ChevreTxn = ChevreTxn;
|
|
13969
14347
|
|
|
13970
|
-
},{"./chevreTxn/offer":
|
|
14348
|
+
},{"./chevreTxn/offer":86,"./chevreTxn/payment":87,"./chevreTxn/transaction/moneyTransfer":89,"./chevreTxn/transaction/placeOrder":90,"./chevreTxn/transaction/returnOrder":92}],86:[function(require,module,exports){
|
|
13971
14349
|
"use strict";
|
|
13972
14350
|
var __extends = (this && this.__extends) || (function () {
|
|
13973
14351
|
var extendStatics = function (d, b) {
|
|
@@ -14193,7 +14571,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
14193
14571
|
}(service_1.Service));
|
|
14194
14572
|
exports.OfferService = OfferService;
|
|
14195
14573
|
|
|
14196
|
-
},{"../factory":
|
|
14574
|
+
},{"../factory":94,"../service":99,"http-status":330}],87:[function(require,module,exports){
|
|
14197
14575
|
"use strict";
|
|
14198
14576
|
var __extends = (this && this.__extends) || (function () {
|
|
14199
14577
|
var extendStatics = function (d, b) {
|
|
@@ -14434,9 +14812,9 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
14434
14812
|
}(service_1.Service));
|
|
14435
14813
|
exports.PaymentService = PaymentService;
|
|
14436
14814
|
|
|
14437
|
-
},{"../factory":
|
|
14438
|
-
arguments[4][
|
|
14439
|
-
},{"dup":
|
|
14815
|
+
},{"../factory":94,"../service":99,"http-status":330}],88:[function(require,module,exports){
|
|
14816
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
14817
|
+
},{"dup":20}],89:[function(require,module,exports){
|
|
14440
14818
|
"use strict";
|
|
14441
14819
|
var __extends = (this && this.__extends) || (function () {
|
|
14442
14820
|
var extendStatics = function (d, b) {
|
|
@@ -14586,7 +14964,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
14586
14964
|
}(service_1.Service));
|
|
14587
14965
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
14588
14966
|
|
|
14589
|
-
},{"../../factory":
|
|
14967
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],90:[function(require,module,exports){
|
|
14590
14968
|
"use strict";
|
|
14591
14969
|
var __extends = (this && this.__extends) || (function () {
|
|
14592
14970
|
var extendStatics = function (d, b) {
|
|
@@ -14789,9 +15167,9 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
14789
15167
|
}(service_1.Service));
|
|
14790
15168
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
14791
15169
|
|
|
14792
|
-
},{"../../factory":
|
|
14793
|
-
arguments[4][
|
|
14794
|
-
},{"dup":
|
|
15170
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],91:[function(require,module,exports){
|
|
15171
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
15172
|
+
},{"dup":20}],92:[function(require,module,exports){
|
|
14795
15173
|
"use strict";
|
|
14796
15174
|
var __extends = (this && this.__extends) || (function () {
|
|
14797
15175
|
var extendStatics = function (d, b) {
|
|
@@ -14957,7 +15335,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
14957
15335
|
}(service_1.Service));
|
|
14958
15336
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
14959
15337
|
|
|
14960
|
-
},{"../../factory":
|
|
15338
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],93:[function(require,module,exports){
|
|
14961
15339
|
"use strict";
|
|
14962
15340
|
var __extends = (this && this.__extends) || (function () {
|
|
14963
15341
|
var extendStatics = function (d, b) {
|
|
@@ -14983,7 +15361,6 @@ exports.service = void 0;
|
|
|
14983
15361
|
var ServiceFactory = require("./service");
|
|
14984
15362
|
var OrderServiceFactory = require("./chevre/order/factory");
|
|
14985
15363
|
var PaymentServiceFactory = require("./chevreTxn/payment/factory");
|
|
14986
|
-
var ReservationServiceFactory = require("./service/reservation/factory");
|
|
14987
15364
|
var PlaceOrderTransactionServiceFactory = require("./chevreTxn/transaction/placeOrder/factory");
|
|
14988
15365
|
var categoryCode_1 = require("./service/categoryCode");
|
|
14989
15366
|
var creativeWork_1 = require("./service/creativeWork");
|
|
@@ -15194,11 +15571,6 @@ var service;
|
|
|
15194
15571
|
return Product;
|
|
15195
15572
|
}(product_1.ProductService));
|
|
15196
15573
|
service.Product = Product;
|
|
15197
|
-
var reservation;
|
|
15198
|
-
(function (reservation) {
|
|
15199
|
-
// tslint:disable-next-line:no-shadowed-variable
|
|
15200
|
-
reservation.factory = ReservationServiceFactory;
|
|
15201
|
-
})(reservation = service.reservation || (service.reservation = {}));
|
|
15202
15574
|
/**
|
|
15203
15575
|
* 予約サービス
|
|
15204
15576
|
*/
|
|
@@ -15305,7 +15677,7 @@ var service;
|
|
|
15305
15677
|
service.txn = transaction;
|
|
15306
15678
|
})(service = exports.service || (exports.service = {}));
|
|
15307
15679
|
|
|
15308
|
-
},{"./chevre/order/factory":
|
|
15680
|
+
},{"./chevre/order/factory":20,"./chevreTxn/payment/factory":88,"./chevreTxn/transaction/placeOrder/factory":91,"./service":99,"./service/categoryCode":100,"./service/creativeWork":101,"./service/customer":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}],94:[function(require,module,exports){
|
|
15309
15681
|
"use strict";
|
|
15310
15682
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15311
15683
|
if (k2 === undefined) k2 = k;
|
|
@@ -15323,7 +15695,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15323
15695
|
*/
|
|
15324
15696
|
__exportStar(require("@chevre/factory"), exports);
|
|
15325
15697
|
|
|
15326
|
-
},{"@chevre/factory":214}],
|
|
15698
|
+
},{"@chevre/factory":214}],95:[function(require,module,exports){
|
|
15327
15699
|
"use strict";
|
|
15328
15700
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15329
15701
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -15537,7 +15909,7 @@ exports.loadWaiterAdmin = loadWaiterAdmin;
|
|
|
15537
15909
|
// export class StubAuth extends StubAuthClient { }
|
|
15538
15910
|
// }
|
|
15539
15911
|
|
|
15540
|
-
},{"./admin":3,"./chevre":
|
|
15912
|
+
},{"./admin":3,"./chevre":14,"./chevreAdmin":31,"./chevreTxn":85,"./default":93,"./factory":94,"./pecorino":96,"./transporters":122,"./waiterAdmin":123}],96:[function(require,module,exports){
|
|
15541
15913
|
"use strict";
|
|
15542
15914
|
var __extends = (this && this.__extends) || (function () {
|
|
15543
15915
|
var extendStatics = function (d, b) {
|
|
@@ -15590,7 +15962,7 @@ var service;
|
|
|
15590
15962
|
service.AccountTransaction = AccountTransaction;
|
|
15591
15963
|
})(service = exports.service || (exports.service = {}));
|
|
15592
15964
|
|
|
15593
|
-
},{"./factory":
|
|
15965
|
+
},{"./factory":94,"./pecorino/accountTransaction":97,"./pecorino/permit":98}],97:[function(require,module,exports){
|
|
15594
15966
|
"use strict";
|
|
15595
15967
|
var __extends = (this && this.__extends) || (function () {
|
|
15596
15968
|
var extendStatics = function (d, b) {
|
|
@@ -15761,7 +16133,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
15761
16133
|
}(service_1.Service));
|
|
15762
16134
|
exports.AccountTransactionService = AccountTransactionService;
|
|
15763
16135
|
|
|
15764
|
-
},{"../service":
|
|
16136
|
+
},{"../service":99,"http-status":330}],98:[function(require,module,exports){
|
|
15765
16137
|
"use strict";
|
|
15766
16138
|
var __extends = (this && this.__extends) || (function () {
|
|
15767
16139
|
var extendStatics = function (d, b) {
|
|
@@ -15881,7 +16253,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
15881
16253
|
}(service_1.Service));
|
|
15882
16254
|
exports.PermitService = PermitService;
|
|
15883
16255
|
|
|
15884
|
-
},{"../service":
|
|
16256
|
+
},{"../service":99,"http-status":330}],99:[function(require,module,exports){
|
|
15885
16257
|
"use strict";
|
|
15886
16258
|
var __assign = (this && this.__assign) || function () {
|
|
15887
16259
|
__assign = Object.assign || function(t) {
|
|
@@ -15994,9 +16366,9 @@ var Service = /** @class */ (function () {
|
|
|
15994
16366
|
}());
|
|
15995
16367
|
exports.Service = Service;
|
|
15996
16368
|
|
|
15997
|
-
},{"./transporters":122,"qs":337}],
|
|
15998
|
-
arguments[4][
|
|
15999
|
-
},{"../service":
|
|
16369
|
+
},{"./transporters":122,"qs":337}],100:[function(require,module,exports){
|
|
16370
|
+
arguments[4][15][0].apply(exports,arguments)
|
|
16371
|
+
},{"../service":99,"dup":15,"http-status":330}],101:[function(require,module,exports){
|
|
16000
16372
|
"use strict";
|
|
16001
16373
|
var __extends = (this && this.__extends) || (function () {
|
|
16002
16374
|
var extendStatics = function (d, b) {
|
|
@@ -16093,7 +16465,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
16093
16465
|
}(service_1.Service));
|
|
16094
16466
|
exports.CreativeWorkService = CreativeWorkService;
|
|
16095
16467
|
|
|
16096
|
-
},{"../service":
|
|
16468
|
+
},{"../service":99,"http-status":330}],102:[function(require,module,exports){
|
|
16097
16469
|
"use strict";
|
|
16098
16470
|
var __extends = (this && this.__extends) || (function () {
|
|
16099
16471
|
var extendStatics = function (d, b) {
|
|
@@ -16208,7 +16580,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
16208
16580
|
}(service_1.Service));
|
|
16209
16581
|
exports.CustomerService = CustomerService;
|
|
16210
16582
|
|
|
16211
|
-
},{"../service":
|
|
16583
|
+
},{"../service":99,"http-status":330}],103:[function(require,module,exports){
|
|
16212
16584
|
"use strict";
|
|
16213
16585
|
var __extends = (this && this.__extends) || (function () {
|
|
16214
16586
|
var extendStatics = function (d, b) {
|
|
@@ -16300,9 +16672,9 @@ var DeliveryService = /** @class */ (function (_super) {
|
|
|
16300
16672
|
}(service_1.Service));
|
|
16301
16673
|
exports.DeliveryService = DeliveryService;
|
|
16302
16674
|
|
|
16303
|
-
},{"../service":
|
|
16304
|
-
arguments[4][
|
|
16305
|
-
},{"../service":
|
|
16675
|
+
},{"../service":99,"http-status":330}],104:[function(require,module,exports){
|
|
16676
|
+
arguments[4][17][0].apply(exports,arguments)
|
|
16677
|
+
},{"../service":99,"dup":17,"http-status":330}],105:[function(require,module,exports){
|
|
16306
16678
|
"use strict";
|
|
16307
16679
|
var __extends = (this && this.__extends) || (function () {
|
|
16308
16680
|
var extendStatics = function (d, b) {
|
|
@@ -16582,7 +16954,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16582
16954
|
}(service_1.Service));
|
|
16583
16955
|
exports.EventService = EventService;
|
|
16584
16956
|
|
|
16585
|
-
},{"../service":
|
|
16957
|
+
},{"../service":99,"http-status":330}],106:[function(require,module,exports){
|
|
16586
16958
|
"use strict";
|
|
16587
16959
|
var __extends = (this && this.__extends) || (function () {
|
|
16588
16960
|
var extendStatics = function (d, b) {
|
|
@@ -16717,7 +17089,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
16717
17089
|
}(service_1.Service));
|
|
16718
17090
|
exports.OfferService = OfferService;
|
|
16719
17091
|
|
|
16720
|
-
},{"../factory":
|
|
17092
|
+
},{"../factory":94,"../service":99,"http-status":330}],107:[function(require,module,exports){
|
|
16721
17093
|
"use strict";
|
|
16722
17094
|
var __extends = (this && this.__extends) || (function () {
|
|
16723
17095
|
var extendStatics = function (d, b) {
|
|
@@ -16839,124 +17211,21 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16839
17211
|
})
|
|
16840
17212
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16841
17213
|
return [2 /*return*/, response.json()];
|
|
16842
|
-
}); }); })];
|
|
16843
|
-
});
|
|
16844
|
-
});
|
|
16845
|
-
};
|
|
16846
|
-
/**
|
|
16847
|
-
* 予約番号と電話番号で注文情報を取得する(sskts専用)
|
|
16848
|
-
*/
|
|
16849
|
-
OrderService.prototype.findByOrderInquiryKey4sskts = function (params) {
|
|
16850
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16851
|
-
var _this = this;
|
|
16852
|
-
return __generator(this, function (_a) {
|
|
16853
|
-
return [2 /*return*/, this.fetch({
|
|
16854
|
-
uri: '/orders/findByOrderInquiryKey',
|
|
16855
|
-
method: 'POST',
|
|
16856
|
-
body: params,
|
|
16857
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16858
|
-
})
|
|
16859
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16860
|
-
return [2 /*return*/, response.json()];
|
|
16861
|
-
}); }); })];
|
|
16862
|
-
});
|
|
16863
|
-
});
|
|
16864
|
-
};
|
|
16865
|
-
/**
|
|
16866
|
-
* 注文番号と何かしらで注文照会
|
|
16867
|
-
*/
|
|
16868
|
-
OrderService.prototype.findOneByOrderNumberAndSomething = function (params) {
|
|
16869
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16870
|
-
var _this = this;
|
|
16871
|
-
return __generator(this, function (_a) {
|
|
16872
|
-
return [2 /*return*/, this.fetch({
|
|
16873
|
-
uri: '/orders/findOneByOrderNumberAndSomething',
|
|
16874
|
-
method: 'POST',
|
|
16875
|
-
body: params,
|
|
16876
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16877
|
-
})
|
|
16878
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16879
|
-
return [2 /*return*/, response.json()];
|
|
16880
|
-
}); }); })];
|
|
16881
|
-
});
|
|
16882
|
-
});
|
|
16883
|
-
};
|
|
16884
|
-
/**
|
|
16885
|
-
* 注文コードを発行する
|
|
16886
|
-
*/
|
|
16887
|
-
OrderService.prototype.authorize = function (params) {
|
|
16888
|
-
var _a;
|
|
16889
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16890
|
-
var _this = this;
|
|
16891
|
-
return __generator(this, function (_b) {
|
|
16892
|
-
return [2 /*return*/, this.fetch({
|
|
16893
|
-
uri: "/orders/" + String((_a = params.object) === null || _a === void 0 ? void 0 : _a.orderNumber) + "/authorize",
|
|
16894
|
-
method: 'POST',
|
|
16895
|
-
body: params,
|
|
16896
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16897
|
-
})
|
|
16898
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16899
|
-
return [2 /*return*/, response.json()];
|
|
16900
|
-
}); }); })];
|
|
16901
|
-
});
|
|
16902
|
-
});
|
|
16903
|
-
};
|
|
16904
|
-
/**
|
|
16905
|
-
* 注文取得
|
|
16906
|
-
*/
|
|
16907
|
-
OrderService.prototype.findByOrderNumber = function (params) {
|
|
16908
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16909
|
-
var _this = this;
|
|
16910
|
-
return __generator(this, function (_a) {
|
|
16911
|
-
return [2 /*return*/, this.fetch({
|
|
16912
|
-
uri: "/orders/" + params.orderNumber,
|
|
16913
|
-
method: 'GET',
|
|
16914
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16915
|
-
})
|
|
16916
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16917
|
-
return [2 /*return*/, response.json()];
|
|
16918
|
-
}); }); })];
|
|
16919
|
-
});
|
|
16920
|
-
});
|
|
16921
|
-
};
|
|
16922
|
-
/**
|
|
16923
|
-
* 注文を検索する
|
|
16924
|
-
*/
|
|
16925
|
-
OrderService.prototype.search = function (params) {
|
|
16926
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
16927
|
-
var _this = this;
|
|
16928
|
-
return __generator(this, function (_a) {
|
|
16929
|
-
return [2 /*return*/, this.fetch({
|
|
16930
|
-
uri: '/orders',
|
|
16931
|
-
method: 'GET',
|
|
16932
|
-
qs: params,
|
|
16933
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
16934
|
-
})
|
|
16935
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
16936
|
-
var _a;
|
|
16937
|
-
return __generator(this, function (_b) {
|
|
16938
|
-
switch (_b.label) {
|
|
16939
|
-
case 0:
|
|
16940
|
-
_a = {};
|
|
16941
|
-
return [4 /*yield*/, response.json()];
|
|
16942
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
16943
|
-
_a)];
|
|
16944
|
-
}
|
|
16945
|
-
});
|
|
16946
|
-
}); })];
|
|
17214
|
+
}); }); })];
|
|
16947
17215
|
});
|
|
16948
17216
|
});
|
|
16949
17217
|
};
|
|
16950
17218
|
/**
|
|
16951
|
-
*
|
|
17219
|
+
* 予約番号と電話番号で注文情報を取得する(sskts専用)
|
|
16952
17220
|
*/
|
|
16953
|
-
OrderService.prototype.
|
|
17221
|
+
OrderService.prototype.findByOrderInquiryKey4sskts = function (params) {
|
|
16954
17222
|
return __awaiter(this, void 0, void 0, function () {
|
|
16955
17223
|
var _this = this;
|
|
16956
17224
|
return __generator(this, function (_a) {
|
|
16957
17225
|
return [2 /*return*/, this.fetch({
|
|
16958
|
-
uri:
|
|
16959
|
-
method: '
|
|
17226
|
+
uri: '/orders/findByOrderInquiryKey',
|
|
17227
|
+
method: 'POST',
|
|
17228
|
+
body: params,
|
|
16960
17229
|
expectedStatusCodes: [http_status_1.OK]
|
|
16961
17230
|
})
|
|
16962
17231
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -16966,17 +17235,17 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16966
17235
|
});
|
|
16967
17236
|
};
|
|
16968
17237
|
/**
|
|
16969
|
-
*
|
|
17238
|
+
* 注文番号と何かしらで注文照会
|
|
16970
17239
|
*/
|
|
16971
|
-
OrderService.prototype.
|
|
17240
|
+
OrderService.prototype.findOneByOrderNumberAndSomething = function (params) {
|
|
16972
17241
|
return __awaiter(this, void 0, void 0, function () {
|
|
16973
17242
|
var _this = this;
|
|
16974
17243
|
return __generator(this, function (_a) {
|
|
16975
17244
|
return [2 /*return*/, this.fetch({
|
|
16976
|
-
uri:
|
|
16977
|
-
method: '
|
|
16978
|
-
|
|
16979
|
-
|
|
17245
|
+
uri: '/orders/findOneByOrderNumberAndSomething',
|
|
17246
|
+
method: 'POST',
|
|
17247
|
+
body: params,
|
|
17248
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
16980
17249
|
})
|
|
16981
17250
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16982
17251
|
return [2 /*return*/, response.json()];
|
|
@@ -16985,14 +17254,15 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16985
17254
|
});
|
|
16986
17255
|
};
|
|
16987
17256
|
/**
|
|
16988
|
-
*
|
|
17257
|
+
* 注文コードを発行する
|
|
16989
17258
|
*/
|
|
16990
|
-
OrderService.prototype.
|
|
17259
|
+
OrderService.prototype.authorize = function (params) {
|
|
17260
|
+
var _a;
|
|
16991
17261
|
return __awaiter(this, void 0, void 0, function () {
|
|
16992
17262
|
var _this = this;
|
|
16993
|
-
return __generator(this, function (
|
|
17263
|
+
return __generator(this, function (_b) {
|
|
16994
17264
|
return [2 /*return*/, this.fetch({
|
|
16995
|
-
uri: "/orders/" + params.orderNumber + "/
|
|
17265
|
+
uri: "/orders/" + String((_a = params.object) === null || _a === void 0 ? void 0 : _a.orderNumber) + "/authorize",
|
|
16996
17266
|
method: 'POST',
|
|
16997
17267
|
body: params,
|
|
16998
17268
|
expectedStatusCodes: [http_status_1.OK]
|
|
@@ -17004,22 +17274,21 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
17004
17274
|
});
|
|
17005
17275
|
};
|
|
17006
17276
|
/**
|
|
17007
|
-
*
|
|
17277
|
+
* 確認番号で注文オファー検索
|
|
17008
17278
|
*/
|
|
17009
|
-
OrderService.prototype.
|
|
17279
|
+
OrderService.prototype.searchAcceptedOffersByConfirmationNumber = function (params) {
|
|
17010
17280
|
return __awaiter(this, void 0, void 0, function () {
|
|
17281
|
+
var _this = this;
|
|
17011
17282
|
return __generator(this, function (_a) {
|
|
17012
|
-
|
|
17013
|
-
|
|
17014
|
-
|
|
17015
|
-
|
|
17016
|
-
|
|
17017
|
-
|
|
17018
|
-
|
|
17019
|
-
|
|
17020
|
-
|
|
17021
|
-
return [2 /*return*/];
|
|
17022
|
-
}
|
|
17283
|
+
return [2 /*return*/, this.fetch({
|
|
17284
|
+
uri: "/orders/" + params.orderNumber + "/acceptedOffersByConfirmationNumber",
|
|
17285
|
+
method: 'POST',
|
|
17286
|
+
body: params,
|
|
17287
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
17288
|
+
})
|
|
17289
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
17290
|
+
return [2 /*return*/, response.json()];
|
|
17291
|
+
}); }); })];
|
|
17023
17292
|
});
|
|
17024
17293
|
});
|
|
17025
17294
|
};
|
|
@@ -17027,7 +17296,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
17027
17296
|
}(service_1.Service));
|
|
17028
17297
|
exports.OrderService = OrderService;
|
|
17029
17298
|
|
|
17030
|
-
},{"../service":
|
|
17299
|
+
},{"../service":99,"http-status":330}],108:[function(require,module,exports){
|
|
17031
17300
|
"use strict";
|
|
17032
17301
|
var __extends = (this && this.__extends) || (function () {
|
|
17033
17302
|
var extendStatics = function (d, b) {
|
|
@@ -17270,7 +17539,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
17270
17539
|
}(service_1.Service));
|
|
17271
17540
|
exports.PaymentService = PaymentService;
|
|
17272
17541
|
|
|
17273
|
-
},{"../factory":
|
|
17542
|
+
},{"../factory":94,"../service":99,"http-status":330}],109:[function(require,module,exports){
|
|
17274
17543
|
"use strict";
|
|
17275
17544
|
var __extends = (this && this.__extends) || (function () {
|
|
17276
17545
|
var extendStatics = function (d, b) {
|
|
@@ -17379,7 +17648,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
17379
17648
|
}(service_1.Service));
|
|
17380
17649
|
exports.PermitService = PermitService;
|
|
17381
17650
|
|
|
17382
|
-
},{"../service":
|
|
17651
|
+
},{"../service":99,"http-status":330}],110:[function(require,module,exports){
|
|
17383
17652
|
"use strict";
|
|
17384
17653
|
var __extends = (this && this.__extends) || (function () {
|
|
17385
17654
|
var extendStatics = function (d, b) {
|
|
@@ -17547,7 +17816,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
17547
17816
|
}(service_1.Service));
|
|
17548
17817
|
exports.PersonService = PersonService;
|
|
17549
17818
|
|
|
17550
|
-
},{"../service":
|
|
17819
|
+
},{"../service":99,"http-status":330}],111:[function(require,module,exports){
|
|
17551
17820
|
"use strict";
|
|
17552
17821
|
var __extends = (this && this.__extends) || (function () {
|
|
17553
17822
|
var extendStatics = function (d, b) {
|
|
@@ -17892,7 +18161,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
17892
18161
|
}(service_1.Service));
|
|
17893
18162
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
17894
18163
|
|
|
17895
|
-
},{"../../factory":
|
|
18164
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],112:[function(require,module,exports){
|
|
17896
18165
|
"use strict";
|
|
17897
18166
|
var __extends = (this && this.__extends) || (function () {
|
|
17898
18167
|
var extendStatics = function (d, b) {
|
|
@@ -18074,7 +18343,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
18074
18343
|
}(service_1.Service));
|
|
18075
18344
|
exports.PlaceService = PlaceService;
|
|
18076
18345
|
|
|
18077
|
-
},{"../factory":
|
|
18346
|
+
},{"../factory":94,"../service":99,"http-status":330}],113:[function(require,module,exports){
|
|
18078
18347
|
"use strict";
|
|
18079
18348
|
var __extends = (this && this.__extends) || (function () {
|
|
18080
18349
|
var extendStatics = function (d, b) {
|
|
@@ -18163,7 +18432,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
18163
18432
|
}(service_1.Service));
|
|
18164
18433
|
exports.HasPOSService = HasPOSService;
|
|
18165
18434
|
|
|
18166
|
-
},{"../../factory":
|
|
18435
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],114:[function(require,module,exports){
|
|
18167
18436
|
"use strict";
|
|
18168
18437
|
var __extends = (this && this.__extends) || (function () {
|
|
18169
18438
|
var extendStatics = function (d, b) {
|
|
@@ -18279,216 +18548,15 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
18279
18548
|
}(service_1.Service));
|
|
18280
18549
|
exports.ProductService = ProductService;
|
|
18281
18550
|
|
|
18282
|
-
},{"../service":
|
|
18283
|
-
"use strict";
|
|
18284
|
-
var __extends = (this && this.__extends) || (function () {
|
|
18285
|
-
var extendStatics = function (d, b) {
|
|
18286
|
-
extendStatics = Object.setPrototypeOf ||
|
|
18287
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
18288
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
18289
|
-
return extendStatics(d, b);
|
|
18290
|
-
};
|
|
18291
|
-
return function (d, b) {
|
|
18292
|
-
if (typeof b !== "function" && b !== null)
|
|
18293
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
18294
|
-
extendStatics(d, b);
|
|
18295
|
-
function __() { this.constructor = d; }
|
|
18296
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18297
|
-
};
|
|
18298
|
-
})();
|
|
18299
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18300
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
18301
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
18302
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18303
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18304
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18305
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
18306
|
-
});
|
|
18307
|
-
};
|
|
18308
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
18309
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
18310
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
18311
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
18312
|
-
function step(op) {
|
|
18313
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
18314
|
-
while (_) try {
|
|
18315
|
-
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;
|
|
18316
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
18317
|
-
switch (op[0]) {
|
|
18318
|
-
case 0: case 1: t = op; break;
|
|
18319
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
18320
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
18321
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
18322
|
-
default:
|
|
18323
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
18324
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
18325
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
18326
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
18327
|
-
if (t[2]) _.ops.pop();
|
|
18328
|
-
_.trys.pop(); continue;
|
|
18329
|
-
}
|
|
18330
|
-
op = body.call(thisArg, _);
|
|
18331
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
18332
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
18333
|
-
}
|
|
18334
|
-
};
|
|
18335
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18336
|
-
exports.ReservationService = void 0;
|
|
18337
|
-
var http_status_1 = require("http-status");
|
|
18338
|
-
var factory = require("../factory");
|
|
18339
|
-
var service_1 = require("../service");
|
|
18340
|
-
/**
|
|
18341
|
-
* 予約サービス
|
|
18342
|
-
*/
|
|
18343
|
-
var ReservationService = /** @class */ (function (_super) {
|
|
18344
|
-
__extends(ReservationService, _super);
|
|
18345
|
-
function ReservationService() {
|
|
18346
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
18347
|
-
}
|
|
18348
|
-
/**
|
|
18349
|
-
* 予約検索
|
|
18350
|
-
*/
|
|
18351
|
-
ReservationService.prototype.search = function (params) {
|
|
18352
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18353
|
-
var _this = this;
|
|
18354
|
-
return __generator(this, function (_a) {
|
|
18355
|
-
return [2 /*return*/, this.fetch({
|
|
18356
|
-
uri: '/reservations',
|
|
18357
|
-
method: 'GET',
|
|
18358
|
-
qs: params,
|
|
18359
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
18360
|
-
})
|
|
18361
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
18362
|
-
var _a;
|
|
18363
|
-
return __generator(this, function (_b) {
|
|
18364
|
-
switch (_b.label) {
|
|
18365
|
-
case 0:
|
|
18366
|
-
_a = {};
|
|
18367
|
-
return [4 /*yield*/, response.json()];
|
|
18368
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
18369
|
-
_a)];
|
|
18370
|
-
}
|
|
18371
|
-
});
|
|
18372
|
-
}); })];
|
|
18373
|
-
});
|
|
18374
|
-
});
|
|
18375
|
-
};
|
|
18376
|
-
/**
|
|
18377
|
-
* 予約を使用する
|
|
18378
|
-
* 注文コードから取得したトークンを利用して、予約に入場記録を追加します
|
|
18379
|
-
*/
|
|
18380
|
-
ReservationService.prototype.useByToken = function (params) {
|
|
18381
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18382
|
-
return __generator(this, function (_a) {
|
|
18383
|
-
switch (_a.label) {
|
|
18384
|
-
case 0: return [4 /*yield*/, this.fetch({
|
|
18385
|
-
uri: '/reservations/use',
|
|
18386
|
-
method: 'POST',
|
|
18387
|
-
body: params,
|
|
18388
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
18389
|
-
})];
|
|
18390
|
-
case 1:
|
|
18391
|
-
_a.sent();
|
|
18392
|
-
return [2 /*return*/];
|
|
18393
|
-
}
|
|
18394
|
-
});
|
|
18395
|
-
});
|
|
18396
|
-
};
|
|
18397
|
-
/**
|
|
18398
|
-
* 予約に対する入場アクションを検索する
|
|
18399
|
-
*/
|
|
18400
|
-
ReservationService.prototype.searchUseActions = function (params) {
|
|
18401
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18402
|
-
var _this = this;
|
|
18403
|
-
return __generator(this, function (_a) {
|
|
18404
|
-
return [2 /*return*/, this.fetch({
|
|
18405
|
-
uri: "/reservations/" + String(params.object.id) + "/actions/use",
|
|
18406
|
-
method: 'GET',
|
|
18407
|
-
qs: params,
|
|
18408
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
18409
|
-
})
|
|
18410
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
18411
|
-
var _a;
|
|
18412
|
-
return __generator(this, function (_b) {
|
|
18413
|
-
switch (_b.label) {
|
|
18414
|
-
case 0:
|
|
18415
|
-
_a = {};
|
|
18416
|
-
return [4 /*yield*/, response.json()];
|
|
18417
|
-
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
18418
|
-
_a)];
|
|
18419
|
-
}
|
|
18420
|
-
});
|
|
18421
|
-
}); })];
|
|
18422
|
-
});
|
|
18423
|
-
});
|
|
18424
|
-
};
|
|
18425
|
-
/**
|
|
18426
|
-
* 予約取消
|
|
18427
|
-
* 再定義(2023-08-01~)
|
|
18428
|
-
*/
|
|
18429
|
-
ReservationService.prototype.cancel = function (params) {
|
|
18430
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18431
|
-
return __generator(this, function (_a) {
|
|
18432
|
-
switch (_a.label) {
|
|
18433
|
-
case 0: return [4 /*yield*/, this.fetch({
|
|
18434
|
-
uri: "/reservations/" + String(params.object.id) + "/" + factory.reservationStatusType.ReservationCancelled,
|
|
18435
|
-
method: 'PUT',
|
|
18436
|
-
body: params,
|
|
18437
|
-
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
18438
|
-
})];
|
|
18439
|
-
case 1:
|
|
18440
|
-
_a.sent();
|
|
18441
|
-
return [2 /*return*/];
|
|
18442
|
-
}
|
|
18443
|
-
});
|
|
18444
|
-
});
|
|
18445
|
-
};
|
|
18446
|
-
/**
|
|
18447
|
-
* 注文に含まれる予約照会
|
|
18448
|
-
*/
|
|
18449
|
-
ReservationService.prototype.searchByOrder = function (params, qs) {
|
|
18450
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
18451
|
-
var _this = this;
|
|
18452
|
-
return __generator(this, function (_a) {
|
|
18453
|
-
return [2 /*return*/, this.fetch({
|
|
18454
|
-
uri: '/reservations/searchByOrder',
|
|
18455
|
-
method: 'POST',
|
|
18456
|
-
body: params,
|
|
18457
|
-
qs: qs,
|
|
18458
|
-
expectedStatusCodes: [http_status_1.OK]
|
|
18459
|
-
})
|
|
18460
|
-
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
18461
|
-
return [2 /*return*/, response.json()];
|
|
18462
|
-
}); }); })];
|
|
18463
|
-
});
|
|
18464
|
-
});
|
|
18465
|
-
};
|
|
18466
|
-
return ReservationService;
|
|
18467
|
-
}(service_1.Service));
|
|
18468
|
-
exports.ReservationService = ReservationService;
|
|
18469
|
-
|
|
18470
|
-
},{"../factory":93,"../service":98,"http-status":330}],115:[function(require,module,exports){
|
|
18471
|
-
"use strict";
|
|
18472
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18473
|
-
if (k2 === undefined) k2 = k;
|
|
18474
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
18475
|
-
}) : (function(o, m, k, k2) {
|
|
18476
|
-
if (k2 === undefined) k2 = k;
|
|
18477
|
-
o[k2] = m[k];
|
|
18478
|
-
}));
|
|
18479
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
18480
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
18481
|
-
};
|
|
18482
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18483
|
-
__exportStar(require("../../chevre/reservation/factory"), exports);
|
|
18484
|
-
|
|
18485
|
-
},{"../../chevre/reservation/factory":26}],116:[function(require,module,exports){
|
|
18551
|
+
},{"../service":99,"http-status":330}],115:[function(require,module,exports){
|
|
18486
18552
|
arguments[4][27][0].apply(exports,arguments)
|
|
18487
|
-
},{"../service":
|
|
18553
|
+
},{"../service":99,"dup":27,"http-status":330}],116:[function(require,module,exports){
|
|
18488
18554
|
arguments[4][28][0].apply(exports,arguments)
|
|
18489
|
-
},{"../service":
|
|
18490
|
-
arguments[4][
|
|
18491
|
-
},{"
|
|
18555
|
+
},{"../service":99,"dup":28,"http-status":330}],117:[function(require,module,exports){
|
|
18556
|
+
arguments[4][29][0].apply(exports,arguments)
|
|
18557
|
+
},{"../service":99,"dup":29,"http-status":330}],118:[function(require,module,exports){
|
|
18558
|
+
arguments[4][89][0].apply(exports,arguments)
|
|
18559
|
+
},{"../../factory":94,"../../service":99,"dup":89,"http-status":330}],119:[function(require,module,exports){
|
|
18492
18560
|
"use strict";
|
|
18493
18561
|
var __extends = (this && this.__extends) || (function () {
|
|
18494
18562
|
var extendStatics = function (d, b) {
|
|
@@ -18690,7 +18758,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
18690
18758
|
}(service_1.Service));
|
|
18691
18759
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
18692
18760
|
|
|
18693
|
-
},{"../../factory":
|
|
18761
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],120:[function(require,module,exports){
|
|
18694
18762
|
"use strict";
|
|
18695
18763
|
var __extends = (this && this.__extends) || (function () {
|
|
18696
18764
|
var extendStatics = function (d, b) {
|
|
@@ -18989,7 +19057,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
18989
19057
|
}(service_1.Service));
|
|
18990
19058
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
18991
19059
|
|
|
18992
|
-
},{"../../factory":
|
|
19060
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],122:[function(require,module,exports){
|
|
18993
19061
|
"use strict";
|
|
18994
19062
|
var __extends = (this && this.__extends) || (function () {
|
|
18995
19063
|
var extendStatics = function (d, b) {
|
|
@@ -19379,7 +19447,7 @@ var RuleService = /** @class */ (function (_super) {
|
|
|
19379
19447
|
}(service_1.Service));
|
|
19380
19448
|
exports.RuleService = RuleService;
|
|
19381
19449
|
|
|
19382
|
-
},{"../service":
|
|
19450
|
+
},{"../service":99,"http-status":330}],125:[function(require,module,exports){
|
|
19383
19451
|
"use strict";
|
|
19384
19452
|
var __extends = (this && this.__extends) || (function () {
|
|
19385
19453
|
var extendStatics = function (d, b) {
|
|
@@ -19487,7 +19555,7 @@ var RuleSetService = /** @class */ (function (_super) {
|
|
|
19487
19555
|
}(service_1.Service));
|
|
19488
19556
|
exports.RuleSetService = RuleSetService;
|
|
19489
19557
|
|
|
19490
|
-
},{"../service":
|
|
19558
|
+
},{"../service":99,"http-status":330}],126:[function(require,module,exports){
|
|
19491
19559
|
"use strict";
|
|
19492
19560
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
19493
19561
|
/* istanbul ignore file */
|
|
@@ -20974,14 +21042,14 @@ var transaction;
|
|
|
20974
21042
|
exports.transactionType = transactionType_1.AccountTransactionType;
|
|
20975
21043
|
|
|
20976
21044
|
},{"./account/action/moneyTransfer":137,"./account/transaction/deposit":138,"./account/transaction/transfer":139,"./account/transaction/withdraw":140,"./account/transactionType":141}],137:[function(require,module,exports){
|
|
20977
|
-
arguments[4][
|
|
20978
|
-
},{"dup":
|
|
20979
|
-
arguments[4][
|
|
20980
|
-
},{"dup":
|
|
20981
|
-
arguments[4][
|
|
20982
|
-
},{"dup":
|
|
20983
|
-
arguments[4][
|
|
20984
|
-
},{"dup":
|
|
21045
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21046
|
+
},{"dup":20}],138:[function(require,module,exports){
|
|
21047
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21048
|
+
},{"dup":20}],139:[function(require,module,exports){
|
|
21049
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21050
|
+
},{"dup":20}],140:[function(require,module,exports){
|
|
21051
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21052
|
+
},{"dup":20}],141:[function(require,module,exports){
|
|
20985
21053
|
"use strict";
|
|
20986
21054
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20987
21055
|
exports.AccountTransactionType = void 0;
|
|
@@ -21005,8 +21073,8 @@ var AccountTransactionType;
|
|
|
21005
21073
|
})(AccountTransactionType = exports.AccountTransactionType || (exports.AccountTransactionType = {}));
|
|
21006
21074
|
|
|
21007
21075
|
},{}],142:[function(require,module,exports){
|
|
21008
|
-
arguments[4][
|
|
21009
|
-
},{"dup":
|
|
21076
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21077
|
+
},{"dup":20}],143:[function(require,module,exports){
|
|
21010
21078
|
"use strict";
|
|
21011
21079
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21012
21080
|
exports.AccountType = void 0;
|
|
@@ -21046,10 +21114,10 @@ var ObjectType;
|
|
|
21046
21114
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21047
21115
|
|
|
21048
21116
|
},{}],146:[function(require,module,exports){
|
|
21049
|
-
arguments[4][
|
|
21050
|
-
},{"dup":
|
|
21051
|
-
arguments[4][
|
|
21052
|
-
},{"dup":
|
|
21117
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21118
|
+
},{"dup":20}],147:[function(require,module,exports){
|
|
21119
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21120
|
+
},{"dup":20}],148:[function(require,module,exports){
|
|
21053
21121
|
"use strict";
|
|
21054
21122
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21055
21123
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -21064,10 +21132,10 @@ var ServiceIdentifier;
|
|
|
21064
21132
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
21065
21133
|
|
|
21066
21134
|
},{}],149:[function(require,module,exports){
|
|
21067
|
-
arguments[4][
|
|
21068
|
-
},{"dup":
|
|
21069
|
-
arguments[4][
|
|
21070
|
-
},{"dup":
|
|
21135
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21136
|
+
},{"dup":20}],150:[function(require,module,exports){
|
|
21137
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21138
|
+
},{"dup":20}],151:[function(require,module,exports){
|
|
21071
21139
|
"use strict";
|
|
21072
21140
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21073
21141
|
exports.ObjectType = void 0;
|
|
@@ -21077,28 +21145,28 @@ var ObjectType;
|
|
|
21077
21145
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21078
21146
|
|
|
21079
21147
|
},{}],152:[function(require,module,exports){
|
|
21080
|
-
arguments[4][
|
|
21081
|
-
},{"dup":
|
|
21082
|
-
arguments[4][
|
|
21083
|
-
},{"dup":
|
|
21084
|
-
arguments[4][
|
|
21085
|
-
},{"dup":
|
|
21086
|
-
arguments[4][
|
|
21087
|
-
},{"dup":
|
|
21088
|
-
arguments[4][
|
|
21089
|
-
},{"dup":
|
|
21090
|
-
arguments[4][
|
|
21091
|
-
},{"dup":
|
|
21092
|
-
arguments[4][
|
|
21093
|
-
},{"dup":
|
|
21094
|
-
arguments[4][
|
|
21095
|
-
},{"dup":
|
|
21096
|
-
arguments[4][
|
|
21097
|
-
},{"dup":
|
|
21098
|
-
arguments[4][
|
|
21099
|
-
},{"dup":
|
|
21100
|
-
arguments[4][
|
|
21101
|
-
},{"dup":
|
|
21148
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21149
|
+
},{"dup":20}],153:[function(require,module,exports){
|
|
21150
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21151
|
+
},{"dup":20}],154:[function(require,module,exports){
|
|
21152
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21153
|
+
},{"dup":20}],155:[function(require,module,exports){
|
|
21154
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21155
|
+
},{"dup":20}],156:[function(require,module,exports){
|
|
21156
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21157
|
+
},{"dup":20}],157:[function(require,module,exports){
|
|
21158
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21159
|
+
},{"dup":20}],158:[function(require,module,exports){
|
|
21160
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21161
|
+
},{"dup":20}],159:[function(require,module,exports){
|
|
21162
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21163
|
+
},{"dup":20}],160:[function(require,module,exports){
|
|
21164
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21165
|
+
},{"dup":20}],161:[function(require,module,exports){
|
|
21166
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21167
|
+
},{"dup":20}],162:[function(require,module,exports){
|
|
21168
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21169
|
+
},{"dup":20}],163:[function(require,module,exports){
|
|
21102
21170
|
"use strict";
|
|
21103
21171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21104
21172
|
exports.ObjectType = void 0;
|
|
@@ -21106,24 +21174,24 @@ var point_1 = require("../../authorize/award/point");
|
|
|
21106
21174
|
exports.ObjectType = point_1.ObjectType;
|
|
21107
21175
|
|
|
21108
21176
|
},{"../../authorize/award/point":144}],164:[function(require,module,exports){
|
|
21109
|
-
arguments[4][
|
|
21110
|
-
},{"dup":
|
|
21111
|
-
arguments[4][
|
|
21112
|
-
},{"dup":
|
|
21113
|
-
arguments[4][
|
|
21114
|
-
},{"dup":
|
|
21115
|
-
arguments[4][
|
|
21116
|
-
},{"dup":
|
|
21117
|
-
arguments[4][
|
|
21118
|
-
},{"dup":
|
|
21119
|
-
arguments[4][
|
|
21120
|
-
},{"dup":
|
|
21121
|
-
arguments[4][
|
|
21122
|
-
},{"dup":
|
|
21123
|
-
arguments[4][
|
|
21124
|
-
},{"dup":
|
|
21125
|
-
arguments[4][
|
|
21126
|
-
},{"dup":
|
|
21177
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21178
|
+
},{"dup":20}],165:[function(require,module,exports){
|
|
21179
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21180
|
+
},{"dup":20}],166:[function(require,module,exports){
|
|
21181
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21182
|
+
},{"dup":20}],167:[function(require,module,exports){
|
|
21183
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21184
|
+
},{"dup":20}],168:[function(require,module,exports){
|
|
21185
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21186
|
+
},{"dup":20}],169:[function(require,module,exports){
|
|
21187
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21188
|
+
},{"dup":20}],170:[function(require,module,exports){
|
|
21189
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21190
|
+
},{"dup":20}],171:[function(require,module,exports){
|
|
21191
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21192
|
+
},{"dup":20}],172:[function(require,module,exports){
|
|
21193
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21194
|
+
},{"dup":20}],173:[function(require,module,exports){
|
|
21127
21195
|
"use strict";
|
|
21128
21196
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21129
21197
|
exports.ActionStatusType = void 0;
|
|
@@ -21172,20 +21240,20 @@ var ActionType;
|
|
|
21172
21240
|
})(ActionType = exports.ActionType || (exports.ActionType = {}));
|
|
21173
21241
|
|
|
21174
21242
|
},{}],175:[function(require,module,exports){
|
|
21175
|
-
arguments[4][
|
|
21176
|
-
},{"dup":
|
|
21177
|
-
arguments[4][
|
|
21178
|
-
},{"dup":
|
|
21179
|
-
arguments[4][
|
|
21180
|
-
},{"dup":
|
|
21181
|
-
arguments[4][
|
|
21182
|
-
},{"dup":
|
|
21183
|
-
arguments[4][
|
|
21184
|
-
},{"dup":
|
|
21185
|
-
arguments[4][
|
|
21186
|
-
},{"dup":
|
|
21187
|
-
arguments[4][
|
|
21188
|
-
},{"dup":
|
|
21243
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21244
|
+
},{"dup":20}],176:[function(require,module,exports){
|
|
21245
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21246
|
+
},{"dup":20}],177:[function(require,module,exports){
|
|
21247
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21248
|
+
},{"dup":20}],178:[function(require,module,exports){
|
|
21249
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21250
|
+
},{"dup":20}],179:[function(require,module,exports){
|
|
21251
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21252
|
+
},{"dup":20}],180:[function(require,module,exports){
|
|
21253
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21254
|
+
},{"dup":20}],181:[function(require,module,exports){
|
|
21255
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21256
|
+
},{"dup":20}],182:[function(require,module,exports){
|
|
21189
21257
|
"use strict";
|
|
21190
21258
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21191
21259
|
exports.AssetTransactionType = void 0;
|
|
@@ -21223,8 +21291,8 @@ var AssetTransactionType;
|
|
|
21223
21291
|
})(AssetTransactionType = exports.AssetTransactionType || (exports.AssetTransactionType = {}));
|
|
21224
21292
|
|
|
21225
21293
|
},{}],183:[function(require,module,exports){
|
|
21226
|
-
arguments[4][
|
|
21227
|
-
},{"dup":
|
|
21294
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21295
|
+
},{"dup":20}],184:[function(require,module,exports){
|
|
21228
21296
|
"use strict";
|
|
21229
21297
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21230
21298
|
exports.CategorySetIdentifier = void 0;
|
|
@@ -21289,10 +21357,10 @@ var CategorySetIdentifier;
|
|
|
21289
21357
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21290
21358
|
|
|
21291
21359
|
},{}],186:[function(require,module,exports){
|
|
21292
|
-
arguments[4][
|
|
21293
|
-
},{"dup":
|
|
21294
|
-
arguments[4][
|
|
21295
|
-
},{"dup":
|
|
21360
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21361
|
+
},{"dup":20}],187:[function(require,module,exports){
|
|
21362
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21363
|
+
},{"dup":20}],188:[function(require,module,exports){
|
|
21296
21364
|
"use strict";
|
|
21297
21365
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21298
21366
|
exports.AboutIdentifier = void 0;
|
|
@@ -21305,12 +21373,12 @@ var AboutIdentifier;
|
|
|
21305
21373
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
21306
21374
|
|
|
21307
21375
|
},{}],189:[function(require,module,exports){
|
|
21308
|
-
arguments[4][
|
|
21309
|
-
},{"dup":
|
|
21310
|
-
arguments[4][
|
|
21311
|
-
},{"dup":
|
|
21312
|
-
arguments[4][
|
|
21313
|
-
},{"dup":
|
|
21376
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21377
|
+
},{"dup":20}],190:[function(require,module,exports){
|
|
21378
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21379
|
+
},{"dup":20}],191:[function(require,module,exports){
|
|
21380
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21381
|
+
},{"dup":20}],192:[function(require,module,exports){
|
|
21314
21382
|
"use strict";
|
|
21315
21383
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21316
21384
|
exports.CreativeWorkType = void 0;
|
|
@@ -21327,8 +21395,8 @@ var CreativeWorkType;
|
|
|
21327
21395
|
})(CreativeWorkType = exports.CreativeWorkType || (exports.CreativeWorkType = {}));
|
|
21328
21396
|
|
|
21329
21397
|
},{}],193:[function(require,module,exports){
|
|
21330
|
-
arguments[4][
|
|
21331
|
-
},{"dup":
|
|
21398
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21399
|
+
},{"dup":20}],194:[function(require,module,exports){
|
|
21332
21400
|
"use strict";
|
|
21333
21401
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21334
21402
|
exports.Video = exports.Text = exports.Multipart = exports.Model = exports.Message = exports.Image = exports.Example = exports.Font = exports.Audio = exports.Application = void 0;
|
|
@@ -21907,12 +21975,12 @@ var unauthorized_1 = require("./error/unauthorized");
|
|
|
21907
21975
|
Object.defineProperty(exports, "Unauthorized", { enumerable: true, get: function () { return unauthorized_1.UnauthorizedError; } });
|
|
21908
21976
|
|
|
21909
21977
|
},{"./error/alreadyInUse":195,"./error/argument":196,"./error/argumentNull":197,"./error/chevre":198,"./error/forbidden":199,"./error/gatewayTimeout":200,"./error/notFound":201,"./error/notImplemented":202,"./error/rateLimitExceeded":203,"./error/serviceUnavailable":204,"./error/unauthorized":205}],208:[function(require,module,exports){
|
|
21910
|
-
arguments[4][
|
|
21911
|
-
},{"dup":
|
|
21912
|
-
arguments[4][
|
|
21913
|
-
},{"dup":
|
|
21914
|
-
arguments[4][
|
|
21915
|
-
},{"dup":
|
|
21978
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21979
|
+
},{"dup":20}],209:[function(require,module,exports){
|
|
21980
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21981
|
+
},{"dup":20}],210:[function(require,module,exports){
|
|
21982
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
21983
|
+
},{"dup":20}],211:[function(require,module,exports){
|
|
21916
21984
|
"use strict";
|
|
21917
21985
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21918
21986
|
exports.EventStatusType = void 0;
|
|
@@ -22387,8 +22455,8 @@ exports.unitCode = unitCode_1.UnitCode;
|
|
|
22387
22455
|
exports.unitPriceOffer = UnitPriceOfferFactory;
|
|
22388
22456
|
|
|
22389
22457
|
},{"./account":136,"./accountTitle":142,"./accountType":143,"./action/authorize/award/point":144,"./action/authorize/offer/eventService":145,"./action/authorize/offer/moneyTransfer":146,"./action/authorize/offer/product":147,"./action/authorize/paymentMethod/any":148,"./action/cancel/reservation":149,"./action/check/paymentMethod/movieTicket":150,"./action/check/token":151,"./action/consume/use/reservation":152,"./action/interact/confirm/moneyTransfer":153,"./action/interact/confirm/pay":154,"./action/interact/confirm/registerService":155,"./action/interact/confirm/reservation":156,"./action/interact/inform":157,"./action/interact/register/service":158,"./action/reserve":159,"./action/trade/order":160,"./action/trade/pay":161,"./action/trade/refund":162,"./action/transfer/give/pointAward":163,"./action/transfer/moneyTransfer":164,"./action/transfer/return/moneyTransfer":165,"./action/transfer/return/order":166,"./action/transfer/return/paymentMethod":167,"./action/transfer/return/pointAward":168,"./action/transfer/return/reserveTransaction":169,"./action/transfer/send/message/email":170,"./action/transfer/send/order":171,"./action/update/delete/member":172,"./actionStatusType":173,"./actionType":174,"./additionalProperty":175,"./assetTransaction/cancelReservation":176,"./assetTransaction/moneyTransfer":177,"./assetTransaction/pay":178,"./assetTransaction/refund":179,"./assetTransaction/registerService":180,"./assetTransaction/reserve":181,"./assetTransactionType":182,"./authorization":183,"./categoryCode":184,"./clientUser":185,"./cognito":186,"./creativeWork/comment":187,"./creativeWork/message/email":188,"./creativeWork/movie":189,"./creativeWork/noteDigitalDocument":190,"./creativeWork/softwareApplication/webApplication":191,"./creativeWorkType":192,"./customer":193,"./encodingFormat":194,"./errorCode":206,"./errors":207,"./event/anyEvent":208,"./event/screeningEvent":209,"./event/screeningEventSeries":210,"./eventStatusType":211,"./eventType":212,"./iam":213,"./invoice":215,"./itemAvailability":216,"./language":217,"./merchantReturnPolicy":218,"./monetaryAmount":219,"./offer":220,"./offer/aggregateOffer":221,"./offerCatalog":222,"./offerItemCondition":223,"./offerType":224,"./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":236,"./place/movieTheater":237,"./place/screeningRoom":238,"./place/screeningRoomSection":239,"./place/seat":240,"./placeType":241,"./priceCurrency":242,"./priceSpecification/unitPriceSpecification":243,"./priceSpecificationType":244,"./product":245,"./programMembership":246,"./project":247,"./propertyValue":248,"./propertyValue/locationFeatureSpecification":249,"./qualitativeValue":250,"./quantitativeValue":251,"./report/accountingReport":252,"./reservation/busReservation":253,"./reservation/event":254,"./reservationStatusType":255,"./reservationType":256,"./seller":257,"./service/paymentService":258,"./service/webAPI":259,"./sortType":260,"./task/accountMoneyTransfer":261,"./task/aggregateScreeningEvent":262,"./task/aggregateUseActionsOnEvent":263,"./task/cancelAccountMoneyTransfer":264,"./task/cancelMoneyTransfer":265,"./task/cancelPendingReservation":266,"./task/cancelReservation":267,"./task/confirmReserveTransaction":268,"./task/createAccountingReport":269,"./task/createEvent":270,"./task/deleteTransaction":271,"./task/importEventCapacitiesFromCOA":272,"./task/importEventsFromCOA":273,"./task/importOffersFromCOA":274,"./task/moneyTransfer":275,"./task/onAuthorizationCreated":276,"./task/onEventChanged":277,"./task/onResourceUpdated":278,"./task/pay":279,"./task/refund":280,"./task/registerService":281,"./task/reserve":282,"./task/sendEmailMessage":283,"./task/triggerWebhook":284,"./task/useReservation":285,"./task/voidPayment":286,"./taskName":287,"./taskStatus":288,"./thing":289,"./transaction/moneyTransfer":290,"./transaction/placeOrder":291,"./transaction/returnOrder":292,"./transactionStatusType":293,"./transactionTasksExportationStatus":294,"./transactionType":295,"./trip/busTrip":296,"./tripType":297,"./unitCode":298,"./unitPriceOffer":299,"@waiter/factory":315}],215:[function(require,module,exports){
|
|
22390
|
-
arguments[4][
|
|
22391
|
-
},{"dup":
|
|
22458
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22459
|
+
},{"dup":20}],216:[function(require,module,exports){
|
|
22392
22460
|
"use strict";
|
|
22393
22461
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22394
22462
|
exports.ItemAvailability = void 0;
|
|
@@ -22409,8 +22477,8 @@ var ItemAvailability;
|
|
|
22409
22477
|
})(ItemAvailability = exports.ItemAvailability || (exports.ItemAvailability = {}));
|
|
22410
22478
|
|
|
22411
22479
|
},{}],217:[function(require,module,exports){
|
|
22412
|
-
arguments[4][
|
|
22413
|
-
},{"dup":
|
|
22480
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22481
|
+
},{"dup":20}],218:[function(require,module,exports){
|
|
22414
22482
|
"use strict";
|
|
22415
22483
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22416
22484
|
exports.MerchantReturnEnumeration = exports.ReturnFeesEnumeration = exports.RefundTypeEnumeration = void 0;
|
|
@@ -22462,16 +22530,16 @@ var MerchantReturnEnumeration;
|
|
|
22462
22530
|
})(MerchantReturnEnumeration = exports.MerchantReturnEnumeration || (exports.MerchantReturnEnumeration = {}));
|
|
22463
22531
|
|
|
22464
22532
|
},{}],219:[function(require,module,exports){
|
|
22465
|
-
arguments[4][
|
|
22466
|
-
},{"dup":
|
|
22467
|
-
arguments[4][
|
|
22468
|
-
},{"dup":
|
|
22469
|
-
arguments[4][
|
|
22470
|
-
},{"dup":
|
|
22471
|
-
arguments[4][
|
|
22472
|
-
},{"dup":
|
|
22473
|
-
arguments[4][
|
|
22474
|
-
},{"dup":
|
|
22533
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22534
|
+
},{"dup":20}],220:[function(require,module,exports){
|
|
22535
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22536
|
+
},{"dup":20}],221:[function(require,module,exports){
|
|
22537
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22538
|
+
},{"dup":20}],222:[function(require,module,exports){
|
|
22539
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22540
|
+
},{"dup":20}],223:[function(require,module,exports){
|
|
22541
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22542
|
+
},{"dup":20}],224:[function(require,module,exports){
|
|
22475
22543
|
"use strict";
|
|
22476
22544
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22477
22545
|
exports.OfferType = void 0;
|
|
@@ -22513,8 +22581,8 @@ var OrderStatus;
|
|
|
22513
22581
|
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));
|
|
22514
22582
|
|
|
22515
22583
|
},{}],227:[function(require,module,exports){
|
|
22516
|
-
arguments[4][
|
|
22517
|
-
},{"dup":
|
|
22584
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22585
|
+
},{"dup":20}],228:[function(require,module,exports){
|
|
22518
22586
|
"use strict";
|
|
22519
22587
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22520
22588
|
exports.OrganizationType = void 0;
|
|
@@ -22540,12 +22608,12 @@ var OrganizationType;
|
|
|
22540
22608
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
22541
22609
|
|
|
22542
22610
|
},{}],229:[function(require,module,exports){
|
|
22543
|
-
arguments[4][
|
|
22544
|
-
},{"dup":
|
|
22545
|
-
arguments[4][
|
|
22546
|
-
},{"dup":
|
|
22547
|
-
arguments[4][
|
|
22548
|
-
},{"dup":
|
|
22611
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22612
|
+
},{"dup":20}],230:[function(require,module,exports){
|
|
22613
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22614
|
+
},{"dup":20}],231:[function(require,module,exports){
|
|
22615
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22616
|
+
},{"dup":20}],232:[function(require,module,exports){
|
|
22549
22617
|
"use strict";
|
|
22550
22618
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22551
22619
|
exports.PaymentStatusType = void 0;
|
|
@@ -22571,8 +22639,8 @@ var PermitType;
|
|
|
22571
22639
|
})(PermitType = exports.PermitType || (exports.PermitType = {}));
|
|
22572
22640
|
|
|
22573
22641
|
},{}],234:[function(require,module,exports){
|
|
22574
|
-
arguments[4][
|
|
22575
|
-
},{"dup":
|
|
22642
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22643
|
+
},{"dup":20}],235:[function(require,module,exports){
|
|
22576
22644
|
"use strict";
|
|
22577
22645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22578
22646
|
exports.PersonType = void 0;
|
|
@@ -22585,16 +22653,16 @@ var PersonType;
|
|
|
22585
22653
|
})(PersonType = exports.PersonType || (exports.PersonType = {}));
|
|
22586
22654
|
|
|
22587
22655
|
},{}],236:[function(require,module,exports){
|
|
22588
|
-
arguments[4][
|
|
22589
|
-
},{"dup":
|
|
22590
|
-
arguments[4][
|
|
22591
|
-
},{"dup":
|
|
22592
|
-
arguments[4][
|
|
22593
|
-
},{"dup":
|
|
22594
|
-
arguments[4][
|
|
22595
|
-
},{"dup":
|
|
22596
|
-
arguments[4][
|
|
22597
|
-
},{"dup":
|
|
22656
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22657
|
+
},{"dup":20}],237:[function(require,module,exports){
|
|
22658
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22659
|
+
},{"dup":20}],238:[function(require,module,exports){
|
|
22660
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22661
|
+
},{"dup":20}],239:[function(require,module,exports){
|
|
22662
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22663
|
+
},{"dup":20}],240:[function(require,module,exports){
|
|
22664
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22665
|
+
},{"dup":20}],241:[function(require,module,exports){
|
|
22598
22666
|
"use strict";
|
|
22599
22667
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22600
22668
|
exports.PlaceType = void 0;
|
|
@@ -22627,8 +22695,8 @@ var PriceCurrency;
|
|
|
22627
22695
|
})(PriceCurrency = exports.PriceCurrency || (exports.PriceCurrency = {}));
|
|
22628
22696
|
|
|
22629
22697
|
},{}],243:[function(require,module,exports){
|
|
22630
|
-
arguments[4][
|
|
22631
|
-
},{"dup":
|
|
22698
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22699
|
+
},{"dup":20}],244:[function(require,module,exports){
|
|
22632
22700
|
"use strict";
|
|
22633
22701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22634
22702
|
exports.PriceSpecificationType = void 0;
|
|
@@ -22700,8 +22768,8 @@ var ProgramMembershipType;
|
|
|
22700
22768
|
})(ProgramMembershipType = exports.ProgramMembershipType || (exports.ProgramMembershipType = {}));
|
|
22701
22769
|
|
|
22702
22770
|
},{}],247:[function(require,module,exports){
|
|
22703
|
-
arguments[4][
|
|
22704
|
-
},{"dup":
|
|
22771
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22772
|
+
},{"dup":20}],248:[function(require,module,exports){
|
|
22705
22773
|
"use strict";
|
|
22706
22774
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22707
22775
|
exports.PropertyValueType = void 0;
|
|
@@ -22711,10 +22779,10 @@ var PropertyValueType;
|
|
|
22711
22779
|
})(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
|
|
22712
22780
|
|
|
22713
22781
|
},{}],249:[function(require,module,exports){
|
|
22714
|
-
arguments[4][
|
|
22715
|
-
},{"dup":
|
|
22716
|
-
arguments[4][
|
|
22717
|
-
},{"dup":
|
|
22782
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22783
|
+
},{"dup":20}],250:[function(require,module,exports){
|
|
22784
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22785
|
+
},{"dup":20}],251:[function(require,module,exports){
|
|
22718
22786
|
"use strict";
|
|
22719
22787
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22720
22788
|
exports.StringValue = void 0;
|
|
@@ -22724,12 +22792,12 @@ var StringValue;
|
|
|
22724
22792
|
})(StringValue = exports.StringValue || (exports.StringValue = {}));
|
|
22725
22793
|
|
|
22726
22794
|
},{}],252:[function(require,module,exports){
|
|
22727
|
-
arguments[4][
|
|
22728
|
-
},{"dup":
|
|
22729
|
-
arguments[4][
|
|
22730
|
-
},{"dup":
|
|
22731
|
-
arguments[4][
|
|
22732
|
-
},{"dup":
|
|
22795
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22796
|
+
},{"dup":20}],253:[function(require,module,exports){
|
|
22797
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22798
|
+
},{"dup":20}],254:[function(require,module,exports){
|
|
22799
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22800
|
+
},{"dup":20}],255:[function(require,module,exports){
|
|
22733
22801
|
"use strict";
|
|
22734
22802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22735
22803
|
exports.ReservationStatusType = void 0;
|
|
@@ -22771,8 +22839,8 @@ var ReservationType;
|
|
|
22771
22839
|
})(ReservationType = exports.ReservationType || (exports.ReservationType = {}));
|
|
22772
22840
|
|
|
22773
22841
|
},{}],257:[function(require,module,exports){
|
|
22774
|
-
arguments[4][
|
|
22775
|
-
},{"dup":
|
|
22842
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22843
|
+
},{"dup":20}],258:[function(require,module,exports){
|
|
22776
22844
|
"use strict";
|
|
22777
22845
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22778
22846
|
exports.PaymentServiceType = void 0;
|
|
@@ -22808,26 +22876,26 @@ var SortType;
|
|
|
22808
22876
|
})(SortType = exports.SortType || (exports.SortType = {}));
|
|
22809
22877
|
|
|
22810
22878
|
},{}],261:[function(require,module,exports){
|
|
22811
|
-
arguments[4][
|
|
22812
|
-
},{"dup":
|
|
22813
|
-
arguments[4][
|
|
22814
|
-
},{"dup":
|
|
22815
|
-
arguments[4][
|
|
22816
|
-
},{"dup":
|
|
22817
|
-
arguments[4][
|
|
22818
|
-
},{"dup":
|
|
22819
|
-
arguments[4][
|
|
22820
|
-
},{"dup":
|
|
22821
|
-
arguments[4][
|
|
22822
|
-
},{"dup":
|
|
22823
|
-
arguments[4][
|
|
22824
|
-
},{"dup":
|
|
22825
|
-
arguments[4][
|
|
22826
|
-
},{"dup":
|
|
22827
|
-
arguments[4][
|
|
22828
|
-
},{"dup":
|
|
22829
|
-
arguments[4][
|
|
22830
|
-
},{"dup":
|
|
22879
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22880
|
+
},{"dup":20}],262:[function(require,module,exports){
|
|
22881
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22882
|
+
},{"dup":20}],263:[function(require,module,exports){
|
|
22883
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22884
|
+
},{"dup":20}],264:[function(require,module,exports){
|
|
22885
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22886
|
+
},{"dup":20}],265:[function(require,module,exports){
|
|
22887
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22888
|
+
},{"dup":20}],266:[function(require,module,exports){
|
|
22889
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22890
|
+
},{"dup":20}],267:[function(require,module,exports){
|
|
22891
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22892
|
+
},{"dup":20}],268:[function(require,module,exports){
|
|
22893
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22894
|
+
},{"dup":20}],269:[function(require,module,exports){
|
|
22895
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22896
|
+
},{"dup":20}],270:[function(require,module,exports){
|
|
22897
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22898
|
+
},{"dup":20}],271:[function(require,module,exports){
|
|
22831
22899
|
"use strict";
|
|
22832
22900
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22833
22901
|
exports.SpecifyingMethod = void 0;
|
|
@@ -22841,36 +22909,36 @@ var SpecifyingMethod;
|
|
|
22841
22909
|
})(SpecifyingMethod = exports.SpecifyingMethod || (exports.SpecifyingMethod = {}));
|
|
22842
22910
|
|
|
22843
22911
|
},{}],272:[function(require,module,exports){
|
|
22844
|
-
arguments[4][
|
|
22845
|
-
},{"dup":
|
|
22846
|
-
arguments[4][
|
|
22847
|
-
},{"dup":
|
|
22848
|
-
arguments[4][
|
|
22849
|
-
},{"dup":
|
|
22850
|
-
arguments[4][
|
|
22851
|
-
},{"dup":
|
|
22852
|
-
arguments[4][
|
|
22853
|
-
},{"dup":
|
|
22854
|
-
arguments[4][
|
|
22855
|
-
},{"dup":
|
|
22856
|
-
arguments[4][
|
|
22857
|
-
},{"dup":
|
|
22858
|
-
arguments[4][
|
|
22859
|
-
},{"dup":
|
|
22860
|
-
arguments[4][
|
|
22861
|
-
},{"dup":
|
|
22862
|
-
arguments[4][
|
|
22863
|
-
},{"dup":
|
|
22864
|
-
arguments[4][
|
|
22865
|
-
},{"dup":
|
|
22866
|
-
arguments[4][
|
|
22867
|
-
},{"dup":
|
|
22868
|
-
arguments[4][
|
|
22869
|
-
},{"dup":
|
|
22870
|
-
arguments[4][
|
|
22871
|
-
},{"dup":
|
|
22872
|
-
arguments[4][
|
|
22873
|
-
},{"dup":
|
|
22912
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22913
|
+
},{"dup":20}],273:[function(require,module,exports){
|
|
22914
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22915
|
+
},{"dup":20}],274:[function(require,module,exports){
|
|
22916
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22917
|
+
},{"dup":20}],275:[function(require,module,exports){
|
|
22918
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22919
|
+
},{"dup":20}],276:[function(require,module,exports){
|
|
22920
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22921
|
+
},{"dup":20}],277:[function(require,module,exports){
|
|
22922
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22923
|
+
},{"dup":20}],278:[function(require,module,exports){
|
|
22924
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22925
|
+
},{"dup":20}],279:[function(require,module,exports){
|
|
22926
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22927
|
+
},{"dup":20}],280:[function(require,module,exports){
|
|
22928
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22929
|
+
},{"dup":20}],281:[function(require,module,exports){
|
|
22930
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22931
|
+
},{"dup":20}],282:[function(require,module,exports){
|
|
22932
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22933
|
+
},{"dup":20}],283:[function(require,module,exports){
|
|
22934
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22935
|
+
},{"dup":20}],284:[function(require,module,exports){
|
|
22936
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22937
|
+
},{"dup":20}],285:[function(require,module,exports){
|
|
22938
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22939
|
+
},{"dup":20}],286:[function(require,module,exports){
|
|
22940
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
22941
|
+
},{"dup":20}],287:[function(require,module,exports){
|
|
22874
22942
|
"use strict";
|
|
22875
22943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22876
22944
|
exports.TaskName = void 0;
|
|
@@ -23023,12 +23091,12 @@ var TaskStatus;
|
|
|
23023
23091
|
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
23024
23092
|
|
|
23025
23093
|
},{}],289:[function(require,module,exports){
|
|
23026
|
-
arguments[4][
|
|
23027
|
-
},{"dup":
|
|
23028
|
-
arguments[4][
|
|
23029
|
-
},{"dup":
|
|
23030
|
-
arguments[4][
|
|
23031
|
-
},{"dup":
|
|
23094
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23095
|
+
},{"dup":20}],290:[function(require,module,exports){
|
|
23096
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23097
|
+
},{"dup":20}],291:[function(require,module,exports){
|
|
23098
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23099
|
+
},{"dup":20}],292:[function(require,module,exports){
|
|
23032
23100
|
"use strict";
|
|
23033
23101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23034
23102
|
exports.Reason = void 0;
|
|
@@ -23109,8 +23177,8 @@ var TransactionType;
|
|
|
23109
23177
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
23110
23178
|
|
|
23111
23179
|
},{}],296:[function(require,module,exports){
|
|
23112
|
-
arguments[4][
|
|
23113
|
-
},{"dup":
|
|
23180
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23181
|
+
},{"dup":20}],297:[function(require,module,exports){
|
|
23114
23182
|
"use strict";
|
|
23115
23183
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23116
23184
|
exports.TripType = void 0;
|
|
@@ -23151,10 +23219,10 @@ var UnitCode;
|
|
|
23151
23219
|
})(UnitCode = exports.UnitCode || (exports.UnitCode = {}));
|
|
23152
23220
|
|
|
23153
23221
|
},{}],299:[function(require,module,exports){
|
|
23154
|
-
arguments[4][
|
|
23155
|
-
},{"dup":
|
|
23156
|
-
arguments[4][
|
|
23157
|
-
},{"dup":
|
|
23222
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23223
|
+
},{"dup":20}],300:[function(require,module,exports){
|
|
23224
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23225
|
+
},{"dup":20}],301:[function(require,module,exports){
|
|
23158
23226
|
"use strict";
|
|
23159
23227
|
var __extends = (this && this.__extends) || (function () {
|
|
23160
23228
|
var extendStatics = function (d, b) {
|
|
@@ -23513,14 +23581,14 @@ var waiter_1 = require("./error/waiter");
|
|
|
23513
23581
|
exports.Waiter = waiter_1.WaiterError;
|
|
23514
23582
|
|
|
23515
23583
|
},{"./error/argument":301,"./error/argumentNull":302,"./error/forbidden":303,"./error/notFound":304,"./error/rateLimitExceeded":305,"./error/serviceUnavailable":306,"./error/unauthorized":307,"./error/waiter":308}],311:[function(require,module,exports){
|
|
23516
|
-
arguments[4][
|
|
23517
|
-
},{"dup":
|
|
23518
|
-
arguments[4][
|
|
23519
|
-
},{"dup":
|
|
23520
|
-
arguments[4][
|
|
23521
|
-
},{"dup":
|
|
23522
|
-
arguments[4][
|
|
23523
|
-
},{"dup":
|
|
23584
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23585
|
+
},{"dup":20}],312:[function(require,module,exports){
|
|
23586
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23587
|
+
},{"dup":20}],313:[function(require,module,exports){
|
|
23588
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23589
|
+
},{"dup":20}],314:[function(require,module,exports){
|
|
23590
|
+
arguments[4][20][0].apply(exports,arguments)
|
|
23591
|
+
},{"dup":20}],315:[function(require,module,exports){
|
|
23524
23592
|
"use strict";
|
|
23525
23593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23526
23594
|
/**
|