@@ -194,9 +194,14 @@ Get detailed information about a specific slide/page in a Google Slides presenta
194194| --------- | ---- | ----------- |
195195| ` objectId ` | string | The object ID of the page |
196196| ` pageType ` | string | The type of page \( SLIDE, MASTER, LAYOUT, NOTES, NOTES_MASTER\) |
197- | ` pageElements ` | json | Array of page elements \( shapes, images, tables, etc.\) on this page |
198- | ` slideProperties ` | json | Properties specific to slides \( layout, master, notes\) |
199- | ` metadata ` | json | Operation metadata including presentation ID and URL |
197+ | ` pageElements ` | array | Array of page elements \( shapes, images, tables, etc.\) on this page |
198+ | ` slideProperties ` | object | Properties specific to slides \( layout, master, notes\) |
199+ | ↳ ` layoutObjectId ` | string | Object ID of the layout this slide is based on |
200+ | ↳ ` masterObjectId ` | string | Object ID of the master this slide is based on |
201+ | ↳ ` notesPage ` | json | The notes page associated with the slide |
202+ | ` metadata ` | object | Operation metadata including presentation ID and URL |
203+ | ↳ ` presentationId ` | string | The presentation ID |
204+ | ↳ ` url ` | string | URL to the presentation |
200205
201206### ` google_slides_delete_object `
202207
@@ -215,7 +220,9 @@ Delete a page element (shape, image, table, etc.) or an entire slide from a Goog
215220| --------- | ---- | ----------- |
216221| ` deleted ` | boolean | Whether the object was successfully deleted |
217222| ` objectId ` | string | The object ID that was deleted |
218- | ` metadata ` | json | Operation metadata including presentation ID and URL |
223+ | ` metadata ` | object | Operation metadata including presentation ID and URL |
224+ | ↳ ` presentationId ` | string | The presentation ID |
225+ | ↳ ` url ` | string | URL to the presentation |
219226
220227### ` google_slides_duplicate_object `
221228
@@ -235,7 +242,10 @@ Duplicate an object (slide, shape, image, table, etc.) in a Google Slides presen
235242| Parameter | Type | Description |
236243| --------- | ---- | ----------- |
237244| ` duplicatedObjectId ` | string | The object ID of the newly created duplicate |
238- | ` metadata ` | json | Operation metadata including presentation ID and source object ID |
245+ | ` metadata ` | object | Operation metadata including presentation ID and source object ID |
246+ | ↳ ` presentationId ` | string | The presentation ID |
247+ | ↳ ` sourceObjectId ` | string | The original object ID that was duplicated |
248+ | ↳ ` url ` | string | URL to the presentation |
239249
240250### ` google_slides_update_slides_position `
241251
@@ -256,7 +266,9 @@ Move one or more slides to a new position in a Google Slides presentation
256266| ` moved ` | boolean | Whether the slides were successfully moved |
257267| ` slideObjectIds ` | array | The slide object IDs that were moved |
258268| ` insertionIndex ` | number | The index where the slides were moved to |
259- | ` metadata ` | json | Operation metadata including presentation ID and URL |
269+ | ` metadata ` | object | Operation metadata including presentation ID and URL |
270+ | ↳ ` presentationId ` | string | The presentation ID |
271+ | ↳ ` url ` | string | URL to the presentation |
260272
261273### ` google_slides_create_table `
262274
@@ -282,7 +294,10 @@ Create a new table on a slide in a Google Slides presentation
282294| ` tableId ` | string | The object ID of the newly created table |
283295| ` rows ` | number | Number of rows in the table |
284296| ` columns ` | number | Number of columns in the table |
285- | ` metadata ` | json | Operation metadata including presentation ID and page object ID |
297+ | ` metadata ` | object | Operation metadata including presentation ID and page object ID |
298+ | ↳ ` presentationId ` | string | The presentation ID |
299+ | ↳ ` pageObjectId ` | string | The page object ID where the table was created |
300+ | ↳ ` url ` | string | URL to the presentation |
286301
287302### ` google_slides_create_shape `
288303
@@ -306,7 +321,10 @@ Create a shape (rectangle, ellipse, text box, arrow, etc.) on a slide in a Googl
306321| --------- | ---- | ----------- |
307322| ` shapeId ` | string | The object ID of the newly created shape |
308323| ` shapeType ` | string | The type of shape that was created |
309- | ` metadata ` | json | Operation metadata including presentation ID and page object ID |
324+ | ` metadata ` | object | Operation metadata including presentation ID and page object ID |
325+ | ↳ ` presentationId ` | string | The presentation ID |
326+ | ↳ ` pageObjectId ` | string | The page object ID where the shape was created |
327+ | ↳ ` url ` | string | URL to the presentation |
310328
311329### ` google_slides_insert_text `
312330
@@ -328,6 +346,8 @@ Insert text into a shape or table cell in a Google Slides presentation. Use this
328346| ` inserted ` | boolean | Whether the text was successfully inserted |
329347| ` objectId ` | string | The object ID where text was inserted |
330348| ` text ` | string | The text that was inserted |
331- | ` metadata ` | json | Operation metadata including presentation ID and URL |
349+ | ` metadata ` | object | Operation metadata including presentation ID and URL |
350+ | ↳ ` presentationId ` | string | The presentation ID |
351+ | ↳ ` url ` | string | URL to the presentation |
332352
333353
0 commit comments