@kilnai/integration-google-sheets
v2.1.0
Published
Google Sheets integration adapter for Kiln AI — read ranges, append rows, update cells
Readme
Operations
| Operation | Description |
|-----------|-------------|
| read_range | Read values from a spreadsheet range (A1 notation) |
| append_rows | Append rows of data after a given range |
| update_range | Update values in a specific range |
Install
bun add @kilnai/integration-google-sheetsRequires @kilnai/core ^2.1.0 as a peer dependency.
Usage
import { IntegrationRegistry } from "@kilnai/core";
import { adapter } from "@kilnai/integration-google-sheets";
IntegrationRegistry.register(adapter);The adapter expects a ResolvedCredential with an OAuth2 access token as the value. It creates a Google OAuth2 client internally — no client ID or secret needed when injecting an existing token.
SDK
Built on @googleapis/sheets (standalone package, not the monolithic googleapis).
