You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comprehensive /validate-integration of all 6 modified integrations (existing + new tools) vs live API docs. Fixes:
- google_docs: CRITICAL alignment enum LEFT/RIGHT/JUSTIFY -> API enum START/END/JUSTIFIED (mapped); namedStyleType 'unchanged' option; 'zero-based' index wording
- monday: CRITICAL search_items columns now emits GraphQL input-object with unquoted keys (was always failing the non-cursor branch)
- slack: schedule_message DMs via user-id-as-channel; add channels:manage/groups:write/reactions:read scope descriptions; nextCursor optional
- jira: list_projects expand=lead so lead outputs populate (was always null)
- trello: get_actions limit now applies to the card path too
- asana: add missing 'completed' + 'projects' subBlocks (were unsettable in UI); request permalink_url via opt_fields on create routes
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_docs.mdx
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ Insert text at a specific index in a Google Docs document. When no index is prov
110
110
| --------- | ---- | -------- | ----------- |
111
111
|`documentId`| string | Yes | The ID of the document to insert text into |
112
112
|`text`| string | Yes | The text to insert |
113
-
|`index`| number | No | The 1-based character index at which to insert the text. When omitted, text is appended to the end of the document. |
113
+
|`index`| number | No | The zero-based character index at which to insert the text. When omitted, text is appended to the end of the document. |
114
114
115
115
#### Output
116
116
@@ -158,7 +158,7 @@ Insert an empty table with the given number of rows and columns into a Google Do
158
158
|`documentId`| string | Yes | The ID of the document to insert the table into |
159
159
|`rows`| number | Yes | The number of rows in the table |
160
160
|`columns`| number | Yes | The number of columns in the table |
161
-
|`index`| number | No | The 1-based character index at which to insert the table. When omitted, the table is appended to the end of the document. |
161
+
|`index`| number | No | The zero-based character index at which to insert the table. When omitted, the table is appended to the end of the document. |
162
162
163
163
#### Output
164
164
@@ -181,7 +181,7 @@ Insert an inline image from a public URL into a Google Docs document. The image
181
181
| --------- | ---- | -------- | ----------- |
182
182
|`documentId`| string | Yes | The ID of the document to insert the image into |
183
183
|`imageUrl`| string | Yes | The publicly accessible URL of the image to insert |
184
-
|`index`| number | No | The 1-based character index at which to insert the image. When omitted, the image is appended to the end of the document. |
184
+
|`index`| number | No | The zero-based character index at which to insert the image. When omitted, the image is appended to the end of the document. |
185
185
|`width`| number | No | Optional image width in points \(PT\)|
186
186
|`height`| number | No | Optional image height in points \(PT\)|
187
187
@@ -205,7 +205,7 @@ Insert a page break into a Google Docs document. When no index is provided, the
205
205
| Parameter | Type | Required | Description |
206
206
| --------- | ---- | -------- | ----------- |
207
207
|`documentId`| string | Yes | The ID of the document to insert the page break into |
208
-
|`index`| number | No | The 1-based character index at which to insert the page break. When omitted, the page break is appended to the end of the document. |
208
+
|`index`| number | No | The zero-based character index at which to insert the page break. When omitted, the page break is appended to the end of the document. |
209
209
210
210
#### Output
211
211
@@ -227,7 +227,7 @@ Apply bold, italic, underline, and/or font size to a range of text in a Google D
227
227
| Parameter | Type | Required | Description |
228
228
| --------- | ---- | -------- | ----------- |
229
229
|`documentId`| string | Yes | The ID of the document to update |
230
-
|`startIndex`| number | Yes | The 1-based start character index of the range to style \(inclusive\)|
230
+
|`startIndex`| number | Yes | The zero-based start character index of the range to style \(inclusive\)|
231
231
|`endIndex`| number | Yes | The end character index of the range to style \(exclusive\)|
232
232
|`bold`| boolean | No | Whether to make the text bold |
233
233
|`italic`| boolean | No | Whether to make the text italic |
@@ -254,7 +254,7 @@ Apply a named paragraph style (such as a heading or title) and/or alignment to t
254
254
| Parameter | Type | Required | Description |
255
255
| --------- | ---- | -------- | ----------- |
256
256
|`documentId`| string | Yes | The ID of the document to update |
257
-
|`startIndex`| number | Yes | The 1-based start character index of the range to style \(inclusive\)|
257
+
|`startIndex`| number | Yes | The zero-based start character index of the range to style \(inclusive\)|
258
258
|`endIndex`| number | Yes | The end character index of the range to style \(exclusive\)|
259
259
|`namedStyleType`| string | No | The named paragraph style to apply. One of: NORMAL_TEXT, TITLE, SUBTITLE, HEADING_1, HEADING_2, HEADING_3, HEADING_4, HEADING_5, HEADING_6. |
260
260
|`alignment`| string | No | The paragraph alignment to apply. One of: LEFT, CENTER, RIGHT, JUSTIFY. |
@@ -279,7 +279,7 @@ Add bulleted or numbered list formatting to the paragraphs overlapping a range o
279
279
| Parameter | Type | Required | Description |
280
280
| --------- | ---- | -------- | ----------- |
281
281
|`documentId`| string | Yes | The ID of the document to update |
282
-
|`startIndex`| number | Yes | The 1-based start character index of the range to bullet \(inclusive\)|
282
+
|`startIndex`| number | Yes | The zero-based start character index of the range to bullet \(inclusive\)|
283
283
|`endIndex`| number | Yes | The end character index of the range to bullet \(exclusive\)|
284
284
|`bulletPreset`| string | No | The bullet glyph preset to apply. Defaults to BULLET_DISC_CIRCLE_SQUARE. Examples: BULLET_DISC_CIRCLE_SQUARE, BULLET_CHECKBOX, NUMBERED_DECIMAL_ALPHA_ROMAN, NUMBERED_DECIMAL_NESTED. |
285
285
@@ -303,7 +303,7 @@ Remove bullet or numbered list formatting from the paragraphs overlapping a rang
303
303
| Parameter | Type | Required | Description |
304
304
| --------- | ---- | -------- | ----------- |
305
305
|`documentId`| string | Yes | The ID of the document to update |
306
-
|`startIndex`| number | Yes | The 1-based start character index of the range to clear bullets from \(inclusive\)|
306
+
|`startIndex`| number | Yes | The zero-based start character index of the range to clear bullets from \(inclusive\)|
307
307
|`endIndex`| number | Yes | The end character index of the range to clear bullets from \(exclusive\)|
308
308
309
309
#### Output
@@ -326,7 +326,7 @@ Delete all content between a start and end character index in a Google Docs docu
326
326
| Parameter | Type | Required | Description |
327
327
| --------- | ---- | -------- | ----------- |
328
328
|`documentId`| string | Yes | The ID of the document to delete content from |
329
-
|`startIndex`| number | Yes | The 1-based start character index of the range to delete \(inclusive\)|
329
+
|`startIndex`| number | Yes | The zero-based start character index of the range to delete \(inclusive\)|
330
330
|`endIndex`| number | Yes | The end character index of the range to delete \(exclusive\)|
331
331
332
332
#### Output
@@ -350,7 +350,7 @@ Create a named range over a span of content in a Google Docs document so it can
350
350
| --------- | ---- | -------- | ----------- |
351
351
|`documentId`| string | Yes | The ID of the document to update |
352
352
|`name`| string | Yes | The name of the range to create \(1-256 characters\)|
353
-
|`startIndex`| number | Yes | The 1-based start character index of the range \(inclusive\)|
353
+
|`startIndex`| number | Yes | The zero-based start character index of the range \(inclusive\)|
354
354
|`endIndex`| number | Yes | The end character index of the range \(exclusive\)|
0 commit comments