@cinerino/sdk 8.1.0 → 8.2.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/lib/abstract/chevreAdmin/assetTransaction/cancelReservation.d.ts +3 -1
- package/lib/abstract/chevreAdmin/assetTransaction/moneyTransfer.d.ts +3 -1
- package/lib/abstract/chevreAdmin/assetTransaction/pay.d.ts +3 -1
- package/lib/abstract/chevreAdmin/assetTransaction/refund.d.ts +3 -1
- package/lib/abstract/chevreAdmin/assetTransaction/registerService.d.ts +3 -1
- package/package.json +2 -2
|
@@ -12,7 +12,9 @@ export declare class CancelReservationAssetTransactionService extends Service {
|
|
|
12
12
|
/**
|
|
13
13
|
* 取引を開始する
|
|
14
14
|
*/
|
|
15
|
-
start(params: IStartParams): Promise<
|
|
15
|
+
start(params: IStartParams): Promise<{
|
|
16
|
+
id: string;
|
|
17
|
+
}>;
|
|
16
18
|
/**
|
|
17
19
|
* 取引開始&確定
|
|
18
20
|
*/
|
|
@@ -7,7 +7,9 @@ export declare class MoneyTransferAssetTransactionService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 取引開始
|
|
9
9
|
*/
|
|
10
|
-
start(params: factory.assetTransaction.moneyTransfer.IStartParamsBeforeStart): Promise<
|
|
10
|
+
start(params: factory.assetTransaction.moneyTransfer.IStartParamsBeforeStart): Promise<{
|
|
11
|
+
id: string;
|
|
12
|
+
}>;
|
|
11
13
|
/**
|
|
12
14
|
* 取引確定
|
|
13
15
|
*/
|
|
@@ -26,7 +26,9 @@ export declare class PayAssetTransactionService extends Service {
|
|
|
26
26
|
/**
|
|
27
27
|
* 取引開始
|
|
28
28
|
*/
|
|
29
|
-
start(params: factory.assetTransaction.pay.IStartParamsWithoutDetail): Promise<
|
|
29
|
+
start(params: factory.assetTransaction.pay.IStartParamsWithoutDetail): Promise<{
|
|
30
|
+
id: string;
|
|
31
|
+
}>;
|
|
30
32
|
/**
|
|
31
33
|
* 取引確定
|
|
32
34
|
*/
|
|
@@ -7,7 +7,9 @@ export declare class RefundAssetTransactionService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 取引開始
|
|
9
9
|
*/
|
|
10
|
-
start(params: factory.assetTransaction.refund.IStartParamsWithoutDetail): Promise<
|
|
10
|
+
start(params: factory.assetTransaction.refund.IStartParamsWithoutDetail): Promise<{
|
|
11
|
+
id: string;
|
|
12
|
+
}>;
|
|
11
13
|
/**
|
|
12
14
|
* 取引確定
|
|
13
15
|
*/
|
|
@@ -7,7 +7,9 @@ export declare class RegisterServiceAssetTransactionService extends Service {
|
|
|
7
7
|
/**
|
|
8
8
|
* 取引開始
|
|
9
9
|
*/
|
|
10
|
-
start(params: factory.assetTransaction.registerService.IStartParamsWithoutDetail): Promise<
|
|
10
|
+
start(params: factory.assetTransaction.registerService.IStartParamsWithoutDetail): Promise<{
|
|
11
|
+
id: string;
|
|
12
|
+
}>;
|
|
11
13
|
/**
|
|
12
14
|
* 取引確定
|
|
13
15
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0-alpha.0",
|
|
4
4
|
"description": "Cinerino SDK",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"watchify": "^3.11.1"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@chevre/factory": "4.
|
|
95
|
+
"@chevre/factory": "4.377.0-alpha.4",
|
|
96
96
|
"debug": "3.2.7",
|
|
97
97
|
"http-status": "1.7.4",
|
|
98
98
|
"idtoken-verifier": "2.0.3",
|