Skip to content

Commit 5d3b098

Browse files
release: 1.3.0 (#60)
* feat: clean up environment call outs * chore(ts): reorder package.json imports * chore(internal): remove redundant imports config * release: 1.3.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent a115b7c commit 5d3b098

5 files changed

Lines changed: 23 additions & 12 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.2.2"
2+
".": "1.3.0"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 1.3.0 (2025-07-30)
4+
5+
Full Changelog: [v1.2.2...v1.3.0](https://github.com/GRID-is/api-sdk-ts/compare/v1.2.2...v1.3.0)
6+
7+
### Features
8+
9+
* clean up environment call outs ([ff4c0eb](https://github.com/GRID-is/api-sdk-ts/commit/ff4c0ebf2ff29d6b129c2f37e4f1c4a9f42abb52))
10+
11+
12+
### Chores
13+
14+
* **internal:** remove redundant imports config ([98cf482](https://github.com/GRID-is/api-sdk-ts/commit/98cf482bfcda47c489037086a1713534481921ba))
15+
* **ts:** reorder package.json imports ([51e81c6](https://github.com/GRID-is/api-sdk-ts/commit/51e81c6584171eaa6a01785d329c5612a5efcf42))
16+
317
## 1.2.2 (2025-07-10)
418

519
Full Changelog: [v1.2.1...v1.2.2](https://github.com/GRID-is/api-sdk-ts/compare/v1.2.1...v1.2.2)

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ The full API of this library can be found in [api.md](api.md).
2323
import Grid from '@grid-is/api';
2424

2525
const client = new Grid({
26-
// Defaults to process.env["GRID_API_TOKEN"]
27-
apiKey: "YOUR_API_KEY",
26+
apiKey: process.env['GRID_API_TOKEN'], // This is the default and can be omitted
2827
});
2928

3029
const response = await client.workbooks.query('YOUR_WORKBOOK_ID', {
@@ -42,7 +41,9 @@ This library includes TypeScript definitions for all request params and response
4241
```ts
4342
import Grid from '@grid-is/api';
4443

45-
const client = new Grid();
44+
const client = new Grid({
45+
apiKey: process.env['GRID_API_TOKEN'], // This is the default and can be omitted
46+
});
4647

4748
const params: Grid.WorkbookQueryParams = { read: ['A1', 'Sheet2!B3', '=SUM(A1:A4)'] };
4849
const response: Grid.WorkbookQueryResponse = await client.workbooks.query('YOUR_WORKBOOK_ID', params);

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grid-is/api",
3-
"version": "1.2.2",
3+
"version": "1.3.0",
44
"description": "The official TypeScript library for the Grid API",
55
"author": "Grid <info@grid.is>",
66
"types": "dist/index.d.ts",
@@ -30,7 +30,6 @@
3030
"@swc/jest": "^0.2.29",
3131
"@types/jest": "^29.4.0",
3232
"@types/node": "^20.17.6",
33-
"typescript-eslint": "8.31.1",
3433
"@typescript-eslint/eslint-plugin": "8.31.1",
3534
"@typescript-eslint/parser": "8.31.1",
3635
"eslint": "^9.20.1",
@@ -44,11 +43,8 @@
4443
"ts-node": "^10.5.0",
4544
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz",
4645
"tsconfig-paths": "^4.0.0",
47-
"typescript": "5.8.3"
48-
},
49-
"imports": {
50-
"@grid-is/api": ".",
51-
"@grid-is/api/*": "./src/*"
46+
"typescript": "5.8.3",
47+
"typescript-eslint": "8.31.1"
5248
},
5349
"exports": {
5450
".": {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.2'; // x-release-please-version
1+
export const VERSION = '1.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)