diff --git a/README.md b/README.md index 5afacb9..5fafa1d 100644 --- a/README.md +++ b/README.md @@ -20,5 +20,5 @@ Fill out this [form](https://forms.gle/Hii64SznA9B9dhLJ8) if your interested in | Language | Version | Status | | ------------------------ | ------------- | ---------------------------------------------------------------------------------- | -| ✅ [JS/TypeScript](./js) | 1.0.0-alpha.0 | ![tests](https://github.com/flipsidecrypto/sdk/actions/workflows/ci.yml/badge.svg) | +| ✅ [JS/TypeScript](./js) | 1.0.0-alpha.1 | ![tests](https://github.com/flipsidecrypto/sdk/actions/workflows/ci.yml/badge.svg) | | 🏗 [Python](./python/) | NA | Not Yet Available | diff --git a/js/package.json b/js/package.json index 0f0c342..b1b6031 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "@flipsidecrypto/velocity", - "version": "1.0.0-alpha.0", + "version": "1.0.0-alpha.1", "description": "The official Flipside Crypto Velocity SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/js/src/integrations/query-integration/query-result-set-builder.ts b/js/src/integrations/query-integration/query-result-set-builder.ts index eed3411..86950a7 100644 --- a/js/src/integrations/query-integration/query-result-set-builder.ts +++ b/js/src/integrations/query-integration/query-result-set-builder.ts @@ -90,7 +90,7 @@ export class QueryResultSetBuilder implements QueryResultSet { return queryResultJson.results.map((result) => { let record: QueryResultRecord = {}; result.forEach((value, index) => { - record[columnLabels[index]] = value; + record[columnLabels[index].toLowerCase()] = value; }); return record; });