v2: videos added to asset response

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-05-17 14:28:59 +03:30
parent 5cfa35d464
commit 46224b9740
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -102,14 +102,15 @@ message Asset {
string updated_at = 28; string updated_at = 28;
string created_at = 29; string created_at = 29;
repeated string images = 30; repeated string images = 30;
AssetStatus status = 31; repeated string videos = 31;
AssetMeta meta = 32; AssetStatus status = 32;
AssetTokenType token_type = 33; AssetMeta meta = 33;
AssetPrice price = 34; AssetTokenType token_type = 34;
bool is_base_asset = 35; AssetPrice price = 35;
bool is_locked = 36; bool is_base_asset = 36;
Commission commission = 37; bool is_locked = 37;
AssetType type = 38; Commission commission = 38;
AssetType type = 39;
} }
enum AssetTokenType { enum AssetTokenType {
@ -153,7 +154,6 @@ message AssetFilter {
optional bool can_withdraw = 9; optional bool can_withdraw = 9;
optional bool is_active = 10; optional bool is_active = 10;
optional string search = 11; // Not yet implemented ! optional string search = 11; // Not yet implemented !
} }
message AssetDiscountReq { message AssetDiscountReq {