@cinerino/sdk 3.149.0-alpha.0 → 3.149.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,6 +33,15 @@ export declare class PaymentService extends Service {
|
|
|
33
33
|
object: factory.action.authorize.paymentMethod.any.IObject;
|
|
34
34
|
purpose: IPurpose;
|
|
35
35
|
}): Promise<IAuthorizeResult>;
|
|
36
|
+
/**
|
|
37
|
+
* ssktsMembershipCoupon決済承認
|
|
38
|
+
*/
|
|
39
|
+
authorizeSSKTSMembershipCoupon(params: {
|
|
40
|
+
object: {
|
|
41
|
+
movieTickets: Pick<factory.action.trade.pay.IMovieTicket, 'accessCode' | 'identifier' | 'serviceOutput' | 'serviceType'>[];
|
|
42
|
+
};
|
|
43
|
+
purpose: IPurpose;
|
|
44
|
+
}): Promise<void>;
|
|
36
45
|
/**
|
|
37
46
|
* 決済ロケーション発行
|
|
38
47
|
*/
|
|
@@ -139,6 +139,26 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
139
139
|
});
|
|
140
140
|
});
|
|
141
141
|
};
|
|
142
|
+
/**
|
|
143
|
+
* ssktsMembershipCoupon決済承認
|
|
144
|
+
*/
|
|
145
|
+
PaymentService.prototype.authorizeSSKTSMembershipCoupon = function (params) {
|
|
146
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
147
|
+
return __generator(this, function (_a) {
|
|
148
|
+
switch (_a.label) {
|
|
149
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
150
|
+
uri: "/payment/ssktsMembershipCoupon/authorize",
|
|
151
|
+
method: 'POST',
|
|
152
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
153
|
+
body: params
|
|
154
|
+
})];
|
|
155
|
+
case 1:
|
|
156
|
+
_a.sent();
|
|
157
|
+
return [2 /*return*/];
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
});
|
|
161
|
+
};
|
|
142
162
|
/**
|
|
143
163
|
* 決済ロケーション発行
|
|
144
164
|
*/
|
package/lib/bundle.js
CHANGED
|
@@ -5965,6 +5965,26 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
5965
5965
|
});
|
|
5966
5966
|
});
|
|
5967
5967
|
};
|
|
5968
|
+
/**
|
|
5969
|
+
* ssktsMembershipCoupon決済承認
|
|
5970
|
+
*/
|
|
5971
|
+
PaymentService.prototype.authorizeSSKTSMembershipCoupon = function (params) {
|
|
5972
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5973
|
+
return __generator(this, function (_a) {
|
|
5974
|
+
switch (_a.label) {
|
|
5975
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
5976
|
+
uri: "/payment/ssktsMembershipCoupon/authorize",
|
|
5977
|
+
method: 'POST',
|
|
5978
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
5979
|
+
body: params
|
|
5980
|
+
})];
|
|
5981
|
+
case 1:
|
|
5982
|
+
_a.sent();
|
|
5983
|
+
return [2 /*return*/];
|
|
5984
|
+
}
|
|
5985
|
+
});
|
|
5986
|
+
});
|
|
5987
|
+
};
|
|
5968
5988
|
/**
|
|
5969
5989
|
* 決済ロケーション発行
|
|
5970
5990
|
*/
|