Skip to content

Commit 31c5b99

Browse files
release: 1.1.2 (#55)
* feat(api): api update * codegen metadata * feat(api): api update * release: 1.1.2 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 17919d2 commit 31c5b99

8 files changed

Lines changed: 22 additions & 10 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.1.1"
2+
".": "1.1.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 10
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/grid%2Fspreadsheet-api-c04aecbf881fa8800053188fa5d587605aa4238cf9d732ebd6c18d7b8c65e400.yml
3-
openapi_spec_hash: ce7f54c0cb3e2baccca845c7e83d44fe
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/grid%2Fspreadsheet-api-937ec398ff9d8219722378c542c3ffaf79b917fd833781ea5c6840b42620e6c8.yml
3+
openapi_spec_hash: 3ac84a2bff939ae296c2f4295d4e28e9
44
config_hash: d3f4645d9a93970cbead53b83c49a2c4

CHANGELOG.md

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

3+
## 1.1.2 (2025-05-27)
4+
5+
Full Changelog: [v1.1.1...v1.1.2](https://github.com/GRID-is/api-sdk-ts/compare/v1.1.1...v1.1.2)
6+
7+
### Features
8+
9+
* **api:** api update ([40d4c67](https://github.com/GRID-is/api-sdk-ts/commit/40d4c67ec1ce6d8e6962b18bb0833a9cf335efe8))
10+
* **api:** api update ([4dec05f](https://github.com/GRID-is/api-sdk-ts/commit/4dec05fc978a7dc9ad5e6f1c4f1e165807b18035))
11+
312
## 1.1.1 (2025-05-23)
413

514
Full Changelog: [v1.1.0...v1.1.1](https://github.com/GRID-is/api-sdk-ts/compare/v1.1.0...v1.1.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grid-is/api",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "The official TypeScript library for the Grid API",
55
"author": "Grid <info@grid.is>",
66
"types": "dist/index.d.ts",

src/resources/beta.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,11 @@ export namespace BetaSearchLabelsResponse {
162162
*/
163163
filename: string;
164164

165+
/**
166+
* Array of labels within the workbook that match the search query
167+
*/
168+
labels: Array<Result.Label>;
169+
165170
/**
166171
* Most recent version number of the workbook
167172
*/
@@ -177,8 +182,6 @@ export namespace BetaSearchLabelsResponse {
177182
*/
178183
workbook_id: string;
179184

180-
labels?: Array<Result.Label>;
181-
182185
/**
183186
* Relevance ranking of the workbook in relation to the search results (higher is
184187
* better)

src/resources/workbooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ export interface WorkbookUploadResponse {
436436
*/
437437
export type WorkbookValuesResponse = Record<
438438
string,
439-
number | string | boolean | Array<number | string | boolean | null> | null
439+
number | number | string | boolean | null | Array<number | string | boolean | null>
440440
>;
441441

442442
export interface WorkbookListParams extends CursorPaginationParams {}

src/version.ts

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

tests/api-resources/workbooks.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('resource workbooks', () => {
4242

4343
// skipped: tests are disabled for the time being
4444
test.skip('calc: required and optional params', async () => {
45-
const response = await client.workbooks.calc('id', { read: ['A1'], apply: { foo: 0 } });
45+
const response = await client.workbooks.calc('id', { read: ['A1'], apply: { foo: 1234 } });
4646
});
4747

4848
// skipped: tests are disabled for the time being
@@ -142,6 +142,6 @@ describe('resource workbooks', () => {
142142

143143
// skipped: tests are disabled for the time being
144144
test.skip('values: required and optional params', async () => {
145-
const response = await client.workbooks.values('id', { read: ['A1'], apply: { foo: 0 } });
145+
const response = await client.workbooks.values('id', { read: ['A1'], apply: { foo: 1234 } });
146146
});
147147
});

0 commit comments

Comments
 (0)