@@ -131,6 +131,18 @@ def calc(
131131 Run calculations in a workbook and retrieve cell objects.
132132
133133 Args:
134+ apply: Map of cell references to values. The values are written to cells in the
135+ 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.
138+
139+ ```json
140+ {
141+ "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
142+ // ...
143+ }
144+ ```
145+
134146 extra_headers: Send extra headers
135147
136148 extra_query: Add additional query parameters to the request
@@ -175,7 +187,7 @@ def export(
175187 exported.
176188
177189 Args:
178- apply: Cells to update before exporting
190+ apply: Cells to update before exporting.
179191
180192 goal_seek: Goal seek. Use this to calculate the required input value for a formula to
181193 achieve a specified target result. This is particularly useful when the desired
@@ -292,8 +304,7 @@ def render_chart(
292304 chart: Options for rendering a chart from workbook data. Specify the data range, chart
293305 type, image output format, and title and axis labels.
294306
295- apply: Cells to update before rendering the chart. Changes are discarded at the end of
296- the request
307+ apply: Cells to update before rendering the chart.
297308
298309 matte: Hex color code for the chart's background matte, e.g. '#FFFFFF' for white, if
299310 not specified, the chart will have a transparent background. Note, this is
@@ -392,6 +403,18 @@ def values(
392403 Run calculations in a workbook and retrieve cell values.
393404
394405 Args:
406+ apply: Map of cell references to values. The values are written to cells in the
407+ 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.
410+
411+ ```json
412+ {
413+ "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
414+ // ...
415+ }
416+ ```
417+
395418 extra_headers: Send extra headers
396419
397420 extra_query: Add additional query parameters to the request
@@ -505,6 +528,18 @@ async def calc(
505528 Run calculations in a workbook and retrieve cell objects.
506529
507530 Args:
531+ apply: Map of cell references to values. The values are written to cells in the
532+ 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+
536+ ```json
537+ {
538+ "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
539+ // ...
540+ }
541+ ```
542+
508543 extra_headers: Send extra headers
509544
510545 extra_query: Add additional query parameters to the request
@@ -549,7 +584,7 @@ async def export(
549584 exported.
550585
551586 Args:
552- apply: Cells to update before exporting
587+ apply: Cells to update before exporting.
553588
554589 goal_seek: Goal seek. Use this to calculate the required input value for a formula to
555590 achieve a specified target result. This is particularly useful when the desired
@@ -666,8 +701,7 @@ async def render_chart(
666701 chart: Options for rendering a chart from workbook data. Specify the data range, chart
667702 type, image output format, and title and axis labels.
668703
669- apply: Cells to update before rendering the chart. Changes are discarded at the end of
670- the request
704+ apply: Cells to update before rendering the chart.
671705
672706 matte: Hex color code for the chart's background matte, e.g. '#FFFFFF' for white, if
673707 not specified, the chart will have a transparent background. Note, this is
@@ -766,6 +800,18 @@ async def values(
766800 Run calculations in a workbook and retrieve cell values.
767801
768802 Args:
803+ apply: Map of cell references to values. The values are written to cells in the
804+ 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.
807+
808+ ```json
809+ {
810+ "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
811+ // ...
812+ }
813+ ```
814+
769815 extra_headers: Send extra headers
770816
771817 extra_query: Add additional query parameters to the request
0 commit comments