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 @@ -13,20 +13,42 @@ export default {
...others,
key: "google_docs-create-document-from-template",
name: "Create New Document From Template",
version: "0.0.6",
version: "0.0.7",
description,
type,
props: {
googleDrive: app,
...props,
drive: {
propDefinition: [
app,
"watchedDrive",
],
optional: true,
},
templateId: {
propDefinition: [
app,
"docId",
(c) => ({
driveId: app.methods.getDriveId(c.drive),
}),
],
label: "Template",
description:
"Select the template document you'd like to use as the template, or use a custom expression to reference a document ID from a previous step. Template documents should contain placeholders in the format `{{xyz}}`.",
},
folderId: {
propDefinition: [
app,
"folderId",
(c) => ({
drive: c.drive,
}),
],
description:
"Select the folder of the newly created Google Doc and/or PDF, or use a custom expression to reference a folder ID from a previous step.",
optional: true,
},
},
};
4 changes: 2 additions & 2 deletions components/google_docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/google_docs",
"version": "0.6.1",
"version": "0.6.2",
"description": "Pipedream Google_docs Components",
"main": "google_docs.app.mjs",
"keywords": [
Expand All @@ -14,7 +14,7 @@
},
"dependencies": {
"@googleapis/docs": "^3.3.0",
"@pipedream/google_drive": "^1.1.1",
"@pipedream/google_drive": "^1.3.1",
"markdown-it": "^14.1.0"
}
}
91 changes: 44 additions & 47 deletions pnpm-lock.yaml

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

Loading