@@ -442,12 +442,25 @@ export interface WorkbookListParams extends CursorPaginationParams {}
442442export interface WorkbookCalcParams {
443443 read : Array < string > ;
444444
445+ /**
446+ * Map of cell references to values. The values are written to cells in the
447+ * spreadsheet before performing the read operation. You can write numbers,
448+ * strings, and booleans. Any updated values are discarded at the end of the
449+ * request.
450+ *
451+ * ```json
452+ * {
453+ * "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
454+ * // ...
455+ * }
456+ * ```
457+ */
445458 apply ?: { [ key : string ] : number | string | boolean | null } | null ;
446459}
447460
448461export interface WorkbookExportParams {
449462 /**
450- * Cells to update before exporting
463+ * Cells to update before exporting.
451464 */
452465 apply ?: Array < WorkbookExportParams . Apply > | null ;
453466
@@ -697,8 +710,7 @@ export interface WorkbookRenderChartParams {
697710 chart : WorkbookRenderChartParams . Chart ;
698711
699712 /**
700- * Cells to update before rendering the chart. Changes are discarded at the end of
701- * the request
713+ * Cells to update before rendering the chart.
702714 */
703715 apply ?: Array < WorkbookRenderChartParams . Apply > | null ;
704716
@@ -954,6 +966,19 @@ export interface WorkbookUploadParams {
954966export interface WorkbookValuesParams {
955967 read : Array < string > ;
956968
969+ /**
970+ * Map of cell references to values. The values are written to cells in the
971+ * spreadsheet before performing the read operation. You can write numbers,
972+ * strings, and booleans. Any updated values are discarded at the end of the
973+ * request.
974+ *
975+ * ```json
976+ * {
977+ * "apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null }
978+ * // ...
979+ * }
980+ * ```
981+ */
957982 apply ?: { [ key : string ] : number | string | boolean | null } | null ;
958983}
959984
0 commit comments