@arbiwallet/contracts 1.0.126 → 1.0.127

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/card.ts CHANGED
@@ -300,6 +300,10 @@ export interface CardResponse {
300
300
  autoTopupLimit: string;
301
301
  currentAutoTopupAmount: string;
302
302
  cardBalanceThreshold: string;
303
+ productId: number;
304
+ isGift: boolean;
305
+ pictureId: string;
306
+ label: string;
303
307
  }
304
308
 
305
309
  export interface GetCardBalanceRequest {
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.126",
4
+ "version": "1.0.127",
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/card.proto CHANGED
@@ -316,6 +316,10 @@ message CardResponse {
316
316
  string auto_topup_limit = 20;
317
317
  string current_auto_topup_amount = 21;
318
318
  string card_balance_threshold = 22;
319
+ int64 product_id = 23;
320
+ bool is_gift = 24;
321
+ string picture_id = 25;
322
+ string label = 26;
319
323
  }
320
324
 
321
325
  message GetCardBalanceRequest {