@cinerino/sdk 3.34.0-alpha.2 → 3.36.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 +45 -53
- package/example/src/chevre/findPerson.ts +33 -0
- package/example/src/st/person/searchCreditCards.ts +59 -0
- package/example/src/st/person/searchMemberships.ts +7 -2
- package/example/src/st/person/searchPaymentCards.ts +24 -2
- package/example/src/st/person/searchReservations.ts +13 -0
- package/example/src/st/searchScreeningRooms.ts +45 -0
- package/example/src/st/searchSellers.ts +45 -0
- package/example/src/transaction/processReturnOrder.ts +0 -19
- package/lib/auth/implicitGrantClient.js +1 -0
- package/lib/auth/oAuth2client.js +12 -20
- package/lib/bundle.js +322 -330
- package/package.json +2 -2
- package/CHANGELOG.md +0 -847
- package/example/.gitignore +0 -1
- package/example/playground/.gitignore +0 -15
package/lib/bundle.js
CHANGED
|
@@ -143,6 +143,7 @@ var ImplicitGrantClient = /** @class */ (function (_super) {
|
|
|
143
143
|
switch (_a.label) {
|
|
144
144
|
case 0:
|
|
145
145
|
if (!(this.credentials.accessToken === undefined)) return [3 /*break*/, 2];
|
|
146
|
+
if (!(typeof this.credentials.refreshToken === 'string' && this.credentials.refreshToken.length > 0)) return [3 /*break*/, 2];
|
|
146
147
|
return [4 /*yield*/, this.refreshAccessToken()];
|
|
147
148
|
case 1:
|
|
148
149
|
_a.sent();
|
|
@@ -1141,7 +1142,7 @@ var OAuth2client = /** @class */ (function () {
|
|
|
1141
1142
|
throw new Error('No access or refresh token is set.');
|
|
1142
1143
|
}
|
|
1143
1144
|
shouldRefresh = (this.credentials.access_token === undefined) || isTokenExpired;
|
|
1144
|
-
if (!(shouldRefresh && this.credentials.refresh_token
|
|
1145
|
+
if (!(shouldRefresh && typeof this.credentials.refresh_token === 'string' && this.credentials.refresh_token.length > 0)) return [3 /*break*/, 2];
|
|
1145
1146
|
return [4 /*yield*/, this.refreshAccessToken()];
|
|
1146
1147
|
case 1:
|
|
1147
1148
|
_a.sent();
|
|
@@ -1214,10 +1215,10 @@ var OAuth2client = /** @class */ (function () {
|
|
|
1214
1215
|
numberOfTry = 0;
|
|
1215
1216
|
_c.label = 1;
|
|
1216
1217
|
case 1:
|
|
1217
|
-
if (!(numberOfTry >= 0)) return [3 /*break*/,
|
|
1218
|
+
if (!(numberOfTry >= 0)) return [3 /*break*/, 10];
|
|
1218
1219
|
_c.label = 2;
|
|
1219
1220
|
case 2:
|
|
1220
|
-
_c.trys.push([2, 5, ,
|
|
1221
|
+
_c.trys.push([2, 5, , 9]);
|
|
1221
1222
|
numberOfTry += 1;
|
|
1222
1223
|
if (numberOfTry > 1) {
|
|
1223
1224
|
retry = false;
|
|
@@ -1230,29 +1231,21 @@ var OAuth2client = /** @class */ (function () {
|
|
|
1230
1231
|
return [4 /*yield*/, this.makeFetch(url, options, expectedStatusCodes)];
|
|
1231
1232
|
case 4:
|
|
1232
1233
|
result = _c.sent();
|
|
1233
|
-
return [3 /*break*/,
|
|
1234
|
+
return [3 /*break*/, 10];
|
|
1234
1235
|
case 5:
|
|
1235
1236
|
error_1 = _c.sent();
|
|
1236
|
-
if (!(error_1 instanceof Error)) return [3 /*break*/,
|
|
1237
|
+
if (!(error_1 instanceof Error)) return [3 /*break*/, 8];
|
|
1237
1238
|
statusCode = error_1.code;
|
|
1238
|
-
if (!(retry && (statusCode === http_status_1.UNAUTHORIZED || statusCode === http_status_1.FORBIDDEN))) return [3 /*break*/,
|
|
1239
|
-
|
|
1240
|
-
* to handle expiration-related failures. If refreshing the token
|
|
1241
|
-
* does not fix the failure, then refreshing again probably won't
|
|
1242
|
-
* help */
|
|
1243
|
-
// Force token refresh
|
|
1239
|
+
if (!(retry && (statusCode === http_status_1.UNAUTHORIZED || statusCode === http_status_1.FORBIDDEN))) return [3 /*break*/, 8];
|
|
1240
|
+
if (!(typeof this.credentials.refresh_token === 'string' && this.credentials.refresh_token.length > 0)) return [3 /*break*/, 7];
|
|
1244
1241
|
return [4 /*yield*/, this.refreshAccessToken()];
|
|
1245
1242
|
case 6:
|
|
1246
|
-
/* It only makes sense to retry once, because the retry is intended
|
|
1247
|
-
* to handle expiration-related failures. If refreshing the token
|
|
1248
|
-
* does not fix the failure, then refreshing again probably won't
|
|
1249
|
-
* help */
|
|
1250
|
-
// Force token refresh
|
|
1251
1243
|
_c.sent();
|
|
1252
|
-
|
|
1253
|
-
case 7:
|
|
1254
|
-
case 8:
|
|
1255
|
-
case 9: return [
|
|
1244
|
+
_c.label = 7;
|
|
1245
|
+
case 7: return [3 /*break*/, 1];
|
|
1246
|
+
case 8: throw error_1;
|
|
1247
|
+
case 9: return [3 /*break*/, 1];
|
|
1248
|
+
case 10: return [2 /*return*/, result];
|
|
1256
1249
|
}
|
|
1257
1250
|
});
|
|
1258
1251
|
});
|
|
@@ -1889,7 +1882,7 @@ exports.transactionTasksExportationStatus = transactionTasksExportationStatus_1.
|
|
|
1889
1882
|
exports.assetTransactionType = assetTransactionType_1.default;
|
|
1890
1883
|
exports.unitCode = unitCode_1.UnitCode;
|
|
1891
1884
|
|
|
1892
|
-
},{"./cognito":14,"./factory/account":15,"./factory/accountStatusType":
|
|
1885
|
+
},{"./cognito":14,"./factory/account":15,"./factory/accountStatusType":21,"./factory/accountTitle":22,"./factory/accountType":23,"./factory/action/authorize/award/point":24,"./factory/action/authorize/offer/moneyTransfer":25,"./factory/action/authorize/offer/product":26,"./factory/action/authorize/offer/seatReservation":27,"./factory/action/authorize/paymentMethod/any":28,"./factory/action/cancel/reservation":29,"./factory/action/check/paymentMethod/movieTicket":30,"./factory/action/check/token":31,"./factory/action/consume/use/reservation":32,"./factory/action/interact/confirm/moneyTransfer":33,"./factory/action/interact/confirm/pay":34,"./factory/action/interact/confirm/registerService":35,"./factory/action/interact/confirm/reservation":36,"./factory/action/interact/inform":37,"./factory/action/interact/register/programMembership":38,"./factory/action/interact/register/service":39,"./factory/action/interact/unRegister/programMembership":40,"./factory/action/reserve":41,"./factory/action/trade/order":42,"./factory/action/trade/pay":43,"./factory/action/trade/refund":44,"./factory/action/transfer/give/pointAward":45,"./factory/action/transfer/moneyTransfer":46,"./factory/action/transfer/print/ticket":47,"./factory/action/transfer/return/moneyTransfer":48,"./factory/action/transfer/return/order":49,"./factory/action/transfer/return/paymentMethod":50,"./factory/action/transfer/return/pointAward":51,"./factory/action/transfer/return/reservation":52,"./factory/action/transfer/send/message/email":53,"./factory/action/transfer/send/order":54,"./factory/action/update/delete/member":55,"./factory/actionStatusType":56,"./factory/actionType":57,"./factory/assetTransaction/cancelReservation":58,"./factory/assetTransaction/moneyTransfer":59,"./factory/assetTransaction/pay":60,"./factory/assetTransaction/refund":61,"./factory/assetTransaction/registerService":62,"./factory/assetTransaction/reserve":63,"./factory/assetTransactionType":64,"./factory/authorization":65,"./factory/categoryCode":66,"./factory/clientUser":67,"./factory/creativeWork/message/email":68,"./factory/creativeWork/movie":69,"./factory/creativeWork/softwareApplication/webApplication":70,"./factory/creativeWorkType":71,"./factory/customer":72,"./factory/encodingFormat":73,"./factory/errorCode":85,"./factory/errors":86,"./factory/event/screeningEvent":87,"./factory/event/screeningEventSeries":88,"./factory/eventStatusType":89,"./factory/eventType":90,"./factory/iam":91,"./factory/invoice":92,"./factory/itemAvailability":93,"./factory/language":94,"./factory/merchantReturnPolicy":95,"./factory/monetaryAmount":96,"./factory/offer":97,"./factory/offerCatalog":98,"./factory/offerType":99,"./factory/order":100,"./factory/orderStatus":101,"./factory/organization":102,"./factory/organizationType":103,"./factory/ownershipInfo":104,"./factory/paymentMethod/paymentCard/creditCard":105,"./factory/paymentMethod/paymentCard/movieTicket":106,"./factory/paymentStatusType":107,"./factory/permit":108,"./factory/person":109,"./factory/personType":110,"./factory/place/movieTheater":111,"./factory/place/screeningRoom":112,"./factory/place/screeningRoomSection":113,"./factory/place/seat":114,"./factory/placeType":115,"./factory/priceCurrency":116,"./factory/priceSpecificationType":117,"./factory/product":118,"./factory/programMembership":119,"./factory/project":120,"./factory/propertyValue":121,"./factory/qualitativeValue":122,"./factory/quantitativeValue":123,"./factory/report/accountingReport":124,"./factory/reservationStatusType":125,"./factory/reservationType":126,"./factory/seller":127,"./factory/service/paymentService":128,"./factory/service/webAPI":129,"./factory/serviceType":130,"./factory/sortType":131,"./factory/task/accountMoneyTransfer":132,"./factory/task/aggregateOnProject":133,"./factory/task/aggregateScreeningEvent":134,"./factory/task/aggregateUseActionsOnEvent":135,"./factory/task/cancelAccountMoneyTransfer":136,"./factory/task/cancelMoneyTransfer":137,"./factory/task/cancelPendingReservation":138,"./factory/task/cancelReservation":139,"./factory/task/confirmCancelReserve":140,"./factory/task/importEventCapacitiesFromCOA":141,"./factory/task/importEventsFromCOA":142,"./factory/task/importOffersFromCOA":143,"./factory/task/moneyTransfer":144,"./factory/task/orderProgramMembership":145,"./factory/task/pay":146,"./factory/task/refund":147,"./factory/task/registerService":148,"./factory/task/reserve":149,"./factory/task/sendEmailMessage":150,"./factory/task/triggerWebhook":151,"./factory/task/voidPayment":152,"./factory/taskName":153,"./factory/taskStatus":154,"./factory/thing":155,"./factory/transaction/moneyTransfer":156,"./factory/transaction/placeOrder":157,"./factory/transaction/returnOrder":158,"./factory/transactionStatusType":159,"./factory/transactionTasksExportationStatus":160,"./factory/transactionType":161,"./factory/unitCode":162,"@waiter/factory":257}],14:[function(require,module,exports){
|
|
1893
1886
|
"use strict";
|
|
1894
1887
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1895
1888
|
|
|
@@ -1914,7 +1907,38 @@ var transaction;
|
|
|
1914
1907
|
})(transaction = exports.transaction || (exports.transaction = {}));
|
|
1915
1908
|
exports.transactionType = transactionType_1.default;
|
|
1916
1909
|
|
|
1917
|
-
},{"./account/action/moneyTransfer":
|
|
1910
|
+
},{"./account/action/moneyTransfer":16,"./account/transaction/deposit":17,"./account/transaction/transfer":18,"./account/transaction/withdraw":19,"./account/transactionType":20}],16:[function(require,module,exports){
|
|
1911
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
1912
|
+
},{"dup":14}],17:[function(require,module,exports){
|
|
1913
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
1914
|
+
},{"dup":14}],18:[function(require,module,exports){
|
|
1915
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
1916
|
+
},{"dup":14}],19:[function(require,module,exports){
|
|
1917
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
1918
|
+
},{"dup":14}],20:[function(require,module,exports){
|
|
1919
|
+
"use strict";
|
|
1920
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1921
|
+
/**
|
|
1922
|
+
* 取引タイプ
|
|
1923
|
+
*/
|
|
1924
|
+
var TransactionType;
|
|
1925
|
+
(function (TransactionType) {
|
|
1926
|
+
/**
|
|
1927
|
+
* 出金取引
|
|
1928
|
+
*/
|
|
1929
|
+
TransactionType["Withdraw"] = "Withdraw";
|
|
1930
|
+
/**
|
|
1931
|
+
* 入金取引
|
|
1932
|
+
*/
|
|
1933
|
+
TransactionType["Deposit"] = "Deposit";
|
|
1934
|
+
/**
|
|
1935
|
+
* 転送取引
|
|
1936
|
+
*/
|
|
1937
|
+
TransactionType["Transfer"] = "Transfer";
|
|
1938
|
+
})(TransactionType || (TransactionType = {}));
|
|
1939
|
+
exports.default = TransactionType;
|
|
1940
|
+
|
|
1941
|
+
},{}],21:[function(require,module,exports){
|
|
1918
1942
|
"use strict";
|
|
1919
1943
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1920
1944
|
/**
|
|
@@ -1933,9 +1957,9 @@ var AccountStatusType;
|
|
|
1933
1957
|
})(AccountStatusType || (AccountStatusType = {}));
|
|
1934
1958
|
exports.default = AccountStatusType;
|
|
1935
1959
|
|
|
1936
|
-
},{}],
|
|
1960
|
+
},{}],22:[function(require,module,exports){
|
|
1937
1961
|
arguments[4][14][0].apply(exports,arguments)
|
|
1938
|
-
},{"dup":14}],
|
|
1962
|
+
},{"dup":14}],23:[function(require,module,exports){
|
|
1939
1963
|
"use strict";
|
|
1940
1964
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1941
1965
|
exports.AccountType = void 0;
|
|
@@ -1956,85 +1980,7 @@ var AccountType;
|
|
|
1956
1980
|
AccountType["Transactional"] = "Transactional";
|
|
1957
1981
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
1958
1982
|
|
|
1959
|
-
},{}],
|
|
1960
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
1961
|
-
},{"dup":14}],20:[function(require,module,exports){
|
|
1962
|
-
"use strict";
|
|
1963
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1964
|
-
/**
|
|
1965
|
-
* 取引タイプ
|
|
1966
|
-
*/
|
|
1967
|
-
var TransactionType;
|
|
1968
|
-
(function (TransactionType) {
|
|
1969
|
-
/**
|
|
1970
|
-
* 出金取引
|
|
1971
|
-
*/
|
|
1972
|
-
TransactionType["Withdraw"] = "Withdraw";
|
|
1973
|
-
/**
|
|
1974
|
-
* 入金取引
|
|
1975
|
-
*/
|
|
1976
|
-
TransactionType["Deposit"] = "Deposit";
|
|
1977
|
-
/**
|
|
1978
|
-
* 転送取引
|
|
1979
|
-
*/
|
|
1980
|
-
TransactionType["Transfer"] = "Transfer";
|
|
1981
|
-
})(TransactionType || (TransactionType = {}));
|
|
1982
|
-
exports.default = TransactionType;
|
|
1983
|
-
|
|
1984
|
-
},{}],21:[function(require,module,exports){
|
|
1985
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
1986
|
-
},{"dup":14}],22:[function(require,module,exports){
|
|
1987
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
1988
|
-
},{"dup":14}],23:[function(require,module,exports){
|
|
1989
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
1990
|
-
},{"dup":14}],24:[function(require,module,exports){
|
|
1991
|
-
"use strict";
|
|
1992
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1993
|
-
/**
|
|
1994
|
-
* アクションステータス
|
|
1995
|
-
*/
|
|
1996
|
-
var ActionStatusType;
|
|
1997
|
-
(function (ActionStatusType) {
|
|
1998
|
-
ActionStatusType["ActiveActionStatus"] = "ActiveActionStatus";
|
|
1999
|
-
ActionStatusType["CompletedActionStatus"] = "CompletedActionStatus";
|
|
2000
|
-
ActionStatusType["FailedActionStatus"] = "FailedActionStatus";
|
|
2001
|
-
ActionStatusType["PotentialActionStatus"] = "PotentialActionStatus";
|
|
2002
|
-
ActionStatusType["CanceledActionStatus"] = "CanceledActionStatus";
|
|
2003
|
-
})(ActionStatusType || (ActionStatusType = {}));
|
|
2004
|
-
exports.default = ActionStatusType;
|
|
2005
|
-
|
|
2006
|
-
},{}],25:[function(require,module,exports){
|
|
2007
|
-
"use strict";
|
|
2008
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2009
|
-
/**
|
|
2010
|
-
* アクションタイプ
|
|
2011
|
-
*/
|
|
2012
|
-
var ActionType;
|
|
2013
|
-
(function (ActionType) {
|
|
2014
|
-
ActionType["AuthorizeAction"] = "AuthorizeAction";
|
|
2015
|
-
ActionType["CancelAction"] = "CancelAction";
|
|
2016
|
-
ActionType["CheckAction"] = "CheckAction";
|
|
2017
|
-
ActionType["ConfirmAction"] = "ConfirmAction";
|
|
2018
|
-
ActionType["CreateAction"] = "CreateAction";
|
|
2019
|
-
ActionType["DeleteAction"] = "DeleteAction";
|
|
2020
|
-
ActionType["GiveAction"] = "GiveAction";
|
|
2021
|
-
ActionType["InformAction"] = "InformAction";
|
|
2022
|
-
ActionType["MoneyTransfer"] = "MoneyTransfer";
|
|
2023
|
-
ActionType["OrderAction"] = "OrderAction";
|
|
2024
|
-
ActionType["PayAction"] = "PayAction";
|
|
2025
|
-
ActionType["PrintAction"] = "PrintAction";
|
|
2026
|
-
ActionType["RefundAction"] = "RefundAction";
|
|
2027
|
-
ActionType["RegisterAction"] = "RegisterAction";
|
|
2028
|
-
ActionType["ReserveAction"] = "ReserveAction";
|
|
2029
|
-
ActionType["ReturnAction"] = "ReturnAction";
|
|
2030
|
-
ActionType["SendAction"] = "SendAction";
|
|
2031
|
-
ActionType["UnRegisterAction"] = "UnRegisterAction";
|
|
2032
|
-
ActionType["UpdateAction"] = "UpdateAction";
|
|
2033
|
-
ActionType["UseAction"] = "UseAction";
|
|
2034
|
-
})(ActionType || (ActionType = {}));
|
|
2035
|
-
exports.default = ActionType;
|
|
2036
|
-
|
|
2037
|
-
},{}],26:[function(require,module,exports){
|
|
1983
|
+
},{}],24:[function(require,module,exports){
|
|
2038
1984
|
"use strict";
|
|
2039
1985
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2040
1986
|
exports.ObjectType = void 0;
|
|
@@ -2043,11 +1989,11 @@ var ObjectType;
|
|
|
2043
1989
|
ObjectType["PointAward"] = "PointAward";
|
|
2044
1990
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
2045
1991
|
|
|
2046
|
-
},{}],
|
|
1992
|
+
},{}],25:[function(require,module,exports){
|
|
2047
1993
|
arguments[4][14][0].apply(exports,arguments)
|
|
2048
|
-
},{"dup":14}],
|
|
1994
|
+
},{"dup":14}],26:[function(require,module,exports){
|
|
2049
1995
|
arguments[4][14][0].apply(exports,arguments)
|
|
2050
|
-
},{"dup":14}],
|
|
1996
|
+
},{"dup":14}],27:[function(require,module,exports){
|
|
2051
1997
|
"use strict";
|
|
2052
1998
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2053
1999
|
exports.ObjectType = void 0;
|
|
@@ -2056,7 +2002,7 @@ var ObjectType;
|
|
|
2056
2002
|
ObjectType["SeatReservation"] = "SeatReservation";
|
|
2057
2003
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
2058
2004
|
|
|
2059
|
-
},{}],
|
|
2005
|
+
},{}],28:[function(require,module,exports){
|
|
2060
2006
|
"use strict";
|
|
2061
2007
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2062
2008
|
exports.ServiceIdentifier = exports.ResultType = void 0;
|
|
@@ -2071,17 +2017,17 @@ var ServiceIdentifier;
|
|
|
2071
2017
|
ServiceIdentifier["MovieTicket"] = "MovieTicket";
|
|
2072
2018
|
})(ServiceIdentifier = exports.ServiceIdentifier || (exports.ServiceIdentifier = {}));
|
|
2073
2019
|
|
|
2074
|
-
},{}],
|
|
2020
|
+
},{}],29:[function(require,module,exports){
|
|
2021
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2022
|
+
},{"dup":14}],30:[function(require,module,exports){
|
|
2023
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2024
|
+
},{"dup":14}],31:[function(require,module,exports){
|
|
2075
2025
|
arguments[4][14][0].apply(exports,arguments)
|
|
2076
2026
|
},{"dup":14}],32:[function(require,module,exports){
|
|
2077
2027
|
arguments[4][14][0].apply(exports,arguments)
|
|
2078
2028
|
},{"dup":14}],33:[function(require,module,exports){
|
|
2079
2029
|
arguments[4][14][0].apply(exports,arguments)
|
|
2080
2030
|
},{"dup":14}],34:[function(require,module,exports){
|
|
2081
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2082
|
-
},{"dup":14}],35:[function(require,module,exports){
|
|
2083
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2084
|
-
},{"dup":14}],36:[function(require,module,exports){
|
|
2085
2031
|
"use strict";
|
|
2086
2032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2087
2033
|
exports.ObjectType = void 0;
|
|
@@ -2090,7 +2036,11 @@ var ObjectType;
|
|
|
2090
2036
|
ObjectType["PaymentMethod"] = "PaymentMethod";
|
|
2091
2037
|
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
2092
2038
|
|
|
2093
|
-
},{}],
|
|
2039
|
+
},{}],35:[function(require,module,exports){
|
|
2040
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2041
|
+
},{"dup":14}],36:[function(require,module,exports){
|
|
2042
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2043
|
+
},{"dup":14}],37:[function(require,module,exports){
|
|
2094
2044
|
arguments[4][14][0].apply(exports,arguments)
|
|
2095
2045
|
},{"dup":14}],38:[function(require,module,exports){
|
|
2096
2046
|
arguments[4][14][0].apply(exports,arguments)
|
|
@@ -2107,17 +2057,17 @@ arguments[4][14][0].apply(exports,arguments)
|
|
|
2107
2057
|
},{"dup":14}],44:[function(require,module,exports){
|
|
2108
2058
|
arguments[4][14][0].apply(exports,arguments)
|
|
2109
2059
|
},{"dup":14}],45:[function(require,module,exports){
|
|
2110
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2111
|
-
},{"dup":14}],46:[function(require,module,exports){
|
|
2112
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2113
|
-
},{"dup":14}],47:[function(require,module,exports){
|
|
2114
2060
|
"use strict";
|
|
2115
2061
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2116
2062
|
exports.ObjectType = void 0;
|
|
2117
2063
|
var point_1 = require("../../authorize/award/point");
|
|
2118
2064
|
exports.ObjectType = point_1.ObjectType;
|
|
2119
2065
|
|
|
2120
|
-
},{"../../authorize/award/point":
|
|
2066
|
+
},{"../../authorize/award/point":24}],46:[function(require,module,exports){
|
|
2067
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2068
|
+
},{"dup":14}],47:[function(require,module,exports){
|
|
2069
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2070
|
+
},{"dup":14}],48:[function(require,module,exports){
|
|
2121
2071
|
arguments[4][14][0].apply(exports,arguments)
|
|
2122
2072
|
},{"dup":14}],49:[function(require,module,exports){
|
|
2123
2073
|
arguments[4][14][0].apply(exports,arguments)
|
|
@@ -2134,10 +2084,65 @@ arguments[4][14][0].apply(exports,arguments)
|
|
|
2134
2084
|
},{"dup":14}],55:[function(require,module,exports){
|
|
2135
2085
|
arguments[4][14][0].apply(exports,arguments)
|
|
2136
2086
|
},{"dup":14}],56:[function(require,module,exports){
|
|
2087
|
+
"use strict";
|
|
2088
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2089
|
+
/**
|
|
2090
|
+
* アクションステータス
|
|
2091
|
+
*/
|
|
2092
|
+
var ActionStatusType;
|
|
2093
|
+
(function (ActionStatusType) {
|
|
2094
|
+
ActionStatusType["ActiveActionStatus"] = "ActiveActionStatus";
|
|
2095
|
+
ActionStatusType["CompletedActionStatus"] = "CompletedActionStatus";
|
|
2096
|
+
ActionStatusType["FailedActionStatus"] = "FailedActionStatus";
|
|
2097
|
+
ActionStatusType["PotentialActionStatus"] = "PotentialActionStatus";
|
|
2098
|
+
ActionStatusType["CanceledActionStatus"] = "CanceledActionStatus";
|
|
2099
|
+
})(ActionStatusType || (ActionStatusType = {}));
|
|
2100
|
+
exports.default = ActionStatusType;
|
|
2101
|
+
|
|
2102
|
+
},{}],57:[function(require,module,exports){
|
|
2103
|
+
"use strict";
|
|
2104
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2105
|
+
/**
|
|
2106
|
+
* アクションタイプ
|
|
2107
|
+
*/
|
|
2108
|
+
var ActionType;
|
|
2109
|
+
(function (ActionType) {
|
|
2110
|
+
ActionType["AuthorizeAction"] = "AuthorizeAction";
|
|
2111
|
+
ActionType["CancelAction"] = "CancelAction";
|
|
2112
|
+
ActionType["CheckAction"] = "CheckAction";
|
|
2113
|
+
ActionType["ConfirmAction"] = "ConfirmAction";
|
|
2114
|
+
ActionType["CreateAction"] = "CreateAction";
|
|
2115
|
+
ActionType["DeleteAction"] = "DeleteAction";
|
|
2116
|
+
ActionType["GiveAction"] = "GiveAction";
|
|
2117
|
+
ActionType["InformAction"] = "InformAction";
|
|
2118
|
+
ActionType["MoneyTransfer"] = "MoneyTransfer";
|
|
2119
|
+
ActionType["OrderAction"] = "OrderAction";
|
|
2120
|
+
ActionType["PayAction"] = "PayAction";
|
|
2121
|
+
ActionType["PrintAction"] = "PrintAction";
|
|
2122
|
+
ActionType["RefundAction"] = "RefundAction";
|
|
2123
|
+
ActionType["RegisterAction"] = "RegisterAction";
|
|
2124
|
+
ActionType["ReserveAction"] = "ReserveAction";
|
|
2125
|
+
ActionType["ReturnAction"] = "ReturnAction";
|
|
2126
|
+
ActionType["SendAction"] = "SendAction";
|
|
2127
|
+
ActionType["UnRegisterAction"] = "UnRegisterAction";
|
|
2128
|
+
ActionType["UpdateAction"] = "UpdateAction";
|
|
2129
|
+
ActionType["UseAction"] = "UseAction";
|
|
2130
|
+
})(ActionType || (ActionType = {}));
|
|
2131
|
+
exports.default = ActionType;
|
|
2132
|
+
|
|
2133
|
+
},{}],58:[function(require,module,exports){
|
|
2134
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2135
|
+
},{"dup":14}],59:[function(require,module,exports){
|
|
2136
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2137
|
+
},{"dup":14}],60:[function(require,module,exports){
|
|
2137
2138
|
arguments[4][14][0].apply(exports,arguments)
|
|
2138
|
-
},{"dup":14}],
|
|
2139
|
+
},{"dup":14}],61:[function(require,module,exports){
|
|
2140
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2141
|
+
},{"dup":14}],62:[function(require,module,exports){
|
|
2139
2142
|
arguments[4][14][0].apply(exports,arguments)
|
|
2140
|
-
},{"dup":14}],
|
|
2143
|
+
},{"dup":14}],63:[function(require,module,exports){
|
|
2144
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2145
|
+
},{"dup":14}],64:[function(require,module,exports){
|
|
2141
2146
|
"use strict";
|
|
2142
2147
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2143
2148
|
/**
|
|
@@ -2174,19 +2179,7 @@ var AssetTransactionType;
|
|
|
2174
2179
|
})(AssetTransactionType || (AssetTransactionType = {}));
|
|
2175
2180
|
exports.default = AssetTransactionType;
|
|
2176
2181
|
|
|
2177
|
-
},{}],
|
|
2178
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2179
|
-
},{"dup":14}],60:[function(require,module,exports){
|
|
2180
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2181
|
-
},{"dup":14}],61:[function(require,module,exports){
|
|
2182
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2183
|
-
},{"dup":14}],62:[function(require,module,exports){
|
|
2184
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2185
|
-
},{"dup":14}],63:[function(require,module,exports){
|
|
2186
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2187
|
-
},{"dup":14}],64:[function(require,module,exports){
|
|
2188
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2189
|
-
},{"dup":14}],65:[function(require,module,exports){
|
|
2182
|
+
},{}],65:[function(require,module,exports){
|
|
2190
2183
|
arguments[4][14][0].apply(exports,arguments)
|
|
2191
2184
|
},{"dup":14}],66:[function(require,module,exports){
|
|
2192
2185
|
"use strict";
|
|
@@ -2251,20 +2244,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
2251
2244
|
},{}],68:[function(require,module,exports){
|
|
2252
2245
|
"use strict";
|
|
2253
2246
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2254
|
-
/**
|
|
2255
|
-
* 著作物タイプ
|
|
2256
|
-
*/
|
|
2257
|
-
var CreativeWorkType;
|
|
2258
|
-
(function (CreativeWorkType) {
|
|
2259
|
-
CreativeWorkType["EmailMessage"] = "EmailMessage";
|
|
2260
|
-
CreativeWorkType["Movie"] = "Movie";
|
|
2261
|
-
CreativeWorkType["WebApplication"] = "WebApplication";
|
|
2262
|
-
})(CreativeWorkType || (CreativeWorkType = {}));
|
|
2263
|
-
exports.default = CreativeWorkType;
|
|
2264
|
-
|
|
2265
|
-
},{}],69:[function(require,module,exports){
|
|
2266
|
-
"use strict";
|
|
2267
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2268
2247
|
exports.AboutIdentifier = void 0;
|
|
2269
2248
|
var AboutIdentifier;
|
|
2270
2249
|
(function (AboutIdentifier) {
|
|
@@ -2274,11 +2253,25 @@ var AboutIdentifier;
|
|
|
2274
2253
|
AboutIdentifier["OnEventStatusChanged"] = "OnEventStatusChanged";
|
|
2275
2254
|
})(AboutIdentifier = exports.AboutIdentifier || (exports.AboutIdentifier = {}));
|
|
2276
2255
|
|
|
2277
|
-
},{}],
|
|
2256
|
+
},{}],69:[function(require,module,exports){
|
|
2278
2257
|
arguments[4][14][0].apply(exports,arguments)
|
|
2279
|
-
},{"dup":14}],
|
|
2258
|
+
},{"dup":14}],70:[function(require,module,exports){
|
|
2280
2259
|
arguments[4][14][0].apply(exports,arguments)
|
|
2281
|
-
},{"dup":14}],
|
|
2260
|
+
},{"dup":14}],71:[function(require,module,exports){
|
|
2261
|
+
"use strict";
|
|
2262
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2263
|
+
/**
|
|
2264
|
+
* 著作物タイプ
|
|
2265
|
+
*/
|
|
2266
|
+
var CreativeWorkType;
|
|
2267
|
+
(function (CreativeWorkType) {
|
|
2268
|
+
CreativeWorkType["EmailMessage"] = "EmailMessage";
|
|
2269
|
+
CreativeWorkType["Movie"] = "Movie";
|
|
2270
|
+
CreativeWorkType["WebApplication"] = "WebApplication";
|
|
2271
|
+
})(CreativeWorkType || (CreativeWorkType = {}));
|
|
2272
|
+
exports.default = CreativeWorkType;
|
|
2273
|
+
|
|
2274
|
+
},{}],72:[function(require,module,exports){
|
|
2282
2275
|
arguments[4][14][0].apply(exports,arguments)
|
|
2283
2276
|
},{"dup":14}],73:[function(require,module,exports){
|
|
2284
2277
|
"use strict";
|
|
@@ -2325,27 +2318,6 @@ var Video;
|
|
|
2325
2318
|
|
|
2326
2319
|
},{}],74:[function(require,module,exports){
|
|
2327
2320
|
"use strict";
|
|
2328
|
-
/**
|
|
2329
|
-
* エラーコード
|
|
2330
|
-
*/
|
|
2331
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2332
|
-
var ErrorCode;
|
|
2333
|
-
(function (ErrorCode) {
|
|
2334
|
-
ErrorCode["AlreadyInUse"] = "AlreadyInUse";
|
|
2335
|
-
ErrorCode["Argument"] = "Argument";
|
|
2336
|
-
ErrorCode["ArgumentNull"] = "ArgumentNull";
|
|
2337
|
-
ErrorCode["Forbidden"] = "Forbidden";
|
|
2338
|
-
ErrorCode["GatewayTimeout"] = "GatewayTimeout";
|
|
2339
|
-
ErrorCode["NotFound"] = "NotFound";
|
|
2340
|
-
ErrorCode["NotImplemented"] = "NotImplemented";
|
|
2341
|
-
ErrorCode["RateLimitExceeded"] = "RateLimitExceeded";
|
|
2342
|
-
ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
2343
|
-
ErrorCode["Unauthorized"] = "Unauthorized";
|
|
2344
|
-
})(ErrorCode || (ErrorCode = {}));
|
|
2345
|
-
exports.default = ErrorCode;
|
|
2346
|
-
|
|
2347
|
-
},{}],75:[function(require,module,exports){
|
|
2348
|
-
"use strict";
|
|
2349
2321
|
var __extends = (this && this.__extends) || (function () {
|
|
2350
2322
|
var extendStatics = function (d, b) {
|
|
2351
2323
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -2388,7 +2360,7 @@ var AlreadyInUseError = /** @class */ (function (_super) {
|
|
|
2388
2360
|
}(chevre_1.ChevreError));
|
|
2389
2361
|
exports.default = AlreadyInUseError;
|
|
2390
2362
|
|
|
2391
|
-
},{"../errorCode":
|
|
2363
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],75:[function(require,module,exports){
|
|
2392
2364
|
"use strict";
|
|
2393
2365
|
var __extends = (this && this.__extends) || (function () {
|
|
2394
2366
|
var extendStatics = function (d, b) {
|
|
@@ -2431,7 +2403,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
2431
2403
|
}(chevre_1.ChevreError));
|
|
2432
2404
|
exports.default = ArgumentError;
|
|
2433
2405
|
|
|
2434
|
-
},{"../errorCode":
|
|
2406
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],76:[function(require,module,exports){
|
|
2435
2407
|
"use strict";
|
|
2436
2408
|
var __extends = (this && this.__extends) || (function () {
|
|
2437
2409
|
var extendStatics = function (d, b) {
|
|
@@ -2474,7 +2446,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
2474
2446
|
}(chevre_1.ChevreError));
|
|
2475
2447
|
exports.default = ArgumentNullError;
|
|
2476
2448
|
|
|
2477
|
-
},{"../errorCode":
|
|
2449
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],77:[function(require,module,exports){
|
|
2478
2450
|
"use strict";
|
|
2479
2451
|
var __extends = (this && this.__extends) || (function () {
|
|
2480
2452
|
var extendStatics = function (d, b) {
|
|
@@ -2513,7 +2485,7 @@ var ChevreError = /** @class */ (function (_super) {
|
|
|
2513
2485
|
}(Error));
|
|
2514
2486
|
exports.ChevreError = ChevreError;
|
|
2515
2487
|
|
|
2516
|
-
},{"setprototypeof":286}],
|
|
2488
|
+
},{"setprototypeof":286}],78:[function(require,module,exports){
|
|
2517
2489
|
"use strict";
|
|
2518
2490
|
var __extends = (this && this.__extends) || (function () {
|
|
2519
2491
|
var extendStatics = function (d, b) {
|
|
@@ -2555,7 +2527,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
2555
2527
|
}(chevre_1.ChevreError));
|
|
2556
2528
|
exports.default = ForbiddenError;
|
|
2557
2529
|
|
|
2558
|
-
},{"../errorCode":
|
|
2530
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],79:[function(require,module,exports){
|
|
2559
2531
|
"use strict";
|
|
2560
2532
|
var __extends = (this && this.__extends) || (function () {
|
|
2561
2533
|
var extendStatics = function (d, b) {
|
|
@@ -2597,7 +2569,7 @@ var GatewayTimeoutError = /** @class */ (function (_super) {
|
|
|
2597
2569
|
}(chevre_1.ChevreError));
|
|
2598
2570
|
exports.default = GatewayTimeoutError;
|
|
2599
2571
|
|
|
2600
|
-
},{"../errorCode":
|
|
2572
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],80:[function(require,module,exports){
|
|
2601
2573
|
"use strict";
|
|
2602
2574
|
var __extends = (this && this.__extends) || (function () {
|
|
2603
2575
|
var extendStatics = function (d, b) {
|
|
@@ -2640,7 +2612,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
2640
2612
|
}(chevre_1.ChevreError));
|
|
2641
2613
|
exports.default = NotFoundError;
|
|
2642
2614
|
|
|
2643
|
-
},{"../errorCode":
|
|
2615
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],81:[function(require,module,exports){
|
|
2644
2616
|
"use strict";
|
|
2645
2617
|
var __extends = (this && this.__extends) || (function () {
|
|
2646
2618
|
var extendStatics = function (d, b) {
|
|
@@ -2682,7 +2654,7 @@ var NotImplementedError = /** @class */ (function (_super) {
|
|
|
2682
2654
|
}(chevre_1.ChevreError));
|
|
2683
2655
|
exports.default = NotImplementedError;
|
|
2684
2656
|
|
|
2685
|
-
},{"../errorCode":
|
|
2657
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],82:[function(require,module,exports){
|
|
2686
2658
|
"use strict";
|
|
2687
2659
|
var __extends = (this && this.__extends) || (function () {
|
|
2688
2660
|
var extendStatics = function (d, b) {
|
|
@@ -2724,7 +2696,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
2724
2696
|
}(chevre_1.ChevreError));
|
|
2725
2697
|
exports.default = RateLimitExceededError;
|
|
2726
2698
|
|
|
2727
|
-
},{"../errorCode":
|
|
2699
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],83:[function(require,module,exports){
|
|
2728
2700
|
"use strict";
|
|
2729
2701
|
var __extends = (this && this.__extends) || (function () {
|
|
2730
2702
|
var extendStatics = function (d, b) {
|
|
@@ -2766,7 +2738,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
2766
2738
|
}(chevre_1.ChevreError));
|
|
2767
2739
|
exports.default = ServiceUnavailableError;
|
|
2768
2740
|
|
|
2769
|
-
},{"../errorCode":
|
|
2741
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],84:[function(require,module,exports){
|
|
2770
2742
|
"use strict";
|
|
2771
2743
|
var __extends = (this && this.__extends) || (function () {
|
|
2772
2744
|
var extendStatics = function (d, b) {
|
|
@@ -2808,7 +2780,28 @@ var UnauthorizedError = /** @class */ (function (_super) {
|
|
|
2808
2780
|
}(chevre_1.ChevreError));
|
|
2809
2781
|
exports.default = UnauthorizedError;
|
|
2810
2782
|
|
|
2811
|
-
},{"../errorCode":
|
|
2783
|
+
},{"../errorCode":85,"./chevre":77,"setprototypeof":286}],85:[function(require,module,exports){
|
|
2784
|
+
"use strict";
|
|
2785
|
+
/**
|
|
2786
|
+
* エラーコード
|
|
2787
|
+
*/
|
|
2788
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2789
|
+
var ErrorCode;
|
|
2790
|
+
(function (ErrorCode) {
|
|
2791
|
+
ErrorCode["AlreadyInUse"] = "AlreadyInUse";
|
|
2792
|
+
ErrorCode["Argument"] = "Argument";
|
|
2793
|
+
ErrorCode["ArgumentNull"] = "ArgumentNull";
|
|
2794
|
+
ErrorCode["Forbidden"] = "Forbidden";
|
|
2795
|
+
ErrorCode["GatewayTimeout"] = "GatewayTimeout";
|
|
2796
|
+
ErrorCode["NotFound"] = "NotFound";
|
|
2797
|
+
ErrorCode["NotImplemented"] = "NotImplemented";
|
|
2798
|
+
ErrorCode["RateLimitExceeded"] = "RateLimitExceeded";
|
|
2799
|
+
ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
2800
|
+
ErrorCode["Unauthorized"] = "Unauthorized";
|
|
2801
|
+
})(ErrorCode || (ErrorCode = {}));
|
|
2802
|
+
exports.default = ErrorCode;
|
|
2803
|
+
|
|
2804
|
+
},{}],86:[function(require,module,exports){
|
|
2812
2805
|
"use strict";
|
|
2813
2806
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2814
2807
|
exports.Unauthorized = exports.Chevre = exports.ServiceUnavailable = exports.RateLimitExceeded = exports.NotImplemented = exports.NotFound = exports.GatewayTimeout = exports.Forbidden = exports.ArgumentNull = exports.Argument = exports.AlreadyInUse = void 0;
|
|
@@ -2838,7 +2831,11 @@ exports.ServiceUnavailable = serviceUnavailable_1.default;
|
|
|
2838
2831
|
var unauthorized_1 = require("./error/unauthorized");
|
|
2839
2832
|
exports.Unauthorized = unauthorized_1.default;
|
|
2840
2833
|
|
|
2841
|
-
},{"./error/alreadyInUse":
|
|
2834
|
+
},{"./error/alreadyInUse":74,"./error/argument":75,"./error/argumentNull":76,"./error/chevre":77,"./error/forbidden":78,"./error/gatewayTimeout":79,"./error/notFound":80,"./error/notImplemented":81,"./error/rateLimitExceeded":82,"./error/serviceUnavailable":83,"./error/unauthorized":84}],87:[function(require,module,exports){
|
|
2835
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2836
|
+
},{"dup":14}],88:[function(require,module,exports){
|
|
2837
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
2838
|
+
},{"dup":14}],89:[function(require,module,exports){
|
|
2842
2839
|
"use strict";
|
|
2843
2840
|
/**
|
|
2844
2841
|
* イベントステータス
|
|
@@ -2853,7 +2850,7 @@ var EventStatusType;
|
|
|
2853
2850
|
})(EventStatusType || (EventStatusType = {}));
|
|
2854
2851
|
exports.default = EventStatusType;
|
|
2855
2852
|
|
|
2856
|
-
},{}],
|
|
2853
|
+
},{}],90:[function(require,module,exports){
|
|
2857
2854
|
"use strict";
|
|
2858
2855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2859
2856
|
/**
|
|
@@ -2866,11 +2863,7 @@ var EventType;
|
|
|
2866
2863
|
})(EventType || (EventType = {}));
|
|
2867
2864
|
exports.default = EventType;
|
|
2868
2865
|
|
|
2869
|
-
},{}],
|
|
2870
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2871
|
-
},{"dup":14}],90:[function(require,module,exports){
|
|
2872
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
2873
|
-
},{"dup":14}],91:[function(require,module,exports){
|
|
2866
|
+
},{}],91:[function(require,module,exports){
|
|
2874
2867
|
"use strict";
|
|
2875
2868
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2876
2869
|
exports.RoleType = void 0;
|
|
@@ -3061,6 +3054,14 @@ var PersonType;
|
|
|
3061
3054
|
exports.default = PersonType;
|
|
3062
3055
|
|
|
3063
3056
|
},{}],111:[function(require,module,exports){
|
|
3057
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3058
|
+
},{"dup":14}],112:[function(require,module,exports){
|
|
3059
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3060
|
+
},{"dup":14}],113:[function(require,module,exports){
|
|
3061
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3062
|
+
},{"dup":14}],114:[function(require,module,exports){
|
|
3063
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3064
|
+
},{"dup":14}],115:[function(require,module,exports){
|
|
3064
3065
|
"use strict";
|
|
3065
3066
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3066
3067
|
exports.PlaceType = void 0;
|
|
@@ -3077,15 +3078,7 @@ var PlaceType;
|
|
|
3077
3078
|
PlaceType["Seat"] = "Seat";
|
|
3078
3079
|
})(PlaceType = exports.PlaceType || (exports.PlaceType = {}));
|
|
3079
3080
|
|
|
3080
|
-
},{}],
|
|
3081
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3082
|
-
},{"dup":14}],113:[function(require,module,exports){
|
|
3083
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3084
|
-
},{"dup":14}],114:[function(require,module,exports){
|
|
3085
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3086
|
-
},{"dup":14}],115:[function(require,module,exports){
|
|
3087
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3088
|
-
},{"dup":14}],116:[function(require,module,exports){
|
|
3081
|
+
},{}],116:[function(require,module,exports){
|
|
3089
3082
|
"use strict";
|
|
3090
3083
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3091
3084
|
/**
|
|
@@ -3226,8 +3219,6 @@ exports.default = ReservationType;
|
|
|
3226
3219
|
},{}],127:[function(require,module,exports){
|
|
3227
3220
|
arguments[4][14][0].apply(exports,arguments)
|
|
3228
3221
|
},{"dup":14}],128:[function(require,module,exports){
|
|
3229
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3230
|
-
},{"dup":14}],129:[function(require,module,exports){
|
|
3231
3222
|
"use strict";
|
|
3232
3223
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3233
3224
|
exports.PaymentServiceType = void 0;
|
|
@@ -3239,7 +3230,7 @@ var PaymentServiceType;
|
|
|
3239
3230
|
PaymentServiceType["PaymentCard"] = "PaymentCard";
|
|
3240
3231
|
})(PaymentServiceType = exports.PaymentServiceType || (exports.PaymentServiceType = {}));
|
|
3241
3232
|
|
|
3242
|
-
},{}],
|
|
3233
|
+
},{}],129:[function(require,module,exports){
|
|
3243
3234
|
"use strict";
|
|
3244
3235
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3245
3236
|
exports.Identifier = void 0;
|
|
@@ -3249,7 +3240,9 @@ var Identifier;
|
|
|
3249
3240
|
Identifier["Chevre"] = "Chevre";
|
|
3250
3241
|
})(Identifier = exports.Identifier || (exports.Identifier = {}));
|
|
3251
3242
|
|
|
3252
|
-
},{}],
|
|
3243
|
+
},{}],130:[function(require,module,exports){
|
|
3244
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3245
|
+
},{"dup":14}],131:[function(require,module,exports){
|
|
3253
3246
|
"use strict";
|
|
3254
3247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3255
3248
|
/**
|
|
@@ -3263,6 +3256,48 @@ var SortType;
|
|
|
3263
3256
|
exports.default = SortType;
|
|
3264
3257
|
|
|
3265
3258
|
},{}],132:[function(require,module,exports){
|
|
3259
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3260
|
+
},{"dup":14}],133:[function(require,module,exports){
|
|
3261
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3262
|
+
},{"dup":14}],134:[function(require,module,exports){
|
|
3263
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3264
|
+
},{"dup":14}],135:[function(require,module,exports){
|
|
3265
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3266
|
+
},{"dup":14}],136:[function(require,module,exports){
|
|
3267
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3268
|
+
},{"dup":14}],137:[function(require,module,exports){
|
|
3269
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3270
|
+
},{"dup":14}],138:[function(require,module,exports){
|
|
3271
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3272
|
+
},{"dup":14}],139:[function(require,module,exports){
|
|
3273
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3274
|
+
},{"dup":14}],140:[function(require,module,exports){
|
|
3275
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3276
|
+
},{"dup":14}],141:[function(require,module,exports){
|
|
3277
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3278
|
+
},{"dup":14}],142:[function(require,module,exports){
|
|
3279
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3280
|
+
},{"dup":14}],143:[function(require,module,exports){
|
|
3281
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3282
|
+
},{"dup":14}],144:[function(require,module,exports){
|
|
3283
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3284
|
+
},{"dup":14}],145:[function(require,module,exports){
|
|
3285
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3286
|
+
},{"dup":14}],146:[function(require,module,exports){
|
|
3287
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3288
|
+
},{"dup":14}],147:[function(require,module,exports){
|
|
3289
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3290
|
+
},{"dup":14}],148:[function(require,module,exports){
|
|
3291
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3292
|
+
},{"dup":14}],149:[function(require,module,exports){
|
|
3293
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3294
|
+
},{"dup":14}],150:[function(require,module,exports){
|
|
3295
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3296
|
+
},{"dup":14}],151:[function(require,module,exports){
|
|
3297
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3298
|
+
},{"dup":14}],152:[function(require,module,exports){
|
|
3299
|
+
arguments[4][14][0].apply(exports,arguments)
|
|
3300
|
+
},{"dup":14}],153:[function(require,module,exports){
|
|
3266
3301
|
"use strict";
|
|
3267
3302
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3268
3303
|
/**
|
|
@@ -3383,7 +3418,7 @@ var TaskName;
|
|
|
3383
3418
|
})(TaskName || (TaskName = {}));
|
|
3384
3419
|
exports.default = TaskName;
|
|
3385
3420
|
|
|
3386
|
-
},{}],
|
|
3421
|
+
},{}],154:[function(require,module,exports){
|
|
3387
3422
|
"use strict";
|
|
3388
3423
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3389
3424
|
/**
|
|
@@ -3410,51 +3445,32 @@ var TaskStatus;
|
|
|
3410
3445
|
})(TaskStatus || (TaskStatus = {}));
|
|
3411
3446
|
exports.default = TaskStatus;
|
|
3412
3447
|
|
|
3413
|
-
},{}],
|
|
3414
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3415
|
-
},{"dup":14}],135:[function(require,module,exports){
|
|
3416
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3417
|
-
},{"dup":14}],136:[function(require,module,exports){
|
|
3418
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3419
|
-
},{"dup":14}],137:[function(require,module,exports){
|
|
3420
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3421
|
-
},{"dup":14}],138:[function(require,module,exports){
|
|
3422
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3423
|
-
},{"dup":14}],139:[function(require,module,exports){
|
|
3424
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3425
|
-
},{"dup":14}],140:[function(require,module,exports){
|
|
3448
|
+
},{}],155:[function(require,module,exports){
|
|
3426
3449
|
arguments[4][14][0].apply(exports,arguments)
|
|
3427
|
-
},{"dup":14}],
|
|
3428
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3429
|
-
},{"dup":14}],142:[function(require,module,exports){
|
|
3430
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3431
|
-
},{"dup":14}],143:[function(require,module,exports){
|
|
3432
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3433
|
-
},{"dup":14}],144:[function(require,module,exports){
|
|
3434
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3435
|
-
},{"dup":14}],145:[function(require,module,exports){
|
|
3436
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3437
|
-
},{"dup":14}],146:[function(require,module,exports){
|
|
3438
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3439
|
-
},{"dup":14}],147:[function(require,module,exports){
|
|
3440
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3441
|
-
},{"dup":14}],148:[function(require,module,exports){
|
|
3442
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3443
|
-
},{"dup":14}],149:[function(require,module,exports){
|
|
3444
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3445
|
-
},{"dup":14}],150:[function(require,module,exports){
|
|
3446
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3447
|
-
},{"dup":14}],151:[function(require,module,exports){
|
|
3448
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3449
|
-
},{"dup":14}],152:[function(require,module,exports){
|
|
3450
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3451
|
-
},{"dup":14}],153:[function(require,module,exports){
|
|
3452
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3453
|
-
},{"dup":14}],154:[function(require,module,exports){
|
|
3450
|
+
},{"dup":14}],156:[function(require,module,exports){
|
|
3454
3451
|
arguments[4][14][0].apply(exports,arguments)
|
|
3455
|
-
},{"dup":14}],
|
|
3452
|
+
},{"dup":14}],157:[function(require,module,exports){
|
|
3456
3453
|
arguments[4][14][0].apply(exports,arguments)
|
|
3457
|
-
},{"dup":14}],
|
|
3454
|
+
},{"dup":14}],158:[function(require,module,exports){
|
|
3455
|
+
"use strict";
|
|
3456
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3457
|
+
exports.Reason = void 0;
|
|
3458
|
+
/**
|
|
3459
|
+
* 返品理由
|
|
3460
|
+
*/
|
|
3461
|
+
var Reason;
|
|
3462
|
+
(function (Reason) {
|
|
3463
|
+
/**
|
|
3464
|
+
* 顧客自身の都合での返品
|
|
3465
|
+
*/
|
|
3466
|
+
Reason["Customer"] = "Customer";
|
|
3467
|
+
/**
|
|
3468
|
+
* 販売者都合での返品
|
|
3469
|
+
*/
|
|
3470
|
+
Reason["Seller"] = "Seller";
|
|
3471
|
+
})(Reason = exports.Reason || (exports.Reason = {}));
|
|
3472
|
+
|
|
3473
|
+
},{}],159:[function(require,module,exports){
|
|
3458
3474
|
"use strict";
|
|
3459
3475
|
/**
|
|
3460
3476
|
* 取引ステータス
|
|
@@ -3469,7 +3485,7 @@ var TransactionStatusType;
|
|
|
3469
3485
|
})(TransactionStatusType || (TransactionStatusType = {}));
|
|
3470
3486
|
exports.default = TransactionStatusType;
|
|
3471
3487
|
|
|
3472
|
-
},{}],
|
|
3488
|
+
},{}],160:[function(require,module,exports){
|
|
3473
3489
|
"use strict";
|
|
3474
3490
|
/**
|
|
3475
3491
|
* 取引タスクエクスポートステータス
|
|
@@ -3492,7 +3508,7 @@ var TransactionTasksExportationStatus;
|
|
|
3492
3508
|
})(TransactionTasksExportationStatus || (TransactionTasksExportationStatus = {}));
|
|
3493
3509
|
exports.default = TransactionTasksExportationStatus;
|
|
3494
3510
|
|
|
3495
|
-
},{}],
|
|
3511
|
+
},{}],161:[function(require,module,exports){
|
|
3496
3512
|
"use strict";
|
|
3497
3513
|
/**
|
|
3498
3514
|
* 取引タイプ
|
|
@@ -3515,29 +3531,6 @@ var TransactionType;
|
|
|
3515
3531
|
})(TransactionType || (TransactionType = {}));
|
|
3516
3532
|
exports.default = TransactionType;
|
|
3517
3533
|
|
|
3518
|
-
},{}],159:[function(require,module,exports){
|
|
3519
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3520
|
-
},{"dup":14}],160:[function(require,module,exports){
|
|
3521
|
-
arguments[4][14][0].apply(exports,arguments)
|
|
3522
|
-
},{"dup":14}],161:[function(require,module,exports){
|
|
3523
|
-
"use strict";
|
|
3524
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3525
|
-
exports.Reason = void 0;
|
|
3526
|
-
/**
|
|
3527
|
-
* 返品理由
|
|
3528
|
-
*/
|
|
3529
|
-
var Reason;
|
|
3530
|
-
(function (Reason) {
|
|
3531
|
-
/**
|
|
3532
|
-
* 顧客自身の都合での返品
|
|
3533
|
-
*/
|
|
3534
|
-
Reason["Customer"] = "Customer";
|
|
3535
|
-
/**
|
|
3536
|
-
* 販売者都合での返品
|
|
3537
|
-
*/
|
|
3538
|
-
Reason["Seller"] = "Seller";
|
|
3539
|
-
})(Reason = exports.Reason || (exports.Reason = {}));
|
|
3540
|
-
|
|
3541
3534
|
},{}],162:[function(require,module,exports){
|
|
3542
3535
|
"use strict";
|
|
3543
3536
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -8351,7 +8344,7 @@ var PersonService = /** @class */ (function (_super) {
|
|
|
8351
8344
|
uri: "/people/" + id,
|
|
8352
8345
|
method: 'GET',
|
|
8353
8346
|
expectedStatusCodes: [http_status_1.OK],
|
|
8354
|
-
qs: { iss: params.iss }
|
|
8347
|
+
qs: { iss: params.iss, replaceNewUserPool: params.replaceNewUserPool }
|
|
8355
8348
|
})
|
|
8356
8349
|
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
8357
8350
|
return [2 /*return*/, response.json()];
|
|
@@ -13711,37 +13704,7 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
13711
13704
|
});
|
|
13712
13705
|
};
|
|
13713
13706
|
/**
|
|
13714
|
-
*
|
|
13715
|
-
*/
|
|
13716
|
-
// public async openAccount(params: {
|
|
13717
|
-
// /**
|
|
13718
|
-
// * 未指定の場合`me`がセットされます
|
|
13719
|
-
// */
|
|
13720
|
-
// id?: string;
|
|
13721
|
-
// /**
|
|
13722
|
-
// * 口座名義
|
|
13723
|
-
// */
|
|
13724
|
-
// name: string;
|
|
13725
|
-
// /**
|
|
13726
|
-
// * 口座タイプ
|
|
13727
|
-
// */
|
|
13728
|
-
// accountType: string;
|
|
13729
|
-
// }): Promise<factory.transaction.placeOrder.IResult> {
|
|
13730
|
-
// const id = (typeof params.id === 'string') ? params.id : 'me';
|
|
13731
|
-
// return this.fetch({
|
|
13732
|
-
// uri: `/people/${id}/ownershipInfos/accounts/${params.accountType}`,
|
|
13733
|
-
// method: 'POST',
|
|
13734
|
-
// body: {
|
|
13735
|
-
// name: params.name
|
|
13736
|
-
// },
|
|
13737
|
-
// expectedStatusCodes: [CREATED]
|
|
13738
|
-
// })
|
|
13739
|
-
// .then(async (response) => response.json());
|
|
13740
|
-
// }
|
|
13741
|
-
/**
|
|
13742
|
-
* 口座解約
|
|
13743
|
-
* 口座の状態を変更するだけで、ユーザーの所有する口座リストから削除はされません。
|
|
13744
|
-
* 解約された口座で取引を進行しようとすると400エラーとなります。
|
|
13707
|
+
* ペイメントカード所有権削除
|
|
13745
13708
|
*/
|
|
13746
13709
|
PersonOwnershipInfoService.prototype.closeAccount = function (params) {
|
|
13747
13710
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -13765,7 +13728,14 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
13765
13728
|
/**
|
|
13766
13729
|
* 口座取引履歴検索
|
|
13767
13730
|
*/
|
|
13768
|
-
PersonOwnershipInfoService.prototype.searchAccountMoneyTransferActions = function (params
|
|
13731
|
+
PersonOwnershipInfoService.prototype.searchAccountMoneyTransferActions = function (params
|
|
13732
|
+
// params: factory.account.action.moneyTransfer.ISearchConditions & {
|
|
13733
|
+
// /**
|
|
13734
|
+
// * 未指定の場合`me`がセットされます
|
|
13735
|
+
// */
|
|
13736
|
+
// id?: string;
|
|
13737
|
+
// }
|
|
13738
|
+
) {
|
|
13769
13739
|
return __awaiter(this, void 0, void 0, function () {
|
|
13770
13740
|
var id;
|
|
13771
13741
|
var _this = this;
|
|
@@ -13939,6 +13909,28 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
13939
13909
|
});
|
|
13940
13910
|
});
|
|
13941
13911
|
};
|
|
13912
|
+
/**
|
|
13913
|
+
* 会員所有権削除
|
|
13914
|
+
*/
|
|
13915
|
+
PersonOwnershipInfoService.prototype.deleteOwnershipInfoById = function (params) {
|
|
13916
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
13917
|
+
var id;
|
|
13918
|
+
return __generator(this, function (_a) {
|
|
13919
|
+
switch (_a.label) {
|
|
13920
|
+
case 0:
|
|
13921
|
+
id = (typeof params.id === 'string') ? params.id : 'me';
|
|
13922
|
+
return [4 /*yield*/, this.fetch({
|
|
13923
|
+
uri: "/people/" + id + "/ownershipInfos/" + String(params.ownershipInfoId),
|
|
13924
|
+
method: 'DELETE',
|
|
13925
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
13926
|
+
})];
|
|
13927
|
+
case 1:
|
|
13928
|
+
_a.sent();
|
|
13929
|
+
return [2 /*return*/];
|
|
13930
|
+
}
|
|
13931
|
+
});
|
|
13932
|
+
});
|
|
13933
|
+
};
|
|
13942
13934
|
return PersonOwnershipInfoService;
|
|
13943
13935
|
}(service_1.Service));
|
|
13944
13936
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
|
@@ -16707,25 +16699,6 @@ module.exports = {
|
|
|
16707
16699
|
arguments[4][14][0].apply(exports,arguments)
|
|
16708
16700
|
},{"dup":14}],245:[function(require,module,exports){
|
|
16709
16701
|
"use strict";
|
|
16710
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16711
|
-
/**
|
|
16712
|
-
* エラーコード
|
|
16713
|
-
*/
|
|
16714
|
-
var ErrorCode;
|
|
16715
|
-
(function (ErrorCode) {
|
|
16716
|
-
ErrorCode["AlreadyInUse"] = "AlreadyInUse";
|
|
16717
|
-
ErrorCode["Argument"] = "Argument";
|
|
16718
|
-
ErrorCode["ArgumentNull"] = "ArgumentNull";
|
|
16719
|
-
ErrorCode["Forbidden"] = "Forbidden";
|
|
16720
|
-
ErrorCode["NotFound"] = "NotFound";
|
|
16721
|
-
ErrorCode["NotImplemented"] = "NotImplemented";
|
|
16722
|
-
ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
16723
|
-
ErrorCode["RateLimitExceeded"] = "RateLimitExceeded";
|
|
16724
|
-
})(ErrorCode || (ErrorCode = {}));
|
|
16725
|
-
exports.default = ErrorCode;
|
|
16726
|
-
|
|
16727
|
-
},{}],246:[function(require,module,exports){
|
|
16728
|
-
"use strict";
|
|
16729
16702
|
var __extends = (this && this.__extends) || (function () {
|
|
16730
16703
|
var extendStatics = function (d, b) {
|
|
16731
16704
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -16765,7 +16738,7 @@ var ArgumentError = /** @class */ (function (_super) {
|
|
|
16765
16738
|
}(waiter_1.WaiterError));
|
|
16766
16739
|
exports.default = ArgumentError;
|
|
16767
16740
|
|
|
16768
|
-
},{"../errorCode":
|
|
16741
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],246:[function(require,module,exports){
|
|
16769
16742
|
"use strict";
|
|
16770
16743
|
var __extends = (this && this.__extends) || (function () {
|
|
16771
16744
|
var extendStatics = function (d, b) {
|
|
@@ -16806,7 +16779,7 @@ var ArgumentNullError = /** @class */ (function (_super) {
|
|
|
16806
16779
|
}(waiter_1.WaiterError));
|
|
16807
16780
|
exports.default = ArgumentNullError;
|
|
16808
16781
|
|
|
16809
|
-
},{"../errorCode":
|
|
16782
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],247:[function(require,module,exports){
|
|
16810
16783
|
"use strict";
|
|
16811
16784
|
var __extends = (this && this.__extends) || (function () {
|
|
16812
16785
|
var extendStatics = function (d, b) {
|
|
@@ -16846,7 +16819,7 @@ var ForbiddenError = /** @class */ (function (_super) {
|
|
|
16846
16819
|
}(waiter_1.WaiterError));
|
|
16847
16820
|
exports.default = ForbiddenError;
|
|
16848
16821
|
|
|
16849
|
-
},{"../errorCode":
|
|
16822
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],248:[function(require,module,exports){
|
|
16850
16823
|
"use strict";
|
|
16851
16824
|
var __extends = (this && this.__extends) || (function () {
|
|
16852
16825
|
var extendStatics = function (d, b) {
|
|
@@ -16887,7 +16860,7 @@ var NotFoundError = /** @class */ (function (_super) {
|
|
|
16887
16860
|
}(waiter_1.WaiterError));
|
|
16888
16861
|
exports.default = NotFoundError;
|
|
16889
16862
|
|
|
16890
|
-
},{"../errorCode":
|
|
16863
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],249:[function(require,module,exports){
|
|
16891
16864
|
"use strict";
|
|
16892
16865
|
var __extends = (this && this.__extends) || (function () {
|
|
16893
16866
|
var extendStatics = function (d, b) {
|
|
@@ -16927,7 +16900,7 @@ var RateLimitExceededError = /** @class */ (function (_super) {
|
|
|
16927
16900
|
}(waiter_1.WaiterError));
|
|
16928
16901
|
exports.default = RateLimitExceededError;
|
|
16929
16902
|
|
|
16930
|
-
},{"../errorCode":
|
|
16903
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],250:[function(require,module,exports){
|
|
16931
16904
|
"use strict";
|
|
16932
16905
|
var __extends = (this && this.__extends) || (function () {
|
|
16933
16906
|
var extendStatics = function (d, b) {
|
|
@@ -16967,7 +16940,7 @@ var ServiceUnavailableError = /** @class */ (function (_super) {
|
|
|
16967
16940
|
}(waiter_1.WaiterError));
|
|
16968
16941
|
exports.default = ServiceUnavailableError;
|
|
16969
16942
|
|
|
16970
|
-
},{"../errorCode":
|
|
16943
|
+
},{"../errorCode":252,"./waiter":251,"setprototypeof":286}],251:[function(require,module,exports){
|
|
16971
16944
|
"use strict";
|
|
16972
16945
|
var __extends = (this && this.__extends) || (function () {
|
|
16973
16946
|
var extendStatics = function (d, b) {
|
|
@@ -17000,6 +16973,25 @@ var WaiterError = /** @class */ (function (_super) {
|
|
|
17000
16973
|
}(Error));
|
|
17001
16974
|
exports.WaiterError = WaiterError;
|
|
17002
16975
|
|
|
16976
|
+
},{}],252:[function(require,module,exports){
|
|
16977
|
+
"use strict";
|
|
16978
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16979
|
+
/**
|
|
16980
|
+
* エラーコード
|
|
16981
|
+
*/
|
|
16982
|
+
var ErrorCode;
|
|
16983
|
+
(function (ErrorCode) {
|
|
16984
|
+
ErrorCode["AlreadyInUse"] = "AlreadyInUse";
|
|
16985
|
+
ErrorCode["Argument"] = "Argument";
|
|
16986
|
+
ErrorCode["ArgumentNull"] = "ArgumentNull";
|
|
16987
|
+
ErrorCode["Forbidden"] = "Forbidden";
|
|
16988
|
+
ErrorCode["NotFound"] = "NotFound";
|
|
16989
|
+
ErrorCode["NotImplemented"] = "NotImplemented";
|
|
16990
|
+
ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
16991
|
+
ErrorCode["RateLimitExceeded"] = "RateLimitExceeded";
|
|
16992
|
+
})(ErrorCode || (ErrorCode = {}));
|
|
16993
|
+
exports.default = ErrorCode;
|
|
16994
|
+
|
|
17003
16995
|
},{}],253:[function(require,module,exports){
|
|
17004
16996
|
"use strict";
|
|
17005
16997
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -17021,7 +17013,7 @@ exports.ServiceUnavailable = serviceUnavailable_1.default;
|
|
|
17021
17013
|
var waiter_1 = require("./error/waiter");
|
|
17022
17014
|
exports.Waiter = waiter_1.WaiterError;
|
|
17023
17015
|
|
|
17024
|
-
},{"./error/argument":
|
|
17016
|
+
},{"./error/argument":245,"./error/argumentNull":246,"./error/forbidden":247,"./error/notFound":248,"./error/rateLimitExceeded":249,"./error/serviceUnavailable":250,"./error/waiter":251}],254:[function(require,module,exports){
|
|
17025
17017
|
arguments[4][14][0].apply(exports,arguments)
|
|
17026
17018
|
},{"dup":14}],255:[function(require,module,exports){
|
|
17027
17019
|
arguments[4][14][0].apply(exports,arguments)
|
|
@@ -17046,7 +17038,7 @@ exports.passport = passport;
|
|
|
17046
17038
|
exports.project = project;
|
|
17047
17039
|
exports.rule = rule;
|
|
17048
17040
|
|
|
17049
|
-
},{"./factory/client":244,"./factory/errorCode":
|
|
17041
|
+
},{"./factory/client":244,"./factory/errorCode":252,"./factory/errors":253,"./factory/passport":254,"./factory/project":255,"./factory/rule":256}],258:[function(require,module,exports){
|
|
17050
17042
|
'use strict'
|
|
17051
17043
|
|
|
17052
17044
|
exports.byteLength = byteLength
|