Skip to content

Commit 3f69420

Browse files
committed
Add param title to protos
Signed-off-by: dominious1 <[email protected]>
1 parent 38c386c commit 3f69420

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/proto/commands_pb.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export class AddAssetQuantity extends jspb.Message {
1111
getAmount(): string;
1212
setAmount(value: string): void;
1313

14+
getTitle(): string;
15+
setTitle(value: string): void;
16+
1417
serializeBinary(): Uint8Array;
1518
toObject(includeInstance?: boolean): AddAssetQuantity.AsObject;
1619
static toObject(includeInstance: boolean, msg: AddAssetQuantity): AddAssetQuantity.AsObject;
@@ -25,6 +28,7 @@ export namespace AddAssetQuantity {
2528
export type AsObject = {
2629
assetId: string,
2730
amount: string,
31+
title: string,
2832
}
2933
}
3034

@@ -415,6 +419,9 @@ export class SubtractAssetQuantity extends jspb.Message {
415419
getAmount(): string;
416420
setAmount(value: string): void;
417421

422+
getTitle(): string;
423+
setTitle(value: string): void;
424+
418425
serializeBinary(): Uint8Array;
419426
toObject(includeInstance?: boolean): SubtractAssetQuantity.AsObject;
420427
static toObject(includeInstance: boolean, msg: SubtractAssetQuantity): SubtractAssetQuantity.AsObject;
@@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity {
429436
export type AsObject = {
430437
assetId: string,
431438
amount: string,
439+
title: string,
432440
}
433441
}
434442

0 commit comments

Comments
 (0)