@cinerino/sdk 5.16.0-alpha.1 → 5.16.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.
@@ -1,4 +1,3 @@
1
- import { IAuthorizeCOAEventServiceResult } from '../../../chevreTxn/transaction/placeOrder/factory';
2
1
  import * as factory from '../../../factory';
3
2
  import { IAdditionalOptions, IOptions } from '../../../service';
4
3
  import { PlaceOrderTransactionService } from './placeOrder';
@@ -8,6 +7,24 @@ interface IAppliesToSurfrock {
8
7
  typeOf: string;
9
8
  };
10
9
  }
10
+ interface IOptimizedAuthorizeCOAEventServiceResult {
11
+ /**
12
+ * 承認アクションID
13
+ */
14
+ id: string;
15
+ result: {
16
+ price?: number;
17
+ /**
18
+ * COA仮予約レスポンス
19
+ */
20
+ responseBody: {
21
+ /**
22
+ * 仮予約番号
23
+ */
24
+ tmpReserveNum: string;
25
+ };
26
+ };
27
+ }
11
28
  /**
12
29
  * 注文取引サービス(sskts専用)
13
30
  */
@@ -34,7 +51,7 @@ export declare class PlaceOrderTransaction4ssktsService extends PlaceOrderTransa
34
51
  appliesToSurfrock?: IAppliesToSurfrock;
35
52
  };
36
53
  purpose: factory.action.authorize.offer.eventService.IPurpose;
37
- }): Promise<IAuthorizeCOAEventServiceResult>;
54
+ }): Promise<IOptimizedAuthorizeCOAEventServiceResult>;
38
55
  /**
39
56
  * COA興行オファー承認取消
40
57
  */
@@ -71,6 +88,6 @@ export declare class PlaceOrderTransaction4ssktsService extends PlaceOrderTransa
71
88
  appliesToSurfrock?: IAppliesToSurfrock;
72
89
  };
73
90
  purpose: factory.action.authorize.offer.eventService.IPurpose;
74
- }): Promise<IAuthorizeCOAEventServiceResult>;
91
+ }): Promise<IOptimizedAuthorizeCOAEventServiceResult>;
75
92
  }
76
93
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "5.16.0-alpha.1",
3
+ "version": "5.16.0",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {