Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_slides-create-presentation",
name: "Create Presentation",
description: "Create a blank presentation or duplicate an existing presentation. [See the docs here](https://developers.google.com/slides/api/guides/presentations#copy_an_existing_presentation)",
version: "0.0.2",
version: "0.0.3",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_slides-find-presentation",
name: "Find a Presentation",
description: "Find a presentation on Google Drive. [See the docs here](https://developers.google.com/slides/api/samples/presentation#list_existing_presentation_files)",
version: "0.0.2",
version: "0.0.3",
type: "action",
props: {
app,
Expand Down
2 changes: 1 addition & 1 deletion components/google_slides/actions/merge-data/merge-data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_slides-merge-data",
name: "Merge Data",
description: "Merge data into a presentation. [See the docs here](https://developers.google.com/slides/api/guides/merge)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "google_slides-refresh-chart",
name: "Refresh a chart",
description: "Refresh a chart from Sheets. [See the docs here](https://developers.google.com/slides/api/samples/elements#refresh_a_chart_from_sheets)",
version: "0.0.2",
version: "0.0.3",
type: "action",
props: {
app,
Expand Down
2 changes: 1 addition & 1 deletion components/google_slides/google_slides.app.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import slides from "@googleapis/slides";
import googleDrive from "../google_drive/google_drive.app.mjs";
import googleDrive from "@pipedream/google_drive";

export default {
...googleDrive,
Expand Down
5 changes: 3 additions & 2 deletions components/google_slides/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_slides",
"version": "0.1.1",
"version": "0.1.2",
"description": "Pipedream Google Slides Components",
"main": "google_slides.app.mjs",
"keywords": [
Expand All @@ -10,8 +10,9 @@
"homepage": "https://pipedream.com/apps/google_slides",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"dependencies": {
"@googleapis/slides": "^0.7.1",
"@googleapis/drive": "^2.3.0",
"@googleapis/slides": "^0.7.1",
"@pipedream/google_drive": "^1.0.3",
"@pipedream/platform": "^0.9.0",
"mime-db": "^1.51.0",
"uuid": "^8.3.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
type: "source",
name: "New Presentation (Instant)",
description: "Emit new event each time a new presentation is created in a drive.",
version: "0.0.3",
version: "0.0.4",
hooks: {
...newFilesInstant.hooks,
async deploy() {
Expand All @@ -24,7 +24,7 @@
},
props: {
...newFilesInstant.props,
folders: {

Check warning on line 27 in components/google_slides/sources/new-presentation/new-presentation.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop folders must have a label. See https://pipedream.com/docs/components/guidelines/#props
...newFilesInstant.props.folders,
description:
"(Optional) The folders you want to watch. Leave blank to watch for any new presentation in the Drive.",
Expand Down
21 changes: 21 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading