-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Google Docs - add support for tabs content to get-document #17501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe changes primarily consist of version number increments across multiple Google Docs action and source components, as well as the package manifest. Additionally, the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant GetDocumentAction
participant GoogleDocsApp
participant GoogleDocsAPI
participant Utils
User->>GetDocumentAction: Invoke (includeTabsContent: true/false)
GetDocumentAction->>GoogleDocsApp: getDocument(documentId, includeTabsContent)
GoogleDocsApp->>GoogleDocsAPI: Fetch document (with includeTabsContent flag)
GoogleDocsAPI-->>GoogleDocsApp: Document data
alt includeTabsContent is true
GoogleDocsApp-->>GetDocumentAction: Return raw document data
else includeTabsContent is false
GoogleDocsApp->>Utils: addTextContentToDocument(document)
Utils-->>GoogleDocsApp: Processed document
GoogleDocsApp-->>GetDocumentAction: Return processed document
end
GetDocumentAction-->>User: Document result
Poem
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
components/google_docs/actions/append-image/append-image.mjsOops! Something went wrong! :( ESLint: 8.57.1 Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs components/google_docs/actions/append-text/append-text.mjsOops! Something went wrong! :( ESLint: 8.57.1 Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs components/google_docs/actions/create-document/create-document.mjsOops! Something went wrong! :( ESLint: 8.57.1 Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (12)
🧰 Additional context used🧠 Learnings (5)components/google_docs/actions/create-document-from-template/create-document-from-template.mjs (1)components/google_docs/actions/create-document/create-document.mjs (1)components/google_docs/package.json (1)components/google_docs/sources/new-document-created/new-document-created.mjs (1)components/google_docs/sources/new-or-updated-document/new-or-updated-document.mjs (1)⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
🔇 Additional comments (12)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 3 Skipped Deployments
|
|
Hi everyone, all test cases are passed! Ready for release! |
Adds the
includeTabsContentprop to allow retrieving tabs content.Summary by CodeRabbit
New Features
Chores