Skip to content

Commit 1fa7527

Browse files
feat(api): api update
1 parent 7fec694 commit 1fa7527

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

.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-b337c0f981b3b48777c64c32edd73eb2b7bd513a38e077d7b342b7b372bc271d.yml
3-
openapi_spec_hash: 1a4275d62efcaaa62594d2bb734cf4eb
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/grid%2Fspreadsheet-api-2f55490ab23d3499ff2979b49ce0e0619e1ee32d0db18a37ac5ef5642f3065ff.yml
3+
openapi_spec_hash: 94d78d19e389033e648b5940e3667f56
44
config_hash: d3f4645d9a93970cbead53b83c49a2c4

src/grid_api/resources/workbooks.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,9 @@ def calc(
133133
Args:
134134
apply: Map of cell references to values. The values are written to cells in the
135135
spreadsheet before performing the read operation. You can write numbers,
136-
strings, and booleans. Any updated values are discarded at the end of the
137-
request.
136+
strings, and booleans. Values applied within a request are temporary and affect
137+
only that specific request. They are not permanently written to the original
138+
spreadsheet.
138139
139140
```json
140141
{
@@ -405,8 +406,9 @@ def values(
405406
Args:
406407
apply: Map of cell references to values. The values are written to cells in the
407408
spreadsheet before performing the read operation. You can write numbers,
408-
strings, and booleans. Any updated values are discarded at the end of the
409-
request.
409+
strings, and booleans. Values applied within a request are temporary and affect
410+
only that specific request. They are not permanently written to the original
411+
spreadsheet.
410412
411413
```json
412414
{
@@ -530,8 +532,9 @@ async def calc(
530532
Args:
531533
apply: Map of cell references to values. The values are written to cells in the
532534
spreadsheet before performing the read operation. You can write numbers,
533-
strings, and booleans. Any updated values are discarded at the end of the
534-
request.
535+
strings, and booleans. Values applied within a request are temporary and affect
536+
only that specific request. They are not permanently written to the original
537+
spreadsheet.
535538
536539
```json
537540
{
@@ -802,8 +805,9 @@ async def values(
802805
Args:
803806
apply: Map of cell references to values. The values are written to cells in the
804807
spreadsheet before performing the read operation. You can write numbers,
805-
strings, and booleans. Any updated values are discarded at the end of the
806-
request.
808+
strings, and booleans. Values applied within a request are temporary and affect
809+
only that specific request. They are not permanently written to the original
810+
spreadsheet.
807811
808812
```json
809813
{

src/grid_api/types/workbook_calc_params.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ class WorkbookCalcParams(TypedDict, total=False):
1717
"""Map of cell references to values.
1818
1919
The values are written to cells in the spreadsheet before performing the read
20-
operation. You can write numbers, strings, and booleans. Any updated values are
21-
discarded at the end of the request.
20+
operation. You can write numbers, strings, and booleans. Values applied within a
21+
request are temporary and affect only that specific request. They are not
22+
permanently written to the original spreadsheet.
2223
2324
```json
2425
{

src/grid_api/types/workbook_values_params.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ class WorkbookValuesParams(TypedDict, total=False):
1717
"""Map of cell references to values.
1818
1919
The values are written to cells in the spreadsheet before performing the read
20-
operation. You can write numbers, strings, and booleans. Any updated values are
21-
discarded at the end of the request.
20+
operation. You can write numbers, strings, and booleans. Values applied within a
21+
request are temporary and affect only that specific request. They are not
22+
permanently written to the original spreadsheet.
2223
2324
```json
2425
{

0 commit comments

Comments
 (0)