antelopeql 2.0.0-rc.24 → 2.0.0-rc.26

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/antelopeql.mjs CHANGED
@@ -51,7 +51,8 @@ export default async function AntelopeQL({
51
51
  signal
52
52
  }) {
53
53
  try {
54
- if (!fetch) throw new GraphQLError("No fetch implementation provided");
54
+ if (!fetch)
55
+ throw new GraphQLError("No fetch implementation found in global scope");
55
56
 
56
57
  const fetchOptions = {};
57
58
  if (headers) fetchOptions.headers = headers;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { GraphQLInputObjectType, GraphQLInt } from "graphql";
4
4
 
5
- const configuration_default_value = {
5
+ export const configuration_default_value = {
6
6
  blocksBehind: 3,
7
7
  expireSeconds: 30,
8
8
  max_net_usage_words: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antelopeql",
3
- "version": "2.0.0-rc.24",
3
+ "version": "2.0.0-rc.26",
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",
@@ -79,7 +79,7 @@
79
79
  ],
80
80
  "devDependencies": {
81
81
  "@types/node": "^18.13.0",
82
- "antelope-ecc": "^2.0.0-rc.7",
82
+ "antelope-ecc": "^2.0.0-rc.12",
83
83
  "coverage-node": "^8.0.0",
84
84
  "eslint": "^8.34.0",
85
85
  "eslint-plugin-simple-import-sort": "^10.0.0",