@@ -25,7 +25,7 @@ pub enum ExecuteMsg {
25
25
/// The object is referenced by the hash of its content and this value is returned.
26
26
/// If the object is already stored, this is a no-op.
27
27
/// If pin is true, the object is pinned for the sender.
28
- StoreObject { object : Binary , pin : bool } ,
28
+ StoreObject { data : Binary , pin : bool } ,
29
29
30
30
/// # ForgetObject
31
31
/// ForgetObject first unpin the object from the bucket for the considered sender, then remove
@@ -51,18 +51,18 @@ pub enum ExecuteMsg {
51
51
#[ cw_serde]
52
52
#[ derive( QueryResponses ) ]
53
53
pub enum QueryMsg {
54
- /// # Object
55
- /// Object returns the object information with the given id.
56
- #[ returns( ObjectResponse ) ]
57
- Object {
54
+ /// # ObjectInfo
55
+ /// ObjectInfo returns the object information with the given id.
56
+ #[ returns( ObjectInfoResponse ) ]
57
+ ObjectInfo {
58
58
/// The id of the object to get.
59
59
id : ObjectId ,
60
60
} ,
61
61
62
- /// # Objects
63
- /// Objects returns the list of objects in the bucket with support for pagination.
64
- #[ returns( ObjectsResponse ) ]
65
- Objects {
62
+ /// # ObjectsInfo
63
+ /// ObjectsInfo returns the list of objects in the bucket with support for pagination.
64
+ #[ returns( ObjectsInfoResponse ) ]
65
+ ObjectsInfo {
66
66
/// The owner of the objects to get.
67
67
address : Option < String > ,
68
68
/// The number of objects to return.
@@ -71,6 +71,14 @@ pub enum QueryMsg {
71
71
after : Option < Cursor > ,
72
72
} ,
73
73
74
+ /// # ObjectData
75
+ /// ObjectData returns the content of the object with the given id.
76
+ #[ returns( Binary ) ]
77
+ ObjectData {
78
+ /// The id of the object to get.
79
+ id : ObjectId ,
80
+ } ,
81
+
74
82
/// # ObjectPins
75
83
/// ObjectPins returns the list of addresses that pinned the object with the given id with
76
84
/// support for pagination.
@@ -95,22 +103,22 @@ pub struct PageInfo {
95
103
pub end_cursor : Cursor ,
96
104
}
97
105
98
- /// # ObjectResponse
99
- /// ObjectResponse is the response of the GetObject query.
106
+ /// # ObjectInfoResponse
107
+ /// ObjectInfoResponse is the response of the ObjectInfo query.
100
108
#[ cw_serde]
101
- pub struct ObjectResponse {
109
+ pub struct ObjectInfoResponse {
102
110
pub id : ObjectId ,
103
111
pub owner : String ,
104
112
pub is_pinned : bool ,
105
113
pub size : Uint128 ,
106
114
}
107
115
108
- /// # ObjectsResponse
109
- /// GetObjectsResponse is the response of the GetObjects query.
116
+ /// # ObjectsInfoResponse
117
+ /// ObjectsInfoResponse is the response of the ObjectsInfo query.
110
118
#[ cw_serde]
111
- pub struct ObjectsResponse {
119
+ pub struct ObjectsInfoResponse {
112
120
/// The list of objects in the bucket.
113
- pub data : Vec < ObjectResponse > ,
121
+ pub data : Vec < ObjectInfoResponse > ,
114
122
pub page_info : PageInfo ,
115
123
}
116
124
0 commit comments