antelopeql 2.0.0-rc.26 → 2.0.0-rc.28

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.
@@ -27,7 +27,10 @@ const bandwidth_type = new GraphQLObjectType({
27
27
  fields: () => ({
28
28
  used: { type: GraphQLString },
29
29
  available: { type: GraphQLString },
30
- max: { type: GraphQLString }
30
+ max: { type: GraphQLString },
31
+ last_usage_update_time: {
32
+ type: GraphQLString
33
+ }
31
34
  })
32
35
  });
33
36
 
@@ -210,7 +213,6 @@ const get_account = {
210
213
  });
211
214
 
212
215
  const data = await req.json();
213
-
214
216
  if (data.error) throw new GraphQLError(data.message, { extensions: data });
215
217
 
216
218
  return data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antelopeql",
3
- "version": "2.0.0-rc.26",
3
+ "version": "2.0.0-rc.28",
4
4
  "description": "A GraphQL implementation for interacting with Antelope based blockchains.",
5
5
  "repository": "github:pur3miish/antelopeql",
6
6
  "bugs": "https://github.com/pur3miish/antelopeql/issues",