Skip to content

Commit a81a9a6

Browse files
chore(internal): codegen related update
1 parent 8808754 commit a81a9a6

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/client.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,13 @@ export class Grid {
766766

767767
static toFile = Uploads.toFile;
768768

769+
/**
770+
* Interact with workbooks and their data
771+
*/
769772
workbooks: API.Workbooks = new API.Workbooks(this);
773+
/**
774+
* Interact with workbooks and their data
775+
*/
770776
beta: API.Beta = new API.Beta(this);
771777
}
772778

src/resources/beta.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ import { APIPromise } from '../core/api-promise';
55
import { RequestOptions } from '../internal/request-options';
66
import { path } from '../internal/utils/path';
77

8+
/**
9+
* Interact with workbooks and their data
10+
*/
811
export class Beta extends APIResource {
912
/**
1013
* Retrieve labels automatically detected for cells and ranges in the workbook.

src/resources/workbooks.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import { RequestOptions } from '../internal/request-options';
99
import { multipartFormRequestOptions } from '../internal/uploads';
1010
import { path } from '../internal/utils/path';
1111

12+
/**
13+
* Interact with workbooks and their data
14+
*/
1215
export class Workbooks extends APIResource {
1316
/**
1417
* List the workbooks linked to an account.

0 commit comments

Comments
 (0)