@cinerino/sdk 3.152.0-alpha.2 → 3.152.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.
@@ -4969,22 +4969,6 @@ var OfferService = /** @class */ (function (_super) {
4969
4969
  });
4970
4970
  });
4971
4971
  };
4972
- /**
4973
- * 興行オファー承認のacceptedOffer参照
4974
- */
4975
- // public async findEventServiceByCOAObject(params: {
4976
- // /**
4977
- // * 承認アクションID
4978
- // */
4979
- // id: string;
4980
- // }): Promise<Pick<factory.action.authorize.offer.seatReservation.IObject<factory.service.webAPI.Identifier.COA>, 'acceptedOffer'>> {
4981
- // return this.fetch({
4982
- // uri: `/offers/${factory.product.ProductType.EventService}ByCOA/authorize/${params.id}/object`,
4983
- // method: 'GET',
4984
- // expectedStatusCodes: [OK]
4985
- // })
4986
- // .then(async (response) => response.json());
4987
- // }
4988
4972
  /**
4989
4973
  * 興行オファー承認変更
4990
4974
  */
@@ -108,16 +108,16 @@ export declare class OfferService extends Service {
108
108
  * 興行オファー承認
109
109
  */
110
110
  authorizeEventServiceByCOA(params: {
111
- agent: {
112
- id: string;
113
- };
114
111
  object: {
115
112
  acceptedOffer: factory.action.authorize.offer.seatReservation.IAcceptedOfferBeforeAuthorize4COA[];
116
113
  event: {
117
114
  id: string;
118
115
  };
119
116
  };
120
- purpose: factory.action.authorize.offer.seatReservation.IPurpose | string;
117
+ /**
118
+ * token
119
+ */
120
+ purpose: string;
121
121
  result: {
122
122
  requestBody: factory.action.authorize.offer.seatReservation.IRequestBody<factory.service.webAPI.Identifier.COA>;
123
123
  responseBody: factory.action.authorize.offer.seatReservation.IResponseBody<factory.service.webAPI.Identifier.COA>;
@@ -127,14 +127,14 @@ export declare class OfferService extends Service {
127
127
  * 興行オファー承認取消
128
128
  */
129
129
  voidAuthorizationByCOA(params: {
130
- agent: {
131
- id: string;
132
- };
133
130
  /**
134
131
  * 承認アクションID
135
132
  */
136
133
  id: string;
137
- purpose: factory.action.authorize.offer.seatReservation.IPurpose | string;
134
+ /**
135
+ * token
136
+ */
137
+ purpose: string;
138
138
  }): Promise<{
139
139
  theaterCode?: string;
140
140
  dateJouei?: string;
@@ -143,16 +143,10 @@ export declare class OfferService extends Service {
143
143
  timeBegin?: string;
144
144
  tmpReserveNum?: string;
145
145
  }>;
146
- /**
147
- * 興行オファー承認のacceptedOffer参照
148
- */
149
146
  /**
150
147
  * 興行オファー承認変更
151
148
  */
152
149
  updateEventServiceByCOA(params: {
153
- agent: {
154
- id: string;
155
- };
156
150
  /**
157
151
  * 承認アクションID
158
152
  */
@@ -163,6 +157,9 @@ export declare class OfferService extends Service {
163
157
  id: string;
164
158
  };
165
159
  };
166
- purpose: factory.action.authorize.offer.seatReservation.IPurpose | string;
160
+ /**
161
+ * token
162
+ */
163
+ purpose: string;
167
164
  }): Promise<IAuthorizeCOAEventServiceResult>;
168
165
  }
@@ -283,22 +283,6 @@ var OfferService = /** @class */ (function (_super) {
283
283
  });
284
284
  });
285
285
  };
286
- /**
287
- * 興行オファー承認のacceptedOffer参照
288
- */
289
- // public async findEventServiceByCOAObject(params: {
290
- // /**
291
- // * 承認アクションID
292
- // */
293
- // id: string;
294
- // }): Promise<Pick<factory.action.authorize.offer.seatReservation.IObject<factory.service.webAPI.Identifier.COA>, 'acceptedOffer'>> {
295
- // return this.fetch({
296
- // uri: `/offers/${factory.product.ProductType.EventService}ByCOA/authorize/${params.id}/object`,
297
- // method: 'GET',
298
- // expectedStatusCodes: [OK]
299
- // })
300
- // .then(async (response) => response.json());
301
- // }
302
286
  /**
303
287
  * 興行オファー承認変更
304
288
  */
@@ -42,8 +42,6 @@ export declare class PaymentService extends Service {
42
42
  movieTickets: Pick<factory.action.trade.pay.IMovieTicket, 'accessCode' | 'identifier' | 'serviceOutput' | 'serviceType'>[];
43
43
  };
44
44
  purpose: IPurpose;
45
- forceAllReservation: boolean;
46
- justCheckIfValidMovieTickets: boolean;
47
45
  }): Promise<void>;
48
46
  /**
49
47
  * 決済ロケーション発行
package/lib/bundle.js CHANGED
@@ -4969,22 +4969,6 @@ var OfferService = /** @class */ (function (_super) {
4969
4969
  });
4970
4970
  });
4971
4971
  };
4972
- /**
4973
- * 興行オファー承認のacceptedOffer参照
4974
- */
4975
- // public async findEventServiceByCOAObject(params: {
4976
- // /**
4977
- // * 承認アクションID
4978
- // */
4979
- // id: string;
4980
- // }): Promise<Pick<factory.action.authorize.offer.seatReservation.IObject<factory.service.webAPI.Identifier.COA>, 'acceptedOffer'>> {
4981
- // return this.fetch({
4982
- // uri: `/offers/${factory.product.ProductType.EventService}ByCOA/authorize/${params.id}/object`,
4983
- // method: 'GET',
4984
- // expectedStatusCodes: [OK]
4985
- // })
4986
- // .then(async (response) => response.json());
4987
- // }
4988
4972
  /**
4989
4973
  * 興行オファー承認変更
4990
4974
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "3.152.0-alpha.2",
3
+ "version": "3.152.0",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {
@@ -97,7 +97,7 @@
97
97
  "watchify": "^3.11.1"
98
98
  },
99
99
  "dependencies": {
100
- "@chevre/factory": "4.308.0-alpha.1",
100
+ "@chevre/factory": "4.308.0",
101
101
  "debug": "^3.2.6",
102
102
  "http-status": "^1.4.2",
103
103
  "idtoken-verifier": "^2.0.3",