@cinerino/sdk 12.7.0-alpha.4 → 12.8.0-alpha.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/src/chevre/admin/adminCreateEventIfNotExistByIdentifier.ts +2 -1
- package/example/src/chevre/admin/adminCreateEventIfNotExistByIdentifierBySoftware.ts +2 -1
- package/example/src/chevre/admin/adminEventOffersByIdentifier.ts +72 -0
- package/example/src/cloud/admin/adminEventsByIdentifier.ts +29 -28
- package/example/src/cloud/transaction/processPlaceOrderByCreditCard3DS.ts +7 -2
- package/example/src/cloud/transaction/processPlaceOrderUsingTicketIssuedThroughCreditCard.ts +11 -4
- package/example/src/cloud/transaction/processPlaceOrderUsingTicketIssuedThroughFaceToFace.ts +11 -1
- package/lib/abstract/chevreAdmin/event.d.ts +4 -0
- package/lib/abstract/chevreAdmin/event.js +5 -3
- package/lib/abstract/chevreAdmin/eventOffer.d.ts +53 -0
- package/lib/abstract/chevreAdmin/eventOffer.js +134 -0
- package/lib/abstract/chevreAdmin.d.ts +9 -0
- package/lib/abstract/chevreAdmin.js +20 -0
- package/lib/abstract/cloud/admin/event.d.ts +4 -0
- package/lib/abstract/cloud/admin/event.js +1 -2
- package/lib/abstract/cloud/pay/payment.d.ts +0 -2
- package/lib/abstract/cloud/pay/payment.js +4 -6
- package/lib/bundle.js +804 -649
- package/package.json +2 -2
|
@@ -90,7 +90,8 @@ async function main() {
|
|
|
90
90
|
superEventId: '7k9ayl8hc',
|
|
91
91
|
hasTicketedSeat: true,
|
|
92
92
|
typeOf: client.factory.eventType.ScreeningEvent,
|
|
93
|
-
disableOverwriteMakesOffer: true
|
|
93
|
+
disableOverwriteMakesOffer: true,
|
|
94
|
+
useExtensibleOffer: false
|
|
94
95
|
}
|
|
95
96
|
);
|
|
96
97
|
console.log('created.');
|
|
@@ -91,7 +91,8 @@ async function main() {
|
|
|
91
91
|
superEventId: SUPER_EVENT_ID,
|
|
92
92
|
hasTicketedSeat: true,
|
|
93
93
|
typeOf: client.factory.eventType.ScreeningEvent,
|
|
94
|
-
disableOverwriteMakesOffer: false
|
|
94
|
+
disableOverwriteMakesOffer: false,
|
|
95
|
+
useExtensibleOffer: false
|
|
95
96
|
}
|
|
96
97
|
);
|
|
97
98
|
console.log('created.');
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
// tslint:disable:no-console
|
|
2
|
+
// tslint:disable-next-line:no-implicit-dependencies
|
|
3
|
+
import * as client from '../../../../lib/index';
|
|
4
|
+
import * as auth from '../../auth/authAsAdmin';
|
|
5
|
+
|
|
6
|
+
const PROJECT_ID = String(process.env.PROJECT_ID);
|
|
7
|
+
const SELLER_ID = '59d20831e53ebc2b4e774466';
|
|
8
|
+
const OFFER_IDENTIFIER = '20251115eventOffer01';
|
|
9
|
+
const itemOfferedIdentifier = '20251113ABC12345102300';
|
|
10
|
+
|
|
11
|
+
// tslint:disable-next-line:max-func-body-length
|
|
12
|
+
async function main() {
|
|
13
|
+
const authClient = await auth.login();
|
|
14
|
+
await authClient.refreshAccessToken();
|
|
15
|
+
const loginTicket = authClient.verifyIdToken({});
|
|
16
|
+
console.log('username is', loginTicket.getUsername());
|
|
17
|
+
|
|
18
|
+
const eventOfferService = await (await client.loadChevreAdmin({
|
|
19
|
+
endpoint: <string>process.env.CHEVRE_ENDPOINT,
|
|
20
|
+
auth: authClient
|
|
21
|
+
})).createEventOfferInstance({
|
|
22
|
+
project: { id: PROJECT_ID },
|
|
23
|
+
seller: { id: SELLER_ID }
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
const now = new Date();
|
|
27
|
+
await eventOfferService.createEventOfferByIdentifier(
|
|
28
|
+
[
|
|
29
|
+
{
|
|
30
|
+
identifier: OFFER_IDENTIFIER,
|
|
31
|
+
availableAtOrFrom: { identifier: 'SmartTheaterTXN' },
|
|
32
|
+
validFrom: now,
|
|
33
|
+
validThrough: now
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
{
|
|
37
|
+
itemOfferedIdentifier
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
console.log('created.');
|
|
41
|
+
|
|
42
|
+
await eventOfferService.updateEventOfferByIdentifier(
|
|
43
|
+
[
|
|
44
|
+
{
|
|
45
|
+
identifier: OFFER_IDENTIFIER,
|
|
46
|
+
availableAtOrFrom: { identifier: 'SmartTheaterTXN' },
|
|
47
|
+
validFrom: now,
|
|
48
|
+
validThrough: now
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
{
|
|
52
|
+
itemOfferedIdentifier
|
|
53
|
+
}
|
|
54
|
+
);
|
|
55
|
+
console.log('updated.');
|
|
56
|
+
|
|
57
|
+
const offers = await eventOfferService.findEventOffers({
|
|
58
|
+
limit: 10,
|
|
59
|
+
page: 1,
|
|
60
|
+
// itemOfferedId: '691511df7d9f0e2df3d6dcf7'
|
|
61
|
+
itemOfferedId: '69151228ad580da66c8b5068'
|
|
62
|
+
});
|
|
63
|
+
// tslint:disable-next-line:no-null-keyword
|
|
64
|
+
console.dir(offers, { depth: null });
|
|
65
|
+
console.log(offers.length, 'offers found');
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
main()
|
|
69
|
+
.then(() => {
|
|
70
|
+
console.log('success!');
|
|
71
|
+
})
|
|
72
|
+
.catch(console.error);
|
|
@@ -34,7 +34,7 @@ async function main() {
|
|
|
34
34
|
const today = moment()
|
|
35
35
|
.tz('Asia/Tokyo')
|
|
36
36
|
.format('YYYY-MM-DD');
|
|
37
|
-
const startDate = moment(`${today}
|
|
37
|
+
const startDate = moment(`${today}T14:00:00Z`)
|
|
38
38
|
.toDate();
|
|
39
39
|
const endDate = moment(startDate)
|
|
40
40
|
.add(1, 'hour')
|
|
@@ -93,37 +93,38 @@ async function main() {
|
|
|
93
93
|
locationBranchCode: LOCATION_BRANCH_CODE,
|
|
94
94
|
superEventId: SUPER_EVENT_ID,
|
|
95
95
|
hasTicketedSeat: true,
|
|
96
|
-
typeOf: client.factory.eventType.ScreeningEvent
|
|
96
|
+
typeOf: client.factory.eventType.ScreeningEvent,
|
|
97
|
+
useExtensibleOffer: true
|
|
97
98
|
}
|
|
98
99
|
);
|
|
99
100
|
console.log('created.');
|
|
100
101
|
|
|
101
|
-
await adminEventService.updateEventsByIdentifier(
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
);
|
|
126
|
-
console.log('updated.');
|
|
102
|
+
// await adminEventService.updateEventsByIdentifier(
|
|
103
|
+
// [
|
|
104
|
+
// {
|
|
105
|
+
// identifier,
|
|
106
|
+
// doorTime: startDate,
|
|
107
|
+
// startDate,
|
|
108
|
+
// endDate,
|
|
109
|
+
// eventStatus: client.factory.eventStatusType.EventCancelled,
|
|
110
|
+
// additionalProperty: [
|
|
111
|
+
// {
|
|
112
|
+
// name: ADDITIONAL_PROPERTY_NAME,
|
|
113
|
+
// value: `update fromSamples:${moment()
|
|
114
|
+
// .format('YYYY-MM-DD HH:mm')}`
|
|
115
|
+
// }
|
|
116
|
+
// ],
|
|
117
|
+
// offers: {
|
|
118
|
+
// eligibleQuantity: { maxValue: 6 },
|
|
119
|
+
// itemOffered: { id: EVENT_SERVICE_ID }
|
|
120
|
+
// }
|
|
121
|
+
// }
|
|
122
|
+
// ],
|
|
123
|
+
// {
|
|
124
|
+
// typeOf: client.factory.eventType.ScreeningEvent
|
|
125
|
+
// }
|
|
126
|
+
// );
|
|
127
|
+
// console.log('updated.');
|
|
127
128
|
}
|
|
128
129
|
|
|
129
130
|
main()
|
|
@@ -5,6 +5,7 @@ import * as client from '../../../../lib/index';
|
|
|
5
5
|
import { auth } from '../../auth/clientCredentials';
|
|
6
6
|
|
|
7
7
|
const project = { id: String(process.env.PROJECT_ID) };
|
|
8
|
+
const { EVENT_ID } = process.env;
|
|
8
9
|
const profile: client.factory.person.IProfile = {
|
|
9
10
|
email: <string>process.env.TEST_PROFILE_EMAIL,
|
|
10
11
|
givenName: 'Taro ##\n##\r##\n\n\n##\r\r\r##\r\n\r\n\r\n##',
|
|
@@ -77,7 +78,8 @@ async function main() {
|
|
|
77
78
|
inSessionThrough: moment()
|
|
78
79
|
.add(1, 'week')
|
|
79
80
|
.toDate(),
|
|
80
|
-
eventStatuses: [client.factory.eventStatusType.EventScheduled]
|
|
81
|
+
eventStatuses: [client.factory.eventStatusType.EventScheduled],
|
|
82
|
+
...(typeof EVENT_ID === 'string') ? { id: { $eq: EVENT_ID } } : undefined
|
|
81
83
|
});
|
|
82
84
|
console.log(searchScreeningEventsResult.data.length, 'events found');
|
|
83
85
|
|
|
@@ -367,7 +369,10 @@ async function authorizeSeatReservationByEvent(params: {
|
|
|
367
369
|
const seatReservationAuth = <IAuthorizeReservationAction>await offerService.authorizeEventService({
|
|
368
370
|
object: {
|
|
369
371
|
reservationFor: {
|
|
370
|
-
id: screeningEvent.id
|
|
372
|
+
id: screeningEvent.id,
|
|
373
|
+
offers: {
|
|
374
|
+
identifier: '20251113eventOffer' // 拡張オファー使用の場合、オファーコードを指定する
|
|
375
|
+
}
|
|
371
376
|
},
|
|
372
377
|
acceptedOffer: selectedSeatOffers.map((o) => {
|
|
373
378
|
return {
|
package/example/src/cloud/transaction/processPlaceOrderUsingTicketIssuedThroughCreditCard.ts
CHANGED
|
@@ -4,16 +4,19 @@ import { auth } from '../../auth/clientCredentials';
|
|
|
4
4
|
import { authorizeCreditCardAsyncForcibly } from './authorizeCreditCardAsyncForcibly';
|
|
5
5
|
|
|
6
6
|
const project = { id: String(process.env.PROJECT_ID) };
|
|
7
|
+
const {
|
|
8
|
+
/**
|
|
9
|
+
* 予約対象イベントID
|
|
10
|
+
*/
|
|
11
|
+
EVENT_ID
|
|
12
|
+
} = process.env;
|
|
7
13
|
|
|
8
14
|
/**
|
|
9
15
|
* 出力メンバーシップを持つ決済サービスID
|
|
10
16
|
*/
|
|
11
17
|
const PAYMENT_SERVICE_ID = '64f193ad5e79fe8a06ca3156';
|
|
18
|
+
// const PAYMENT_SERVICE_ID = '5f9a4fed4f3709000abe6415';
|
|
12
19
|
|
|
13
|
-
/**
|
|
14
|
-
* 予約対象イベントID
|
|
15
|
-
*/
|
|
16
|
-
const EVENT_ID = '6909c6185407a11616fc869a';
|
|
17
20
|
const profile = {
|
|
18
21
|
email: <string>process.env.TEST_PROFILE_EMAIL,
|
|
19
22
|
givenName: 'Taro',
|
|
@@ -48,6 +51,10 @@ const creditCard = {
|
|
|
48
51
|
*/
|
|
49
52
|
// tslint:disable-next-line:max-func-body-length
|
|
50
53
|
async function main() {
|
|
54
|
+
if (typeof EVENT_ID !== 'string') {
|
|
55
|
+
throw new Error('environment variables required');
|
|
56
|
+
}
|
|
57
|
+
|
|
51
58
|
const authClient = await auth();
|
|
52
59
|
|
|
53
60
|
const sellerService = new (await client.loadService()).Seller({
|
package/example/src/cloud/transaction/processPlaceOrderUsingTicketIssuedThroughFaceToFace.ts
CHANGED
|
@@ -3,6 +3,12 @@ import * as client from '../../../../lib/index';
|
|
|
3
3
|
import * as auth from '../../auth/authAsAdmin';
|
|
4
4
|
|
|
5
5
|
const project = { id: String(process.env.PROJECT_ID) };
|
|
6
|
+
const {
|
|
7
|
+
/**
|
|
8
|
+
* 予約対象イベントID
|
|
9
|
+
*/
|
|
10
|
+
EVENT_ID
|
|
11
|
+
} = process.env;
|
|
6
12
|
|
|
7
13
|
const profile = {
|
|
8
14
|
email: <string>process.env.TEST_PROFILE_EMAIL,
|
|
@@ -31,6 +37,10 @@ const profile = {
|
|
|
31
37
|
*/
|
|
32
38
|
// tslint:disable-next-line:max-func-body-length
|
|
33
39
|
async function main() {
|
|
40
|
+
if (typeof EVENT_ID !== 'string') {
|
|
41
|
+
throw new Error('environment variables required');
|
|
42
|
+
}
|
|
43
|
+
|
|
34
44
|
const authClient = await auth.login();
|
|
35
45
|
await authClient.refreshAccessToken();
|
|
36
46
|
const loginTicket = authClient.verifyIdToken({});
|
|
@@ -97,7 +107,7 @@ async function main() {
|
|
|
97
107
|
await offerService.authorizeEventService({
|
|
98
108
|
object: {
|
|
99
109
|
reservationFor: {
|
|
100
|
-
id:
|
|
110
|
+
id: EVENT_ID
|
|
101
111
|
},
|
|
102
112
|
acceptedOffer: [{
|
|
103
113
|
id: 'bkpnwjw1w', // メンバーシップ適用オファーを指定
|
|
@@ -51,6 +51,10 @@ export declare class EventService extends Service {
|
|
|
51
51
|
hasTicketedSeat: boolean;
|
|
52
52
|
typeOf: factory.eventType.ScreeningEvent;
|
|
53
53
|
disableOverwriteMakesOffer: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* 拡張オファーを使用する
|
|
56
|
+
*/
|
|
57
|
+
useExtensibleOffer: boolean;
|
|
54
58
|
}): Promise<void>;
|
|
55
59
|
/**
|
|
56
60
|
* 識別子によるイベント複数更新
|
|
@@ -68,11 +68,11 @@ var EventService = /** @class */ (function (_super) {
|
|
|
68
68
|
*/
|
|
69
69
|
EventService.prototype.createIfNotExistByIdentifier = function (params, options) {
|
|
70
70
|
return __awaiter(this, void 0, void 0, function () {
|
|
71
|
-
var superEventId, locationBranchCode, hasTicketedSeat, typeOf, disableOverwriteMakesOffer;
|
|
71
|
+
var superEventId, locationBranchCode, hasTicketedSeat, typeOf, disableOverwriteMakesOffer, useExtensibleOffer;
|
|
72
72
|
return __generator(this, function (_a) {
|
|
73
73
|
switch (_a.label) {
|
|
74
74
|
case 0:
|
|
75
|
-
superEventId = options.superEventId, locationBranchCode = options.locationBranchCode, hasTicketedSeat = options.hasTicketedSeat, typeOf = options.typeOf, disableOverwriteMakesOffer = options.disableOverwriteMakesOffer;
|
|
75
|
+
superEventId = options.superEventId, locationBranchCode = options.locationBranchCode, hasTicketedSeat = options.hasTicketedSeat, typeOf = options.typeOf, disableOverwriteMakesOffer = options.disableOverwriteMakesOffer, useExtensibleOffer = options.useExtensibleOffer;
|
|
76
76
|
return [4 /*yield*/, this.fetch({
|
|
77
77
|
uri: '/events',
|
|
78
78
|
method: 'POST',
|
|
@@ -80,7 +80,9 @@ var EventService = /** @class */ (function (_super) {
|
|
|
80
80
|
qs: {
|
|
81
81
|
superEventId: superEventId, locationBranchCode: locationBranchCode, hasTicketedSeat: hasTicketedSeat, typeOf: typeOf,
|
|
82
82
|
// support disableOverwriteMakesOffer(2025-10-28~)
|
|
83
|
-
disableOverwriteMakesOffer: disableOverwriteMakesOffer === true
|
|
83
|
+
disableOverwriteMakesOffer: disableOverwriteMakesOffer === true,
|
|
84
|
+
// support useExtensibleOffer(2025-11-12~)
|
|
85
|
+
useExtensibleOffer: useExtensibleOffer === true
|
|
84
86
|
},
|
|
85
87
|
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
86
88
|
})];
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import * as factory from '../factory';
|
|
2
|
+
import { Service } from '../service';
|
|
3
|
+
export declare type ICreatingEventOffer = Pick<factory.eventOffer.IEventOffer, 'identifier' | 'offeredBy' | 'validFrom' | 'validThrough' | 'availableAtOrFrom'>;
|
|
4
|
+
export interface IFindParams {
|
|
5
|
+
/**
|
|
6
|
+
* max: 20
|
|
7
|
+
*/
|
|
8
|
+
limit: number;
|
|
9
|
+
page: number;
|
|
10
|
+
/**
|
|
11
|
+
* イベントID
|
|
12
|
+
*/
|
|
13
|
+
itemOfferedId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* イベントIDリスト
|
|
16
|
+
* max length: 10
|
|
17
|
+
*/
|
|
18
|
+
itemOfferedIds?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* イベントオファーコードリスト
|
|
21
|
+
* max length: 10
|
|
22
|
+
*/
|
|
23
|
+
identifiers?: string[];
|
|
24
|
+
id?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 拡張イベントオファーサービス
|
|
28
|
+
*/
|
|
29
|
+
export declare class EventOfferService extends Service {
|
|
30
|
+
createEventOfferByIdentifier(
|
|
31
|
+
/**
|
|
32
|
+
* max: 20
|
|
33
|
+
*/
|
|
34
|
+
params: ICreatingEventOffer[], options: {
|
|
35
|
+
/**
|
|
36
|
+
* イベント識別子
|
|
37
|
+
*/
|
|
38
|
+
itemOfferedIdentifier: string;
|
|
39
|
+
}): Promise<void>;
|
|
40
|
+
updateEventOfferByIdentifier(
|
|
41
|
+
/**
|
|
42
|
+
* max: 20
|
|
43
|
+
*/
|
|
44
|
+
params: ICreatingEventOffer[], options: {
|
|
45
|
+
/**
|
|
46
|
+
* イベント識別子
|
|
47
|
+
*/
|
|
48
|
+
itemOfferedIdentifier: string;
|
|
49
|
+
}): Promise<void>;
|
|
50
|
+
findEventOffers(params: IFindParams): Promise<(Omit<factory.eventOffer.IEventOffer, 'project'> & {
|
|
51
|
+
id: string;
|
|
52
|
+
})[]>;
|
|
53
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
22
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
27
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
28
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
29
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
|
+
function step(op) {
|
|
31
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
+
while (_) try {
|
|
33
|
+
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;
|
|
34
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
|
+
switch (op[0]) {
|
|
36
|
+
case 0: case 1: t = op; break;
|
|
37
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
38
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
39
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
40
|
+
default:
|
|
41
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
42
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
43
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
44
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
45
|
+
if (t[2]) _.ops.pop();
|
|
46
|
+
_.trys.pop(); continue;
|
|
47
|
+
}
|
|
48
|
+
op = body.call(thisArg, _);
|
|
49
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
50
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54
|
+
exports.EventOfferService = void 0;
|
|
55
|
+
var http_status_1 = require("http-status");
|
|
56
|
+
var service_1 = require("../service");
|
|
57
|
+
var BASE_URI = '/eventOffers';
|
|
58
|
+
/**
|
|
59
|
+
* 拡張イベントオファーサービス
|
|
60
|
+
*/
|
|
61
|
+
var EventOfferService = /** @class */ (function (_super) {
|
|
62
|
+
__extends(EventOfferService, _super);
|
|
63
|
+
function EventOfferService() {
|
|
64
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
65
|
+
}
|
|
66
|
+
EventOfferService.prototype.createEventOfferByIdentifier = function (
|
|
67
|
+
/**
|
|
68
|
+
* max: 20
|
|
69
|
+
*/
|
|
70
|
+
params, options) {
|
|
71
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
72
|
+
var itemOfferedIdentifier;
|
|
73
|
+
return __generator(this, function (_a) {
|
|
74
|
+
switch (_a.label) {
|
|
75
|
+
case 0:
|
|
76
|
+
itemOfferedIdentifier = options.itemOfferedIdentifier;
|
|
77
|
+
return [4 /*yield*/, this.fetch({
|
|
78
|
+
uri: BASE_URI,
|
|
79
|
+
method: 'POST',
|
|
80
|
+
body: params,
|
|
81
|
+
qs: { itemOfferedIdentifier: itemOfferedIdentifier },
|
|
82
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
83
|
+
})];
|
|
84
|
+
case 1:
|
|
85
|
+
_a.sent();
|
|
86
|
+
return [2 /*return*/];
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
});
|
|
90
|
+
};
|
|
91
|
+
EventOfferService.prototype.updateEventOfferByIdentifier = function (
|
|
92
|
+
/**
|
|
93
|
+
* max: 20
|
|
94
|
+
*/
|
|
95
|
+
params, options) {
|
|
96
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
97
|
+
var itemOfferedIdentifier;
|
|
98
|
+
return __generator(this, function (_a) {
|
|
99
|
+
switch (_a.label) {
|
|
100
|
+
case 0:
|
|
101
|
+
itemOfferedIdentifier = options.itemOfferedIdentifier;
|
|
102
|
+
return [4 /*yield*/, this.fetch({
|
|
103
|
+
uri: BASE_URI,
|
|
104
|
+
method: 'PUT',
|
|
105
|
+
body: params,
|
|
106
|
+
qs: { itemOfferedIdentifier: itemOfferedIdentifier },
|
|
107
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT]
|
|
108
|
+
})];
|
|
109
|
+
case 1:
|
|
110
|
+
_a.sent();
|
|
111
|
+
return [2 /*return*/];
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
};
|
|
116
|
+
EventOfferService.prototype.findEventOffers = function (params) {
|
|
117
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
118
|
+
var _this = this;
|
|
119
|
+
return __generator(this, function (_a) {
|
|
120
|
+
return [2 /*return*/, this.fetch({
|
|
121
|
+
uri: BASE_URI,
|
|
122
|
+
method: 'GET',
|
|
123
|
+
qs: params,
|
|
124
|
+
expectedStatusCodes: [http_status_1.OK]
|
|
125
|
+
})
|
|
126
|
+
.then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
127
|
+
return [2 /*return*/, response.json()];
|
|
128
|
+
}); }); })];
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
return EventOfferService;
|
|
133
|
+
}(service_1.Service));
|
|
134
|
+
exports.EventOfferService = EventOfferService;
|
|
@@ -4,6 +4,7 @@ import type { AuthorizationService } from './chevreAdmin/authorization';
|
|
|
4
4
|
import type { CreativeWorkService } from './chevreAdmin/creativeWork';
|
|
5
5
|
import type { CustomerService } from './chevreAdmin/customer';
|
|
6
6
|
import type { EventService } from './chevreAdmin/event';
|
|
7
|
+
import type { EventOfferService } from './chevreAdmin/eventOffer';
|
|
7
8
|
import type { EventSeriesService } from './chevreAdmin/eventSeries';
|
|
8
9
|
import type { MeService } from './chevreAdmin/me';
|
|
9
10
|
import type { MemberService } from './chevreAdmin/member';
|
|
@@ -48,6 +49,13 @@ export declare namespace service {
|
|
|
48
49
|
namespace Event {
|
|
49
50
|
let svc: typeof EventService | undefined;
|
|
50
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* イベントオファーサービス
|
|
54
|
+
*/
|
|
55
|
+
type EventOffer = EventOfferService;
|
|
56
|
+
namespace EventOffer {
|
|
57
|
+
let svc: typeof EventOfferService | undefined;
|
|
58
|
+
}
|
|
51
59
|
/**
|
|
52
60
|
* 施設コンテンツサービス
|
|
53
61
|
*/
|
|
@@ -166,6 +174,7 @@ export declare class ChevreAdmin {
|
|
|
166
174
|
createCreativeWorkInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CreativeWorkService>;
|
|
167
175
|
createCustomerInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<CustomerService>;
|
|
168
176
|
createEventInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventService>;
|
|
177
|
+
createEventOfferInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventOfferService>;
|
|
169
178
|
createEventSeriesInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<EventSeriesService>;
|
|
170
179
|
createMeInstance(): Promise<MeService>;
|
|
171
180
|
createMemberInstance(params: Pick<IOptions, 'project'> & Pick<IAdditionalOptions, 'seller'>): Promise<MemberService>;
|
|
@@ -62,6 +62,9 @@ var service;
|
|
|
62
62
|
var Event;
|
|
63
63
|
(function (Event) {
|
|
64
64
|
})(Event = service.Event || (service.Event = {}));
|
|
65
|
+
var EventOffer;
|
|
66
|
+
(function (EventOffer) {
|
|
67
|
+
})(EventOffer = service.EventOffer || (service.EventOffer = {}));
|
|
65
68
|
var EventSeries;
|
|
66
69
|
(function (EventSeries) {
|
|
67
70
|
})(EventSeries = service.EventSeries || (service.EventSeries = {}));
|
|
@@ -186,6 +189,23 @@ var ChevreAdmin = /** @class */ (function () {
|
|
|
186
189
|
});
|
|
187
190
|
});
|
|
188
191
|
};
|
|
192
|
+
ChevreAdmin.prototype.createEventOfferInstance = function (params) {
|
|
193
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
194
|
+
var _a;
|
|
195
|
+
return __generator(this, function (_b) {
|
|
196
|
+
switch (_b.label) {
|
|
197
|
+
case 0:
|
|
198
|
+
if (!(service.EventOffer.svc === undefined)) return [3 /*break*/, 2];
|
|
199
|
+
_a = service.EventOffer;
|
|
200
|
+
return [4 /*yield*/, Promise.resolve().then(function () { return require('./chevreAdmin/eventOffer'); })];
|
|
201
|
+
case 1:
|
|
202
|
+
_a.svc = (_b.sent()).EventOfferService;
|
|
203
|
+
_b.label = 2;
|
|
204
|
+
case 2: return [2 /*return*/, new service.EventOffer.svc(__assign(__assign(__assign({}, this.options), params), { retryableStatusCodes: [] }))];
|
|
205
|
+
}
|
|
206
|
+
});
|
|
207
|
+
});
|
|
208
|
+
};
|
|
189
209
|
ChevreAdmin.prototype.createEventSeriesInstance = function (params) {
|
|
190
210
|
return __awaiter(this, void 0, void 0, function () {
|
|
191
211
|
var _a;
|
|
@@ -96,8 +96,7 @@ var EventService = /** @class */ (function (_super) {
|
|
|
96
96
|
eventService = _b.sent();
|
|
97
97
|
return [4 /*yield*/, eventService.createIfNotExistByIdentifier(params, __assign(__assign({}, options), {
|
|
98
98
|
// disableOverwriteMakesOffer: true // force true(2025-10-28~)
|
|
99
|
-
disableOverwriteMakesOffer: false
|
|
100
|
-
}))];
|
|
99
|
+
disableOverwriteMakesOffer: false, useExtensibleOffer: options.useExtensibleOffer === true }))];
|
|
101
100
|
case 3:
|
|
102
101
|
_b.sent();
|
|
103
102
|
return [2 /*return*/];
|
|
@@ -23,7 +23,6 @@ export declare class PaymentService extends Service {
|
|
|
23
23
|
* min: 1000 ms
|
|
24
24
|
*/
|
|
25
25
|
intervalAfterIssueTicketInMS?: number;
|
|
26
|
-
disableIssueTicket: boolean;
|
|
27
26
|
}): Promise<{
|
|
28
27
|
/**
|
|
29
28
|
* task ID
|
|
@@ -63,7 +62,6 @@ export declare class PaymentService extends Service {
|
|
|
63
62
|
* min: 1000 ms
|
|
64
63
|
*/
|
|
65
64
|
intervalAfterIssueTicketInMS?: number;
|
|
66
|
-
disableIssueTicket: boolean;
|
|
67
65
|
}): Promise<{
|
|
68
66
|
/**
|
|
69
67
|
* task ID
|
|
@@ -135,13 +135,12 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
135
135
|
*/
|
|
136
136
|
PaymentService.prototype.authorizeCreditCardAsync = function (params, options) {
|
|
137
137
|
return __awaiter(this, void 0, void 0, function () {
|
|
138
|
-
var object, purpose, intervalAfterIssueTicketInMS,
|
|
138
|
+
var object, purpose, intervalAfterIssueTicketInMS, _a, auth, endpoint, project, seller, disableAutoRetry, retryableStatusCodes, chevrePay, paymentService, ticketToken;
|
|
139
139
|
return __generator(this, function (_b) {
|
|
140
140
|
switch (_b.label) {
|
|
141
141
|
case 0:
|
|
142
142
|
object = params.object, purpose = params.purpose;
|
|
143
143
|
intervalAfterIssueTicketInMS = options === null || options === void 0 ? void 0 : options.intervalAfterIssueTicketInMS;
|
|
144
|
-
disableIssueTicket = (options === null || options === void 0 ? void 0 : options.disableIssueTicket) === true;
|
|
145
144
|
_a = this.options, auth = _a.auth, endpoint = _a.endpoint, project = _a.project, seller = _a.seller, disableAutoRetry = _a.disableAutoRetry, retryableStatusCodes = _a.retryableStatusCodes;
|
|
146
145
|
return [4 /*yield*/, index_1.loadChevrePay({ auth: auth, endpoint: endpoint, disableAutoRetry: disableAutoRetry })];
|
|
147
146
|
case 1:
|
|
@@ -159,7 +158,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
159
158
|
return [4 /*yield*/, this.issueTicketThroughCreditCardIfNotExists({ object: object, purpose: purpose }, {
|
|
160
159
|
checkPaymentMethodId: true,
|
|
161
160
|
intervalAfterIssueTicketInMS: intervalAfterIssueTicketInMS,
|
|
162
|
-
disableIssueTicket:
|
|
161
|
+
disableIssueTicket: false
|
|
163
162
|
})];
|
|
164
163
|
case 3:
|
|
165
164
|
ticketToken = (_b.sent()).ticketToken;
|
|
@@ -212,13 +211,12 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
212
211
|
*/
|
|
213
212
|
PaymentService.prototype.publishCreditCardPaymentUrlAsync = function (params, options) {
|
|
214
213
|
return __awaiter(this, void 0, void 0, function () {
|
|
215
|
-
var object, purpose, intervalAfterIssueTicketInMS,
|
|
214
|
+
var object, purpose, intervalAfterIssueTicketInMS, _a, auth, endpoint, project, seller, disableAutoRetry, retryableStatusCodes, chevrePay, paymentService, ticketToken;
|
|
216
215
|
return __generator(this, function (_b) {
|
|
217
216
|
switch (_b.label) {
|
|
218
217
|
case 0:
|
|
219
218
|
object = params.object, purpose = params.purpose;
|
|
220
219
|
intervalAfterIssueTicketInMS = options === null || options === void 0 ? void 0 : options.intervalAfterIssueTicketInMS;
|
|
221
|
-
disableIssueTicket = (options === null || options === void 0 ? void 0 : options.disableIssueTicket) === true;
|
|
222
220
|
_a = this.options, auth = _a.auth, endpoint = _a.endpoint, project = _a.project, seller = _a.seller, disableAutoRetry = _a.disableAutoRetry, retryableStatusCodes = _a.retryableStatusCodes;
|
|
223
221
|
return [4 /*yield*/, index_1.loadChevrePay({ auth: auth, endpoint: endpoint, disableAutoRetry: disableAutoRetry })];
|
|
224
222
|
case 1:
|
|
@@ -237,7 +235,7 @@ var PaymentService = /** @class */ (function (_super) {
|
|
|
237
235
|
return [4 /*yield*/, this.issueTicketThroughCreditCardIfNotExists({ object: object, purpose: purpose }, {
|
|
238
236
|
checkPaymentMethodId: false,
|
|
239
237
|
intervalAfterIssueTicketInMS: intervalAfterIssueTicketInMS,
|
|
240
|
-
disableIssueTicket:
|
|
238
|
+
disableIssueTicket: false
|
|
241
239
|
})];
|
|
242
240
|
case 3:
|
|
243
241
|
ticketToken = (_b.sent()).ticketToken;
|