@aepstore-dev/contracts 1.96.0 → 1.97.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/gen/payments.d.ts +1 -0
- package/gen/payments.ts +1 -0
- package/package.json +1 -1
- package/proto/payments.proto +10 -9
package/gen/payments.d.ts
CHANGED
package/gen/payments.ts
CHANGED
package/package.json
CHANGED
package/proto/payments.proto
CHANGED
|
@@ -187,16 +187,17 @@ message RefundPurchaseRequest { string purchase_id = 1; string actor_user_id = 2
|
|
|
187
187
|
// Wallet & statement
|
|
188
188
|
// ---------------------------------------------------------------------------
|
|
189
189
|
message GetWalletRequest { string user_id = 1; }
|
|
190
|
-
message WalletResponse {
|
|
191
|
-
string spending = 1;
|
|
192
|
-
string pending = 2;
|
|
193
|
-
string payout = 3;
|
|
194
|
-
string spendable = 4; // spending + payout
|
|
190
|
+
message WalletResponse {
|
|
191
|
+
string spending = 1;
|
|
192
|
+
string pending = 2;
|
|
193
|
+
string payout = 3;
|
|
194
|
+
string spendable = 4; // spending + payout
|
|
195
195
|
string withdrawable = 5; // payout
|
|
196
|
-
string currency = 6;
|
|
197
|
-
int32 lifetime_sales = 7;
|
|
198
|
-
string current_commission_percent = 8;
|
|
199
|
-
|
|
196
|
+
string currency = 6;
|
|
197
|
+
int32 lifetime_sales = 7;
|
|
198
|
+
string current_commission_percent = 8;
|
|
199
|
+
bool hide_balance = 9;
|
|
200
|
+
}
|
|
200
201
|
|
|
201
202
|
message ListTransactionsRequest {
|
|
202
203
|
string user_id = 1;
|