@arbiwallet/contracts 1.0.141 → 1.0.142
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/gen/deposit.ts +3 -0
- package/package.json +1 -1
- package/proto/deposit.proto +3 -0
package/gen/deposit.ts
CHANGED
|
@@ -113,6 +113,9 @@ export interface GetPaymentDillDepositStatusResponse {
|
|
|
113
113
|
completedAt?: string | undefined;
|
|
114
114
|
expiresAt?: string | undefined;
|
|
115
115
|
expiredAt?: string | undefined;
|
|
116
|
+
payoutStatus?: string | undefined;
|
|
117
|
+
payoutError?: string | undefined;
|
|
118
|
+
payoutId?: number | undefined;
|
|
116
119
|
}
|
|
117
120
|
|
|
118
121
|
export const DEPOSIT_V1_PACKAGE_NAME = "deposit.v1";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.142",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/deposit.proto
CHANGED
|
@@ -108,4 +108,7 @@ message GetPaymentDillDepositStatusResponse {
|
|
|
108
108
|
optional string completed_at = 18;
|
|
109
109
|
optional string expires_at = 19;
|
|
110
110
|
optional string expired_at = 20;
|
|
111
|
+
optional string payout_status = 21;
|
|
112
|
+
optional string payout_error = 22;
|
|
113
|
+
optional int64 payout_id = 23;
|
|
111
114
|
}
|