@pipedream/google_slides 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/format-paragraph/format-paragraph.mjs +2 -1
- package/actions/format-shape/format-shape.mjs +2 -1
- package/actions/format-slide-background/format-slide-background.mjs +2 -1
- package/actions/format-table-cell/format-table-cell.mjs +2 -1
- package/actions/format-text/format-text.mjs +2 -1
- package/actions/position-element/position-element.mjs +2 -1
- package/package.json +1 -1
|
@@ -9,13 +9,14 @@ export default {
|
|
|
9
9
|
key: "google_slides-format-paragraph",
|
|
10
10
|
name: "Format Paragraph",
|
|
11
11
|
description: "Apply paragraph formatting (alignment, line spacing, indentation, bullets) to the text of a shape or table cell in a Google Slides presentation. Use **Get Presentation** to find the page element's object ID. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdateParagraphStyleRequest)",
|
|
12
|
-
version: "0.0.
|
|
12
|
+
version: "0.0.2",
|
|
13
13
|
annotations: {
|
|
14
14
|
destructiveHint: false,
|
|
15
15
|
openWorldHint: true,
|
|
16
16
|
readOnlyHint: false,
|
|
17
17
|
},
|
|
18
18
|
type: "action",
|
|
19
|
+
ai: "optimized",
|
|
19
20
|
props: {
|
|
20
21
|
googleSlides,
|
|
21
22
|
presentationId: {
|
|
@@ -9,13 +9,14 @@ export default {
|
|
|
9
9
|
key: "google_slides-format-shape",
|
|
10
10
|
name: "Format Shape",
|
|
11
11
|
description: "Set the background fill, outline, content alignment, or link of a shape in a Google Slides presentation. Use **Get Presentation** to find the shape's object ID. Shadow is not settable. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdateShapePropertiesRequest)",
|
|
12
|
-
version: "0.0.
|
|
12
|
+
version: "0.0.2",
|
|
13
13
|
annotations: {
|
|
14
14
|
destructiveHint: false,
|
|
15
15
|
openWorldHint: true,
|
|
16
16
|
readOnlyHint: false,
|
|
17
17
|
},
|
|
18
18
|
type: "action",
|
|
19
|
+
ai: "optimized",
|
|
19
20
|
props: {
|
|
20
21
|
googleSlides,
|
|
21
22
|
presentationId: {
|
|
@@ -6,13 +6,14 @@ export default {
|
|
|
6
6
|
key: "google_slides-format-slide-background",
|
|
7
7
|
name: "Format Slide Background",
|
|
8
8
|
description: "Set the background fill of a single slide in a Google Slides presentation. Use **Get Presentation** to find the slide's object ID. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdatePagePropertiesRequest)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.2",
|
|
10
10
|
annotations: {
|
|
11
11
|
destructiveHint: false,
|
|
12
12
|
openWorldHint: true,
|
|
13
13
|
readOnlyHint: false,
|
|
14
14
|
},
|
|
15
15
|
type: "action",
|
|
16
|
+
ai: "optimized",
|
|
16
17
|
props: {
|
|
17
18
|
googleSlides,
|
|
18
19
|
presentationId: {
|
|
@@ -6,13 +6,14 @@ export default {
|
|
|
6
6
|
key: "google_slides-format-table-cell",
|
|
7
7
|
name: "Format Table Cell",
|
|
8
8
|
description: "Set the background fill or content alignment of table cells in a Google Slides presentation. Applies to a single cell, or to a block of cells via **Row Span** and **Column Span**. Omit the cell location to format the whole table. Use **Get Presentation** to find the table's object ID. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdateTableCellPropertiesRequest)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.2",
|
|
10
10
|
annotations: {
|
|
11
11
|
destructiveHint: false,
|
|
12
12
|
openWorldHint: true,
|
|
13
13
|
readOnlyHint: false,
|
|
14
14
|
},
|
|
15
15
|
type: "action",
|
|
16
|
+
ai: "optimized",
|
|
16
17
|
props: {
|
|
17
18
|
googleSlides,
|
|
18
19
|
presentationId: {
|
|
@@ -9,13 +9,14 @@ export default {
|
|
|
9
9
|
key: "google_slides-format-text",
|
|
10
10
|
name: "Format Text",
|
|
11
11
|
description: "Apply character formatting (bold, italic, underline, strikethrough, font, size, color, link) to the text of a shape or table cell in a Google Slides presentation. Use **Get Presentation** to find the page element's object ID. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdateTextStyleRequest)",
|
|
12
|
-
version: "0.0.
|
|
12
|
+
version: "0.0.2",
|
|
13
13
|
annotations: {
|
|
14
14
|
destructiveHint: false,
|
|
15
15
|
openWorldHint: true,
|
|
16
16
|
readOnlyHint: false,
|
|
17
17
|
},
|
|
18
18
|
type: "action",
|
|
19
|
+
ai: "optimized",
|
|
19
20
|
props: {
|
|
20
21
|
googleSlides,
|
|
21
22
|
presentationId: {
|
|
@@ -8,13 +8,14 @@ export default {
|
|
|
8
8
|
key: "google_slides-position-element",
|
|
9
9
|
name: "Position Element",
|
|
10
10
|
description: "Move, scale, rotate, or restack a page element in a Google Slides presentation. Unspecified properties keep their current values. Use **Get Presentation** to find the element's object ID. [See the documentation](https://developers.google.com/workspace/slides/api/reference/rest/v1/presentations/request#UpdatePageElementTransformRequest)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.2",
|
|
12
12
|
annotations: {
|
|
13
13
|
destructiveHint: false,
|
|
14
14
|
openWorldHint: true,
|
|
15
15
|
readOnlyHint: false,
|
|
16
16
|
},
|
|
17
17
|
type: "action",
|
|
18
|
+
ai: "optimized",
|
|
18
19
|
props: {
|
|
19
20
|
googleSlides,
|
|
20
21
|
presentationId: {
|