Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@weldable/integration-google-drive

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@weldable/integration-google-drive

Google Drive file actions for Weldable

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@weldable/integration-google-drive

Google Drive file actions for Weldable.

Part of the Weldable integration library — see @weldable/integration-core for the full catalog.

Install

npm install @weldable/integration-google-drive @weldable/integration-core

@weldable/integration-core is a peer dependency and must be installed alongside this package.

Usage

import integration from '@weldable/integration-google-drive'

// Find files
const find = integration.actions.find(a => a.id === 'google_drive.find')!

const files = await find.execute(
  { query: 'Q1 report', type: 'spreadsheet', limit: 5 },
  ctx, // ActionContext from your Weldable-compatible host
)

// Get file metadata
const getFile = integration.actions.find(a => a.id === 'google_drive.get_file')!

const file = await getFile.execute(
  { fileId: '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms' },
  ctx,
)

console.log(file.name, file.webViewLink)

Keywords

weldable

FAQs

Package last updated on 12 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts