File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "." : " 1.2.2 "
2+ "." : " 1.3.0 "
33}
Original file line number Diff line number Diff line change 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
519Full Changelog: [ v1.2.1...v1.2.2] ( https://github.com/GRID-is/api-sdk-ts/compare/v1.2.1...v1.2.2 )
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ The full API of this library can be found in [api.md](api.md).
2323import Grid from ' @grid-is/api' ;
2424
2525const 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
3029const 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
4342import 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
4748const params: Grid .WorkbookQueryParams = { read: [' A1' , ' Sheet2!B3' , ' =SUM(A1:A4)' ] };
4849const response: Grid .WorkbookQueryResponse = await client .workbooks .query (' YOUR_WORKBOOK_ID' , params );
Original file line number Diff line number Diff line change 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" ,
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" ,
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 "." : {
Original file line number Diff line number Diff line change 1- export const VERSION = '1.2.2 ' ; // x-release-please-version
1+ export const VERSION = '1.3.0 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments