@cinerino/sdk 5.12.0-alpha.3 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example/playground/public/lib/bundle.js +795 -693
- package/example/src/{cancelReservations.ts → adminCancelReservations.ts} +1 -1
- package/example/src/adminSearchOrders.ts +29 -0
- package/example/src/findReservationByCode.ts +31 -0
- package/lib/abstract/admin/me.d.ts +1 -1
- package/lib/abstract/admin/reservation.d.ts +1 -1
- package/lib/abstract/admin.js +11 -10
- package/lib/abstract/chevre/event/factory.d.ts +15 -0
- package/lib/abstract/chevre/reservation/factory.d.ts +0 -8
- package/lib/abstract/chevreAdmin/reservation/factory.d.ts +3 -0
- package/lib/abstract/service/event.d.ts +7 -0
- package/lib/abstract/service/event.js +4 -0
- package/lib/abstract/service/reservation.d.ts +18 -0
- package/lib/abstract/service/reservation.js +19 -0
- package/lib/abstract/service.d.ts +2 -2
- package/lib/abstract/service.js +14 -4
- package/lib/bundle.js +31 -103
- package/package.json +1 -1
- package/lib/abstract/admin/reservation/factory.d.ts +0 -1
- package/lib/abstract/admin/reservation/factory.js +0 -13
|
@@ -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,10 +92,17 @@ 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 = {}));
|
|
105
|
+
var defaultPath = '/admin';
|
|
99
106
|
/**
|
|
100
107
|
* 管理サービス
|
|
101
108
|
*/
|
|
@@ -115,7 +122,7 @@ var Admin = /** @class */ (function () {
|
|
|
115
122
|
case 1:
|
|
116
123
|
_a.svc = (_b.sent()).CreativeWorkService;
|
|
117
124
|
_b.label = 2;
|
|
118
|
-
case 2: return [2 /*return*/, new service.CreativeWork.svc(__assign(__assign({}, this.options), params))];
|
|
125
|
+
case 2: return [2 /*return*/, new service.CreativeWork.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
119
126
|
}
|
|
120
127
|
});
|
|
121
128
|
});
|
|
@@ -132,7 +139,7 @@ var Admin = /** @class */ (function () {
|
|
|
132
139
|
case 1:
|
|
133
140
|
_a.svc = (_b.sent()).EventService;
|
|
134
141
|
_b.label = 2;
|
|
135
|
-
case 2: return [2 /*return*/, new service.Event.svc(__assign(__assign({}, this.options), params))];
|
|
142
|
+
case 2: return [2 /*return*/, new service.Event.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
136
143
|
}
|
|
137
144
|
});
|
|
138
145
|
});
|
|
@@ -149,7 +156,7 @@ var Admin = /** @class */ (function () {
|
|
|
149
156
|
case 1:
|
|
150
157
|
_a.svc = (_b.sent()).MeService;
|
|
151
158
|
_b.label = 2;
|
|
152
|
-
case 2: return [2 /*return*/, new service.Me.svc(__assign({}, this.options))];
|
|
159
|
+
case 2: return [2 /*return*/, new service.Me.svc(__assign(__assign({}, this.options), { defaultPath: defaultPath }))];
|
|
153
160
|
}
|
|
154
161
|
});
|
|
155
162
|
});
|
|
@@ -166,7 +173,7 @@ var Admin = /** @class */ (function () {
|
|
|
166
173
|
case 1:
|
|
167
174
|
_a.svc = (_b.sent()).NoteService;
|
|
168
175
|
_b.label = 2;
|
|
169
|
-
case 2: return [2 /*return*/, new service.Note.svc(__assign(__assign({}, this.options), params))];
|
|
176
|
+
case 2: return [2 /*return*/, new service.Note.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
170
177
|
}
|
|
171
178
|
});
|
|
172
179
|
});
|
|
@@ -183,7 +190,7 @@ var Admin = /** @class */ (function () {
|
|
|
183
190
|
case 1:
|
|
184
191
|
_a.svc = (_b.sent()).OfferService;
|
|
185
192
|
_b.label = 2;
|
|
186
|
-
case 2: return [2 /*return*/, new service.Offer.svc(__assign(__assign({}, this.options), params))];
|
|
193
|
+
case 2: return [2 /*return*/, new service.Offer.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: '/admin' }))];
|
|
187
194
|
}
|
|
188
195
|
});
|
|
189
196
|
});
|
|
@@ -200,7 +207,7 @@ var Admin = /** @class */ (function () {
|
|
|
200
207
|
case 1:
|
|
201
208
|
_a.svc = (_b.sent()).OfferCatalogService;
|
|
202
209
|
_b.label = 2;
|
|
203
|
-
case 2: return [2 /*return*/, new service.OfferCatalog.svc(__assign(__assign({}, this.options), params))];
|
|
210
|
+
case 2: return [2 /*return*/, new service.OfferCatalog.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
204
211
|
}
|
|
205
212
|
});
|
|
206
213
|
});
|
|
@@ -217,7 +224,24 @@ var Admin = /** @class */ (function () {
|
|
|
217
224
|
case 1:
|
|
218
225
|
_a.svc = (_b.sent()).OfferCatalogItemService;
|
|
219
226
|
_b.label = 2;
|
|
220
|
-
case 2: return [2 /*return*/, new service.OfferCatalogItem.svc(__assign(__assign({}, this.options), params))];
|
|
227
|
+
case 2: return [2 /*return*/, new service.OfferCatalogItem.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
228
|
+
}
|
|
229
|
+
});
|
|
230
|
+
});
|
|
231
|
+
};
|
|
232
|
+
Admin.prototype.createOrderInstance = function (params) {
|
|
233
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
234
|
+
var _a;
|
|
235
|
+
return __generator(this, function (_b) {
|
|
236
|
+
switch (_b.label) {
|
|
237
|
+
case 0:
|
|
238
|
+
if (!(service.Order.svc === undefined)) return [3 /*break*/, 2];
|
|
239
|
+
_a = service.Order;
|
|
240
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./admin/order'); })];
|
|
241
|
+
case 1:
|
|
242
|
+
_a.svc = (_b.sent()).OrderService;
|
|
243
|
+
_b.label = 2;
|
|
244
|
+
case 2: return [2 /*return*/, new service.Order.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
221
245
|
}
|
|
222
246
|
});
|
|
223
247
|
});
|
|
@@ -234,7 +258,24 @@ var Admin = /** @class */ (function () {
|
|
|
234
258
|
case 1:
|
|
235
259
|
_a.svc = (_b.sent()).ProductService;
|
|
236
260
|
_b.label = 2;
|
|
237
|
-
case 2: return [2 /*return*/, new service.Product.svc(__assign(__assign({}, this.options), params))];
|
|
261
|
+
case 2: return [2 /*return*/, new service.Product.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
262
|
+
}
|
|
263
|
+
});
|
|
264
|
+
});
|
|
265
|
+
};
|
|
266
|
+
Admin.prototype.createReservationInstance = function (params) {
|
|
267
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
268
|
+
var _a;
|
|
269
|
+
return __generator(this, function (_b) {
|
|
270
|
+
switch (_b.label) {
|
|
271
|
+
case 0:
|
|
272
|
+
if (!(service.Reservation.svc === undefined)) return [3 /*break*/, 2];
|
|
273
|
+
_a = service.Reservation;
|
|
274
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./admin/reservation'); })];
|
|
275
|
+
case 1:
|
|
276
|
+
_a.svc = (_b.sent()).ReservationService;
|
|
277
|
+
_b.label = 2;
|
|
278
|
+
case 2: return [2 /*return*/, new service.Reservation.svc(__assign(__assign(__assign({}, this.options), params), { defaultPath: defaultPath }))];
|
|
238
279
|
}
|
|
239
280
|
});
|
|
240
281
|
});
|
|
@@ -243,7 +284,7 @@ var Admin = /** @class */ (function () {
|
|
|
243
284
|
}());
|
|
244
285
|
exports.Admin = Admin;
|
|
245
286
|
|
|
246
|
-
},{"./admin/creativeWork":4,"./admin/event":5,"./admin/me":6,"./admin/note":7,"./admin/offer":8,"./admin/offerCatalog":9,"./admin/offerCatalogItem":10,"./admin/product":
|
|
287
|
+
},{"./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
288
|
"use strict";
|
|
248
289
|
var __extends = (this && this.__extends) || (function () {
|
|
249
290
|
var extendStatics = function (d, b) {
|
|
@@ -336,7 +377,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
336
377
|
}(service_1.Service));
|
|
337
378
|
exports.CreativeWorkService = CreativeWorkService;
|
|
338
379
|
|
|
339
|
-
},{"../service":
|
|
380
|
+
},{"../service":99,"http-status":330}],5:[function(require,module,exports){
|
|
340
381
|
"use strict";
|
|
341
382
|
var __extends = (this && this.__extends) || (function () {
|
|
342
383
|
var extendStatics = function (d, b) {
|
|
@@ -472,7 +513,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
472
513
|
}(service_1.Service));
|
|
473
514
|
exports.EventService = EventService;
|
|
474
515
|
|
|
475
|
-
},{"../factory":
|
|
516
|
+
},{"../factory":94,"../service":99,"http-status":330}],6:[function(require,module,exports){
|
|
476
517
|
"use strict";
|
|
477
518
|
var __extends = (this && this.__extends) || (function () {
|
|
478
519
|
var extendStatics = function (d, b) {
|
|
@@ -571,7 +612,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
571
612
|
}(service_1.Service));
|
|
572
613
|
exports.MeService = MeService;
|
|
573
614
|
|
|
574
|
-
},{"../service":
|
|
615
|
+
},{"../service":99,"http-status":330}],7:[function(require,module,exports){
|
|
575
616
|
"use strict";
|
|
576
617
|
var __extends = (this && this.__extends) || (function () {
|
|
577
618
|
var extendStatics = function (d, b) {
|
|
@@ -711,7 +752,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
711
752
|
}(service_1.Service));
|
|
712
753
|
exports.NoteService = NoteService;
|
|
713
754
|
|
|
714
|
-
},{"../service":
|
|
755
|
+
},{"../service":99,"http-status":330}],8:[function(require,module,exports){
|
|
715
756
|
"use strict";
|
|
716
757
|
var __extends = (this && this.__extends) || (function () {
|
|
717
758
|
var extendStatics = function (d, b) {
|
|
@@ -825,7 +866,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
825
866
|
}(service_1.Service));
|
|
826
867
|
exports.OfferService = OfferService;
|
|
827
868
|
|
|
828
|
-
},{"../service":
|
|
869
|
+
},{"../service":99,"http-status":330}],9:[function(require,module,exports){
|
|
829
870
|
"use strict";
|
|
830
871
|
var __extends = (this && this.__extends) || (function () {
|
|
831
872
|
var extendStatics = function (d, b) {
|
|
@@ -919,7 +960,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
919
960
|
}(service_1.Service));
|
|
920
961
|
exports.OfferCatalogService = OfferCatalogService;
|
|
921
962
|
|
|
922
|
-
},{"../service":
|
|
963
|
+
},{"../service":99,"http-status":330}],10:[function(require,module,exports){
|
|
923
964
|
"use strict";
|
|
924
965
|
var __extends = (this && this.__extends) || (function () {
|
|
925
966
|
var extendStatics = function (d, b) {
|
|
@@ -1029,7 +1070,179 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
1029
1070
|
}(service_1.Service));
|
|
1030
1071
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
1031
1072
|
|
|
1032
|
-
},{"../service":
|
|
1073
|
+
},{"../service":99,"http-status":330}],11:[function(require,module,exports){
|
|
1074
|
+
"use strict";
|
|
1075
|
+
var __extends = (this && this.__extends) || (function () {
|
|
1076
|
+
var extendStatics = function (d, b) {
|
|
1077
|
+
extendStatics = Object.setPrototypeOf ||
|
|
1078
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
1079
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
1080
|
+
return extendStatics(d, b);
|
|
1081
|
+
};
|
|
1082
|
+
return function (d, b) {
|
|
1083
|
+
if (typeof b !== "function" && b !== null)
|
|
1084
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
1085
|
+
extendStatics(d, b);
|
|
1086
|
+
function __() { this.constructor = d; }
|
|
1087
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1088
|
+
};
|
|
1089
|
+
})();
|
|
1090
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
1091
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
1092
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
1093
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
1094
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
1095
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
1096
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
1097
|
+
});
|
|
1098
|
+
};
|
|
1099
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
1100
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
1101
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
1102
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
1103
|
+
function step(op) {
|
|
1104
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
1105
|
+
while (_) try {
|
|
1106
|
+
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;
|
|
1107
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
1108
|
+
switch (op[0]) {
|
|
1109
|
+
case 0: case 1: t = op; break;
|
|
1110
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
1111
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
1112
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
1113
|
+
default:
|
|
1114
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
1115
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
1116
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
1117
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
1118
|
+
if (t[2]) _.ops.pop();
|
|
1119
|
+
_.trys.pop(); continue;
|
|
1120
|
+
}
|
|
1121
|
+
op = body.call(thisArg, _);
|
|
1122
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
1123
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1124
|
+
}
|
|
1125
|
+
};
|
|
1126
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1127
|
+
exports.OrderService = void 0;
|
|
1128
|
+
var http_status_1 = require("http-status");
|
|
1129
|
+
var service_1 = require("../service");
|
|
1130
|
+
/**
|
|
1131
|
+
* 注文サービス
|
|
1132
|
+
*/
|
|
1133
|
+
var OrderService = /** @class */ (function (_super) {
|
|
1134
|
+
__extends(OrderService, _super);
|
|
1135
|
+
function OrderService() {
|
|
1136
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1137
|
+
}
|
|
1138
|
+
/**
|
|
1139
|
+
* 注文取得
|
|
1140
|
+
*/
|
|
1141
|
+
OrderService.prototype.findByOrderNumber = function (params) {
|
|
1142
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1143
|
+
var _this = this;
|
|
1144
|
+
return __generator(this, function (_a) {
|
|
1145
|
+
return [2 /*return*/, this.fetch({
|
|
1146
|
+
uri: "/orders/" + params.orderNumber,
|
|
1147
|
+
method: 'GET',
|
|
1148
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1149
|
+
})
|
|
1150
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1151
|
+
return [2 /*return*/, response.json()];
|
|
1152
|
+
}); }); })];
|
|
1153
|
+
});
|
|
1154
|
+
});
|
|
1155
|
+
};
|
|
1156
|
+
/**
|
|
1157
|
+
* 注文を検索する
|
|
1158
|
+
*/
|
|
1159
|
+
OrderService.prototype.search = function (params) {
|
|
1160
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1161
|
+
var _this = this;
|
|
1162
|
+
return __generator(this, function (_a) {
|
|
1163
|
+
return [2 /*return*/, this.fetch({
|
|
1164
|
+
uri: '/orders',
|
|
1165
|
+
method: 'GET',
|
|
1166
|
+
qs: params,
|
|
1167
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1168
|
+
})
|
|
1169
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1170
|
+
var _a;
|
|
1171
|
+
return __generator(this, function (_b) {
|
|
1172
|
+
switch (_b.label) {
|
|
1173
|
+
case 0:
|
|
1174
|
+
_a = {};
|
|
1175
|
+
return [4 /*yield*/, response.json()];
|
|
1176
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1177
|
+
_a)];
|
|
1178
|
+
}
|
|
1179
|
+
});
|
|
1180
|
+
}); })];
|
|
1181
|
+
});
|
|
1182
|
+
});
|
|
1183
|
+
};
|
|
1184
|
+
/**
|
|
1185
|
+
* 返品者検索
|
|
1186
|
+
*/
|
|
1187
|
+
OrderService.prototype.findReturner = function (params) {
|
|
1188
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1189
|
+
var _this = this;
|
|
1190
|
+
return __generator(this, function (_a) {
|
|
1191
|
+
return [2 /*return*/, this.fetch({
|
|
1192
|
+
uri: "/orders/" + params.orderNumber + "/returner",
|
|
1193
|
+
method: 'GET',
|
|
1194
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1195
|
+
})
|
|
1196
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1197
|
+
return [2 /*return*/, response.json()];
|
|
1198
|
+
}); }); })];
|
|
1199
|
+
});
|
|
1200
|
+
});
|
|
1201
|
+
};
|
|
1202
|
+
/**
|
|
1203
|
+
* 注文オファー検索
|
|
1204
|
+
*/
|
|
1205
|
+
OrderService.prototype.searchAcceptedOffersByOrderNumber = function (params, conditions) {
|
|
1206
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1207
|
+
var _this = this;
|
|
1208
|
+
return __generator(this, function (_a) {
|
|
1209
|
+
return [2 /*return*/, this.fetch({
|
|
1210
|
+
uri: "/orders/" + params.orderNumber + "/acceptedOffers",
|
|
1211
|
+
method: 'GET',
|
|
1212
|
+
expectedStatusCodes: [http_status_1.OK],
|
|
1213
|
+
qs: conditions
|
|
1214
|
+
})
|
|
1215
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
1216
|
+
return [2 /*return*/, response.json()];
|
|
1217
|
+
}); }); })];
|
|
1218
|
+
});
|
|
1219
|
+
});
|
|
1220
|
+
};
|
|
1221
|
+
/**
|
|
1222
|
+
* 変更可能な属性を更新する
|
|
1223
|
+
*/
|
|
1224
|
+
OrderService.prototype.updateChangeableAttributes = function (params) {
|
|
1225
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1226
|
+
return __generator(this, function (_a) {
|
|
1227
|
+
switch (_a.label) {
|
|
1228
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1229
|
+
uri: "/orders/" + params.orderNumber,
|
|
1230
|
+
method: 'PATCH',
|
|
1231
|
+
body: params,
|
|
1232
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1233
|
+
})];
|
|
1234
|
+
case 1:
|
|
1235
|
+
_a.sent();
|
|
1236
|
+
return [2 /*return*/];
|
|
1237
|
+
}
|
|
1238
|
+
});
|
|
1239
|
+
});
|
|
1240
|
+
};
|
|
1241
|
+
return OrderService;
|
|
1242
|
+
}(service_1.Service));
|
|
1243
|
+
exports.OrderService = OrderService;
|
|
1244
|
+
|
|
1245
|
+
},{"../service":99,"http-status":330}],12:[function(require,module,exports){
|
|
1033
1246
|
"use strict";
|
|
1034
1247
|
var __extends = (this && this.__extends) || (function () {
|
|
1035
1248
|
var extendStatics = function (d, b) {
|
|
@@ -1122,7 +1335,175 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
1122
1335
|
}(service_1.Service));
|
|
1123
1336
|
exports.ProductService = ProductService;
|
|
1124
1337
|
|
|
1125
|
-
},{"../service":
|
|
1338
|
+
},{"../service":99,"http-status":330}],13:[function(require,module,exports){
|
|
1339
|
+
"use strict";
|
|
1340
|
+
var __extends = (this && this.__extends) || (function () {
|
|
1341
|
+
var extendStatics = function (d, b) {
|
|
1342
|
+
extendStatics = Object.setPrototypeOf ||
|
|
1343
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
1344
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
1345
|
+
return extendStatics(d, b);
|
|
1346
|
+
};
|
|
1347
|
+
return function (d, b) {
|
|
1348
|
+
if (typeof b !== "function" && b !== null)
|
|
1349
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
1350
|
+
extendStatics(d, b);
|
|
1351
|
+
function __() { this.constructor = d; }
|
|
1352
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
1353
|
+
};
|
|
1354
|
+
})();
|
|
1355
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
1356
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
1357
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
1358
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
1359
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
1360
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
1361
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
1362
|
+
});
|
|
1363
|
+
};
|
|
1364
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
1365
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
1366
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
1367
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
1368
|
+
function step(op) {
|
|
1369
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
1370
|
+
while (_) try {
|
|
1371
|
+
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;
|
|
1372
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
1373
|
+
switch (op[0]) {
|
|
1374
|
+
case 0: case 1: t = op; break;
|
|
1375
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
1376
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
1377
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
1378
|
+
default:
|
|
1379
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
1380
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
1381
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
1382
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
1383
|
+
if (t[2]) _.ops.pop();
|
|
1384
|
+
_.trys.pop(); continue;
|
|
1385
|
+
}
|
|
1386
|
+
op = body.call(thisArg, _);
|
|
1387
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
1388
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
1389
|
+
}
|
|
1390
|
+
};
|
|
1391
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1392
|
+
exports.ReservationService = void 0;
|
|
1393
|
+
var http_status_1 = require("http-status");
|
|
1394
|
+
var factory = require("../factory");
|
|
1395
|
+
var service_1 = require("../service");
|
|
1396
|
+
/**
|
|
1397
|
+
* 予約サービス
|
|
1398
|
+
*/
|
|
1399
|
+
var ReservationService = /** @class */ (function (_super) {
|
|
1400
|
+
__extends(ReservationService, _super);
|
|
1401
|
+
function ReservationService() {
|
|
1402
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
1403
|
+
}
|
|
1404
|
+
/**
|
|
1405
|
+
* 予約検索
|
|
1406
|
+
*/
|
|
1407
|
+
ReservationService.prototype.search = function (params) {
|
|
1408
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1409
|
+
var _this = this;
|
|
1410
|
+
return __generator(this, function (_a) {
|
|
1411
|
+
return [2 /*return*/, this.fetch({
|
|
1412
|
+
uri: '/reservations',
|
|
1413
|
+
method: 'GET',
|
|
1414
|
+
qs: params,
|
|
1415
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1416
|
+
})
|
|
1417
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1418
|
+
var _a;
|
|
1419
|
+
return __generator(this, function (_b) {
|
|
1420
|
+
switch (_b.label) {
|
|
1421
|
+
case 0:
|
|
1422
|
+
_a = {};
|
|
1423
|
+
return [4 /*yield*/, response.json()];
|
|
1424
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1425
|
+
_a)];
|
|
1426
|
+
}
|
|
1427
|
+
});
|
|
1428
|
+
}); })];
|
|
1429
|
+
});
|
|
1430
|
+
});
|
|
1431
|
+
};
|
|
1432
|
+
/**
|
|
1433
|
+
* 予約を使用する
|
|
1434
|
+
* 注文コードから取得したトークンを利用して、予約に入場記録を追加します
|
|
1435
|
+
*/
|
|
1436
|
+
ReservationService.prototype.useByToken = function (params) {
|
|
1437
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1438
|
+
return __generator(this, function (_a) {
|
|
1439
|
+
switch (_a.label) {
|
|
1440
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1441
|
+
uri: '/reservations/use',
|
|
1442
|
+
method: 'POST',
|
|
1443
|
+
body: params,
|
|
1444
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1445
|
+
})];
|
|
1446
|
+
case 1:
|
|
1447
|
+
_a.sent();
|
|
1448
|
+
return [2 /*return*/];
|
|
1449
|
+
}
|
|
1450
|
+
});
|
|
1451
|
+
});
|
|
1452
|
+
};
|
|
1453
|
+
/**
|
|
1454
|
+
* 予約に対する入場アクションを検索する
|
|
1455
|
+
*/
|
|
1456
|
+
ReservationService.prototype.searchUseActions = function (params) {
|
|
1457
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1458
|
+
var _this = this;
|
|
1459
|
+
return __generator(this, function (_a) {
|
|
1460
|
+
return [2 /*return*/, this.fetch({
|
|
1461
|
+
uri: "/reservations/" + String(params.object.id) + "/actions/use",
|
|
1462
|
+
method: 'GET',
|
|
1463
|
+
qs: params,
|
|
1464
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
1465
|
+
})
|
|
1466
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () {
|
|
1467
|
+
var _a;
|
|
1468
|
+
return __generator(this, function (_b) {
|
|
1469
|
+
switch (_b.label) {
|
|
1470
|
+
case 0:
|
|
1471
|
+
_a = {};
|
|
1472
|
+
return [4 /*yield*/, response.json()];
|
|
1473
|
+
case 1: return [2 /*return*/, (_a.data = _b.sent(),
|
|
1474
|
+
_a)];
|
|
1475
|
+
}
|
|
1476
|
+
});
|
|
1477
|
+
}); })];
|
|
1478
|
+
});
|
|
1479
|
+
});
|
|
1480
|
+
};
|
|
1481
|
+
/**
|
|
1482
|
+
* 予約取消
|
|
1483
|
+
* 再定義(2023-08-01~)
|
|
1484
|
+
*/
|
|
1485
|
+
ReservationService.prototype.cancel = function (params) {
|
|
1486
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1487
|
+
return __generator(this, function (_a) {
|
|
1488
|
+
switch (_a.label) {
|
|
1489
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
1490
|
+
uri: "/reservations/" + String(params.object.id) + "/" + factory.reservationStatusType.ReservationCancelled,
|
|
1491
|
+
method: 'PUT',
|
|
1492
|
+
body: params,
|
|
1493
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
1494
|
+
})];
|
|
1495
|
+
case 1:
|
|
1496
|
+
_a.sent();
|
|
1497
|
+
return [2 /*return*/];
|
|
1498
|
+
}
|
|
1499
|
+
});
|
|
1500
|
+
});
|
|
1501
|
+
};
|
|
1502
|
+
return ReservationService;
|
|
1503
|
+
}(service_1.Service));
|
|
1504
|
+
exports.ReservationService = ReservationService;
|
|
1505
|
+
|
|
1506
|
+
},{"../factory":94,"../service":99,"http-status":330}],14:[function(require,module,exports){
|
|
1126
1507
|
"use strict";
|
|
1127
1508
|
var __assign = (this && this.__assign) || function () {
|
|
1128
1509
|
__assign = Object.assign || function(t) {
|
|
@@ -1494,7 +1875,7 @@ var Chevre = /** @class */ (function () {
|
|
|
1494
1875
|
}());
|
|
1495
1876
|
exports.Chevre = Chevre;
|
|
1496
1877
|
|
|
1497
|
-
},{"./chevre/categoryCode":
|
|
1878
|
+
},{"./chevre/categoryCode":77,"./chevre/creativeWork":78,"./chevre/emailMessage":79,"./chevre/event":80,"./chevre/order":81,"./chevre/permit":83,"./chevre/person":84,"./chevre/person/ownershipInfo":85,"./chevre/place":86,"./chevre/place/hasPOS":87,"./chevre/product":88,"./chevre/reservation":89,"./chevre/seller":90,"./chevre/token":91,"./chevre/trip":92}],15:[function(require,module,exports){
|
|
1498
1879
|
"use strict";
|
|
1499
1880
|
var __assign = (this && this.__assign) || function () {
|
|
1500
1881
|
__assign = Object.assign || function(t) {
|
|
@@ -2639,7 +3020,7 @@ var ChevreAdmin = /** @class */ (function () {
|
|
|
2639
3020
|
}());
|
|
2640
3021
|
exports.ChevreAdmin = ChevreAdmin;
|
|
2641
3022
|
|
|
2642
|
-
},{"./chevreAdmin/account":
|
|
3023
|
+
},{"./chevreAdmin/account":16,"./chevreAdmin/accountTitle":17,"./chevreAdmin/accountTransaction":18,"./chevreAdmin/accountingReport":19,"./chevreAdmin/action":20,"./chevreAdmin/additionalProperty":21,"./chevreAdmin/aggregateOffer":22,"./chevreAdmin/aggregation":23,"./chevreAdmin/assetTransaction":24,"./chevreAdmin/assetTransaction/cancelReservation":25,"./chevreAdmin/assetTransaction/moneyTransfer":26,"./chevreAdmin/assetTransaction/pay":27,"./chevreAdmin/assetTransaction/refund":28,"./chevreAdmin/assetTransaction/registerService":29,"./chevreAdmin/assetTransaction/reserve":30,"./chevreAdmin/authorization":31,"./chevreAdmin/categoryCode":32,"./chevreAdmin/comment":33,"./chevreAdmin/creativeWork":34,"./chevreAdmin/customer":35,"./chevreAdmin/emailMessage":36,"./chevreAdmin/event":37,"./chevreAdmin/iam":38,"./chevreAdmin/me":39,"./chevreAdmin/merchantReturnPolicy":40,"./chevreAdmin/note":41,"./chevreAdmin/offer":42,"./chevreAdmin/offerCatalog":43,"./chevreAdmin/offerCatalogItem":44,"./chevreAdmin/offerItemCondition":45,"./chevreAdmin/order":46,"./chevreAdmin/ownershipInfo":47,"./chevreAdmin/paymentService":48,"./chevreAdmin/permission":49,"./chevreAdmin/permit":50,"./chevreAdmin/person":51,"./chevreAdmin/person/ownershipInfo":52,"./chevreAdmin/place":53,"./chevreAdmin/place/hasPOS":54,"./chevreAdmin/priceSpecification":55,"./chevreAdmin/product":56,"./chevreAdmin/project":57,"./chevreAdmin/projectMakesOffer":58,"./chevreAdmin/reservation":59,"./chevreAdmin/seller":60,"./chevreAdmin/task":61,"./chevreAdmin/token":62,"./chevreAdmin/transaction/moneyTransfer":64,"./chevreAdmin/transaction/placeOrder":65,"./chevreAdmin/transaction/returnOrder":66,"./chevreAdmin/transactionNumber":63,"./chevreAdmin/trip":67,"./chevreAdmin/userPool":68}],16:[function(require,module,exports){
|
|
2643
3024
|
"use strict";
|
|
2644
3025
|
var __extends = (this && this.__extends) || (function () {
|
|
2645
3026
|
var extendStatics = function (d, b) {
|
|
@@ -2776,7 +3157,7 @@ var AccountService = /** @class */ (function (_super) {
|
|
|
2776
3157
|
}(service_1.Service));
|
|
2777
3158
|
exports.AccountService = AccountService;
|
|
2778
3159
|
|
|
2779
|
-
},{"../service":
|
|
3160
|
+
},{"../service":99,"http-status":330}],17:[function(require,module,exports){
|
|
2780
3161
|
"use strict";
|
|
2781
3162
|
var __extends = (this && this.__extends) || (function () {
|
|
2782
3163
|
var extendStatics = function (d, b) {
|
|
@@ -3113,7 +3494,7 @@ var AccountTitleService = /** @class */ (function (_super) {
|
|
|
3113
3494
|
}(service_1.Service));
|
|
3114
3495
|
exports.AccountTitleService = AccountTitleService;
|
|
3115
3496
|
|
|
3116
|
-
},{"../factory":
|
|
3497
|
+
},{"../factory":94,"../service":99,"http-status":330}],18:[function(require,module,exports){
|
|
3117
3498
|
"use strict";
|
|
3118
3499
|
var __extends = (this && this.__extends) || (function () {
|
|
3119
3500
|
var extendStatics = function (d, b) {
|
|
@@ -3210,7 +3591,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
3210
3591
|
}(service_1.Service));
|
|
3211
3592
|
exports.AccountTransactionService = AccountTransactionService;
|
|
3212
3593
|
|
|
3213
|
-
},{"../service":
|
|
3594
|
+
},{"../service":99,"http-status":330}],19:[function(require,module,exports){
|
|
3214
3595
|
"use strict";
|
|
3215
3596
|
var __extends = (this && this.__extends) || (function () {
|
|
3216
3597
|
var extendStatics = function (d, b) {
|
|
@@ -3307,7 +3688,7 @@ var AccountingReportService = /** @class */ (function (_super) {
|
|
|
3307
3688
|
}(service_1.Service));
|
|
3308
3689
|
exports.AccountingReportService = AccountingReportService;
|
|
3309
3690
|
|
|
3310
|
-
},{"../service":
|
|
3691
|
+
},{"../service":99,"http-status":330}],20:[function(require,module,exports){
|
|
3311
3692
|
"use strict";
|
|
3312
3693
|
var __extends = (this && this.__extends) || (function () {
|
|
3313
3694
|
var extendStatics = function (d, b) {
|
|
@@ -3420,7 +3801,7 @@ var ActionService = /** @class */ (function (_super) {
|
|
|
3420
3801
|
}(service_1.Service));
|
|
3421
3802
|
exports.ActionService = ActionService;
|
|
3422
3803
|
|
|
3423
|
-
},{"../service":
|
|
3804
|
+
},{"../service":99,"http-status":330}],21:[function(require,module,exports){
|
|
3424
3805
|
"use strict";
|
|
3425
3806
|
var __extends = (this && this.__extends) || (function () {
|
|
3426
3807
|
var extendStatics = function (d, b) {
|
|
@@ -3584,7 +3965,7 @@ var AdditionalPropertyService = /** @class */ (function (_super) {
|
|
|
3584
3965
|
}(service_1.Service));
|
|
3585
3966
|
exports.AdditionalPropertyService = AdditionalPropertyService;
|
|
3586
3967
|
|
|
3587
|
-
},{"../service":
|
|
3968
|
+
},{"../service":99,"http-status":330}],22:[function(require,module,exports){
|
|
3588
3969
|
"use strict";
|
|
3589
3970
|
var __extends = (this && this.__extends) || (function () {
|
|
3590
3971
|
var extendStatics = function (d, b) {
|
|
@@ -3700,7 +4081,7 @@ var AggregateOfferService = /** @class */ (function (_super) {
|
|
|
3700
4081
|
}(service_1.Service));
|
|
3701
4082
|
exports.AggregateOfferService = AggregateOfferService;
|
|
3702
4083
|
|
|
3703
|
-
},{"../service":
|
|
4084
|
+
},{"../service":99,"http-status":330}],23:[function(require,module,exports){
|
|
3704
4085
|
"use strict";
|
|
3705
4086
|
var __extends = (this && this.__extends) || (function () {
|
|
3706
4087
|
var extendStatics = function (d, b) {
|
|
@@ -3805,7 +4186,7 @@ var AggregationService = /** @class */ (function (_super) {
|
|
|
3805
4186
|
}(service_1.Service));
|
|
3806
4187
|
exports.AggregationService = AggregationService;
|
|
3807
4188
|
|
|
3808
|
-
},{"../service":
|
|
4189
|
+
},{"../service":99,"http-status":330}],24:[function(require,module,exports){
|
|
3809
4190
|
"use strict";
|
|
3810
4191
|
var __extends = (this && this.__extends) || (function () {
|
|
3811
4192
|
var extendStatics = function (d, b) {
|
|
@@ -3902,7 +4283,7 @@ var AssetTransactionService = /** @class */ (function (_super) {
|
|
|
3902
4283
|
}(service_1.Service));
|
|
3903
4284
|
exports.AssetTransactionService = AssetTransactionService;
|
|
3904
4285
|
|
|
3905
|
-
},{"../service":
|
|
4286
|
+
},{"../service":99,"http-status":330}],25:[function(require,module,exports){
|
|
3906
4287
|
"use strict";
|
|
3907
4288
|
var __extends = (this && this.__extends) || (function () {
|
|
3908
4289
|
var extendStatics = function (d, b) {
|
|
@@ -4064,7 +4445,7 @@ var CancelReservationAssetTransactionService = /** @class */ (function (_super)
|
|
|
4064
4445
|
}(service_1.Service));
|
|
4065
4446
|
exports.CancelReservationAssetTransactionService = CancelReservationAssetTransactionService;
|
|
4066
4447
|
|
|
4067
|
-
},{"../../service":
|
|
4448
|
+
},{"../../service":99,"http-status":330}],26:[function(require,module,exports){
|
|
4068
4449
|
"use strict";
|
|
4069
4450
|
var __extends = (this && this.__extends) || (function () {
|
|
4070
4451
|
var extendStatics = function (d, b) {
|
|
@@ -4200,7 +4581,7 @@ var MoneyTransferAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4200
4581
|
}(service_1.Service));
|
|
4201
4582
|
exports.MoneyTransferAssetTransactionService = MoneyTransferAssetTransactionService;
|
|
4202
4583
|
|
|
4203
|
-
},{"../../factory":
|
|
4584
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],27:[function(require,module,exports){
|
|
4204
4585
|
"use strict";
|
|
4205
4586
|
var __extends = (this && this.__extends) || (function () {
|
|
4206
4587
|
var extendStatics = function (d, b) {
|
|
@@ -4425,7 +4806,7 @@ var PayAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4425
4806
|
}(service_1.Service));
|
|
4426
4807
|
exports.PayAssetTransactionService = PayAssetTransactionService;
|
|
4427
4808
|
|
|
4428
|
-
},{"../../factory":
|
|
4809
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],28:[function(require,module,exports){
|
|
4429
4810
|
"use strict";
|
|
4430
4811
|
var __extends = (this && this.__extends) || (function () {
|
|
4431
4812
|
var extendStatics = function (d, b) {
|
|
@@ -4572,7 +4953,7 @@ var RefundAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4572
4953
|
}(service_1.Service));
|
|
4573
4954
|
exports.RefundAssetTransactionService = RefundAssetTransactionService;
|
|
4574
4955
|
|
|
4575
|
-
},{"../../factory":
|
|
4956
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],29:[function(require,module,exports){
|
|
4576
4957
|
"use strict";
|
|
4577
4958
|
var __extends = (this && this.__extends) || (function () {
|
|
4578
4959
|
var extendStatics = function (d, b) {
|
|
@@ -4719,7 +5100,7 @@ var RegisterServiceAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4719
5100
|
}(service_1.Service));
|
|
4720
5101
|
exports.RegisterServiceAssetTransactionService = RegisterServiceAssetTransactionService;
|
|
4721
5102
|
|
|
4722
|
-
},{"../../factory":
|
|
5103
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],30:[function(require,module,exports){
|
|
4723
5104
|
"use strict";
|
|
4724
5105
|
var __extends = (this && this.__extends) || (function () {
|
|
4725
5106
|
var extendStatics = function (d, b) {
|
|
@@ -4883,7 +5264,7 @@ var ReserveAssetTransactionService = /** @class */ (function (_super) {
|
|
|
4883
5264
|
}(service_1.Service));
|
|
4884
5265
|
exports.ReserveAssetTransactionService = ReserveAssetTransactionService;
|
|
4885
5266
|
|
|
4886
|
-
},{"../../service":
|
|
5267
|
+
},{"../../service":99,"http-status":330}],31:[function(require,module,exports){
|
|
4887
5268
|
"use strict";
|
|
4888
5269
|
var __extends = (this && this.__extends) || (function () {
|
|
4889
5270
|
var extendStatics = function (d, b) {
|
|
@@ -4999,7 +5380,7 @@ var AuthorizationService = /** @class */ (function (_super) {
|
|
|
4999
5380
|
}(service_1.Service));
|
|
5000
5381
|
exports.AuthorizationService = AuthorizationService;
|
|
5001
5382
|
|
|
5002
|
-
},{"../service":
|
|
5383
|
+
},{"../service":99,"http-status":330}],32:[function(require,module,exports){
|
|
5003
5384
|
"use strict";
|
|
5004
5385
|
var __extends = (this && this.__extends) || (function () {
|
|
5005
5386
|
var extendStatics = function (d, b) {
|
|
@@ -5163,7 +5544,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
5163
5544
|
}(service_1.Service));
|
|
5164
5545
|
exports.CategoryCodeService = CategoryCodeService;
|
|
5165
5546
|
|
|
5166
|
-
},{"../service":
|
|
5547
|
+
},{"../service":99,"http-status":330}],33:[function(require,module,exports){
|
|
5167
5548
|
"use strict";
|
|
5168
5549
|
var __extends = (this && this.__extends) || (function () {
|
|
5169
5550
|
var extendStatics = function (d, b) {
|
|
@@ -5279,7 +5660,7 @@ var CommentService = /** @class */ (function (_super) {
|
|
|
5279
5660
|
}(service_1.Service));
|
|
5280
5661
|
exports.CommentService = CommentService;
|
|
5281
5662
|
|
|
5282
|
-
},{"../service":
|
|
5663
|
+
},{"../service":99,"http-status":330}],34:[function(require,module,exports){
|
|
5283
5664
|
"use strict";
|
|
5284
5665
|
var __extends = (this && this.__extends) || (function () {
|
|
5285
5666
|
var extendStatics = function (d, b) {
|
|
@@ -5457,7 +5838,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
5457
5838
|
}(service_1.Service));
|
|
5458
5839
|
exports.CreativeWorkService = CreativeWorkService;
|
|
5459
5840
|
|
|
5460
|
-
},{"../service":
|
|
5841
|
+
},{"../service":99,"http-status":330}],35:[function(require,module,exports){
|
|
5461
5842
|
"use strict";
|
|
5462
5843
|
var __extends = (this && this.__extends) || (function () {
|
|
5463
5844
|
var extendStatics = function (d, b) {
|
|
@@ -5644,7 +6025,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
5644
6025
|
}(service_1.Service));
|
|
5645
6026
|
exports.CustomerService = CustomerService;
|
|
5646
6027
|
|
|
5647
|
-
},{"../service":
|
|
6028
|
+
},{"../service":99,"http-status":330}],36:[function(require,module,exports){
|
|
5648
6029
|
"use strict";
|
|
5649
6030
|
var __extends = (this && this.__extends) || (function () {
|
|
5650
6031
|
var extendStatics = function (d, b) {
|
|
@@ -5818,7 +6199,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
5818
6199
|
}(service_1.Service));
|
|
5819
6200
|
exports.EmailMessageService = EmailMessageService;
|
|
5820
6201
|
|
|
5821
|
-
},{"../service":
|
|
6202
|
+
},{"../service":99,"http-status":330}],37:[function(require,module,exports){
|
|
5822
6203
|
"use strict";
|
|
5823
6204
|
var __extends = (this && this.__extends) || (function () {
|
|
5824
6205
|
var extendStatics = function (d, b) {
|
|
@@ -6111,7 +6492,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
6111
6492
|
}(service_1.Service));
|
|
6112
6493
|
exports.EventService = EventService;
|
|
6113
6494
|
|
|
6114
|
-
},{"../factory":
|
|
6495
|
+
},{"../factory":94,"../service":99,"http-status":330}],38:[function(require,module,exports){
|
|
6115
6496
|
"use strict";
|
|
6116
6497
|
var __extends = (this && this.__extends) || (function () {
|
|
6117
6498
|
var extendStatics = function (d, b) {
|
|
@@ -6448,7 +6829,7 @@ var IAMService = /** @class */ (function (_super) {
|
|
|
6448
6829
|
}(service_1.Service));
|
|
6449
6830
|
exports.IAMService = IAMService;
|
|
6450
6831
|
|
|
6451
|
-
},{"../service":
|
|
6832
|
+
},{"../service":99,"http-status":330}],39:[function(require,module,exports){
|
|
6452
6833
|
"use strict";
|
|
6453
6834
|
var __extends = (this && this.__extends) || (function () {
|
|
6454
6835
|
var extendStatics = function (d, b) {
|
|
@@ -6574,7 +6955,7 @@ var MeService = /** @class */ (function (_super) {
|
|
|
6574
6955
|
}(service_1.Service));
|
|
6575
6956
|
exports.MeService = MeService;
|
|
6576
6957
|
|
|
6577
|
-
},{"../service":
|
|
6958
|
+
},{"../service":99,"http-status":330}],40:[function(require,module,exports){
|
|
6578
6959
|
"use strict";
|
|
6579
6960
|
var __extends = (this && this.__extends) || (function () {
|
|
6580
6961
|
var extendStatics = function (d, b) {
|
|
@@ -6732,7 +7113,7 @@ var MerchantReturnPolicyService = /** @class */ (function (_super) {
|
|
|
6732
7113
|
}(service_1.Service));
|
|
6733
7114
|
exports.MerchantReturnPolicyService = MerchantReturnPolicyService;
|
|
6734
7115
|
|
|
6735
|
-
},{"../service":
|
|
7116
|
+
},{"../service":99,"http-status":330}],41:[function(require,module,exports){
|
|
6736
7117
|
"use strict";
|
|
6737
7118
|
var __extends = (this && this.__extends) || (function () {
|
|
6738
7119
|
var extendStatics = function (d, b) {
|
|
@@ -6854,7 +7235,7 @@ var NoteService = /** @class */ (function (_super) {
|
|
|
6854
7235
|
}(service_1.Service));
|
|
6855
7236
|
exports.NoteService = NoteService;
|
|
6856
7237
|
|
|
6857
|
-
},{"../service":
|
|
7238
|
+
},{"../service":99,"http-status":330}],42:[function(require,module,exports){
|
|
6858
7239
|
"use strict";
|
|
6859
7240
|
var __extends = (this && this.__extends) || (function () {
|
|
6860
7241
|
var extendStatics = function (d, b) {
|
|
@@ -6999,7 +7380,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
6999
7380
|
}(service_1.Service));
|
|
7000
7381
|
exports.OfferService = OfferService;
|
|
7001
7382
|
|
|
7002
|
-
},{"../service":
|
|
7383
|
+
},{"../service":99,"http-status":330}],43:[function(require,module,exports){
|
|
7003
7384
|
"use strict";
|
|
7004
7385
|
var __extends = (this && this.__extends) || (function () {
|
|
7005
7386
|
var extendStatics = function (d, b) {
|
|
@@ -7246,7 +7627,7 @@ var OfferCatalogService = /** @class */ (function (_super) {
|
|
|
7246
7627
|
}(service_1.Service));
|
|
7247
7628
|
exports.OfferCatalogService = OfferCatalogService;
|
|
7248
7629
|
|
|
7249
|
-
},{"../service":
|
|
7630
|
+
},{"../service":99,"http-status":330}],44:[function(require,module,exports){
|
|
7250
7631
|
"use strict";
|
|
7251
7632
|
var __extends = (this && this.__extends) || (function () {
|
|
7252
7633
|
var extendStatics = function (d, b) {
|
|
@@ -7447,7 +7828,7 @@ var OfferCatalogItemService = /** @class */ (function (_super) {
|
|
|
7447
7828
|
}(service_1.Service));
|
|
7448
7829
|
exports.OfferCatalogItemService = OfferCatalogItemService;
|
|
7449
7830
|
|
|
7450
|
-
},{"../service":
|
|
7831
|
+
},{"../service":99,"http-status":330}],45:[function(require,module,exports){
|
|
7451
7832
|
"use strict";
|
|
7452
7833
|
var __extends = (this && this.__extends) || (function () {
|
|
7453
7834
|
var extendStatics = function (d, b) {
|
|
@@ -7605,7 +7986,7 @@ var OfferItemConditionService = /** @class */ (function (_super) {
|
|
|
7605
7986
|
}(service_1.Service));
|
|
7606
7987
|
exports.OfferItemConditionService = OfferItemConditionService;
|
|
7607
7988
|
|
|
7608
|
-
},{"../service":
|
|
7989
|
+
},{"../service":99,"http-status":330}],46:[function(require,module,exports){
|
|
7609
7990
|
"use strict";
|
|
7610
7991
|
var __extends = (this && this.__extends) || (function () {
|
|
7611
7992
|
var extendStatics = function (d, b) {
|
|
@@ -7894,7 +8275,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
7894
8275
|
}(service_1.Service));
|
|
7895
8276
|
exports.OrderService = OrderService;
|
|
7896
8277
|
|
|
7897
|
-
},{"../factory":
|
|
8278
|
+
},{"../factory":94,"../service":99,"http-status":330}],47:[function(require,module,exports){
|
|
7898
8279
|
"use strict";
|
|
7899
8280
|
var __extends = (this && this.__extends) || (function () {
|
|
7900
8281
|
var extendStatics = function (d, b) {
|
|
@@ -7991,7 +8372,7 @@ var OwnershipInfoService = /** @class */ (function (_super) {
|
|
|
7991
8372
|
}(service_1.Service));
|
|
7992
8373
|
exports.OwnershipInfoService = OwnershipInfoService;
|
|
7993
8374
|
|
|
7994
|
-
},{"../service":
|
|
8375
|
+
},{"../service":99,"http-status":330}],48:[function(require,module,exports){
|
|
7995
8376
|
"use strict";
|
|
7996
8377
|
var __extends = (this && this.__extends) || (function () {
|
|
7997
8378
|
var extendStatics = function (d, b) {
|
|
@@ -8169,7 +8550,7 @@ var PaymentProductService = /** @class */ (function (_super) {
|
|
|
8169
8550
|
}(service_1.Service));
|
|
8170
8551
|
exports.PaymentProductService = PaymentProductService;
|
|
8171
8552
|
|
|
8172
|
-
},{"../service":
|
|
8553
|
+
},{"../service":99,"http-status":330}],49:[function(require,module,exports){
|
|
8173
8554
|
"use strict";
|
|
8174
8555
|
var __extends = (this && this.__extends) || (function () {
|
|
8175
8556
|
var extendStatics = function (d, b) {
|
|
@@ -8257,7 +8638,7 @@ var PermissionService = /** @class */ (function (_super) {
|
|
|
8257
8638
|
}(service_1.Service));
|
|
8258
8639
|
exports.PermissionService = PermissionService;
|
|
8259
8640
|
|
|
8260
|
-
},{"../service":
|
|
8641
|
+
},{"../service":99,"http-status":330}],50:[function(require,module,exports){
|
|
8261
8642
|
"use strict";
|
|
8262
8643
|
var __extends = (this && this.__extends) || (function () {
|
|
8263
8644
|
var extendStatics = function (d, b) {
|
|
@@ -8413,7 +8794,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
8413
8794
|
}(service_1.Service));
|
|
8414
8795
|
exports.PermitService = PermitService;
|
|
8415
8796
|
|
|
8416
|
-
},{"../service":
|
|
8797
|
+
},{"../service":99,"http-status":330}],51:[function(require,module,exports){
|
|
8417
8798
|
"use strict";
|
|
8418
8799
|
var __extends = (this && this.__extends) || (function () {
|
|
8419
8800
|
var extendStatics = function (d, b) {
|
|
@@ -8649,7 +9030,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
8649
9030
|
}(service_1.Service));
|
|
8650
9031
|
exports.PersonService = PersonService;
|
|
8651
9032
|
|
|
8652
|
-
},{"../service":
|
|
9033
|
+
},{"../service":99,"http-status":330}],52:[function(require,module,exports){
|
|
8653
9034
|
"use strict";
|
|
8654
9035
|
var __extends = (this && this.__extends) || (function () {
|
|
8655
9036
|
var extendStatics = function (d, b) {
|
|
@@ -8900,7 +9281,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
8900
9281
|
}(service_1.Service));
|
|
8901
9282
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
8902
9283
|
|
|
8903
|
-
},{"../../service":
|
|
9284
|
+
},{"../../service":99,"http-status":330}],53:[function(require,module,exports){
|
|
8904
9285
|
"use strict";
|
|
8905
9286
|
var __extends = (this && this.__extends) || (function () {
|
|
8906
9287
|
var extendStatics = function (d, b) {
|
|
@@ -9403,7 +9784,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
9403
9784
|
}(service_1.Service));
|
|
9404
9785
|
exports.PlaceService = PlaceService;
|
|
9405
9786
|
|
|
9406
|
-
},{"../factory":
|
|
9787
|
+
},{"../factory":94,"../service":99,"http-status":330}],54:[function(require,module,exports){
|
|
9407
9788
|
"use strict";
|
|
9408
9789
|
var __extends = (this && this.__extends) || (function () {
|
|
9409
9790
|
var extendStatics = function (d, b) {
|
|
@@ -9539,7 +9920,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
9539
9920
|
}(service_1.Service));
|
|
9540
9921
|
exports.HasPOSService = HasPOSService;
|
|
9541
9922
|
|
|
9542
|
-
},{"../../factory":
|
|
9923
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],55:[function(require,module,exports){
|
|
9543
9924
|
"use strict";
|
|
9544
9925
|
var __extends = (this && this.__extends) || (function () {
|
|
9545
9926
|
var extendStatics = function (d, b) {
|
|
@@ -9703,7 +10084,7 @@ var PriceSpecificationService = /** @class */ (function (_super) {
|
|
|
9703
10084
|
}(service_1.Service));
|
|
9704
10085
|
exports.PriceSpecificationService = PriceSpecificationService;
|
|
9705
10086
|
|
|
9706
|
-
},{"../service":
|
|
10087
|
+
},{"../service":99,"http-status":330}],56:[function(require,module,exports){
|
|
9707
10088
|
"use strict";
|
|
9708
10089
|
var __extends = (this && this.__extends) || (function () {
|
|
9709
10090
|
var extendStatics = function (d, b) {
|
|
@@ -9921,7 +10302,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
9921
10302
|
}(service_1.Service));
|
|
9922
10303
|
exports.ProductService = ProductService;
|
|
9923
10304
|
|
|
9924
|
-
},{"../service":
|
|
10305
|
+
},{"../service":99,"http-status":330}],57:[function(require,module,exports){
|
|
9925
10306
|
"use strict";
|
|
9926
10307
|
var __extends = (this && this.__extends) || (function () {
|
|
9927
10308
|
var extendStatics = function (d, b) {
|
|
@@ -10092,7 +10473,7 @@ var ProjectService = /** @class */ (function (_super) {
|
|
|
10092
10473
|
}(service_1.Service));
|
|
10093
10474
|
exports.ProjectService = ProjectService;
|
|
10094
10475
|
|
|
10095
|
-
},{"../service":
|
|
10476
|
+
},{"../service":99,"http-status":330}],58:[function(require,module,exports){
|
|
10096
10477
|
"use strict";
|
|
10097
10478
|
var __extends = (this && this.__extends) || (function () {
|
|
10098
10479
|
var extendStatics = function (d, b) {
|
|
@@ -10227,7 +10608,7 @@ var ProjectMakesOfferService = /** @class */ (function (_super) {
|
|
|
10227
10608
|
}(service_1.Service));
|
|
10228
10609
|
exports.ProjectMakesOfferService = ProjectMakesOfferService;
|
|
10229
10610
|
|
|
10230
|
-
},{"../service":
|
|
10611
|
+
},{"../service":99,"http-status":330}],59:[function(require,module,exports){
|
|
10231
10612
|
"use strict";
|
|
10232
10613
|
var __extends = (this && this.__extends) || (function () {
|
|
10233
10614
|
var extendStatics = function (d, b) {
|
|
@@ -10400,7 +10781,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
10400
10781
|
}(service_1.Service));
|
|
10401
10782
|
exports.ReservationService = ReservationService;
|
|
10402
10783
|
|
|
10403
|
-
},{"../service":
|
|
10784
|
+
},{"../service":99,"http-status":330}],60:[function(require,module,exports){
|
|
10404
10785
|
"use strict";
|
|
10405
10786
|
var __extends = (this && this.__extends) || (function () {
|
|
10406
10787
|
var extendStatics = function (d, b) {
|
|
@@ -10918,7 +11299,7 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
10918
11299
|
}(service_1.Service));
|
|
10919
11300
|
exports.SellerService = SellerService;
|
|
10920
11301
|
|
|
10921
|
-
},{"../service":
|
|
11302
|
+
},{"../service":99,"http-status":330}],61:[function(require,module,exports){
|
|
10922
11303
|
"use strict";
|
|
10923
11304
|
var __extends = (this && this.__extends) || (function () {
|
|
10924
11305
|
var extendStatics = function (d, b) {
|
|
@@ -11052,7 +11433,7 @@ var TaskService = /** @class */ (function (_super) {
|
|
|
11052
11433
|
}(service_1.Service));
|
|
11053
11434
|
exports.TaskService = TaskService;
|
|
11054
11435
|
|
|
11055
|
-
},{"../service":
|
|
11436
|
+
},{"../service":99,"http-status":330}],62:[function(require,module,exports){
|
|
11056
11437
|
"use strict";
|
|
11057
11438
|
var __extends = (this && this.__extends) || (function () {
|
|
11058
11439
|
var extendStatics = function (d, b) {
|
|
@@ -11140,7 +11521,7 @@ var TokenService = /** @class */ (function (_super) {
|
|
|
11140
11521
|
}(service_1.Service));
|
|
11141
11522
|
exports.TokenService = TokenService;
|
|
11142
11523
|
|
|
11143
|
-
},{"../service":
|
|
11524
|
+
},{"../service":99,"http-status":330}],63:[function(require,module,exports){
|
|
11144
11525
|
"use strict";
|
|
11145
11526
|
var __extends = (this && this.__extends) || (function () {
|
|
11146
11527
|
var extendStatics = function (d, b) {
|
|
@@ -11228,7 +11609,7 @@ var TransactionNumberService = /** @class */ (function (_super) {
|
|
|
11228
11609
|
}(service_1.Service));
|
|
11229
11610
|
exports.TransactionNumberService = TransactionNumberService;
|
|
11230
11611
|
|
|
11231
|
-
},{"../service":
|
|
11612
|
+
},{"../service":99,"http-status":330}],64:[function(require,module,exports){
|
|
11232
11613
|
"use strict";
|
|
11233
11614
|
var __extends = (this && this.__extends) || (function () {
|
|
11234
11615
|
var extendStatics = function (d, b) {
|
|
@@ -11360,7 +11741,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
11360
11741
|
}(service_1.Service));
|
|
11361
11742
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
11362
11743
|
|
|
11363
|
-
},{"../../factory":
|
|
11744
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],65:[function(require,module,exports){
|
|
11364
11745
|
"use strict";
|
|
11365
11746
|
var __extends = (this && this.__extends) || (function () {
|
|
11366
11747
|
var extendStatics = function (d, b) {
|
|
@@ -11492,7 +11873,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
11492
11873
|
}(service_1.Service));
|
|
11493
11874
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
11494
11875
|
|
|
11495
|
-
},{"../../factory":
|
|
11876
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],66:[function(require,module,exports){
|
|
11496
11877
|
"use strict";
|
|
11497
11878
|
var __extends = (this && this.__extends) || (function () {
|
|
11498
11879
|
var extendStatics = function (d, b) {
|
|
@@ -11592,7 +11973,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
11592
11973
|
}(service_1.Service));
|
|
11593
11974
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
11594
11975
|
|
|
11595
|
-
},{"../../factory":
|
|
11976
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],67:[function(require,module,exports){
|
|
11596
11977
|
"use strict";
|
|
11597
11978
|
var __extends = (this && this.__extends) || (function () {
|
|
11598
11979
|
var extendStatics = function (d, b) {
|
|
@@ -11765,7 +12146,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
11765
12146
|
}(service_1.Service));
|
|
11766
12147
|
exports.TripService = TripService;
|
|
11767
12148
|
|
|
11768
|
-
},{"../service":
|
|
12149
|
+
},{"../service":99,"http-status":330}],68:[function(require,module,exports){
|
|
11769
12150
|
"use strict";
|
|
11770
12151
|
var __extends = (this && this.__extends) || (function () {
|
|
11771
12152
|
var extendStatics = function (d, b) {
|
|
@@ -11898,7 +12279,7 @@ var UserPoolService = /** @class */ (function (_super) {
|
|
|
11898
12279
|
}(service_1.Service));
|
|
11899
12280
|
exports.UserPoolService = UserPoolService;
|
|
11900
12281
|
|
|
11901
|
-
},{"../service":
|
|
12282
|
+
},{"../service":99,"http-status":330}],69:[function(require,module,exports){
|
|
11902
12283
|
"use strict";
|
|
11903
12284
|
var __assign = (this && this.__assign) || function () {
|
|
11904
12285
|
__assign = Object.assign || function(t) {
|
|
@@ -12069,7 +12450,7 @@ var ChevreTxn = /** @class */ (function () {
|
|
|
12069
12450
|
}());
|
|
12070
12451
|
exports.ChevreTxn = ChevreTxn;
|
|
12071
12452
|
|
|
12072
|
-
},{"./chevreTxn/offer":
|
|
12453
|
+
},{"./chevreTxn/offer":70,"./chevreTxn/payment":71,"./chevreTxn/transaction/moneyTransfer":73,"./chevreTxn/transaction/placeOrder":74,"./chevreTxn/transaction/returnOrder":76}],70:[function(require,module,exports){
|
|
12073
12454
|
"use strict";
|
|
12074
12455
|
var __extends = (this && this.__extends) || (function () {
|
|
12075
12456
|
var extendStatics = function (d, b) {
|
|
@@ -12295,7 +12676,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
12295
12676
|
}(service_1.Service));
|
|
12296
12677
|
exports.OfferService = OfferService;
|
|
12297
12678
|
|
|
12298
|
-
},{"../factory":
|
|
12679
|
+
},{"../factory":94,"../service":99,"http-status":330}],71:[function(require,module,exports){
|
|
12299
12680
|
"use strict";
|
|
12300
12681
|
var __extends = (this && this.__extends) || (function () {
|
|
12301
12682
|
var extendStatics = function (d, b) {
|
|
@@ -12536,11 +12917,11 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
12536
12917
|
}(service_1.Service));
|
|
12537
12918
|
exports.PaymentService = PaymentService;
|
|
12538
12919
|
|
|
12539
|
-
},{"../factory":
|
|
12920
|
+
},{"../factory":94,"../service":99,"http-status":330}],72:[function(require,module,exports){
|
|
12540
12921
|
"use strict";
|
|
12541
12922
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12542
12923
|
|
|
12543
|
-
},{}],
|
|
12924
|
+
},{}],73:[function(require,module,exports){
|
|
12544
12925
|
"use strict";
|
|
12545
12926
|
var __extends = (this && this.__extends) || (function () {
|
|
12546
12927
|
var extendStatics = function (d, b) {
|
|
@@ -12690,7 +13071,7 @@ var MoneyTransferTransactionService = /** @class */ (function (_super) {
|
|
|
12690
13071
|
}(service_1.Service));
|
|
12691
13072
|
exports.MoneyTransferTransactionService = MoneyTransferTransactionService;
|
|
12692
13073
|
|
|
12693
|
-
},{"../../factory":
|
|
13074
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],74:[function(require,module,exports){
|
|
12694
13075
|
"use strict";
|
|
12695
13076
|
var __extends = (this && this.__extends) || (function () {
|
|
12696
13077
|
var extendStatics = function (d, b) {
|
|
@@ -12893,9 +13274,9 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
12893
13274
|
}(service_1.Service));
|
|
12894
13275
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
12895
13276
|
|
|
12896
|
-
},{"../../factory":
|
|
12897
|
-
arguments[4][
|
|
12898
|
-
},{"dup":
|
|
13277
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],75:[function(require,module,exports){
|
|
13278
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
13279
|
+
},{"dup":72}],76:[function(require,module,exports){
|
|
12899
13280
|
"use strict";
|
|
12900
13281
|
var __extends = (this && this.__extends) || (function () {
|
|
12901
13282
|
var extendStatics = function (d, b) {
|
|
@@ -13061,7 +13442,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
13061
13442
|
}(service_1.Service));
|
|
13062
13443
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
13063
13444
|
|
|
13064
|
-
},{"../../factory":
|
|
13445
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],77:[function(require,module,exports){
|
|
13065
13446
|
"use strict";
|
|
13066
13447
|
var __extends = (this && this.__extends) || (function () {
|
|
13067
13448
|
var extendStatics = function (d, b) {
|
|
@@ -13158,7 +13539,7 @@ var CategoryCodeService = /** @class */ (function (_super) {
|
|
|
13158
13539
|
}(service_1.Service));
|
|
13159
13540
|
exports.CategoryCodeService = CategoryCodeService;
|
|
13160
13541
|
|
|
13161
|
-
},{"../service":
|
|
13542
|
+
},{"../service":99,"http-status":330}],78:[function(require,module,exports){
|
|
13162
13543
|
"use strict";
|
|
13163
13544
|
var __extends = (this && this.__extends) || (function () {
|
|
13164
13545
|
var extendStatics = function (d, b) {
|
|
@@ -13252,7 +13633,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
13252
13633
|
}(service_1.Service));
|
|
13253
13634
|
exports.CreativeWorkService = CreativeWorkService;
|
|
13254
13635
|
|
|
13255
|
-
},{"../service":
|
|
13636
|
+
},{"../service":99,"http-status":330}],79:[function(require,module,exports){
|
|
13256
13637
|
"use strict";
|
|
13257
13638
|
var __extends = (this && this.__extends) || (function () {
|
|
13258
13639
|
var extendStatics = function (d, b) {
|
|
@@ -13349,7 +13730,7 @@ var EmailMessageService = /** @class */ (function (_super) {
|
|
|
13349
13730
|
}(service_1.Service));
|
|
13350
13731
|
exports.EmailMessageService = EmailMessageService;
|
|
13351
13732
|
|
|
13352
|
-
},{"../service":
|
|
13733
|
+
},{"../service":99,"http-status":330}],80:[function(require,module,exports){
|
|
13353
13734
|
"use strict";
|
|
13354
13735
|
var __extends = (this && this.__extends) || (function () {
|
|
13355
13736
|
var extendStatics = function (d, b) {
|
|
@@ -13608,7 +13989,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
13608
13989
|
}(service_1.Service));
|
|
13609
13990
|
exports.EventService = EventService;
|
|
13610
13991
|
|
|
13611
|
-
},{"../service":
|
|
13992
|
+
},{"../service":99,"http-status":330}],81:[function(require,module,exports){
|
|
13612
13993
|
"use strict";
|
|
13613
13994
|
var __extends = (this && this.__extends) || (function () {
|
|
13614
13995
|
var extendStatics = function (d, b) {
|
|
@@ -13849,9 +14230,9 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
13849
14230
|
}(service_1.Service));
|
|
13850
14231
|
exports.OrderService = OrderService;
|
|
13851
14232
|
|
|
13852
|
-
},{"../factory":
|
|
13853
|
-
arguments[4][
|
|
13854
|
-
},{"dup":
|
|
14233
|
+
},{"../factory":94,"../service":99,"http-status":330}],82:[function(require,module,exports){
|
|
14234
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
14235
|
+
},{"dup":72}],83:[function(require,module,exports){
|
|
13855
14236
|
"use strict";
|
|
13856
14237
|
var __extends = (this && this.__extends) || (function () {
|
|
13857
14238
|
var extendStatics = function (d, b) {
|
|
@@ -13979,7 +14360,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
13979
14360
|
}(service_1.Service));
|
|
13980
14361
|
exports.PermitService = PermitService;
|
|
13981
14362
|
|
|
13982
|
-
},{"../service":
|
|
14363
|
+
},{"../service":99,"http-status":330}],84:[function(require,module,exports){
|
|
13983
14364
|
"use strict";
|
|
13984
14365
|
var __extends = (this && this.__extends) || (function () {
|
|
13985
14366
|
var extendStatics = function (d, b) {
|
|
@@ -14168,9 +14549,9 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
14168
14549
|
}(service_1.Service));
|
|
14169
14550
|
exports.PersonService = PersonService;
|
|
14170
14551
|
|
|
14171
|
-
},{"../service":
|
|
14172
|
-
arguments[4][
|
|
14173
|
-
},{"../../service":
|
|
14552
|
+
},{"../service":99,"http-status":330}],85:[function(require,module,exports){
|
|
14553
|
+
arguments[4][52][0].apply(exports,arguments)
|
|
14554
|
+
},{"../../service":99,"dup":52,"http-status":330}],86:[function(require,module,exports){
|
|
14174
14555
|
"use strict";
|
|
14175
14556
|
var __extends = (this && this.__extends) || (function () {
|
|
14176
14557
|
var extendStatics = function (d, b) {
|
|
@@ -14380,7 +14761,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
14380
14761
|
}(service_1.Service));
|
|
14381
14762
|
exports.PlaceService = PlaceService;
|
|
14382
14763
|
|
|
14383
|
-
},{"../factory":
|
|
14764
|
+
},{"../factory":94,"../service":99,"http-status":330}],87:[function(require,module,exports){
|
|
14384
14765
|
"use strict";
|
|
14385
14766
|
var __extends = (this && this.__extends) || (function () {
|
|
14386
14767
|
var extendStatics = function (d, b) {
|
|
@@ -14466,7 +14847,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
14466
14847
|
}(service_1.Service));
|
|
14467
14848
|
exports.HasPOSService = HasPOSService;
|
|
14468
14849
|
|
|
14469
|
-
},{"../../factory":
|
|
14850
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],88:[function(require,module,exports){
|
|
14470
14851
|
"use strict";
|
|
14471
14852
|
var __extends = (this && this.__extends) || (function () {
|
|
14472
14853
|
var extendStatics = function (d, b) {
|
|
@@ -14595,7 +14976,7 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
14595
14976
|
}(service_1.Service));
|
|
14596
14977
|
exports.ProductService = ProductService;
|
|
14597
14978
|
|
|
14598
|
-
},{"../service":
|
|
14979
|
+
},{"../service":99,"http-status":330}],89:[function(require,module,exports){
|
|
14599
14980
|
"use strict";
|
|
14600
14981
|
var __extends = (this && this.__extends) || (function () {
|
|
14601
14982
|
var extendStatics = function (d, b) {
|
|
@@ -14660,6 +15041,25 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
14660
15041
|
function ReservationService() {
|
|
14661
15042
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
14662
15043
|
}
|
|
15044
|
+
/**
|
|
15045
|
+
* コードによる予約照会
|
|
15046
|
+
*/
|
|
15047
|
+
ReservationService.prototype.findByCode = function (params) {
|
|
15048
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
15049
|
+
var _this = this;
|
|
15050
|
+
return __generator(this, function (_a) {
|
|
15051
|
+
return [2 /*return*/, this.fetch({
|
|
15052
|
+
uri: '/reservations/findByCode',
|
|
15053
|
+
method: 'POST',
|
|
15054
|
+
body: params,
|
|
15055
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
15056
|
+
})
|
|
15057
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
15058
|
+
return [2 /*return*/, response.json()];
|
|
15059
|
+
}); }); })];
|
|
15060
|
+
});
|
|
15061
|
+
});
|
|
15062
|
+
};
|
|
14663
15063
|
/**
|
|
14664
15064
|
* 注文に含まれる予約照会
|
|
14665
15065
|
*/
|
|
@@ -14684,9 +15084,7 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
14684
15084
|
}(service_1.Service));
|
|
14685
15085
|
exports.ReservationService = ReservationService;
|
|
14686
15086
|
|
|
14687
|
-
},{"../service":
|
|
14688
|
-
arguments[4][70][0].apply(exports,arguments)
|
|
14689
|
-
},{"dup":70}],89:[function(require,module,exports){
|
|
15087
|
+
},{"../service":99,"http-status":330}],90:[function(require,module,exports){
|
|
14690
15088
|
"use strict";
|
|
14691
15089
|
var __extends = (this && this.__extends) || (function () {
|
|
14692
15090
|
var extendStatics = function (d, b) {
|
|
@@ -14858,9 +15256,9 @@ var SellerService = /** @class */ (function (_super) {
|
|
|
14858
15256
|
}(service_1.Service));
|
|
14859
15257
|
exports.SellerService = SellerService;
|
|
14860
15258
|
|
|
14861
|
-
},{"../service":
|
|
14862
|
-
arguments[4][
|
|
14863
|
-
},{"../service":
|
|
15259
|
+
},{"../service":99,"http-status":330}],91:[function(require,module,exports){
|
|
15260
|
+
arguments[4][62][0].apply(exports,arguments)
|
|
15261
|
+
},{"../service":99,"dup":62,"http-status":330}],92:[function(require,module,exports){
|
|
14864
15262
|
"use strict";
|
|
14865
15263
|
var __extends = (this && this.__extends) || (function () {
|
|
14866
15264
|
var extendStatics = function (d, b) {
|
|
@@ -14957,7 +15355,7 @@ var TripService = /** @class */ (function (_super) {
|
|
|
14957
15355
|
}(service_1.Service));
|
|
14958
15356
|
exports.TripService = TripService;
|
|
14959
15357
|
|
|
14960
|
-
},{"../service":
|
|
15358
|
+
},{"../service":99,"http-status":330}],93:[function(require,module,exports){
|
|
14961
15359
|
"use strict";
|
|
14962
15360
|
var __extends = (this && this.__extends) || (function () {
|
|
14963
15361
|
var extendStatics = function (d, b) {
|
|
@@ -14983,7 +15381,6 @@ exports.service = void 0;
|
|
|
14983
15381
|
var ServiceFactory = require("./service");
|
|
14984
15382
|
var OrderServiceFactory = require("./chevre/order/factory");
|
|
14985
15383
|
var PaymentServiceFactory = require("./chevreTxn/payment/factory");
|
|
14986
|
-
var ReservationServiceFactory = require("./service/reservation/factory");
|
|
14987
15384
|
var PlaceOrderTransactionServiceFactory = require("./chevreTxn/transaction/placeOrder/factory");
|
|
14988
15385
|
var categoryCode_1 = require("./service/categoryCode");
|
|
14989
15386
|
var creativeWork_1 = require("./service/creativeWork");
|
|
@@ -15194,11 +15591,6 @@ var service;
|
|
|
15194
15591
|
return Product;
|
|
15195
15592
|
}(product_1.ProductService));
|
|
15196
15593
|
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
15594
|
/**
|
|
15203
15595
|
* 予約サービス
|
|
15204
15596
|
*/
|
|
@@ -15305,7 +15697,7 @@ var service;
|
|
|
15305
15697
|
service.txn = transaction;
|
|
15306
15698
|
})(service = exports.service || (exports.service = {}));
|
|
15307
15699
|
|
|
15308
|
-
},{"./chevre/order/factory":
|
|
15700
|
+
},{"./chevre/order/factory":82,"./chevreTxn/payment/factory":72,"./chevreTxn/transaction/placeOrder/factory":75,"./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
15701
|
"use strict";
|
|
15310
15702
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15311
15703
|
if (k2 === undefined) k2 = k;
|
|
@@ -15323,7 +15715,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15323
15715
|
*/
|
|
15324
15716
|
__exportStar(require("@chevre/factory"), exports);
|
|
15325
15717
|
|
|
15326
|
-
},{"@chevre/factory":214}],
|
|
15718
|
+
},{"@chevre/factory":214}],95:[function(require,module,exports){
|
|
15327
15719
|
"use strict";
|
|
15328
15720
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15329
15721
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -15537,7 +15929,7 @@ exports.loadWaiterAdmin = loadWaiterAdmin;
|
|
|
15537
15929
|
// export class StubAuth extends StubAuthClient { }
|
|
15538
15930
|
// }
|
|
15539
15931
|
|
|
15540
|
-
},{"./admin":3,"./chevre":
|
|
15932
|
+
},{"./admin":3,"./chevre":14,"./chevreAdmin":15,"./chevreTxn":69,"./default":93,"./factory":94,"./pecorino":96,"./transporters":122,"./waiterAdmin":123}],96:[function(require,module,exports){
|
|
15541
15933
|
"use strict";
|
|
15542
15934
|
var __extends = (this && this.__extends) || (function () {
|
|
15543
15935
|
var extendStatics = function (d, b) {
|
|
@@ -15590,7 +15982,7 @@ var service;
|
|
|
15590
15982
|
service.AccountTransaction = AccountTransaction;
|
|
15591
15983
|
})(service = exports.service || (exports.service = {}));
|
|
15592
15984
|
|
|
15593
|
-
},{"./factory":
|
|
15985
|
+
},{"./factory":94,"./pecorino/accountTransaction":97,"./pecorino/permit":98}],97:[function(require,module,exports){
|
|
15594
15986
|
"use strict";
|
|
15595
15987
|
var __extends = (this && this.__extends) || (function () {
|
|
15596
15988
|
var extendStatics = function (d, b) {
|
|
@@ -15761,7 +16153,7 @@ var AccountTransactionService = /** @class */ (function (_super) {
|
|
|
15761
16153
|
}(service_1.Service));
|
|
15762
16154
|
exports.AccountTransactionService = AccountTransactionService;
|
|
15763
16155
|
|
|
15764
|
-
},{"../service":
|
|
16156
|
+
},{"../service":99,"http-status":330}],98:[function(require,module,exports){
|
|
15765
16157
|
"use strict";
|
|
15766
16158
|
var __extends = (this && this.__extends) || (function () {
|
|
15767
16159
|
var extendStatics = function (d, b) {
|
|
@@ -15881,7 +16273,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
15881
16273
|
}(service_1.Service));
|
|
15882
16274
|
exports.PermitService = PermitService;
|
|
15883
16275
|
|
|
15884
|
-
},{"../service":
|
|
16276
|
+
},{"../service":99,"http-status":330}],99:[function(require,module,exports){
|
|
15885
16277
|
"use strict";
|
|
15886
16278
|
var __assign = (this && this.__assign) || function () {
|
|
15887
16279
|
__assign = Object.assign || function(t) {
|
|
@@ -15948,14 +16340,24 @@ var Service = /** @class */ (function () {
|
|
|
15948
16340
|
Service.prototype.fetch = function (options) {
|
|
15949
16341
|
var _a, _b;
|
|
15950
16342
|
return __awaiter(this, void 0, void 0, function () {
|
|
15951
|
-
var defaultOptions, baseUrl, url, querystrings, headers, fetchOptions, transporter;
|
|
16343
|
+
var defaultOptions, baseUrl, baseUrlEndsAsExpected, url, querystrings, headers, fetchOptions, transporter;
|
|
15952
16344
|
return __generator(this, function (_c) {
|
|
15953
|
-
defaultOptions = __assign(__assign({ headers: {} }, {
|
|
15954
|
-
|
|
15955
|
-
|
|
16345
|
+
defaultOptions = __assign(__assign({ headers: {} }, options), {
|
|
16346
|
+
// tslint:disable-next-line:no-single-line-block-comment
|
|
16347
|
+
method: (typeof options.method === 'string') ? options.method /* istanbul ignore next */ : 'GET' });
|
|
15956
16348
|
baseUrl = this.options.endpoint;
|
|
15957
16349
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
15958
16350
|
/* istanbul ignore else */
|
|
16351
|
+
if (typeof this.options.defaultPath === 'string' && this.options.defaultPath.length > 0) {
|
|
16352
|
+
baseUrlEndsAsExpected = (new RegExp(this.options.defaultPath + "$")).test(baseUrl);
|
|
16353
|
+
// tslint:disable-next-line:no-single-line-block-comment
|
|
16354
|
+
/* istanbul ignore else */
|
|
16355
|
+
if (!baseUrlEndsAsExpected) {
|
|
16356
|
+
baseUrl += this.options.defaultPath;
|
|
16357
|
+
}
|
|
16358
|
+
}
|
|
16359
|
+
// tslint:disable-next-line:no-single-line-block-comment
|
|
16360
|
+
/* istanbul ignore else */
|
|
15959
16361
|
if (typeof ((_a = this.options.project) === null || _a === void 0 ? void 0 : _a.id) === 'string' && this.options.project.id.length > 0) {
|
|
15960
16362
|
if (typeof ((_b = this.options.seller) === null || _b === void 0 ? void 0 : _b.id) === 'string' && this.options.seller.id.length > 0) {
|
|
15961
16363
|
baseUrl = baseUrl + "/projects/" + this.options.project.id + exports.RESOURCE_SELECTOR_SEPARATOR + this.options.seller.id;
|
|
@@ -15994,9 +16396,9 @@ var Service = /** @class */ (function () {
|
|
|
15994
16396
|
}());
|
|
15995
16397
|
exports.Service = Service;
|
|
15996
16398
|
|
|
15997
|
-
},{"./transporters":122,"qs":337}],
|
|
15998
|
-
arguments[4][
|
|
15999
|
-
},{"../service":
|
|
16399
|
+
},{"./transporters":122,"qs":337}],100:[function(require,module,exports){
|
|
16400
|
+
arguments[4][77][0].apply(exports,arguments)
|
|
16401
|
+
},{"../service":99,"dup":77,"http-status":330}],101:[function(require,module,exports){
|
|
16000
16402
|
"use strict";
|
|
16001
16403
|
var __extends = (this && this.__extends) || (function () {
|
|
16002
16404
|
var extendStatics = function (d, b) {
|
|
@@ -16093,7 +16495,7 @@ var CreativeWorkService = /** @class */ (function (_super) {
|
|
|
16093
16495
|
}(service_1.Service));
|
|
16094
16496
|
exports.CreativeWorkService = CreativeWorkService;
|
|
16095
16497
|
|
|
16096
|
-
},{"../service":
|
|
16498
|
+
},{"../service":99,"http-status":330}],102:[function(require,module,exports){
|
|
16097
16499
|
"use strict";
|
|
16098
16500
|
var __extends = (this && this.__extends) || (function () {
|
|
16099
16501
|
var extendStatics = function (d, b) {
|
|
@@ -16208,7 +16610,7 @@ var CustomerService = /** @class */ (function (_super) {
|
|
|
16208
16610
|
}(service_1.Service));
|
|
16209
16611
|
exports.CustomerService = CustomerService;
|
|
16210
16612
|
|
|
16211
|
-
},{"../service":
|
|
16613
|
+
},{"../service":99,"http-status":330}],103:[function(require,module,exports){
|
|
16212
16614
|
"use strict";
|
|
16213
16615
|
var __extends = (this && this.__extends) || (function () {
|
|
16214
16616
|
var extendStatics = function (d, b) {
|
|
@@ -16300,9 +16702,9 @@ var DeliveryService = /** @class */ (function (_super) {
|
|
|
16300
16702
|
}(service_1.Service));
|
|
16301
16703
|
exports.DeliveryService = DeliveryService;
|
|
16302
16704
|
|
|
16303
|
-
},{"../service":
|
|
16304
|
-
arguments[4][
|
|
16305
|
-
},{"../service":
|
|
16705
|
+
},{"../service":99,"http-status":330}],104:[function(require,module,exports){
|
|
16706
|
+
arguments[4][79][0].apply(exports,arguments)
|
|
16707
|
+
},{"../service":99,"dup":79,"http-status":330}],105:[function(require,module,exports){
|
|
16306
16708
|
"use strict";
|
|
16307
16709
|
var __extends = (this && this.__extends) || (function () {
|
|
16308
16710
|
var extendStatics = function (d, b) {
|
|
@@ -16475,6 +16877,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16475
16877
|
};
|
|
16476
16878
|
/**
|
|
16477
16879
|
* 興行オファー検索
|
|
16880
|
+
* サブカタログ設定有無による違いについては、includedInDataCatalogパラメータの説明を参照してください
|
|
16478
16881
|
*/
|
|
16479
16882
|
EventService.prototype.searchTicketOffers = function (params) {
|
|
16480
16883
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -16517,6 +16920,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16517
16920
|
};
|
|
16518
16921
|
/**
|
|
16519
16922
|
* オファーで利用可能な適用決済カード条件を検索する
|
|
16923
|
+
* サブカタログが設定されている場合、ひとつめのサブカタログについてのみ検索されます
|
|
16520
16924
|
*/
|
|
16521
16925
|
EventService.prototype.searchOfferAppliesToMovieTicket = function (params) {
|
|
16522
16926
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -16538,6 +16942,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16538
16942
|
};
|
|
16539
16943
|
/**
|
|
16540
16944
|
* サブカタログ検索
|
|
16945
|
+
* オファーによるカタログ設定の場合、空配列が返却されます
|
|
16541
16946
|
*/
|
|
16542
16947
|
EventService.prototype.searchOfferCatalogItems = function (params) {
|
|
16543
16948
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -16559,6 +16964,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16559
16964
|
};
|
|
16560
16965
|
/**
|
|
16561
16966
|
* サブカタログ利用可能性検索
|
|
16967
|
+
* 各サブカタログにクライアントで利用可能なオファーが含まれているかを検索します
|
|
16562
16968
|
*/
|
|
16563
16969
|
EventService.prototype.searchOfferCatalogItemAvailabilities = function (params) {
|
|
16564
16970
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -16582,7 +16988,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
16582
16988
|
}(service_1.Service));
|
|
16583
16989
|
exports.EventService = EventService;
|
|
16584
16990
|
|
|
16585
|
-
},{"../service":
|
|
16991
|
+
},{"../service":99,"http-status":330}],106:[function(require,module,exports){
|
|
16586
16992
|
"use strict";
|
|
16587
16993
|
var __extends = (this && this.__extends) || (function () {
|
|
16588
16994
|
var extendStatics = function (d, b) {
|
|
@@ -16717,7 +17123,7 @@ var OfferService = /** @class */ (function (_super) {
|
|
|
16717
17123
|
}(service_1.Service));
|
|
16718
17124
|
exports.OfferService = OfferService;
|
|
16719
17125
|
|
|
16720
|
-
},{"../factory":
|
|
17126
|
+
},{"../factory":94,"../service":99,"http-status":330}],107:[function(require,module,exports){
|
|
16721
17127
|
"use strict";
|
|
16722
17128
|
var __extends = (this && this.__extends) || (function () {
|
|
16723
17129
|
var extendStatics = function (d, b) {
|
|
@@ -16839,124 +17245,21 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16839
17245
|
})
|
|
16840
17246
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16841
17247
|
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
|
-
}); })];
|
|
17248
|
+
}); }); })];
|
|
16947
17249
|
});
|
|
16948
17250
|
});
|
|
16949
17251
|
};
|
|
16950
17252
|
/**
|
|
16951
|
-
*
|
|
17253
|
+
* 予約番号と電話番号で注文情報を取得する(sskts専用)
|
|
16952
17254
|
*/
|
|
16953
|
-
OrderService.prototype.
|
|
17255
|
+
OrderService.prototype.findByOrderInquiryKey4sskts = function (params) {
|
|
16954
17256
|
return __awaiter(this, void 0, void 0, function () {
|
|
16955
17257
|
var _this = this;
|
|
16956
17258
|
return __generator(this, function (_a) {
|
|
16957
17259
|
return [2 /*return*/, this.fetch({
|
|
16958
|
-
uri:
|
|
16959
|
-
method: '
|
|
17260
|
+
uri: '/orders/findByOrderInquiryKey',
|
|
17261
|
+
method: 'POST',
|
|
17262
|
+
body: params,
|
|
16960
17263
|
expectedStatusCodes: [http_status_1.OK]
|
|
16961
17264
|
})
|
|
16962
17265
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
@@ -16966,17 +17269,17 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16966
17269
|
});
|
|
16967
17270
|
};
|
|
16968
17271
|
/**
|
|
16969
|
-
*
|
|
17272
|
+
* 注文番号と何かしらで注文照会
|
|
16970
17273
|
*/
|
|
16971
|
-
OrderService.prototype.
|
|
17274
|
+
OrderService.prototype.findOneByOrderNumberAndSomething = function (params) {
|
|
16972
17275
|
return __awaiter(this, void 0, void 0, function () {
|
|
16973
17276
|
var _this = this;
|
|
16974
17277
|
return __generator(this, function (_a) {
|
|
16975
17278
|
return [2 /*return*/, this.fetch({
|
|
16976
|
-
uri:
|
|
16977
|
-
method: '
|
|
16978
|
-
|
|
16979
|
-
|
|
17279
|
+
uri: '/orders/findOneByOrderNumberAndSomething',
|
|
17280
|
+
method: 'POST',
|
|
17281
|
+
body: params,
|
|
17282
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
16980
17283
|
})
|
|
16981
17284
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
16982
17285
|
return [2 /*return*/, response.json()];
|
|
@@ -16985,14 +17288,15 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
16985
17288
|
});
|
|
16986
17289
|
};
|
|
16987
17290
|
/**
|
|
16988
|
-
*
|
|
17291
|
+
* 注文コードを発行する
|
|
16989
17292
|
*/
|
|
16990
|
-
OrderService.prototype.
|
|
17293
|
+
OrderService.prototype.authorize = function (params) {
|
|
17294
|
+
var _a;
|
|
16991
17295
|
return __awaiter(this, void 0, void 0, function () {
|
|
16992
17296
|
var _this = this;
|
|
16993
|
-
return __generator(this, function (
|
|
17297
|
+
return __generator(this, function (_b) {
|
|
16994
17298
|
return [2 /*return*/, this.fetch({
|
|
16995
|
-
uri: "/orders/" + params.orderNumber + "/
|
|
17299
|
+
uri: "/orders/" + String((_a = params.object) === null || _a === void 0 ? void 0 : _a.orderNumber) + "/authorize",
|
|
16996
17300
|
method: 'POST',
|
|
16997
17301
|
body: params,
|
|
16998
17302
|
expectedStatusCodes: [http_status_1.OK]
|
|
@@ -17004,22 +17308,21 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
17004
17308
|
});
|
|
17005
17309
|
};
|
|
17006
17310
|
/**
|
|
17007
|
-
*
|
|
17311
|
+
* 確認番号で注文オファー検索
|
|
17008
17312
|
*/
|
|
17009
|
-
OrderService.prototype.
|
|
17313
|
+
OrderService.prototype.searchAcceptedOffersByConfirmationNumber = function (params) {
|
|
17010
17314
|
return __awaiter(this, void 0, void 0, function () {
|
|
17315
|
+
var _this = this;
|
|
17011
17316
|
return __generator(this, function (_a) {
|
|
17012
|
-
|
|
17013
|
-
|
|
17014
|
-
|
|
17015
|
-
|
|
17016
|
-
|
|
17017
|
-
|
|
17018
|
-
|
|
17019
|
-
|
|
17020
|
-
|
|
17021
|
-
return [2 /*return*/];
|
|
17022
|
-
}
|
|
17317
|
+
return [2 /*return*/, this.fetch({
|
|
17318
|
+
uri: "/orders/" + params.orderNumber + "/acceptedOffersByConfirmationNumber",
|
|
17319
|
+
method: 'POST',
|
|
17320
|
+
body: params,
|
|
17321
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
17322
|
+
})
|
|
17323
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
17324
|
+
return [2 /*return*/, response.json()];
|
|
17325
|
+
}); }); })];
|
|
17023
17326
|
});
|
|
17024
17327
|
});
|
|
17025
17328
|
};
|
|
@@ -17027,7 +17330,7 @@ var OrderService = /** @class */ (function (_super) {
|
|
|
17027
17330
|
}(service_1.Service));
|
|
17028
17331
|
exports.OrderService = OrderService;
|
|
17029
17332
|
|
|
17030
|
-
},{"../service":
|
|
17333
|
+
},{"../service":99,"http-status":330}],108:[function(require,module,exports){
|
|
17031
17334
|
"use strict";
|
|
17032
17335
|
var __extends = (this && this.__extends) || (function () {
|
|
17033
17336
|
var extendStatics = function (d, b) {
|
|
@@ -17270,7 +17573,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
17270
17573
|
}(service_1.Service));
|
|
17271
17574
|
exports.PaymentService = PaymentService;
|
|
17272
17575
|
|
|
17273
|
-
},{"../factory":
|
|
17576
|
+
},{"../factory":94,"../service":99,"http-status":330}],109:[function(require,module,exports){
|
|
17274
17577
|
"use strict";
|
|
17275
17578
|
var __extends = (this && this.__extends) || (function () {
|
|
17276
17579
|
var extendStatics = function (d, b) {
|
|
@@ -17379,7 +17682,7 @@ var PermitService = /** @class */ (function (_super) {
|
|
|
17379
17682
|
}(service_1.Service));
|
|
17380
17683
|
exports.PermitService = PermitService;
|
|
17381
17684
|
|
|
17382
|
-
},{"../service":
|
|
17685
|
+
},{"../service":99,"http-status":330}],110:[function(require,module,exports){
|
|
17383
17686
|
"use strict";
|
|
17384
17687
|
var __extends = (this && this.__extends) || (function () {
|
|
17385
17688
|
var extendStatics = function (d, b) {
|
|
@@ -17547,7 +17850,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
17547
17850
|
}(service_1.Service));
|
|
17548
17851
|
exports.PersonService = PersonService;
|
|
17549
17852
|
|
|
17550
|
-
},{"../service":
|
|
17853
|
+
},{"../service":99,"http-status":330}],111:[function(require,module,exports){
|
|
17551
17854
|
"use strict";
|
|
17552
17855
|
var __extends = (this && this.__extends) || (function () {
|
|
17553
17856
|
var extendStatics = function (d, b) {
|
|
@@ -17892,7 +18195,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
17892
18195
|
}(service_1.Service));
|
|
17893
18196
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
17894
18197
|
|
|
17895
|
-
},{"../../factory":
|
|
18198
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],112:[function(require,module,exports){
|
|
17896
18199
|
"use strict";
|
|
17897
18200
|
var __extends = (this && this.__extends) || (function () {
|
|
17898
18201
|
var extendStatics = function (d, b) {
|
|
@@ -18074,7 +18377,7 @@ var PlaceService = /** @class */ (function (_super) {
|
|
|
18074
18377
|
}(service_1.Service));
|
|
18075
18378
|
exports.PlaceService = PlaceService;
|
|
18076
18379
|
|
|
18077
|
-
},{"../factory":
|
|
18380
|
+
},{"../factory":94,"../service":99,"http-status":330}],113:[function(require,module,exports){
|
|
18078
18381
|
"use strict";
|
|
18079
18382
|
var __extends = (this && this.__extends) || (function () {
|
|
18080
18383
|
var extendStatics = function (d, b) {
|
|
@@ -18163,7 +18466,7 @@ var HasPOSService = /** @class */ (function (_super) {
|
|
|
18163
18466
|
}(service_1.Service));
|
|
18164
18467
|
exports.HasPOSService = HasPOSService;
|
|
18165
18468
|
|
|
18166
|
-
},{"../../factory":
|
|
18469
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],114:[function(require,module,exports){
|
|
18167
18470
|
"use strict";
|
|
18168
18471
|
var __extends = (this && this.__extends) || (function () {
|
|
18169
18472
|
var extendStatics = function (d, b) {
|
|
@@ -18279,216 +18582,15 @@ var ProductService = /** @class */ (function (_super) {
|
|
|
18279
18582
|
}(service_1.Service));
|
|
18280
18583
|
exports.ProductService = ProductService;
|
|
18281
18584
|
|
|
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":88}],116:[function(require,module,exports){
|
|
18585
|
+
},{"../service":99,"http-status":330}],115:[function(require,module,exports){
|
|
18486
18586
|
arguments[4][89][0].apply(exports,arguments)
|
|
18487
|
-
},{"../service":
|
|
18488
|
-
arguments[4][
|
|
18489
|
-
},{"../service":
|
|
18490
|
-
arguments[4][
|
|
18491
|
-
},{"
|
|
18587
|
+
},{"../service":99,"dup":89,"http-status":330}],116:[function(require,module,exports){
|
|
18588
|
+
arguments[4][90][0].apply(exports,arguments)
|
|
18589
|
+
},{"../service":99,"dup":90,"http-status":330}],117:[function(require,module,exports){
|
|
18590
|
+
arguments[4][62][0].apply(exports,arguments)
|
|
18591
|
+
},{"../service":99,"dup":62,"http-status":330}],118:[function(require,module,exports){
|
|
18592
|
+
arguments[4][73][0].apply(exports,arguments)
|
|
18593
|
+
},{"../../factory":94,"../../service":99,"dup":73,"http-status":330}],119:[function(require,module,exports){
|
|
18492
18594
|
"use strict";
|
|
18493
18595
|
var __extends = (this && this.__extends) || (function () {
|
|
18494
18596
|
var extendStatics = function (d, b) {
|
|
@@ -18690,7 +18792,7 @@ var PlaceOrderTransactionService = /** @class */ (function (_super) {
|
|
|
18690
18792
|
}(service_1.Service));
|
|
18691
18793
|
exports.PlaceOrderTransactionService = PlaceOrderTransactionService;
|
|
18692
18794
|
|
|
18693
|
-
},{"../../factory":
|
|
18795
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],120:[function(require,module,exports){
|
|
18694
18796
|
"use strict";
|
|
18695
18797
|
var __extends = (this && this.__extends) || (function () {
|
|
18696
18798
|
var extendStatics = function (d, b) {
|
|
@@ -18989,7 +19091,7 @@ var ReturnOrderTransactionService = /** @class */ (function (_super) {
|
|
|
18989
19091
|
}(service_1.Service));
|
|
18990
19092
|
exports.ReturnOrderTransactionService = ReturnOrderTransactionService;
|
|
18991
19093
|
|
|
18992
|
-
},{"../../factory":
|
|
19094
|
+
},{"../../factory":94,"../../service":99,"http-status":330}],122:[function(require,module,exports){
|
|
18993
19095
|
"use strict";
|
|
18994
19096
|
var __extends = (this && this.__extends) || (function () {
|
|
18995
19097
|
var extendStatics = function (d, b) {
|
|
@@ -19379,7 +19481,7 @@ var RuleService = /** @class */ (function (_super) {
|
|
|
19379
19481
|
}(service_1.Service));
|
|
19380
19482
|
exports.RuleService = RuleService;
|
|
19381
19483
|
|
|
19382
|
-
},{"../service":
|
|
19484
|
+
},{"../service":99,"http-status":330}],125:[function(require,module,exports){
|
|
19383
19485
|
"use strict";
|
|
19384
19486
|
var __extends = (this && this.__extends) || (function () {
|
|
19385
19487
|
var extendStatics = function (d, b) {
|
|
@@ -19487,7 +19589,7 @@ var RuleSetService = /** @class */ (function (_super) {
|
|
|
19487
19589
|
}(service_1.Service));
|
|
19488
19590
|
exports.RuleSetService = RuleSetService;
|
|
19489
19591
|
|
|
19490
|
-
},{"../service":
|
|
19592
|
+
},{"../service":99,"http-status":330}],126:[function(require,module,exports){
|
|
19491
19593
|
"use strict";
|
|
19492
19594
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
19493
19595
|
/* istanbul ignore file */
|
|
@@ -20974,8 +21076,8 @@ var transaction;
|
|
|
20974
21076
|
exports.transactionType = transactionType_1.AccountTransactionType;
|
|
20975
21077
|
|
|
20976
21078
|
},{"./account/action/moneyTransfer":139,"./account/transaction/deposit":141,"./account/transaction/transfer":142,"./account/transaction/withdraw":143,"./account/transactionType":140}],137:[function(require,module,exports){
|
|
20977
|
-
arguments[4][
|
|
20978
|
-
},{"dup":
|
|
21079
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21080
|
+
},{"dup":72}],138:[function(require,module,exports){
|
|
20979
21081
|
"use strict";
|
|
20980
21082
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20981
21083
|
exports.AccountType = void 0;
|
|
@@ -20997,8 +21099,8 @@ var AccountType;
|
|
|
20997
21099
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
20998
21100
|
|
|
20999
21101
|
},{}],139:[function(require,module,exports){
|
|
21000
|
-
arguments[4][
|
|
21001
|
-
},{"dup":
|
|
21102
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21103
|
+
},{"dup":72}],140:[function(require,module,exports){
|
|
21002
21104
|
"use strict";
|
|
21003
21105
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21004
21106
|
exports.AccountTransactionType = void 0;
|
|
@@ -21022,12 +21124,12 @@ var AccountTransactionType;
|
|
|
21022
21124
|
})(AccountTransactionType = exports.AccountTransactionType || (exports.AccountTransactionType = {}));
|
|
21023
21125
|
|
|
21024
21126
|
},{}],141:[function(require,module,exports){
|
|
21025
|
-
arguments[4][
|
|
21026
|
-
},{"dup":
|
|
21027
|
-
arguments[4][
|
|
21028
|
-
},{"dup":
|
|
21029
|
-
arguments[4][
|
|
21030
|
-
},{"dup":
|
|
21127
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21128
|
+
},{"dup":72}],142:[function(require,module,exports){
|
|
21129
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21130
|
+
},{"dup":72}],143:[function(require,module,exports){
|
|
21131
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21132
|
+
},{"dup":72}],144:[function(require,module,exports){
|
|
21031
21133
|
"use strict";
|
|
21032
21134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21033
21135
|
exports.ActionStatusType = void 0;
|
|
@@ -21094,10 +21196,10 @@ var ObjectType;
|
|
|
21094
21196
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21095
21197
|
|
|
21096
21198
|
},{}],148:[function(require,module,exports){
|
|
21097
|
-
arguments[4][
|
|
21098
|
-
},{"dup":
|
|
21099
|
-
arguments[4][
|
|
21100
|
-
},{"dup":
|
|
21199
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21200
|
+
},{"dup":72}],149:[function(require,module,exports){
|
|
21201
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21202
|
+
},{"dup":72}],150:[function(require,module,exports){
|
|
21101
21203
|
"use strict";
|
|
21102
21204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21103
21205
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -21112,10 +21214,10 @@ var ServiceIdentifier;
|
|
|
21112
21214
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
21113
21215
|
|
|
21114
21216
|
},{}],151:[function(require,module,exports){
|
|
21115
|
-
arguments[4][
|
|
21116
|
-
},{"dup":
|
|
21117
|
-
arguments[4][
|
|
21118
|
-
},{"dup":
|
|
21217
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21218
|
+
},{"dup":72}],152:[function(require,module,exports){
|
|
21219
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21220
|
+
},{"dup":72}],153:[function(require,module,exports){
|
|
21119
21221
|
"use strict";
|
|
21120
21222
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21121
21223
|
exports.ObjectType = void 0;
|
|
@@ -21125,28 +21227,28 @@ var ObjectType;
|
|
|
21125
21227
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
21126
21228
|
|
|
21127
21229
|
},{}],154:[function(require,module,exports){
|
|
21128
|
-
arguments[4][
|
|
21129
|
-
},{"dup":
|
|
21130
|
-
arguments[4][
|
|
21131
|
-
},{"dup":
|
|
21132
|
-
arguments[4][
|
|
21133
|
-
},{"dup":
|
|
21134
|
-
arguments[4][
|
|
21135
|
-
},{"dup":
|
|
21136
|
-
arguments[4][
|
|
21137
|
-
},{"dup":
|
|
21138
|
-
arguments[4][
|
|
21139
|
-
},{"dup":
|
|
21140
|
-
arguments[4][
|
|
21141
|
-
},{"dup":
|
|
21142
|
-
arguments[4][
|
|
21143
|
-
},{"dup":
|
|
21144
|
-
arguments[4][
|
|
21145
|
-
},{"dup":
|
|
21146
|
-
arguments[4][
|
|
21147
|
-
},{"dup":
|
|
21148
|
-
arguments[4][
|
|
21149
|
-
},{"dup":
|
|
21230
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21231
|
+
},{"dup":72}],155:[function(require,module,exports){
|
|
21232
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21233
|
+
},{"dup":72}],156:[function(require,module,exports){
|
|
21234
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21235
|
+
},{"dup":72}],157:[function(require,module,exports){
|
|
21236
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21237
|
+
},{"dup":72}],158:[function(require,module,exports){
|
|
21238
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21239
|
+
},{"dup":72}],159:[function(require,module,exports){
|
|
21240
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21241
|
+
},{"dup":72}],160:[function(require,module,exports){
|
|
21242
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21243
|
+
},{"dup":72}],161:[function(require,module,exports){
|
|
21244
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21245
|
+
},{"dup":72}],162:[function(require,module,exports){
|
|
21246
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21247
|
+
},{"dup":72}],163:[function(require,module,exports){
|
|
21248
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21249
|
+
},{"dup":72}],164:[function(require,module,exports){
|
|
21250
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21251
|
+
},{"dup":72}],165:[function(require,module,exports){
|
|
21150
21252
|
"use strict";
|
|
21151
21253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21152
21254
|
exports.ObjectType = void 0;
|
|
@@ -21154,26 +21256,26 @@ var point_1 = require("../../authorize/award/point");
|
|
|
21154
21256
|
exports.ObjectType = point_1.ObjectType;
|
|
21155
21257
|
|
|
21156
21258
|
},{"../../authorize/award/point":146}],166:[function(require,module,exports){
|
|
21157
|
-
arguments[4][
|
|
21158
|
-
},{"dup":
|
|
21159
|
-
arguments[4][
|
|
21160
|
-
},{"dup":
|
|
21161
|
-
arguments[4][
|
|
21162
|
-
},{"dup":
|
|
21163
|
-
arguments[4][
|
|
21164
|
-
},{"dup":
|
|
21165
|
-
arguments[4][
|
|
21166
|
-
},{"dup":
|
|
21167
|
-
arguments[4][
|
|
21168
|
-
},{"dup":
|
|
21169
|
-
arguments[4][
|
|
21170
|
-
},{"dup":
|
|
21171
|
-
arguments[4][
|
|
21172
|
-
},{"dup":
|
|
21173
|
-
arguments[4][
|
|
21174
|
-
},{"dup":
|
|
21175
|
-
arguments[4][
|
|
21176
|
-
},{"dup":
|
|
21259
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21260
|
+
},{"dup":72}],167:[function(require,module,exports){
|
|
21261
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21262
|
+
},{"dup":72}],168:[function(require,module,exports){
|
|
21263
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21264
|
+
},{"dup":72}],169:[function(require,module,exports){
|
|
21265
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21266
|
+
},{"dup":72}],170:[function(require,module,exports){
|
|
21267
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21268
|
+
},{"dup":72}],171:[function(require,module,exports){
|
|
21269
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21270
|
+
},{"dup":72}],172:[function(require,module,exports){
|
|
21271
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21272
|
+
},{"dup":72}],173:[function(require,module,exports){
|
|
21273
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21274
|
+
},{"dup":72}],174:[function(require,module,exports){
|
|
21275
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21276
|
+
},{"dup":72}],175:[function(require,module,exports){
|
|
21277
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21278
|
+
},{"dup":72}],176:[function(require,module,exports){
|
|
21177
21279
|
"use strict";
|
|
21178
21280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21179
21281
|
exports.AssetTransactionType = void 0;
|
|
@@ -21211,20 +21313,20 @@ var AssetTransactionType;
|
|
|
21211
21313
|
})(AssetTransactionType = exports.AssetTransactionType || (exports.AssetTransactionType = {}));
|
|
21212
21314
|
|
|
21213
21315
|
},{}],177:[function(require,module,exports){
|
|
21214
|
-
arguments[4][
|
|
21215
|
-
},{"dup":
|
|
21216
|
-
arguments[4][
|
|
21217
|
-
},{"dup":
|
|
21218
|
-
arguments[4][
|
|
21219
|
-
},{"dup":
|
|
21220
|
-
arguments[4][
|
|
21221
|
-
},{"dup":
|
|
21222
|
-
arguments[4][
|
|
21223
|
-
},{"dup":
|
|
21224
|
-
arguments[4][
|
|
21225
|
-
},{"dup":
|
|
21226
|
-
arguments[4][
|
|
21227
|
-
},{"dup":
|
|
21316
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21317
|
+
},{"dup":72}],178:[function(require,module,exports){
|
|
21318
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21319
|
+
},{"dup":72}],179:[function(require,module,exports){
|
|
21320
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21321
|
+
},{"dup":72}],180:[function(require,module,exports){
|
|
21322
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21323
|
+
},{"dup":72}],181:[function(require,module,exports){
|
|
21324
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21325
|
+
},{"dup":72}],182:[function(require,module,exports){
|
|
21326
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21327
|
+
},{"dup":72}],183:[function(require,module,exports){
|
|
21328
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21329
|
+
},{"dup":72}],184:[function(require,module,exports){
|
|
21228
21330
|
"use strict";
|
|
21229
21331
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21230
21332
|
exports.CategorySetIdentifier = void 0;
|
|
@@ -21289,8 +21391,8 @@ var CategorySetIdentifier;
|
|
|
21289
21391
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21290
21392
|
|
|
21291
21393
|
},{}],186:[function(require,module,exports){
|
|
21292
|
-
arguments[4][
|
|
21293
|
-
},{"dup":
|
|
21394
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21395
|
+
},{"dup":72}],187:[function(require,module,exports){
|
|
21294
21396
|
"use strict";
|
|
21295
21397
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21296
21398
|
exports.CreativeWorkType = void 0;
|
|
@@ -21307,8 +21409,8 @@ var CreativeWorkType;
|
|
|
21307
21409
|
})(CreativeWorkType = exports.CreativeWorkType || (exports.CreativeWorkType = {}));
|
|
21308
21410
|
|
|
21309
21411
|
},{}],188:[function(require,module,exports){
|
|
21310
|
-
arguments[4][
|
|
21311
|
-
},{"dup":
|
|
21412
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21413
|
+
},{"dup":72}],189:[function(require,module,exports){
|
|
21312
21414
|
"use strict";
|
|
21313
21415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21314
21416
|
exports.AboutIdentifier = void 0;
|
|
@@ -21321,14 +21423,14 @@ var AboutIdentifier;
|
|
|
21321
21423
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
21322
21424
|
|
|
21323
21425
|
},{}],190:[function(require,module,exports){
|
|
21324
|
-
arguments[4][
|
|
21325
|
-
},{"dup":
|
|
21326
|
-
arguments[4][
|
|
21327
|
-
},{"dup":
|
|
21328
|
-
arguments[4][
|
|
21329
|
-
},{"dup":
|
|
21330
|
-
arguments[4][
|
|
21331
|
-
},{"dup":
|
|
21426
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21427
|
+
},{"dup":72}],191:[function(require,module,exports){
|
|
21428
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21429
|
+
},{"dup":72}],192:[function(require,module,exports){
|
|
21430
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21431
|
+
},{"dup":72}],193:[function(require,module,exports){
|
|
21432
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
21433
|
+
},{"dup":72}],194:[function(require,module,exports){
|
|
21332
21434
|
"use strict";
|
|
21333
21435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21334
21436
|
exports.Video = exports.Text = exports.Multipart = exports.Model = exports.Message = exports.Image = exports.Example = exports.Font = exports.Audio = exports.Application = void 0;
|
|
@@ -21936,12 +22038,12 @@ var EventType;
|
|
|
21936
22038
|
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
21937
22039
|
|
|
21938
22040
|
},{}],210:[function(require,module,exports){
|
|
21939
|
-
arguments[4][
|
|
21940
|
-
},{"dup":
|
|
21941
|
-
arguments[4][
|
|
21942
|
-
},{"dup":
|
|
21943
|
-
arguments[4][
|
|
21944
|
-
},{"dup":
|
|
22041
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22042
|
+
},{"dup":72}],211:[function(require,module,exports){
|
|
22043
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22044
|
+
},{"dup":72}],212:[function(require,module,exports){
|
|
22045
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22046
|
+
},{"dup":72}],213:[function(require,module,exports){
|
|
21945
22047
|
"use strict";
|
|
21946
22048
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21947
22049
|
exports.RoleType = void 0;
|
|
@@ -22387,8 +22489,8 @@ exports.unitCode = unitCode_1.UnitCode;
|
|
|
22387
22489
|
exports.unitPriceOffer = UnitPriceOfferFactory;
|
|
22388
22490
|
|
|
22389
22491
|
},{"./account":136,"./accountTitle":137,"./accountType":138,"./action/authorize/award/point":146,"./action/authorize/offer/eventService":147,"./action/authorize/offer/moneyTransfer":148,"./action/authorize/offer/product":149,"./action/authorize/paymentMethod/any":150,"./action/cancel/reservation":151,"./action/check/paymentMethod/movieTicket":152,"./action/check/token":153,"./action/consume/use/reservation":154,"./action/interact/confirm/moneyTransfer":155,"./action/interact/confirm/pay":156,"./action/interact/confirm/registerService":157,"./action/interact/confirm/reservation":158,"./action/interact/inform":159,"./action/interact/register/service":160,"./action/reserve":161,"./action/trade/order":162,"./action/trade/pay":163,"./action/trade/refund":164,"./action/transfer/give/pointAward":165,"./action/transfer/moneyTransfer":166,"./action/transfer/return/moneyTransfer":167,"./action/transfer/return/order":168,"./action/transfer/return/paymentMethod":169,"./action/transfer/return/pointAward":170,"./action/transfer/return/reserveTransaction":171,"./action/transfer/send/message/email":172,"./action/transfer/send/order":173,"./action/update/delete/member":174,"./actionStatusType":144,"./actionType":145,"./additionalProperty":175,"./assetTransaction/cancelReservation":177,"./assetTransaction/moneyTransfer":178,"./assetTransaction/pay":179,"./assetTransaction/refund":180,"./assetTransaction/registerService":181,"./assetTransaction/reserve":182,"./assetTransactionType":176,"./authorization":183,"./categoryCode":184,"./clientUser":185,"./cognito":186,"./creativeWork/comment":188,"./creativeWork/message/email":189,"./creativeWork/movie":190,"./creativeWork/noteDigitalDocument":191,"./creativeWork/softwareApplication/webApplication":192,"./creativeWorkType":187,"./customer":193,"./encodingFormat":194,"./errorCode":195,"./errors":207,"./event/anyEvent":210,"./event/screeningEvent":211,"./event/screeningEventSeries":212,"./eventStatusType":208,"./eventType":209,"./iam":213,"./invoice":215,"./itemAvailability":216,"./language":217,"./merchantReturnPolicy":218,"./monetaryAmount":219,"./offer":220,"./offer/aggregateOffer":224,"./offerCatalog":221,"./offerItemCondition":222,"./offerType":223,"./order":225,"./orderStatus":226,"./organization":227,"./organizationType":228,"./ownershipInfo":229,"./paymentMethod/paymentCard/creditCard":230,"./paymentMethod/paymentCard/movieTicket":231,"./paymentStatusType":232,"./permit":233,"./person":234,"./personType":235,"./place/busStop":237,"./place/movieTheater":238,"./place/screeningRoom":239,"./place/screeningRoomSection":240,"./place/seat":241,"./placeType":236,"./priceCurrency":242,"./priceSpecification/unitPriceSpecification":244,"./priceSpecificationType":243,"./product":245,"./programMembership":246,"./project":247,"./propertyValue":248,"./propertyValue/locationFeatureSpecification":249,"./qualitativeValue":250,"./quantitativeValue":251,"./report/accountingReport":252,"./reservation/busReservation":255,"./reservation/event":256,"./reservationStatusType":253,"./reservationType":254,"./seller":257,"./service/paymentService":258,"./service/webAPI":259,"./sortType":260,"./task/accountMoneyTransfer":263,"./task/aggregateScreeningEvent":264,"./task/aggregateUseActionsOnEvent":265,"./task/cancelAccountMoneyTransfer":266,"./task/cancelMoneyTransfer":267,"./task/cancelPendingReservation":268,"./task/cancelReservation":269,"./task/confirmReserveTransaction":270,"./task/createAccountingReport":271,"./task/createEvent":272,"./task/deleteTransaction":273,"./task/importEventCapacitiesFromCOA":274,"./task/importEventsFromCOA":275,"./task/importOffersFromCOA":276,"./task/moneyTransfer":277,"./task/onAuthorizationCreated":278,"./task/onEventChanged":279,"./task/onResourceUpdated":280,"./task/pay":281,"./task/refund":282,"./task/registerService":283,"./task/reserve":284,"./task/sendEmailMessage":285,"./task/triggerWebhook":286,"./task/useReservation":287,"./task/voidPayment":288,"./taskName":261,"./taskStatus":262,"./thing":289,"./transaction/moneyTransfer":293,"./transaction/placeOrder":294,"./transaction/returnOrder":295,"./transactionStatusType":290,"./transactionTasksExportationStatus":291,"./transactionType":292,"./trip/busTrip":297,"./tripType":296,"./unitCode":298,"./unitPriceOffer":299,"@waiter/factory":315}],215:[function(require,module,exports){
|
|
22390
|
-
arguments[4][
|
|
22391
|
-
},{"dup":
|
|
22492
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22493
|
+
},{"dup":72}],216:[function(require,module,exports){
|
|
22392
22494
|
"use strict";
|
|
22393
22495
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22394
22496
|
exports.ItemAvailability = void 0;
|
|
@@ -22409,8 +22511,8 @@ var ItemAvailability;
|
|
|
22409
22511
|
})(ItemAvailability = exports.ItemAvailability || (exports.ItemAvailability = {}));
|
|
22410
22512
|
|
|
22411
22513
|
},{}],217:[function(require,module,exports){
|
|
22412
|
-
arguments[4][
|
|
22413
|
-
},{"dup":
|
|
22514
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22515
|
+
},{"dup":72}],218:[function(require,module,exports){
|
|
22414
22516
|
"use strict";
|
|
22415
22517
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22416
22518
|
exports.MerchantReturnEnumeration = exports.ReturnFeesEnumeration = exports.RefundTypeEnumeration = void 0;
|
|
@@ -22462,14 +22564,14 @@ var MerchantReturnEnumeration;
|
|
|
22462
22564
|
})(MerchantReturnEnumeration = exports.MerchantReturnEnumeration || (exports.MerchantReturnEnumeration = {}));
|
|
22463
22565
|
|
|
22464
22566
|
},{}],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":
|
|
22567
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22568
|
+
},{"dup":72}],220:[function(require,module,exports){
|
|
22569
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22570
|
+
},{"dup":72}],221:[function(require,module,exports){
|
|
22571
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22572
|
+
},{"dup":72}],222:[function(require,module,exports){
|
|
22573
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22574
|
+
},{"dup":72}],223:[function(require,module,exports){
|
|
22473
22575
|
"use strict";
|
|
22474
22576
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22475
22577
|
exports.OfferType = void 0;
|
|
@@ -22483,8 +22585,8 @@ var OfferType;
|
|
|
22483
22585
|
})(OfferType = exports.OfferType || (exports.OfferType = {}));
|
|
22484
22586
|
|
|
22485
22587
|
},{}],224:[function(require,module,exports){
|
|
22486
|
-
arguments[4][
|
|
22487
|
-
},{"dup":
|
|
22588
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22589
|
+
},{"dup":72}],225:[function(require,module,exports){
|
|
22488
22590
|
"use strict";
|
|
22489
22591
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22490
22592
|
exports.OrderType = void 0;
|
|
@@ -22513,8 +22615,8 @@ var OrderStatus;
|
|
|
22513
22615
|
})(OrderStatus = exports.OrderStatus || (exports.OrderStatus = {}));
|
|
22514
22616
|
|
|
22515
22617
|
},{}],227:[function(require,module,exports){
|
|
22516
|
-
arguments[4][
|
|
22517
|
-
},{"dup":
|
|
22618
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22619
|
+
},{"dup":72}],228:[function(require,module,exports){
|
|
22518
22620
|
"use strict";
|
|
22519
22621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22520
22622
|
exports.OrganizationType = void 0;
|
|
@@ -22540,12 +22642,12 @@ var OrganizationType;
|
|
|
22540
22642
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
22541
22643
|
|
|
22542
22644
|
},{}],229:[function(require,module,exports){
|
|
22543
|
-
arguments[4][
|
|
22544
|
-
},{"dup":
|
|
22545
|
-
arguments[4][
|
|
22546
|
-
},{"dup":
|
|
22547
|
-
arguments[4][
|
|
22548
|
-
},{"dup":
|
|
22645
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22646
|
+
},{"dup":72}],230:[function(require,module,exports){
|
|
22647
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22648
|
+
},{"dup":72}],231:[function(require,module,exports){
|
|
22649
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22650
|
+
},{"dup":72}],232:[function(require,module,exports){
|
|
22549
22651
|
"use strict";
|
|
22550
22652
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22551
22653
|
exports.PaymentStatusType = void 0;
|
|
@@ -22571,8 +22673,8 @@ var PermitType;
|
|
|
22571
22673
|
})(PermitType = exports.PermitType || (exports.PermitType = {}));
|
|
22572
22674
|
|
|
22573
22675
|
},{}],234:[function(require,module,exports){
|
|
22574
|
-
arguments[4][
|
|
22575
|
-
},{"dup":
|
|
22676
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22677
|
+
},{"dup":72}],235:[function(require,module,exports){
|
|
22576
22678
|
"use strict";
|
|
22577
22679
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22578
22680
|
exports.PersonType = void 0;
|
|
@@ -22603,16 +22705,16 @@ var PlaceType;
|
|
|
22603
22705
|
})(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
|
|
22604
22706
|
|
|
22605
22707
|
},{}],237:[function(require,module,exports){
|
|
22606
|
-
arguments[4][
|
|
22607
|
-
},{"dup":
|
|
22608
|
-
arguments[4][
|
|
22609
|
-
},{"dup":
|
|
22610
|
-
arguments[4][
|
|
22611
|
-
},{"dup":
|
|
22612
|
-
arguments[4][
|
|
22613
|
-
},{"dup":
|
|
22614
|
-
arguments[4][
|
|
22615
|
-
},{"dup":
|
|
22708
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22709
|
+
},{"dup":72}],238:[function(require,module,exports){
|
|
22710
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22711
|
+
},{"dup":72}],239:[function(require,module,exports){
|
|
22712
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22713
|
+
},{"dup":72}],240:[function(require,module,exports){
|
|
22714
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22715
|
+
},{"dup":72}],241:[function(require,module,exports){
|
|
22716
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22717
|
+
},{"dup":72}],242:[function(require,module,exports){
|
|
22616
22718
|
"use strict";
|
|
22617
22719
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22618
22720
|
exports.PriceCurrency = void 0;
|
|
@@ -22658,8 +22760,8 @@ var PriceSpecificationType;
|
|
|
22658
22760
|
})(PriceSpecificationType = exports.PriceSpecificationType || (exports.PriceSpecificationType = {}));
|
|
22659
22761
|
|
|
22660
22762
|
},{}],244:[function(require,module,exports){
|
|
22661
|
-
arguments[4][
|
|
22662
|
-
},{"dup":
|
|
22763
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22764
|
+
},{"dup":72}],245:[function(require,module,exports){
|
|
22663
22765
|
"use strict";
|
|
22664
22766
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22665
22767
|
exports.ProductType = void 0;
|
|
@@ -22700,8 +22802,8 @@ var ProgramMembershipType;
|
|
|
22700
22802
|
})(ProgramMembershipType = exports.ProgramMembershipType || (exports.ProgramMembershipType = {}));
|
|
22701
22803
|
|
|
22702
22804
|
},{}],247:[function(require,module,exports){
|
|
22703
|
-
arguments[4][
|
|
22704
|
-
},{"dup":
|
|
22805
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22806
|
+
},{"dup":72}],248:[function(require,module,exports){
|
|
22705
22807
|
"use strict";
|
|
22706
22808
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22707
22809
|
exports.PropertyValueType = void 0;
|
|
@@ -22711,10 +22813,10 @@ var PropertyValueType;
|
|
|
22711
22813
|
})(PropertyValueType = exports.PropertyValueType || (exports.PropertyValueType = {}));
|
|
22712
22814
|
|
|
22713
22815
|
},{}],249:[function(require,module,exports){
|
|
22714
|
-
arguments[4][
|
|
22715
|
-
},{"dup":
|
|
22716
|
-
arguments[4][
|
|
22717
|
-
},{"dup":
|
|
22816
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22817
|
+
},{"dup":72}],250:[function(require,module,exports){
|
|
22818
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22819
|
+
},{"dup":72}],251:[function(require,module,exports){
|
|
22718
22820
|
"use strict";
|
|
22719
22821
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22720
22822
|
exports.StringValue = void 0;
|
|
@@ -22724,8 +22826,8 @@ var StringValue;
|
|
|
22724
22826
|
})(StringValue = exports.StringValue || (exports.StringValue = {}));
|
|
22725
22827
|
|
|
22726
22828
|
},{}],252:[function(require,module,exports){
|
|
22727
|
-
arguments[4][
|
|
22728
|
-
},{"dup":
|
|
22829
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22830
|
+
},{"dup":72}],253:[function(require,module,exports){
|
|
22729
22831
|
"use strict";
|
|
22730
22832
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22731
22833
|
exports.ReservationStatusType = void 0;
|
|
@@ -22767,12 +22869,12 @@ var ReservationType;
|
|
|
22767
22869
|
})(ReservationType = exports.ReservationType || (exports.ReservationType = {}));
|
|
22768
22870
|
|
|
22769
22871
|
},{}],255:[function(require,module,exports){
|
|
22770
|
-
arguments[4][
|
|
22771
|
-
},{"dup":
|
|
22772
|
-
arguments[4][
|
|
22773
|
-
},{"dup":
|
|
22774
|
-
arguments[4][
|
|
22775
|
-
},{"dup":
|
|
22872
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22873
|
+
},{"dup":72}],256:[function(require,module,exports){
|
|
22874
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22875
|
+
},{"dup":72}],257:[function(require,module,exports){
|
|
22876
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
22877
|
+
},{"dup":72}],258:[function(require,module,exports){
|
|
22776
22878
|
"use strict";
|
|
22777
22879
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22778
22880
|
exports.PaymentServiceType = void 0;
|
|
@@ -22960,26 +23062,26 @@ var TaskStatus;
|
|
|
22960
23062
|
})(TaskStatus = exports.TaskStatus || (exports.TaskStatus = {}));
|
|
22961
23063
|
|
|
22962
23064
|
},{}],263:[function(require,module,exports){
|
|
22963
|
-
arguments[4][
|
|
22964
|
-
},{"dup":
|
|
22965
|
-
arguments[4][
|
|
22966
|
-
},{"dup":
|
|
22967
|
-
arguments[4][
|
|
22968
|
-
},{"dup":
|
|
22969
|
-
arguments[4][
|
|
22970
|
-
},{"dup":
|
|
22971
|
-
arguments[4][
|
|
22972
|
-
},{"dup":
|
|
22973
|
-
arguments[4][
|
|
22974
|
-
},{"dup":
|
|
22975
|
-
arguments[4][
|
|
22976
|
-
},{"dup":
|
|
22977
|
-
arguments[4][
|
|
22978
|
-
},{"dup":
|
|
22979
|
-
arguments[4][
|
|
22980
|
-
},{"dup":
|
|
22981
|
-
arguments[4][
|
|
22982
|
-
},{"dup":
|
|
23065
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23066
|
+
},{"dup":72}],264:[function(require,module,exports){
|
|
23067
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23068
|
+
},{"dup":72}],265:[function(require,module,exports){
|
|
23069
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23070
|
+
},{"dup":72}],266:[function(require,module,exports){
|
|
23071
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23072
|
+
},{"dup":72}],267:[function(require,module,exports){
|
|
23073
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23074
|
+
},{"dup":72}],268:[function(require,module,exports){
|
|
23075
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23076
|
+
},{"dup":72}],269:[function(require,module,exports){
|
|
23077
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23078
|
+
},{"dup":72}],270:[function(require,module,exports){
|
|
23079
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23080
|
+
},{"dup":72}],271:[function(require,module,exports){
|
|
23081
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23082
|
+
},{"dup":72}],272:[function(require,module,exports){
|
|
23083
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23084
|
+
},{"dup":72}],273:[function(require,module,exports){
|
|
22983
23085
|
"use strict";
|
|
22984
23086
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22985
23087
|
exports.SpecifyingMethod = void 0;
|
|
@@ -22993,38 +23095,38 @@ var SpecifyingMethod;
|
|
|
22993
23095
|
})(SpecifyingMethod = exports.SpecifyingMethod || (exports.SpecifyingMethod = {}));
|
|
22994
23096
|
|
|
22995
23097
|
},{}],274:[function(require,module,exports){
|
|
22996
|
-
arguments[4][
|
|
22997
|
-
},{"dup":
|
|
22998
|
-
arguments[4][
|
|
22999
|
-
},{"dup":
|
|
23000
|
-
arguments[4][
|
|
23001
|
-
},{"dup":
|
|
23002
|
-
arguments[4][
|
|
23003
|
-
},{"dup":
|
|
23004
|
-
arguments[4][
|
|
23005
|
-
},{"dup":
|
|
23006
|
-
arguments[4][
|
|
23007
|
-
},{"dup":
|
|
23008
|
-
arguments[4][
|
|
23009
|
-
},{"dup":
|
|
23010
|
-
arguments[4][
|
|
23011
|
-
},{"dup":
|
|
23012
|
-
arguments[4][
|
|
23013
|
-
},{"dup":
|
|
23014
|
-
arguments[4][
|
|
23015
|
-
},{"dup":
|
|
23016
|
-
arguments[4][
|
|
23017
|
-
},{"dup":
|
|
23018
|
-
arguments[4][
|
|
23019
|
-
},{"dup":
|
|
23020
|
-
arguments[4][
|
|
23021
|
-
},{"dup":
|
|
23022
|
-
arguments[4][
|
|
23023
|
-
},{"dup":
|
|
23024
|
-
arguments[4][
|
|
23025
|
-
},{"dup":
|
|
23026
|
-
arguments[4][
|
|
23027
|
-
},{"dup":
|
|
23098
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23099
|
+
},{"dup":72}],275:[function(require,module,exports){
|
|
23100
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23101
|
+
},{"dup":72}],276:[function(require,module,exports){
|
|
23102
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23103
|
+
},{"dup":72}],277:[function(require,module,exports){
|
|
23104
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23105
|
+
},{"dup":72}],278:[function(require,module,exports){
|
|
23106
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23107
|
+
},{"dup":72}],279:[function(require,module,exports){
|
|
23108
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23109
|
+
},{"dup":72}],280:[function(require,module,exports){
|
|
23110
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23111
|
+
},{"dup":72}],281:[function(require,module,exports){
|
|
23112
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23113
|
+
},{"dup":72}],282:[function(require,module,exports){
|
|
23114
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23115
|
+
},{"dup":72}],283:[function(require,module,exports){
|
|
23116
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23117
|
+
},{"dup":72}],284:[function(require,module,exports){
|
|
23118
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23119
|
+
},{"dup":72}],285:[function(require,module,exports){
|
|
23120
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23121
|
+
},{"dup":72}],286:[function(require,module,exports){
|
|
23122
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23123
|
+
},{"dup":72}],287:[function(require,module,exports){
|
|
23124
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23125
|
+
},{"dup":72}],288:[function(require,module,exports){
|
|
23126
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23127
|
+
},{"dup":72}],289:[function(require,module,exports){
|
|
23128
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23129
|
+
},{"dup":72}],290:[function(require,module,exports){
|
|
23028
23130
|
"use strict";
|
|
23029
23131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23030
23132
|
exports.TransactionStatusType = void 0;
|
|
@@ -23086,10 +23188,10 @@ var TransactionType;
|
|
|
23086
23188
|
})(TransactionType = exports.TransactionType || (exports.TransactionType = {}));
|
|
23087
23189
|
|
|
23088
23190
|
},{}],293:[function(require,module,exports){
|
|
23089
|
-
arguments[4][
|
|
23090
|
-
},{"dup":
|
|
23091
|
-
arguments[4][
|
|
23092
|
-
},{"dup":
|
|
23191
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23192
|
+
},{"dup":72}],294:[function(require,module,exports){
|
|
23193
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23194
|
+
},{"dup":72}],295:[function(require,module,exports){
|
|
23093
23195
|
"use strict";
|
|
23094
23196
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23095
23197
|
exports.Reason = void 0;
|
|
@@ -23122,8 +23224,8 @@ var TripType;
|
|
|
23122
23224
|
})(TripType = exports.TripType || (exports.TripType = {}));
|
|
23123
23225
|
|
|
23124
23226
|
},{}],297:[function(require,module,exports){
|
|
23125
|
-
arguments[4][
|
|
23126
|
-
},{"dup":
|
|
23227
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23228
|
+
},{"dup":72}],298:[function(require,module,exports){
|
|
23127
23229
|
"use strict";
|
|
23128
23230
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23129
23231
|
exports.UnitCode = void 0;
|
|
@@ -23151,10 +23253,10 @@ var UnitCode;
|
|
|
23151
23253
|
})(UnitCode = exports.UnitCode || (exports.UnitCode = {}));
|
|
23152
23254
|
|
|
23153
23255
|
},{}],299:[function(require,module,exports){
|
|
23154
|
-
arguments[4][
|
|
23155
|
-
},{"dup":
|
|
23156
|
-
arguments[4][
|
|
23157
|
-
},{"dup":
|
|
23256
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23257
|
+
},{"dup":72}],300:[function(require,module,exports){
|
|
23258
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23259
|
+
},{"dup":72}],301:[function(require,module,exports){
|
|
23158
23260
|
"use strict";
|
|
23159
23261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23160
23262
|
/**
|
|
@@ -23513,14 +23615,14 @@ var waiter_1 = require("./error/waiter");
|
|
|
23513
23615
|
exports.Waiter = waiter_1.WaiterError;
|
|
23514
23616
|
|
|
23515
23617
|
},{"./error/argument":302,"./error/argumentNull":303,"./error/forbidden":304,"./error/notFound":305,"./error/rateLimitExceeded":306,"./error/serviceUnavailable":307,"./error/unauthorized":308,"./error/waiter":309}],311:[function(require,module,exports){
|
|
23516
|
-
arguments[4][
|
|
23517
|
-
},{"dup":
|
|
23518
|
-
arguments[4][
|
|
23519
|
-
},{"dup":
|
|
23520
|
-
arguments[4][
|
|
23521
|
-
},{"dup":
|
|
23522
|
-
arguments[4][
|
|
23523
|
-
},{"dup":
|
|
23618
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23619
|
+
},{"dup":72}],312:[function(require,module,exports){
|
|
23620
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23621
|
+
},{"dup":72}],313:[function(require,module,exports){
|
|
23622
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23623
|
+
},{"dup":72}],314:[function(require,module,exports){
|
|
23624
|
+
arguments[4][72][0].apply(exports,arguments)
|
|
23625
|
+
},{"dup":72}],315:[function(require,module,exports){
|
|
23524
23626
|
"use strict";
|
|
23525
23627
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23526
23628
|
/**
|